.hero-section { 
  position: relative; 
  width: 100%; 
  height: 400px; 
  background-color: #062667;
  overflow: hidden;
} 

.hero-overlay { 
  position: absolute; 
  inset: 0;
  background-image: url("../assets/images/CRM.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0.39;
  z-index: 1; 
} 

.hero-content { 
  position: relative; 
  z-index: 2; 
  height: 100%; 
  width: 100%;          
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  color: #ffffff; 
  padding: 0 40px; 
} 

.hero-content h1 { 
  font-size: 40px;
  font-weight: 600; 
  letter-spacing: 0px; 
  margin-bottom: 14px;
} 

.hero-content p { 
  font-size: 22px; 
  font-weight: 400;   
}

/* .... */

.healthcheck-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.healthcheck-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.healthcheck-left {
  flex: 1;
}

.healthcheck-left h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.healthcheck-left .free {
  color: #0070d2;
}

.divider {
  width: 60px;
  height: 3px;
  background: #000;
  margin: 16px 0 24px;
}

/* CHECK LIST */
.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0070d2;
  font-weight: bold;
}

/* BUTTON */
.health-btn {
  display: inline-block;
  background: #061f60;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT IMAGE — CSS BACKGROUND */
.healthcheck-right {
  flex: 1;
  min-height: 380px;

  background-image: url("../assets/images/Salesforce-CRM.png"); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


@media (max-width: 768px) {
  .healthcheck-container {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    margin-left: auto;
    margin-right: auto;
  }

  .checklist li {
    text-align: left;
  }
}


/* ....*/


.ps-offering-section {
  padding: 80px 0;
  background: #ffffff;
}

.ps-offering-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: -450px; 
}

.ps-offering-image {
  width: 45%;
  height: 250px;
  background-image: url("assets/images/Public-Sector-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* CONTENT RIGHT */
.ps-offering-content {
  width: 50%;
}

.ps-offering-title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.ps-offering-line {
  width: 45px;
  height: 2px;
  background: #000;
  margin-bottom: 20px;
}

.ps-offering-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

/* BUTTON */
.ps-offering-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0a2a66;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
}

.ps-offering-btn:hover {
  background: #061d47;
}


/* ... */

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500&display=swap');

.salesforce-section { 
  padding: 60px 20px 60px 20px; 
  margin-top: -150px;
  background-color: #ffffff;
} 
 
.salesforce-container { 
  max-width: 1100px; 
  margin: 0 auto;  
  padding-left: 0px;
  padding-right: 0px;  
} 
 
.salesforce-container p { 
  font-family: "Bai Jamjuree", "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75; 
  color: #060000; 
  margin-bottom: 22px;
  letter-spacing: 0.0em;
}

.salesforce-container p:last-child {
  margin-bottom: 0;
}


/* .... */

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

.crm-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.crm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* Main Title */
.crm-main-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  margin-left: -100px;
}

/* Cards Grid */
.crm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left: -65px;
}

/* Each Card */
.crm-card {
  background-color: #f3f3f4;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px
}

/* Card Title (Accelance + ...) */
.card-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

