/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#ffffff;
  color:#172b4d;
  overflow-x:hidden;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* =========================
   HEADER
========================= */

.header{
  width:100%;
  height:100px;
  background:#ffffff;
  border-bottom:1px solid #f1f2f4;
}

.nav-wrapper{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  width:78px;
}

.nav ul{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
}

.nav ul li a{
  text-decoration:none;
  color:#253858;
  font-size:14px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:5px;
  transition:0.3s ease;
}

.nav ul li a span{
  font-size:11px;
  opacity:0.8;
}

.nav ul li a:hover{
  color:#2c885c;
}

.contact-btn{
  text-decoration:none;
  background:#2c885c;
  color:#ffffff;
  font-size:13px;
  font-weight:600;
  padding:12px 22px;
  border-radius:6px;
  transition:0.3s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.contact-btn:hover{
  background:#2c885c;
}

/* =========================
   HERO
========================= */

.hero{
  background:#edf6f0;
  padding:70px 0 78px;
  text-align:center;
}

.hero-inner{
  max-width:950px;
}

.hero h1{
  font-size:44px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-2px;
  color:#173b72;
  margin-bottom:28px;
}

.hero-description{
  max-width:760px;
  margin:0 auto;
  font-size:16px;
  line-height:1.45;
  color:#5e6c84;
  font-weight:400;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:48px;
}

.primary-btn{
  background:#2c885c;
  color:#ffffff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  padding:16px 28px;
  border-radius:6px;
  transition:0.3s ease;
}

.primary-btn:hover{
  background:#2c885c;
}

.secondary-btn{
  background:#ffffff;
  border:1px solid #dfe1e6;
  color:#2c885c;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  padding:16px 28px;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:0.3s ease;
}

.secondary-btn:hover{
  border-color:#2c885c;
}

.secondary-btn span{
  font-size:20px;
  margin-top:-2px;
}

/* =========================
   STATS
========================= */

.stats{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:64px;
  margin-top:52px;
}

.stat-item{
  display:flex;
  align-items:center;
  gap:10px;
}

.stat-item h3{
  color:#2c885c;
  font-size:34px;
  font-weight:800;
}

.stat-item p{
  color:#6b778c;
  font-size:16px;
  font-weight:500;
}

/* =========================
   BADGES
========================= */

.badges-section{
  background:#ffffff;
  border-top:1px solid #eceff3;
  border-bottom:1px solid #eceff3;
  padding:32px 0;
}

.badges-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  flex-wrap:wrap;
}

.badges-wrapper img{
  height:74px;
  object-fit:contain;
}

/* =========================
   CLIENTS
========================= */

.clients-section{
  background:#ffffff;
  padding:42px 0 40px;
}

.clients-section h2{
  text-align:center;
  color:#173b72;
  font-size:26px;
  font-weight:800;
  margin-bottom:42px;
}

.clients-section h2 span{
  font-size:18px;
  font-weight:500;
  color:#7a869a;
  margin-left:6px;
}

.clients-logos{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:34px;
  flex-wrap:wrap;
}

.clients-logos img{
  height:42px;
  object-fit:contain;
  filter:grayscale(0%);
  transition:0.3s ease;
}

.clients-logos img:hover{
  transform:translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .hero h1{
    font-size:54px;
  }

  .hero-description{
    font-size:21px;
  }

  .stats{
    gap:38px;
  }

}

@media(max-width:900px){

  .nav{
    display:none;
  }

  .hero{
    padding:60px 0;
  }

  .hero h1{
    font-size:42px;
    line-height:1.2;
  }

  .hero-description{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .stats{
    flex-direction:column;
    gap:24px;
  }

  .clients-logos{
    justify-content:center;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:34px;
  }

  .hero-description{
    font-size:16px;
  }

  .clients-section h2{
    font-size:22px;
    line-height:1.4;
  }

}


/* =========================
   OFFERINGS SECTION
========================= */

.offerings-section{
  width:100%;
  background:#ffffff;
  padding:90px 0 100px;
}

.section-heading{
  text-align:center;
  margin-bottom:58px;
}

.section-label{
  display:block;
  color:#6b778c;
  font-size:14px;
  font-weight:500;
  margin-bottom:10px;
}

.section-heading h2{
  color:#173b72;
  font-size:44px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-1.5px;
  margin-bottom:14px;
}

.section-heading p{
  color:#7a869a;
  font-size:18px;
  font-weight:500;
}

/* =========================
   GRID
========================= */

.offerings-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:38px;
}