/* Card Subtitle (Salesforce CRM etc) */
.card-subtitle {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

/* Card Body Text */
.card-text {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #060000;
  line-height: 1.75;
  flex-grow: 1;
}

/* Learn More Button */
.card-btn {
  display: inline-block;
  margin-top: 16px;
  background-color: #062667;
  color: #ffffff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 3px;
  width: fit-content;
  transition: background 0.2s;
}

.card-btn:hover {
  background-color: #0a3a99;
}

/* Responsive */
@media (max-width: 768px) {
  .crm-cards {
    grid-template-columns: 1fr;
  }

  .crm-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .crm-main-title {
    font-size: 24px;
  }
}

/* CONTACT US */

.hero-section { 
  position: relative; 
  width: 100%; 
  height: 420px; 
  background-color: #062667;
  overflow: hidden;
} 

.hero-overlay { 
  position: absolute; 
  inset: 0;
  background-image: url("../assets/images/Contact-Us.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0.39;
  z-index: 1; 
} 

.hero-content { 
  position: relative; 
  z-index: 2; 
  height: 100%; 
  width: 100%;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  color: #ffffff; 
  padding: 0 20px; 
} 

.hero-content h1 { 
  font-size: 42px;
  font-weight: 500; 
  letter-spacing: 0px; 
  margin-bottom: 14px;
  white-space: nowrap;
} 

.hero-content p { 
  font-size: 23px; 
  font-weight: 600; 
  line-height: 0.2; 
  opacity: 0.92; 
  white-space: nowrap;
}

/* LOCATIONS SECTION */
.locations-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
}

.locations-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.locations-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.locations-divider {
  width: 50px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 0 auto 40px auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-card {
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.location-info {
  padding: 24px 20px;
  text-align: center;
}

.location-info p {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

.location-info a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
}

.location-info a:hover {
  text-decoration: underline;
}

.location-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: 0;
}

/* About US */

/* DIGITAL FUTURE HERO */
.digital-hero-section {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url("../assets/images/About-us-Picture-min-scaled.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.digital-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 40, 0.45);
  z-index: 1;
}

.digital-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;    
  padding: 0 80px 0 240px;
}

.digital-hero-content h1 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.digital-hero-content p {
font-family: "Bai Jamjuree", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

/* VISION SECTION */
.vision-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;
}

.vision-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-icon {
  margin-bottom: 14px;
}

.vision-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vision-label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.vision-heading {
  margin-bottom: 19px;
}

.vision-heading-light {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.vision-heading-blue {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #1a3a8f;
  line-height: 1.4;
  margin: 0;
}

.vision-highlight {
  color: #1a3a8f;       
  font-weight: 400;
}

.vision-desc {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.vision-icon img {
  content: url("../assets/images/hugeicons_ai-vision-recognition.png");
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* MISSION SECTION */
.mission-section {
  width: 100%;
  padding: 0px 20px;
  background-color: #ffffff;
}

.mission-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-icon {
  margin-bottom: 14px;
}

.mission-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mission-label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mission-heading {
  margin-bottom: 10px;
}

.mission-heading-light {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.mission-heading-blue {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #1a3a8f;
  line-height: 1.4;
  margin: 0;
}

.mission-desc {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}


/* COMMITMENT SECTION */
.commitment-section {
  width: 100%;
  padding: 50px 20px;
  background-color: #ffffff;
}

.commitment-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.commitment-icon {
  margin-bottom: 8px;
}

.commitment-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.commitment-label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.commitment-heading {
  margin-bottom: 20px;
}

.commitment-heading-light {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.commitment-heading-blue {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #1a3a8f;
  line-height: 1.4;
  margin: 0;
}

.commitment-image {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px 100px 15px;
  text-align: center;
}

.commitment-image img {
      width: 85%;
    height: auto;
    display: block;
    margin: -64px auto;
    margin-right: 50px;
}

/* GET STARTED SECTION */
.getstarted-section {
  width: 100%;
  padding: 60px 20px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #0F74BD 0%, #074796 100%);
}

.getstarted-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.getstarted-left {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 60px;
}

.getstarted-label {
  font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 300;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
    direction: rtl;
}

.getstarted-heading {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  direction: rtl;
}

/* RIGHT */
.getstarted-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.getstarted-desc {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* CONTACT CARD */
.getstarted-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 12px 14px;        
  text-decoration: none;
  transition: background 0.3s;
  max-width: 300px;           
}

.getstarted-card-text h3 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 16px;            
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.getstarted-card-text p {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 12px;            
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.getstarted-card-arrow {
  font-size: 25px;
  color: #ffffff;
  font-weight: 600;
  align-self: flex-start;    
  margin-left: 10px;
}


/* BLINK EFFECT */
.getstarted-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s;
}

.getstarted-card:hover::after {
  opacity: 1;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

.getstarted-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.getstarted-card-arrow {
  font-size: 26px;
  color: #ffffff;
  font-weight: 900;
  align-self: flex-start;
  margin-left: 10px;
  transition: color 0.3s;
  cursor: pointer;
}

.getstarted-card-arrow:hover {
  color: #00ff88;        
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .getstarted-container {
    flex-direction: column;
    gap: 30px;
  }

  .getstarted-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 0;
    padding-bottom: 30px;
  }
}

/* ───── CTA SECTION ───── */
.cta-section {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #0d47a1 100%);
  padding: 80px 60px;
}

.cta-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ───── LEFT SIDE ───── */
.cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 40px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cta-divider {
  display: none;
}

.cta-label {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.cta-heading {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

/* ───── RIGHT SIDE ───── */
.cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 60px;
}

.cta-description {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* ───── CONTACT BOX ───── */
.cta-contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 22px 26px;
  max-width: 420px;
  transition: background 0.3s;
  cursor: pointer;
}

.cta-contact-box:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cta-contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-contact-title {
  margin: 0;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.cta-contact-title a {
  color: #ffffff;
  text-decoration: none;
}

.cta-contact-title a:hover {
  color: #ffffff;
  text-decoration: none;
}

.cta-contact-arrow {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.cta-contact-arrow:hover {
  color: #ffffff;
  text-decoration: none;
}

.cta-contact-desc {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .cta-section { padding: 60px 40px; }
  .cta-heading { font-size: 42px; }
}

@media (max-width: 767px) {
  .cta-container {
    flex-direction: column;
    gap: 40px;
  }
  .cta-left {
    border-right: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
    padding-right: 0;
    padding-bottom: 40px;
  }
  .cta-right { padding-left: 0; }
  .cta-heading { font-size: 36px; }
  .cta-contact-box { max-width: 100%; }
  .cta-section { padding: 40px 20px; }
}

/* ERP */

/* MICROSOFT HERO */
.microsoft-hero-section {
  position: relative;
  width: 100%;
  height: 520px;
  background-image: url("../assets/images/AdobeStock_1325064742-min-scaled.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.microsoft-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 30, 0.55);
  z-index: 1;
}

.microsoft-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 120px 0 300px;
}

.microsoft-hero-line1 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 65px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 4px 0;
}

.microsoft-highlight {
  color: #ffffff;
  padding: 0px 0px;
}

.microsoft-hero-line2 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 65px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 24px 5px;
}

.microsoft-hero-line2 strong {
  font-weight: 700;
}

.microsoft-hero-label {
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0 5px;
}


@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

/* ── Section ── */
.unify-section {
  background-color: #ffffff;
  padding: 70px 20px 20px 20px;
}

.unify-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header Block ── */
/* ── Cards Grid ── */
.unify-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;              
  max-width: 1100px;      
  margin: 0 auto;
}

/* ── Each Card ── */
.unify-card {
  background-color: #ffffff;
  border: 4.5px solid #d9dde8;
  border-radius: 11px;
  padding: 60px 45px;     
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.2s;
  max-width: 100%;        
  width: 100%;
}

.unify-card:hover {
  box-shadow: 0 6px 20px rgba(13, 45, 107, 0.10);
}

/* ── Icon ── */
.unify-icon {
  width: 40px;            
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unify-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Card Title ── */
.unify-card-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 22px;        
  font-weight: 600;
  color: #0d2d6b;
  line-height: 1.4;
  margin: 0;
}

/* ── Card Text ── */
.unify-card-text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.75;
  margin: 0;
}

/* ── Header ── */
.unify-header {
  text-align: center;
  margin-bottom: 50px;
}

.unify-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 55px;
  font-weight: 100;
  color: #0d2d6b;
  line-height: 1.35;
  margin-bottom: 18px;
}

.unify-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  max-width: 920px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .unify-cards {
    grid-template-columns: 1fr;
  }

  .unify-title {
    font-size: 28px;
  }

  .unify-container {
    padding: 0 16px;
  }
}

/* ── Section ── */
.dynamics-image-section {
  background-color: #ffffff;
  padding: 0px 20px;
}

/* ── Container ── */
.dynamics-image-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Image Wrap ── */
.dynamics-image-wrap {
  width: 100%;
  text-align: center;
}

.dynamics-image-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .dynamics-image-container {
    padding: 0 16px;
  }

  .dynamics-image-wrap img {
    max-width: 100%;
  }
}

/* ── Section ── */
.why-dynamics-section {
  background-color: #ffffff;
  padding: 50px 20px 60px 20px;
}

/* ── Container ── */
.why-dynamics-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Title ── */
.why-dynamics-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.3; 
}

/* ── Blue Highlight ── */
.why-dynamics-highlight {
  color: #074796;
  font-weight: 300;
}

/* ── Image Wrap ── */
.why-dynamics-image-wrap {
  width: 100%;
  text-align: center;
}

.why-dynamics-image-wrap img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-dynamics-container {
    padding: 0 16px;
  }

  .why-dynamics-title {
    font-size: 26px;
  }

  .why-dynamics-image-wrap img {
    max-width: 100%;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

/* ── Section ── */
.why-accelance-section {
  background-color: #ffffff;
  padding: 60px 20px 70px 20px;
}

/* ── Container ── */
.why-accelance-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Label ── */
.why-label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #074796;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Main Title ── */
/* ── Label ── */
.why-label {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 200;
  color: #555555;            
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;        
  margin-bottom: 14px;
}

/* ── Main Title ── */
.why-main-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 46px;           
  font-weight: 400;          
  color: #074796;            
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;        
}

.why-black {
  color: #424242;            
  font-weight: 50;
}

/* ── Subtitle ── */
.why-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;        
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════
   4 STATS GRID (25% each)
══════════════════════════════ */
.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  align-items: stretch;
  margin-top: 40px;
}

.why-stat-card {
  background-color: #ffffff;
  border: 3px solid #8b8a8a;
  border-radius: 18px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  box-sizing: border-box;
  min-height: 380px; 
}

.stat-number {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0d2d6b;
  margin: 0;
  line-height: 1.2;
}

.stat-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #074796;
  margin: 0;
  line-height: 1.4;
}

.stat-text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  margin-top: 8px;
  flex-grow: 1;
}

/* ══════════════════════════════
   2 COL GRID (50% each)
══════════════════════════════ */
.why-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.why-two-card {
  background-color: #ffffff;
  border: 3px solid #8b8a8a;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}

/* ══════════════════════════════
   FULL WIDTH CARD (100%)
══════════════════════════════ */
.why-full-card {
  background-color: #ffffff;
  border: 3px solid #8b8a8a;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Card Titles ── */
.two-card-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #0d2d6b;
  margin: 0;
  line-height: 1.4;
}

/* ── Card Text ── */
.two-card-text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .why-accelance-container {
    padding: 0 16px;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
  }

  .why-two-grid {
    grid-template-columns: 1fr;
  }

  .why-main-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 26px;
  }
}

/* ══════════════════════════════
   OUR PROCESS SECTION
══════════════════════════════ */
.process-section {
  background-color: #ffffff;
  padding: 60px 20px 30px 20px;
}

.process-container {
  max-width: 1180px;
  margin: -50px auto;
  padding: 0 40px;
}

/* ── Header ── */
.process-header {
  max-width: 50%;
}

/* ── Label ── */
.process-label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #555555;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Title 1 — Accelance drives ── */
.process-title-1 {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #111111;              
  line-height: 1.3;
  margin: 0 0 4px 0;
}

/* ── Title 2 — growth in 5 steps ── */
.process-title-2 {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #111111;              
  line-height: 1.3;
  margin: 0 0 4px 0;
}