/* =========================
   CARD
========================= */

.offering-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:34px 34px 30px;
  transition:0.35s ease;
  box-shadow:
    0 1px 2px rgba(16,24,40,0.04),
    0 2px 10px rgba(16,24,40,0.04);
}

.offering-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 10px 24px rgba(16,24,40,0.08);
  border-color:#d6dae1;
}

.card-tag{
  display:block;
  color:#6b778c;
  font-size:15px;
  font-weight:700;
  margin-bottom:18px;
}

.offering-card h3{
  color:#173b72;
  font-size:28px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:18px;
}

.offering-card p{
  color:#7a869a;
  font-size:16px;
  line-height:1.7;
  font-weight:500;
  margin-bottom:24px;
}

.offering-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#2c885c;
  font-size:15px;
  font-weight:700;
  transition:0.3s ease;
}

.offering-card a span{
  font-size:18px;
  transition:0.3s ease;
}

.offering-card a:hover span{
  transform:translateX(3px);
}

/* =========================
   BOTTOM BUTTON
========================= */

.offerings-bottom-btn{
  margin-top:70px;
  display:flex;
  justify-content:center;
}

.offerings-bottom-btn a{
  background:#2c885c;
  color:#ffffff;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  padding:18px 34px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:0.3s ease;
  box-shadow:
    0 4px 12px rgba(45,155,104,0.18);
}

.offerings-bottom-btn a:hover{
  background:#2c885c;
  transform:translateY(-2px);
}

.offerings-bottom-btn a span{
  font-size:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .section-heading h2{
    font-size:40px;
  }

  .offering-card h3{
    font-size:32px;
  }

}

@media(max-width:900px){

  .offerings-grid{
    grid-template-columns:1fr;
  }

  .section-heading h2{
    font-size:34px;
  }

  .offering-card h3{
    font-size:28px;
  }

}

@media(max-width:600px){

  .offerings-section{
    padding:70px 0;
  }

  .section-heading h2{
    font-size:28px;
  }

  .section-heading p{
    font-size:16px;
  }

  .offering-card{
    padding:28px;
  }

  .offering-card h3{
    font-size:24px;
  }

  .offering-card p{
    font-size:15px;
  }

}


/* =========================
   SMARTER ITSM SECTION
========================= */

.smarter-itsm{
  width:100%;
  background:#ffffff;
  padding:100px 0 90px;
  overflow:hidden;
}

.smarter-heading{
  text-align:center;
  margin-bottom:70px;
}

.smarter-heading h2{
  color:#173b72;
  font-size:44px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2.5px;
  margin-bottom:18px;
}

.smarter-heading p{
  max-width:620px;
  margin:0 auto;
  color:#6b778c;
  font-size:18px;
  line-height:1.35;
  font-weight:500;
}

/* =========================
   CONTENT LAYOUT
========================= */

.smarter-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* =========================
   FEATURES
========================= */

.smarter-features{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:48px;
  row-gap:44px;
  max-width:620px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:18px;
}

.feature-icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:50%;
  background:#dcf5e8;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-icon img{
  width:44px;
  height:44px;
  object-fit:contain;
}

.feature-item span{
  color:#1f2937;
  font-size:17px;
  line-height:1.4;
  font-weight:700;
}

/* =========================
   IMAGE SIDE
========================= */

.smarter-image-wrap{
  position:relative;
  flex:1;
  max-width:540px;
  height:360px;
}

/* GREEN BACKGROUND */

.green-shape{
  position:absolute;
  top:10px;
  right:0;
  width:65%;
  height: 100px;%;
  transform:rotate(0deg);
}

/* IMAGE */

.dashboard-ui{
  position:absolute;
  top:42px;
  left:42px;
  width:58%;
  border-radius:10px;
  z-index:2;
  box-shadow:
    0 10px 35px rgba(16,24,40,0.14);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .smarter-heading h2{
    font-size:52px;
  }

}

@media(max-width:900px){

  .smarter-content{
    flex-direction:column;
  }

  .smarter-features{
    max-width:100%;
  }

}

@media(max-width:768px){

  .smarter-heading h2{
    font-size:40px;
  }

  .smarter-heading p{
    font-size:18px;
  }

  .smarter-features{
    grid-template-columns:1fr;
    row-gap:28px;
  }

  .feature-item span{
    font-size:16px;
  }

}