/* ── Blue span — in 5 steps ── */
.process-blue {
  color: #074796;              
  font-weight: 400;
}

/* ══════════════════════════════
   STEPS IMAGE SECTION
══════════════════════════════ */
.steps-image-section {
  background-color: #ffffff;
  padding: 10px 20px 60px 40px;
}

.steps-image-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.steps-image-wrap {
  width: 100%;
}

.steps-image-wrap img {
      width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: -120px 10px;
    margin-bottom: auto;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .process-container {
    padding: 0 16px;
  }

  .process-header {
    max-width: 100%;
  }

  .process-title {
    font-size: 28px;
  }

  .steps-image-container {
    padding: 0 16px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* ══════════════════════════════
   GET STARTED SECTION
══════════════════════════════ */
.getstarted-section {
  background: linear-gradient(135deg, #0a5abf 0%, #1a7ad4 100%);
  padding: 70px 20px;
}

.getstarted-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 3 Column Layout (left | line | right) ── */
.getstarted-wrapper {
  display: grid;
  grid-template-columns: 1fr 1px 1.4fr;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════
   LEFT SIDE
══════════════════════════════ */
.getstarted-label {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.getstarted-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 44px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  margin: 10;
}

/* ══════════════════════════════
   VERTICAL LINE
══════════════════════════════ */
.getstarted-divider {
  width: 1px;
  height: 100%;
  min-height: 160px;
}

/* ══════════════════════════════
   RIGHT SIDE
══════════════════════════════ */
.getstarted-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.getstarted-text {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  margin: 0;
}

/* ── Book Call Box ── */
.getstarted-box {
  border: 3.5px solid rgba(255, 255, 255, 0.50);
    border-radius: 10px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 380px;
}

/* ── Box Top Row ── */
.getstarted-box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Book Call Title ── */
.getstarted-box-title a {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.getstarted-box-title a:hover {
  opacity: 0.85;
}

/* ── Arrow ── */
.getstarted-arrow {
  font-size: 32px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.getstarted-arrow:hover {
  opacity: 1;
}

/* ── Box Description ── */
.getstarted-box-desc {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .getstarted-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .getstarted-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
  }

  .getstarted-container {
    padding: 0 16px;
  }

  .getstarted-title {
    font-size: 30px;
  }

  .getstarted-box {
    max-width: 100%;
  }
}


/* Custom Software /*

/* ══════════════════════════════
   CUSTOM SOFTWARE HERO SECTION
══════════════════════════════ */
.custom-hero-section {
  position: relative;
    width: 100%;
    min-height: 350px;
    background-image: url(../assets/images/Dev-Ops.jpg);
    background-size: cover;
    background-position: 97% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 109, 0.65);
  z-index: 1;
}

.custom-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 40px;
  max-width: 750px;
  width: 100%;
}

/* ── Main Title ── */
.custom-hero-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

/* ── Subtitle ── */
.custom-hero-subtitle {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  margin: 0;
  max-width: 100%;           
  white-space: nowrap; 
  margin-left: -100px;      
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .custom-hero-section {
    min-height: 240px;
  }

  .custom-hero-title {
    font-size: 22px;
  }

  .custom-hero-subtitle {
    font-size: 13px;
  }

  .custom-hero-content {
    padding: 40px 20px;
  }
}

/* ══════════════════════════════
   BUILD VS BUY SECTION
══════════════════════════════ */
.buildvsbuy-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.buildvsbuy-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 2 Column Layout ── */
.buildvsbuy-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;  
  gap: 50px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT — Text
══════════════════════════════ */
.buildvsbuy-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.buildvsbuy-left p {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.buildvsbuy-left p strong {
  font-weight: 700;
  color: #111111;
}

.buildvsbuy-left p em {
  font-style: italic;
}

/* ══════════════════════════════
   RIGHT — Title + Image
══════════════════════════════ */
.buildvsbuy-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Title ── */
.buildvsbuy-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3663e0;
  margin: 0;
  line-height: 1.3;
}

/* ── Image ── */
.buildvsbuy-image {
  width: 100%;
}

.buildvsbuy-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .buildvsbuy-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .buildvsbuy-container {
    padding: 0 16px;
  }

  .buildvsbuy-title {
    font-size: 24px;
  }

  .buildvsbuy-right {
    order: -1;
  }
}

/* ══════════════════════════════
   CICD SECTION
══════════════════════════════ */
.cicd-section {
  background-color: #ffffff;
  padding: 0px 20px;
}

.cicd-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center
}

/* ── Title ── */
.cicd-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0d2461;
  margin: 0;
  line-height: 1.3;
}

/* ── Divider ── */
.cicd-divider {
  width: 6%;
    height: 1px;
    background-color: #000;
    margin: 0px 0;
}

/* ── Text ── */
.cicd-text {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* ── Images ── */
.cicd-image {
  width: 100%;
}

.cicd-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cicd-image-small {
  width: 100%;
  max-width: 750px;
  .cicd-image-small {
  margin: 30px auto 0 auto;
}
}

.cicd-image-small img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 70px;
}
/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .cicd-container {
    padding: 0 16px;
    gap: 16px;
  }

  .cicd-title {
    font-size: 24px;
  }

  .cicd-text {
    font-size: 14px;
  }
}

/* ══════════════════════════════
   PIPELINE SECTION
══════════════════════════════ */
.pipeline-section {
  background-color: #ffffff;
  padding: 50px 20px 60px 20px;
}

.pipeline-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Top Text ── */
.pipeline-top-text {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #161616;
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 70px;
}

/* ── 2 Column Layout ── */
.pipeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;  
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT — Image
══════════════════════════════ */
.pipeline-left {
  width: 100%;
}

.pipeline-left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ══════════════════════════════
   RIGHT — Title + Image
══════════════════════════════ */
.pipeline-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Title ── */
.pipeline-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #376bfa;
  margin: 0;
  line-height: 1.3;
}

/* ── Pipeline Image ── */
.pipeline-image {
  width: 100%;
}

.pipeline-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .pipeline-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pipeline-container {
    padding: 0 16px;
  }

  .pipeline-title {
    font-size: 22px;
  }

  .pipeline-top-text {
    font-size: 14px;
  }
}


/* Cloud Management */

/* MANAGED SERVICES HERO */
.managed-hero-section {
  position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url(../assets/images/managed-services.jpg);
    background-size: cover;
    background-position: 97% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.managed-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 109, 0.5);
  z-index: 1;
}
.managed-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.managed-hero-content h1 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: -3px;
  white-space: nowrap;
}

.managed-hero-content p {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 25px;
  font-weight: 560;
  color: #ffffff;
  line-height: 1.7;
  max-width: 100%;          
  white-space: nowrap; 
  margin-left: -100px; 
}

/* MANAGED DESC SECTION */
.managed-desc-section {
  width: 100%;
  padding: 60px 0px;
  background-color: #ffffff;
}

.managed-desc-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  padding: 0 40px;
}

.managed-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #444444;
  line-height: 1.8;
  margin: 0;
  margin-left:  -90px;
}

/* MANAGED SERVICES SECTION */
.managed-services-section {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ms-row {
  display: flex;
  align-items: stretch;
  width: 100%;
 
}

.ms-text {
  flex: 1;
  padding: 40px 0px;
  background-color: #f0f4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.ms-text h2 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2d6b;
  margin-bottom: 16px;
  line-height: 1.3;
  margin-left: 60px;
}

.ms-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  line-height: 1.8;
  margin: 0;
  margin-left: 60px;
}

.ms-image {
  flex: 1;
  overflow: hidden;
}

.ms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ANIMATIONS */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible,
.slide-right.visible,
.zoom-in.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ms-row {
    flex-direction: column;
  }
}



/*  IBPM */

/* BPM SECTION */
.bpm-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;
}

.bpm-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bpm-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2d6b;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bpm-divider {
  width: 60px;
  height: 3px;
  background-color: #0d2d6b;
  margin: 0 auto 20px auto;
}

/* LIST */
.bpm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
}

.bpm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}

.bpm-icon {
  color: #0F74BD;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.bpm-list b {
  color: #0d2d6b;
}

/* ARROW */
.bpm-arrow {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

/* BOTTOM TITLE */
.bpm-bottom-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0d2d6b;
  margin: 0;
  animation: fadeInUp 0.8s ease;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* IBPM HERO */
.ibpm-hero-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("../assets/images/Advance-Process-Intelligence-Center.jpg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ibpm-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 122, 0.5);
  z-index: 1;
}

.ibpm-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.ibpm-hero-main {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  white-space: nowrap;
}

.ibpm-hero-full {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  white-space: nowrap;
}

.ibpm-hero-full em {
  font-style: normal;
  color: rgb(44, 44, 228);
  font-weight: 700;
}

.ibpm-hero-sub {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.90;
  white-space: nowrap;
  margin: 0;
}


/* IBPM INFO SECTION */
.ibpm-info-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;
}

.ibpm-info-container {
  max-width: 1000px;
  padding: 0px 0px;
  margin: 0 auto;
}

.ibpm-info-text p {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ibpm-info-text em {
    font-family: 'Bai Jamjuree', sans-serif;
  color: #333333;
  font-weight: 800;
}

.ibpm-dimensions-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0d2d6b;
  text-align: center;
  margin-bottom: 16px;
  margin-left: -660px;
}

.ibpm-dimensions-divider {
  width: 60px;
  height: 3px;
  background-color: #0d2d6b;
  margin: 0 auto 40px auto;
  margin-left: 0px;
  margin-top: -10px;
}

.ibpm-svg-wrap {
  text-align: center;
  animation: zoomIn 0.8s ease;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* IBPM DETAILS SECTION */
.ibpm-details-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ibpm-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 400px;
}

/* TEXT SIDE */
.ibpm-text {
  flex: 0 0 50%;
  padding: 50px 60px;
  background-color: #eef2fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.ibpm-text h2 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0d2d6b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ibpm-divider {
  width: 50px;
  height: 3px;
  background-color: #0F74BD;
  margin-bottom: 20px;
}

.ibpm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibpm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}

.ibpm-icon {
  color: #0F74BD;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* IMAGE SIDE */
.ibpm-image {
  flex: 0 0 50%;
  overflow: hidden;
}

.ibpm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* KNOW MORE BUTTON */
.ibpm-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #0F74BD;
  color: #ffffff;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  align-self: flex-start;
}