@media(max-width:560px){

  .smarter-itsm{
    padding:70px 0;
  }

  .smarter-image-wrap{
    height:250px;
  }

  .dashboard-ui{
    width:94%;
    left:10px;
    top:26px;
  }

}

/* =========================
   BUSINESS BENEFITS SECTION
========================= */

.business-benefits-section{
  width:100%;
  background:#edf6f0;
  padding:95px 0 90px;
}

/* =========================
   HEADING
========================= */

.benefits-heading{
  text-align:center;
  margin-bottom:58px;
}

.benefits-heading h2{
  color:#173b72;
  font-size:44px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2.5px;
  margin-bottom:22px;
}

.benefits-heading p{
  max-width:760px;
  margin:0 auto;
  color:#6b778c;
  font-size:18px;
  line-height:1.35;
  font-weight:500;
}

/* =========================
   GRID
========================= */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

/* =========================
   CARD
========================= */

.benefit-card{
  background:#ffffff;
  border:1px solid #e6ece8;
  border-radius:10px;
  padding:28px 28px 24px;
  min-height:255px;
  transition:0.3s ease;
  box-shadow:
    0 2px 6px rgba(16,24,40,0.03),
    0 4px 14px rgba(16,24,40,0.03);
}

.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 12px 30px rgba(16,24,40,0.08);
}

/* =========================
   ICON
========================= */

.benefit-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#edf6f0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}

.benefit-icon img{
  width:52px;
  height:52px;
  object-fit:contain;
}

/* =========================
   CONTENT
========================= */

.benefit-card h3{
  color:#173b72;
  font-size:18px;
  line-height:1.4;
  font-weight:800;
  margin-bottom:18px;
}

.benefit-card p{
  color:#6b778c;
  font-size:14px;
  line-height:1.55;
  font-weight:500;
  margin-bottom:28px;
  max-width:92%;
}

/* =========================
   STATS
========================= */

.benefit-stat{
  display:flex;
  align-items:center;
  gap:10px;
}

.stat-number{
  color:#238555;
  font-size:26px;
  line-height:1;
  font-weight:800;
}

.stat-label{
  color:#6b778c;
  font-size:14px;
  font-weight:600;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .benefits-heading h2{
    font-size:52px;
  }

  .benefits-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .business-benefits-section{
    padding:75px 0;
  }

  .benefits-heading h2{
    font-size:40px;
  }

  .benefits-heading p{
    font-size:18px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:560px){

  .benefits-heading h2{
    font-size:34px;
    line-height:1.12;
  }

  .benefits-heading p{
    font-size:16px;
  }

  .benefit-card{
    padding:24px;
  }

}


/* =========================
   CTA BANNER SECTION
========================= */

.cta-banner-section{
  width:100%;
  padding:40px 0;
  background:#ffffff;
}

.cta-banner-wrapper{
  max-width:1200px;     /* CONTENT WIDTH */
  margin:0 auto;        /* CENTER CONTENT */
  width:100%;
  background:#edf6f0;
  padding:40px 0;
  border-radius:0px;
  padding:54px 70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  overflow:hidden;
}

/* =========================
   LEFT CONTENT
========================= */

.cta-banner-content{
  max-width:560px;
}

.cta-banner-content h2{
  color:#0f172a;
  font-size:34px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-2px;
  margin-bottom:22px;
}

.cta-banner-content p{
  color:#1e293b;
  font-size:22px;
  line-height:1.45;
  font-weight:500;
  margin-bottom:38px;
  max-width:520px;
}

/* BUTTON */

.cta-banner-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:58px;
  padding:0 34px;
  background:#006c5f;
  color:#ffffff;
  text-decoration:none;
  border-radius:40px;
  font-size:17px;
  font-weight:700;
  box-shadow:
    0 8px 18px rgba(0,108,95,0.22);
  transition:0.3s ease;
}

.cta-banner-btn:hover{
  background:#00564c;
  transform:translateY(-2px);
}

/* =========================
   RIGHT IMAGE
========================= */