.ibpm-btn:hover {
  background-color: #0d2d6b;
}

/* ANIMATIONS */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible,
.slide-right.visible,
.zoom-in.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ibpm-row {
    flex-direction: column;
    height: auto;
  }

  .ibpm-text {
    padding: 40px 24px;
  }

  .ibpm-image {
    min-height: 250px;
  }
}

/* STEPS SECTION */
.steps-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.steps-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2d6b;
  margin-bottom: 16px;
  line-height: 1.4;
}

.steps-divider {
  width: 60px;
  height: 3px;
  background-color: #0d2d6b;
  margin: 0 auto 40px auto;
}

/* GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.step-card {
  background-color: #f0f4ff;
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.3s;
}

.step-card:hover {
  box-shadow: 0 8px 24px rgba(13, 45, 107, 0.12);
}

/* ICON */
.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.step-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* DESCRIPTION */
.step-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* SOLUTION FEATURES SECTION */
.solution-features-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;   
}

.solution-features-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #f5f5f5;   
  border-radius: 16px;         
  padding: 40px 50px;          
  border: 1px solid #e0e0e0;   
}

.solution-features-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2d6b;
  margin-bottom: 12px;
}

.solution-features-divider {
  width: 50px;
  height: 3px;
  background-color: #0F74BD;
  margin-bottom: 24px;
}

.solution-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #444444;
  line-height: 1.5;
}

.solution-features-icon {
  color: #0F74BD;
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* IBPM CLOUD SECTION */
.ibpm-cloud-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #ffffff;
}

.ibpm-cloud-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ibpm-cloud-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2d6b;
  margin-bottom: 12px;
}

.ibpm-cloud-divider {
  width: 50px;
  height: 3px;
  background-color: #0F74BD;
  margin-bottom: 24px;
}

.ibpm-cloud-desc {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
}

.ibpm-cloud-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ANIMATIONS */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible,
.zoom-in.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}


/* ══════════════════════════════
   PROCESS MINING HERO SECTION
══════════════════════════════ */
.process-hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url('../assets/images/Process-banner.png');
  background-size: 38%;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #0d2461;     
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Overlay ── */
.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 109, 0.5);
  z-index: 1;
}

/* ── Content ── */
.process-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;          
  padding: 70px 40px;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;         
  gap: 16px;
}

/* ── Main Title ── */
.process-hero-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;          
  width: 100%;
}

/* ── Subtitle ── */
.process-hero-subtitle {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 24px;
  font-weight: 560;
  color: #ffffff;
  line-height: 1.7;
  display: block;
  white-space: nowrap;
  text-align: center;          
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .process-hero-title {
    font-size: 40px;
  }

  .process-hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .process-hero-section {
    min-height: 260px;
  }

  .process-hero-title {
    font-size: 30px;
  }

  .process-hero-subtitle {
    font-size: 14px;
  }

  .process-hero-content {
    padding: 40px 20px;
  }
}

/* ══════════════════════════════
   PILOT SECTION
══════════════════════════════ */
.pilot-section {
  background-color: #ffffff;
  padding: 70px 20px;
}

.pilot-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 2 Column Layout ── */
.pilot-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════
   LEFT
══════════════════════════════ */
.pilot-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Title ── */
.pilot-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #111111;
  line-height: 1.5;
  margin: 0;
}

/* ── Free span ── */
.pilot-free {
  color: #074796;
  font-weight: 700;
}

/* ── Divider ── */
.pilot-divider {
  width: 100%;
  height: 1px;
  background-color: #d0d8e8;
}

/* ── Icon List ── */
.pilot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
}

.pilot-list li i {
  color: #074796;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.pilot-list li strong {
  font-weight: 700;
  color: #111111;
}

/* ── Button ── */
.pilot-btn-wrap {
  margin-top: 10px;
}

.pilot-btn {
  display: inline-block;
  background-color: #062667;
  color: #ffffff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.pilot-btn:hover {
  background-color: #0a3a99;
}

/* ══════════════════════════════
   RIGHT — Image
══════════════════════════════ */
.pilot-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pilot-right img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .pilot-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pilot-container {
    padding: 0 16px;
  }

  .pilot-title {
    font-size: 20px;
  }

  .pilot-right img {
    max-width: 100%;
  }
}

/* ══════════════════════════════
   WHAT IS PROCESS MINING SECTION
══════════════════════════════ */
.whatispm-section {
  background-color: #ffffff;
  padding: 70px 20px;
}

.whatispm-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 2 Column Layout ── */
.whatispm-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;  
  gap: 60px;
  align-items: center;             
}

/* ══════════════════════════════
   LEFT — Text
══════════════════════════════ */
.whatispm-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Title ── */
.whatispm-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

/* ── Text ── */
.whatispm-text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════
   RIGHT — Image
══════════════════════════════ */
.whatispm-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;                   
}

.whatispm-right img {
  width: 100%;
  height: 100%;
  max-width: 532px;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .whatispm-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .whatispm-container {
    padding: 0 16px;
  }

  .whatispm-title {
    font-size: 20px;
  }

  .whatispm-text {
    font-size: 14px;
  }

  .whatispm-right img {
    max-width: 100%;
    height: auto;
  }
}

/* ══════════════════════════════
   VIDEO SECTION
══════════════════════════════ */
.video-section {
  background-color: #f3f6fb;
  padding: 70px 20px;
}

.video-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ── Title ── */
.video-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ── Video Wrap ── */
.video-wrap {
  width: 100%;
  max-width: 1300px;
  position: relative;
  aspect-ratio: 16 / 9;         
}

/* ── Video Player ── */
.video-player {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .video-container {
    padding: 0 16px;
    gap: 20px;
  }

  .video-title {
    font-size: 22px;
  }

  .video-wrap {
    max-width: 100%;
  }
}

/* ══════════════════════════════
   NEED FOR PROCESS MINING
══════════════════════════════ */
.needpm-section {
  background-color: #ffffff;
  padding: 70px 20px;
}

.needpm-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Main Title ── */
.needpm-main-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  color: #0e0e0e;
  margin: 0;
  line-height: 1.3;
}

/* ══════════════════════════════
   2 COLUMN GRID
══════════════════════════════ */
.needpm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ══════════════════════════════
   EACH CARD
══════════════════════════════ */
.needpm-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
}

/* ── Image ── */
.needpm-image {
  width: 100%;
}

.needpm-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

/* ── Card Title ── */
.needpm-card-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

/* ── Card Text ── */
.needpm-card-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .needpm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .needpm-container {
    padding: 0 16px;
    gap: 24px;
  }

  .needpm-main-title {
    font-size: 24px;
  }

  .needpm-card-title {
    font-size: 18px;
  }
}

/* ══════════════════════════════
   INITIATING PROCESS MINING
══════════════════════════════ */
.initpm-section {
  background-color: #f3f6fb;
  padding: 70px 20px;
}

.initpm-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Main Title ── */
.initpm-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin: 0;
  line-height: 1.1;
}

/* ── Subtitle ── */
.initpm-subtitle {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

/* ── Desktop Image ── */
.initpm-image-desktop {
  width: 100%;
  display: block;           
}

.initpm-image-desktop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Mobile Image ── */
.initpm-image-mobile {
  display: none;            
}

.initpm-image-mobile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .initpm-container {
    padding: 0 16px;
    gap: 16px;
  }

  .initpm-title {
    font-size: 24px;
  }

  .initpm-subtitle {
    font-size: 16px;
  }

  /* ← Mobile-ல் switch */
  .initpm-image-desktop {
    display: none;          
  }

  .initpm-image-mobile {
    display: block;         
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.process-mining-section {
  padding: 60px 20px;
  background: #ffffff;
}

/* Spacer */
.section-spacer {
  height: 40px;
}

/* Container */
/* .container {
  max-width: 1100px;
  margin: 0 auto;
} */

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Row → THIS makes LEFT & RIGHT */
.row {
  display: flex;
  gap: 40px;
}

/* Columns */
.col-50 {
  width: 50%;
  margin-right: -20px;
    margin-top: 11px;
}

/* Box style (card look) */
.box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 6px;
}

/* Card content */
.card-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 20px;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: #0052cc;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #003d99;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-50 {
    width: 100%;
  }
}

/* RPA */

.rpa-hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url('../assets/images/Robotic-Process-Automation.jpg');
  background-size: 150%;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #0d2461;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rpa-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 109, 0.5);
  z-index: 1;
}

.rpa-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  max-width: 700px;
}

.rpa-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.rpa-hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  margin-left: -280px;
}

.rpa-hero-image {
  margin-top: 24px;
}

.rpa-hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.rpa-hero-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  background-color: #0077ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.rpa-hero-btn:hover {
  background-color: #0068e0;
}

.rpa-roadmap-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* .container {
    max-width: 1140px;
    margin: 0 auto;
} */

.content-wrapper {
    margin-bottom: 40px;
    text-align: left;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 18px;
}

.highlight {
    font-weight: 500;
    color: #333; 
}

.roadmap-graphic {
    width: 100%;
    margin-top: 30px;
}

.roadmap-graphic svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .content-wrapper p {
        font-size: 16px;
    }
}

.roadmap-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin-top: -300px;
    margin-left: 120px;
}

/* ── STEP ── */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── CIRCLE ── */
.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f0f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.circle svg {
  width: 90px;
  height: 90px;
}

/* ── LABEL ── */
.label {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #2B2B2B;
  line-height: 1.5;
}

/* ── CONNECTOR (line + checkbox) ── */
.connector {
  display: flex;
  align-items: center;
  flex: 1;
  margin-bottom: 52px;
}

.line {
  flex: 1;
  height: 4px;
  background: #0F74BD;
}

/* ── CHECKPOINT SQUARE ── */
.checkpoint {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.checkpoint svg {
  width: 44px;
  height: 44px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .roadmap-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .connector {
    flex-direction: column;
    margin-bottom: 0;
    height: 60px;
    width: auto;
  }

  .line {
    width: 4px;
    height: 100%;
    flex: 1;
  }
}

/* ── AUTOMATION SECTION ── */
.automation-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2B2B2B;
}

/* ── INTRO TEXT ── */
.intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* ── DIMENSION BLOCK ── */
.dimension-block {
  margin-bottom: 48px;
}