.cta-banner-image{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cta-banner-image img{
  width:100%;
  max-width:420px;
  object-fit:contain;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .cta-banner-content h2{
    font-size:46px;
  }

}

@media(max-width:900px){

  .cta-banner-wrapper{
    flex-direction:column;
    text-align:center;
    padding:60px 40px;
  }

  .cta-banner-content{
    max-width:100%;
  }

  .cta-banner-content p{
    margin-left:auto;
    margin-right:auto;
  }

}

@media(max-width:768px){

  .cta-banner-content h2{
    font-size:38px;
    line-height:1.18;
  }

  .cta-banner-content p{
    font-size:18px;
  }

}

@media(max-width:560px){

  .cta-banner-wrapper{
    padding:50px 24px;
  }

  .cta-banner-content h2{
    font-size:30px;
  }

  .cta-banner-content p{
    font-size:16px;
  }

  .cta-banner-btn{
    width:100%;
  }

}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section{
  width:100%;
  padding:90px 0 80px;
  background:#ffffff;
  overflow:hidden;
  position:relative;
}

/* =========================
   CONTAINER
========================= */

.container{
  width:1200px;
  max-width:95%;
  margin:auto;
}

/* =========================
   HEADING
========================= */

.testimonials-heading{
  text-align:center;
  margin-bottom:55px;
}

.section-label{
  display:block;
  color:#6b778c;
  font-size:15px;
  font-weight:600;
  margin-bottom:12px;
}

.testimonials-heading h2{
  color:#173b72;
  font-size:46px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
}

/* =========================
   SLIDER
========================= */

.testimonial-slider{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* =========================
   TRACK
========================= */

.testimonial-track{
  display:flex;
  gap:22px;
  width:max-content;
  animation:testimonialScroll 45s linear infinite;
}

/* =========================
   CARD
========================= */

.testimonial-card{
  width:620px;
  min-height:420px;
  background:#ffffff;
  border:1px solid #e6e9ef;
  border-radius:14px;
  overflow:hidden;
  flex-shrink:0;

  box-shadow:
    0 2px 6px rgba(16,24,40,0.03),
    0 4px 14px rgba(16,24,40,0.03);
}

/* =========================
   QUOTE
========================= */

.quote-icon{
  color:#2d9b68;
  font-size:36px;
  font-weight:800;
  padding:24px 24px 0;
  line-height:1;
}

/* =========================
   TEXT
========================= */

.testimonial-text{
  color:#6b778c;
  font-size:17px;
  line-height:1.7;
  font-weight:500;
  padding:12px 24px 30px;
  min-height:250px;
}

/* =========================
   FOOTER
========================= */

.testimonial-footer{
  border-top:1px solid #edf0f2;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =========================
   USER
========================= */

.testimonial-user h4{
  color:#1f2937;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:6px;
}

.testimonial-user span{
  color:#6b778c;
  font-size:14px;
  font-weight:500;
}

/* =========================
   LOGO
========================= */

.testimonial-logo{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
  border:1px solid #edf0f2;
}

.testimonial-logo img{
  width:44px;
  height:44px;
  object-fit:contain;
}

/* =========================
   AUTO SLIDE ANIMATION
========================= */

@keyframes testimonialScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .testimonial-card{
    width:90vw;
    min-height:auto;
  }

  .testimonial-text{
    min-height:auto;
    font-size:15px;
  }

  .testimonials-heading h2{
    font-size:34px;
  }

}

/* =========================
   AUTO SCROLL
========================= */

@keyframes testimonialScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
   HOVER PAUSE
========================= */

.testimonial-slider:hover .testimonial-track{
  animation-play-state:paused;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .testimonials-heading h2{
    font-size:48px;
  }

}

@media(max-width:768px){

  .testimonials-section{
    padding:70px 0;
  }

  .testimonials-heading h2{
    font-size:38px;
  }

  .testimonial-card{
    width:88vw;
  }

  .testimonial-text{
    font-size:16px;
  }

}

@media(max-width:560px){

  .testimonials-heading h2{
    font-size:32px;
  }

  .testimonial-text{
    font-size:15px;
  }

}


/* =========================
   PRICING SECTION
========================= */

.pricing-section{
  width:100%;
  background:#ffffff;
  padding:90px 0;
}

/* =========================
   WRAPPER
========================= */

.pricing-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* =========================
   LEFT CONTENT
========================= */

.pricing-content{
  max-width:620px;
}

.pricing-content h2{
  color:#173b72;
  font-size:44px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2.5px;
  margin-bottom:28px;
}

.pricing-content p{
  color:#6b778c;
  font-size:16px;
  line-height:1.4;
  font-weight:300;
  max-width:620px;
  margin-bottom:48px;
}

/* =========================
   BUTTONS
========================= */

.pricing-buttons{
  display:flex;
  align-items:center;
  gap:18px;
}

.pricing-btn{
  height:36px;
  padding:0 28px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  transition:0.3s ease;
}

/* PRIMARY */

.pricing-btn.primary-btn{
  background:#2d9b68;
  color:#ffffff;
  box-shadow:
    0 6px 14px rgba(45,155,104,0.16);
}

.pricing-btn.primary-btn:hover{
  background:#248557;
}

/* SECONDARY */

.pricing-btn.secondary-btn{
  background:#ffffff;
  border:1px solid #dfe1e6;
  color:#2d9b68;
}

.pricing-btn.secondary-btn:hover{
  border-color:#2d9b68;
}

/* ICON */

.pricing-btn span{
  font-size:18px;
}

/* =========================
   IMAGE
========================= */

.pricing-image{
  flex-shrink:0;
}

.pricing-image img{
  width:435px;
  height:530px;
  object-fit:cover;
  border-radius:2px;
  display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .pricing-content h2{
    font-size:54px;
  }

  .pricing-content p{
    font-size:20px;
  }

  .pricing-image img{
    width:360px;
    height:auto;
  }

}

@media(max-width:900px){

  .pricing-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .pricing-content{
    max-width:100%;
  }

  .pricing-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .pricing-buttons{
    justify-content:center;
  }

}

@media(max-width:768px){

  .pricing-section{
    padding:70px 0;
  }

  .pricing-content h2{
    font-size:42px;
    line-height:1.1;
  }

  .pricing-content p{
    font-size:18px;
  }

}

@media(max-width:560px){

  .pricing-content h2{
    font-size:34px;
  }

  .pricing-content p{
    font-size:16px;
  }

  .pricing-buttons{
    flex-direction:column;
    width:100%;
  }

  .pricing-btn{
    width:100%;
  }

  .pricing-image img{
    width:100%;
    height:auto;
  }

}

/* =========================
   ITSM APPROACH SECTION
========================= */

.itsm-approach-section{
  width:100%;
  background:#ffffff;
  padding:100px 0 90px;
  overflow:hidden;
}

/* =========================
   HEADING
========================= */

.itsm-heading{
  text-align:center;
  margin-bottom:70px;
}

.itsm-heading h2{
  color:#173b72;
  font-size:44px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2.5px;
  margin-bottom:22px;
}

.itsm-heading p{
  max-width:640px;
  margin:0 auto;
  color:#6b778c;
  font-size:16px;
  line-height:1.4;
  font-weight:300;
}

/* =========================
   TIMELINE
========================= */

.itsm-timeline{
  position:relative;
  max-width:1100px;
  margin:0 auto;
}

/* CENTER LINE */

.timeline-line{
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:100%;
  background:#d7e7df;
  transform:translateX(-50%);
}

/* ROW */

.timeline-row{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:62px;
}

.timeline-row.left{
  padding-right:50%;
}

.timeline-row.right{
  padding-left:50%;
}

/* CONTENT */

.timeline-content{
  width:420px;
}

.timeline-row.left .timeline-content{
  text-align:right;
  padding-right:60px;
}

.timeline-row.right .timeline-content{
  text-align:left;
  padding-left:60px;
}

.timeline-content h3{
  color:#173b72;
  font-size:30px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:14px;
}

.timeline-content p{
  color:#6b778c;
  font-size:17px;
  line-height:1.55;
  font-weight:500;
}

/* ICON */

.timeline-icon{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  background:#edf6f0;
  border:4px solid #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  box-shadow:
    0 4px 10px rgba(16,24,40,0.06);
}

.timeline-icon img{
  width:56px;
  height:56px;
  object-fit:contain;
}

/* =========================
   BUTTON
========================= */

.itsm-bottom-btn{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.itsm-bottom-btn a{
  height:58px;
  padding:0 34px;
  background:#2d9b68;
  color:#ffffff;
  text-decoration:none;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:15px;
  font-weight:700;
  transition:0.3s ease;
  box-shadow:
    0 8px 18px rgba(45,155,104,0.18);
}

.itsm-bottom-btn a:hover{
  background:#248557;
}

.itsm-bottom-btn span{
  font-size:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .itsm-heading h2{
    font-size:52px;
  }

  .timeline-content{
    width:360px;
  }

}

@media(max-width:900px){

  .timeline-line{
    left:30px;
  }

  .timeline-row,
  .timeline-row.left,
  .timeline-row.right{
    padding:0 0 0 90px;
  }

  .timeline-row{
    justify-content:flex-start;
  }

  .timeline-icon{
    left:30px;
  }

  .timeline-content,
  .timeline-row.left .timeline-content,
  .timeline-row.right .timeline-content{
    width:100%;
    text-align:left;
    padding:0;
  }

}

@media(max-width:768px){

  .itsm-approach-section{
    padding:70px 0;
  }

  .itsm-heading h2{
    font-size:42px;
  }

  .itsm-heading p{
    font-size:18px;
  }

  .timeline-content h3{
    font-size:24px;
  }

  .timeline-content p{
    font-size:15px;
  }

}

@media(max-width:560px){

  .itsm-heading h2{
    font-size:34px;
    line-height:1.12;
  }

  .itsm-heading p{
    font-size:16px;
  }

  .timeline-row{
    margin-bottom:50px;
  }

}


/* =========================
   FINAL CTA SECTION
========================= */

.final-cta-section{
  width:100%;
  background:#edf6f0;
  padding:70px 0 78px;
}

/* =========================
   WRAPPER
========================= */

.final-cta-wrapper{
  text-align:center;
}

/* =========================
   HEADING
========================= */

.final-cta-wrapper h2{
  color:#173b72;
  font-size:44px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-2px;
  margin-bottom:38px;
}

/* =========================
   BUTTONS
========================= */

.final-cta-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

/* BUTTON */

.final-cta-btn{
  height:56px;
  padding:0 28px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  transition:0.3s ease;
}

/* PRIMARY */

.final-cta-btn.primary-btn{
  background:#2d9b68;
  color:#ffffff;
  box-shadow:
    0 6px 14px rgba(45,155,104,0.18);
}

.final-cta-btn.primary-btn:hover{
  background:#248557;
}

/* SECONDARY */

.final-cta-btn.secondary-btn{
  background:#ffffff;
  border:1px solid #dfe1e6;
  color:#2d9b68;
}

.final-cta-btn.secondary-btn:hover{
  border-color:#2d9b68;
}

/* ICON */

.final-cta-btn span{
  font-size:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .final-cta-wrapper h2{
    font-size:40px;
    line-height:1.15;
  }

}

@media(max-width:560px){

  .final-cta-section{
    padding:60px 0;
  }

  .final-cta-wrapper h2{
    font-size:32px;
  }

  .final-cta-buttons{
    flex-direction:column;
  }

  .final-cta-btn{
    width:100%;
  }

}


/* =========================
   FOOTER
========================= */

.main-footer{
  width:100%;
  background:#ffffff;
  padding:22px 0 18px;
}

/* =========================
   TOP LOGOS
========================= */

.footer-top{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:34px;
}

/* DESKTOP */

.footer-logo-desktop{
  width:100%;
  max-width:1180px;
  display:block;
  object-fit:contain;
}

/* MOBILE */

.footer-logo-mobile{
  display:none;
  width:100%;
  object-fit:contain;
}

/* =========================
   DIVIDER
========================= */

.footer-divider{
  width:100%;
  height:1px;
  background:#cfd5db;
  margin-bottom:22px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* COPYRIGHT */

.footer-copy{
  color:#1f2937;
  font-size:13px;
  font-weight:500;
}

/* LINKS */

.footer-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.footer-links a{
  text-decoration:none;
  color:#1f2937;
  font-size:13px;
  font-weight:500;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#2d9b68;
}

/* REGIONS */

.footer-regions{
  display:flex;
  align-items:center;
  gap:24px;
}

.footer-regions span{
  color:#1f2937;
  font-size:13px;
  font-weight:500;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  /* SWITCH LOGOS */

  .footer-logo-desktop{
    display:none;
  }

  .footer-logo-mobile{
    display:block;
  }

  /* STACK */

  .footer-bottom{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:18px;
  }

  .footer-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .footer-regions{
    gap:18px;
  }

}

@media(max-width:560px){

  .main-footer{
    padding:20px 0 24px;
  }

  .footer-copy,
  .footer-links a,
  .footer-regions span{
    font-size:12px;
  }

}