/* ── HEADING ── */
.dimension-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

/* ── DIVIDER ── */
.divider {
  width: 5%;
  height: 3px;
  background: #0e0d0d;
  margin-bottom: 24px;
}

/* ── IMAGE ── */
.dimension-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .dimension-title {
    font-size: 22px;
  }
}

.cards-wrapper {
  display: flex;
  gap: 14px;
  max-width: 1100px;
  width: 100%;
  margin-left: 120px;
}

.card {
  background: #eef2f7;
  border-radius: 6px;
  padding: 24px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
}

.icon svg {
  width: 64px;
  height: 64px;
}

.arrow-banner {
  background: #0F74BD;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 11px 28px 11px 12px;
  line-height: 1.4;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.desc {
  font-size: 16px;
  color: #222;
  line-height: 1.65;
}

.highlight {
  background-color: #e09419;
  font-weight: 600;
  padding: 0 2px;
}

.intro-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
    color: #2B2B2B;
    line-height: 1.7;
    margin-bottom: 24px;
    margin-left: 120px;
  }

.section-wrapper {
  max-width: 1140px;
  margin: 0 auto;
      margin-top: 20px;
    margin-left: 0px;
}

/* INTRO TEXT */
.intro-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2B2B2B;
  line-height: 1.7;
  margin-bottom: 24px;
  margin-left: 120px;
}

/* 4-COLUMN GRID */
.cols-wrapper {
  display: flex;
  gap: 14px;
  max-width: 1100px;
  width: 100%;
  margin-left: 120px;
}

/* EACH COLUMN CARD */
.col-card {
  background: #eef2f7;
  border-radius: 6px;
  padding: 24px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ICON */
.icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
}

.icon-wrap svg {
  width: 64px;
  height: 64px;
}

/* ARROW BANNER */
.arrow-banner {
  background: #0F74BD;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 11px 28px 11px 12px;
  line-height: 1.4;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

/* DESCRIPTION TEXT */
.desc-text {
  font-size: 16px;
  color: #222;
  line-height: 1.65;
}

/* HIGHLIGHT */
.highlight {
  background-color: #e09419;
  font-weight: 100;
  padding: 0 2px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .cols-wrapper {
    flex-direction: column;
    margin-left: 0;
  }

  .intro-text {
    margin-left: 0;
  }

  .arrow-banner {
    clip-path: none;
    border-radius: 4px;
  }
}

.contact-text {
  margin-top: 40px;   
  margin-left: 120px;
  font-size: 18px;
  color: #000000;
}
/* Header CSS */
.dropdown-mega .mega-menu {
    width: 950px !important;
    min-height: 400px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0 !important;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sidebar hover styling */
#meganav-sidebar .nav-link:hover {
    background-color: #f8f9fa !important;
    color: #0d6efd !important;
}

/* Right side links hover effect */
.mega-hover-link:hover {
    color: #0d6efd !important;
    padding-left: 5px;
    transition: 0.2s ease-in-out;
}

/* Corrects the Company dropdown positioning */
.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

/* HERO SECTION */
.hero-section1 {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/Career-1.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.hero-overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 18, 100, 0.5);
  z-index: 1;
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

/* TITLE */
.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 250px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

.positions-section {
  width: 100%;
  padding: 50px 20px;
}

.positions-container {
  max-width: 1100px;
  margin: 0 auto;
}

.positions-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 12px;
  text-align: center;
  font-family: 'Bai Jamjuree', sans-serif;
}

.divider {
  width: 5%;
  height: 2px;
  background-color: #000000;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

/* FILTERS CARD */
.filters-card {
  background: #e2edf0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filters-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter-keywords {
  width: 100%;
}

.filter-bottom-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-select {
  flex: 1;
}

.filter-btn {
  flex: 0 0 120px;
}

.form-control {
  width: 100%;
  height: 42px;
  padding: 8px 14px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  outline: none;
}

.form-control:focus {
  border-color: #0F74BD;
}

.btn-search {
  width: 100%;
  height: 42px;
  background-color: #0F74BD;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-search:hover {
  background-color: #0a5a94;
}

/* JOB LISTING */
.job-listing {
  width: 100%;
}

.job-row {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.job-row:hover {
  background: #f5f8fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-title-col {
  flex: 0 0 45%;
}

.job-title-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.job-title-col h4 a {
  color: #000000;
  text-decoration: none;
}

.job-title-col h4 a:hover {
  text-decoration: underline;
}

.job-meta {
  flex: 1;
  font-size: 0.85rem;
  color: #75c0eb;
}

.job-type,
.job-location,
.job-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .filter-bottom-row {
    flex-direction: column;
  }

  .filter-select,
  .filter-btn {
    width: 100%;
    flex: 0 0 100%;
  }

  .job-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .job-title-col {
    flex: 0 0 100%;
  }
}
/* NOT FOUND */
.not-found {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.not-found p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* BACK BUTTON */
.btn-back {
  background-color: #002575;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-back:hover {
  background-color: #0a5a94;
}

.hs-form-wrapper {
margin-left: -40px;
margin-right: -40px;
width: calc(100% + 80px) !important; 
overflow: hidden;
}

.hs-form-wrapper iframe {
    width: 100% !important;
    border: none !important;
}