:root {
    --g: #172033;
    --g2: #0b6a50;
    --deep: #172033;
    --lime: #c32023;
    --ink: #123b31;
    --muted: #70827b;
    --line: #e1e9e3;
    --soft: #f5f8f4;
    --white: #fff;
    --shadow: 0 24px 70px rgba(5, 55, 42, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6
}

h1,
h2,
h3 {
    font-family: Manrope, sans-serif;
    line-height: 1.08
}

h1 {
    font-size: clamp(48px, 6vw, 60px);
    margin: 20px 0
}

h2 {
    font-size: clamp(38px, 4.5vw, 42px);
    letter-spacing: .5px;
    margin: 12px 0 22px
}

h3 {
    font-size: 23px;
    margin: 8px 0 12px
}

p {
    color: var(--muted);
    font-size: 16px
}

.wrap {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: var(--deep);
    color: #bcd9cd;
    font-size: 14px;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    padding: 9px 0
}

.header {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 30
}

.nav {
    height: 78px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(4, 50, 40, .45);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center
}

.logo img {
    width: 185px;
    display: block
}

.navlinks {
    display: flex;
    gap: 27px;
    margin-left: auto;
    margin-right: 28px
}

.navlinks a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px
}

.btn {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--lime);
    color: #123c31;
    border-radius: 10px;
    padding: 14px 21px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 8px 25px rgba(175, 225, 66, .12)
}

.btn:hover {
    transform: translateY(-3px)
}

.btn span {
    font-size: 18px
}

.header-btn {
    font-size: 13px;
    padding: 12px 17px
}


/* =========================================
   PRIVANTS NAVBAR
========================================= */

* {
  box-sizing: border-box;
}

.main-navbar {
  width: 100%;
  background: #ffffff;

  border-bottom: 1px solid #eeeeee;

  font-family: "Poppins", Arial, sans-serif;

  position: relative;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  height: 78px;

  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


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

.nav-logo {
padding-top: 5px;
}

.nav-logo img {
 width: 220px;
}


/* =========================================
   NAV MENU
========================================= */

.nav-menu {
  list-style: none;

  display: flex;
  align-items: center;

  gap: 5px;

  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 29px 13px;

  color: #172033;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s ease;
}

.nav-menu > li > a:hover,.nav-menu > li > a.active {
  color: #c32023;
}


/* =========================================
   DROPDOWN ARROW
========================================= */

.dropdown-toggle i {
  font-size: 9px;

  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}


/* =========================================
   DROPDOWN MENU
========================================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% - 1px);
  left: 0;

  width: 285px;

  padding: 10px;

  margin: 0;

  list-style: none;

  background: #ffffff;

  border: 1px solid #eeeeee;

  border-top: 3px solid #c32023;

  border-radius: 0 0 12px 12px;

  box-shadow:
    0 15px 40px rgba(3, 63, 45, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(12px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}


/* Desktop Hover */

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


/* Dropdown Items */

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 11px 12px;

  color: #172033;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  border-radius: 8px;

  transition: 0.25s ease;
}

.dropdown-menu li a:hover {
  background: #f4f9e8;

  color: #172033;

  padding-left: 17px;
}


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

.service-icon {
  width: 34px;
  height: 34px;

  min-width: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f0f7df;

  color: #172033;

  border-radius: 8px;

  font-size: 13px;

  transition: 0.25s ease;
}

.dropdown-menu li a:hover .service-icon {
  background: #c32023;

  transform: scale(1.05);
}


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

.nav-cta {
  margin-left: 10px;
}

.nav-cta a {
  background: #172033 !important;

  color: #ffffff !important;

  padding: 12px 17px !important;

  border-radius: 7px;

  gap: 8px !important;
}

.nav-cta a:hover {
  background: #c32023 !important;

  color: #172033 !important;
}

.nav-cta i {
  font-size: 10px;

  transition: 0.3s ease;
}

.nav-cta a:hover i {
  transform: translateX(4px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: none;

  background: #172033;

  color: #c32023;

  border-radius: 7px;

  font-size: 18px;

  cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .nav-menu {
    gap: 0;
  }

  .nav-menu > li > a {
    padding-left: 8px;
    padding-right: 8px;

    font-size: 12px;
  }

  .nav-cta {
    margin-left: 4px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .nav-container {
    height: 70px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;
  }


  /* Mobile Navigation */

  .nav-menu {
    position: absolute;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 12px 20px 20px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    box-shadow:
      0 15px 35px rgba(3, 63, 45, 0.10);

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 2px;
  }

  .nav-menu.active {
    display: flex;
  }


  .nav-menu > li > a {
    padding: 14px 10px;

    font-size: 13px;

    border-radius: 7px;
  }

  .nav-menu > li > a:hover {
    background: #f4f9e8;
  }


  /* Mobile Dropdown */

  .dropdown-menu {
    position: static;

    width: 100%;

    padding: 5px 0 5px 15px;

    border: none;

    border-left: 2px solid #c32023;

    border-radius: 0;

    box-shadow: none;

    background: #fafcf7;

    display: none;

    opacity: 1;
    visibility: visible;

    transform: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }


  /* Disable hover dropdown on mobile */

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: none;
  }


  .dropdown-toggle i {
    margin-left: auto;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }


  .dropdown-menu li a {
    padding: 9px 10px;

    font-size: 12px;
  }


  /* CTA */

  .nav-cta {
    margin: 8px 0 0;
  }

  .nav-cta a {
    justify-content: center;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

}

.hamburger {
    display: none;
    background: transparent;
    border: 0
}

.hero {
    min-height: 850px;
    background:linear-gradient(135deg, #172033e6, #172033bd), url(/assets/hero.jpg);
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 20px;
    padding-bottom:80px;
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(217, 255, 103, .13), transparent 35%), radial-gradient(circle at 10% 80%, rgba(150, 225, 70, .08), transparent 32%)
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .15
}

.hero-shape.one {
    width: 450px;
    height: 450px;
    border: 1px solid #d9ff67;
    right: -180px;
    top: 160px
}

.hero-shape.two {
    width: 600px;
    height: 600px;
    border: 1px solid #d9ff67;
    left: -430px;
    bottom: -300px
}

.hero-grid {
    min-height: 730px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 30px;
    position: relative
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .06);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

.pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime)
}

.hero-copy p {
    max-width: 600px;
    color: #c9dfd5;
    font-size: 18px
}

.hero-copy em,
.section-head em,
h2 em {
    color: var(--lime);
    font-style: normal
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 32px 0
}

.call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none
}

.call b {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .1)
}

.call span {
    font-size: 15px;
    color: #a9c8bd
}

.call strong {
    display: block;
    color: #fff;
    font-size: 17px
}

.micro-trust {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #aaccc0;
    font-size: 15px
}

.micro-trust span:first-child {
    color: var(--lime);
    font-size:22px;
}

.micro-trust b {
    color: #fff
}

.hero-visual {
    position: relative
}

.hero-visual>img {
    width: 100%;
    display: block;
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25)
}

.floating-stat,
.floating-safe {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 16px 18px
}

.floating-stat {
    left: 85px;
    bottom: 75px;
}

.floating-stat b {
    font: 800 32px Manrope;
    display: block
}

.floating-stat span {
    font-size: 16px;
    color: var(--muted)
}

.floating-safe {
    right: -20px;
    top: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px
}

.floating-safe div {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: var(--lime);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.floating-safe b {
    font-size: 15px
}

.quick {
    position: relative;
    z-index: 10;
    margin-top: -45px
}

.quick-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
    border-radius: 18px;
    padding: 19px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: center
}

.quick-title small {
    display: block;
    font-size: 13px;
    color: #c32023;
    font-weight: 800;
    letter-spacing: 1.5px
}

.quick-title b {
    font: 800 16px Manrope
}

.quick select,
.quick input,
.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    font: inherit
}

.section {
    padding: 120px 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.media-card {
    position: relative
}

.media-card>img {
    width: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

.experience {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: var(--lime);
    padding: 20px 23px;
    border-radius: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: var(--shadow)
}

.experience b {
    font: 800 50px Manrope;
}

.experience span {
    font-size: 18px;
    line-height: 1.2
}

.eyebrow {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    color: #c32023
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    margin: 20px 0
}

.check-grid div {
    position: relative
}

.check-grid b {
    display: block;
    font-size: 16px
}

.check-grid span {
    display: block;
    color: var(--muted);
    font-size: 14px
}

.text-link {
    color: var(--g);
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.text-link span {
    margin-left: 7px;
    font-size: 28px;
}

.services {
    background: var(--soft)
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
    margin-bottom: 50px
}

.section-head>p {
    max-width: 390px;
    margin: 0
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: .3s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.service-card>img {
    width: 130px;
    display: block;
    margin: auto;
    padding-top: 20px;
}

.service-content {
    padding:20px;
    padding-top: 0;
}

.service-content>span {
    color: #7ca05f;
    font-weight: 900;
    font-size: 18px
}

.service-content p {
    font-size: 14px
}

.service-content>b {
    font-size: 15px;
    color: var(--g)
}

.service-content i {
    font-style: normal
}

.service-more {
    border-radius: 22px;
    background: var(--g);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.service-more p {
    color: #b8d5ca;
    font-size: 13px
}

.service-more a {
    color: var(--lime);
    font-weight: 800;
    text-decoration: none;
    font-size: 13px
}

.round {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    color: var(--g);
    font-size: 25px;
    font-weight: 900
}

.dark-section {
    padding: 120px 0;
    background: var(--deep);
    color: #fff;
    overflow: hidden
}

.dark-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center
}

.dark-copy p {
    color: #a9c9bd;
    max-width: 520px
}

.numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 35px 0
}

.numbers div {
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 16px
}

.numbers b {
    display: block;
    font: 800 38px Manrope;
    color: var(--lime)
}

.numbers span {
    font-size: 15px;
    color: #91b3a7
}

.why-panel {
    position: relative
}

.why-image img {
    width: 100%;
    border-radius: 28px
}

.why-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: -50px;
    position: relative;
    padding: 0 18px
}

.why-points div {
    background: #fff;
    color: var(--ink);
    padding: 17px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.why-points span {
    display: block;
    color: #c32023;
    font-size: 14px;
    font-weight: 900
}

.why-points b {
    font-size: 16px
}

.why-points p {
    font-size: 15px;
    margin: 5px 0 0
}

.process {
    background: #fff
}

.center {
    text-align: center
}

.process-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center
}

.process-layout>img {
    width: 100%;
    border-radius: 28px
}

.process-copy {
    display: grid;
    gap: 22px
}

.process-copy>div {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px
}

.process-copy b {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    font-size: 12px
}

.process-copy h3 {
    margin: 0;
    font-size: 18px
}

.process-copy p {
    margin: 0;
    font-size: 13px
}

.pricing {
    background: var(--soft)
}

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

.price-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
    position: relative
}

.price-grid .popular {
    background: var(--g);
    color: #fff;
    transform: translateY(-12px);
    box-shadow: var(--shadow)
}

.popular-tag {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--lime);
    color: var(--g);
    font-size: 9px;
    font-weight: 900;
    padding: 6px 9px;
    border-radius: 30px
}

.price-grid span {
    font-size: 11px;
    color: #c32023;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px
}

.price {
    display: block;
    font: 800 38px Manrope;
    margin: 17px 0 5px
}

.price small {
    font: 400 12px "DM Sans";
    color: var(--muted)
}

.popular .price small {
    color: #a7c8bb
}

.price-grid p {
    font-size: 13px
}

.price-grid ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    gap: 10px
}

.price-grid li {
    font-size: 13px
}

.price-grid li:before {
    content: "✓";
    color: #c32023;
    font-weight: 900;
    margin-right: 8px
}

.ghost {
    background: transparent;
    border: 1px solid #b8d5ca
}

.testimonial {
    padding: 105px 0;
    background: linear-gradient(135deg, #172033, #172033);
    color: #fff
}

.test-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px
}

.test-head h2 {
    margin-bottom: 0
}

.rating {
    display: flex;
    gap: 13px;
    align-items: center
}

.rating>b {
    font: 800 43px Manrope;
    color: var(--lime)
}

.rating span {
    color: var(--lime);
    letter-spacing: 3px;
    font-size: 16px;
}

.rating small {
    display: block;
    color: #aaccc0;
    letter-spacing: 0;
    font-size: 14px
}

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

.test-grid article {
    padding: 28px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px
}

.stars {
    color: var(--lime);
    letter-spacing: 3px
}

.test-grid p {
    color: #d0e2db;
    font-size: 14px;
    min-height: 115px
}

.test-grid b {
    font-size: 16px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.team-grid article {
    text-align: center
}

.team-grid img {
    width: 100%;
    display: block;
    border-radius: 22px;
    margin-bottom: 14px
}

.team-grid b {
    display: block
}

.team-grid span {
    color: var(--muted);
    font-size: 12px
}

.faq {
    background: var(--soft)
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.faq-list {
    display: grid;
    gap: 10px
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 19px 21px
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 20px;
}

.faq-list p {
    font-size: 15px;
    margin: 12px 0 0
}

.insights {
    background: #fff
}

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

.blog-grid article {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden
}

.blog-grid img {
    width: 100%;
    display: block
}

.blog-grid small,
.blog-grid h3,
.blog-grid a {
    display: block;
    margin-left: 23px;
    margin-right: 23px
}

.blog-grid small {
    margin-top: 18px;
    color: #c32023;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase
}

.blog-grid h3 {
    font-size: 19px
}

.blog-grid a {
    margin-bottom: 22px;
    color: var(--g);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none
}

.contact {
    background: var(--g);
    color: #fff;
    padding: 110px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.contact p {
    color: #b8d4c9;
    max-width: 520px
}

.contact-info {
    display: grid;
    gap: 14px;
    margin-top: 30px
}

.contact-info span {
    color: #a8c9bc
}

.contact-info b {
    color: #fff
}

.contact form {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: grid;
    gap: 12px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form-message {
    color: var(--g);
    font-size: 13px;
    font-weight: 700
}

/* ================================
   WHY CHOOSE US SECTION
================================ */

.why-choose-section {
  width: 100%;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
}

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


/* Heading */

.why-heading {
  text-align: center;
  margin-bottom: 30px;
}

.why-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  background: #f3f9e9;
  color: #172033;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.why-heading h2 {
  margin: 0;
  color: #172033;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 700;
}


/* Main Content */

.why-content {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  align-items: center;
  gap: 45px;
}


/* Feature Columns */

.why-column {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.left-column {
  text-align: right;
}

.right-column {
  text-align: left;
}


/* Feature Card */

.why-card {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.why-card-text {
  flex: 1;
}

.why-card h3 {
  margin: 0 0 7px;
  color: #172033;
  font-size: 21px;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  color: #777;
  font-size: 16px;
  line-height: 1.65;
}


/* Icons */

.why-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c32023;
  border-radius: 50%;

  color: #172033;
  font-size: 20px;

  box-shadow: 0 8px 20px rgba(3, 63, 45, 0.08);
}

.why-icon i {
  transition: 0.3s ease;
}

.why-card:hover .why-icon i {
  transform: scale(1.15);
}


/* Center Technician */

.why-center {
  position: relative;
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}


/* Green Glow / Circle */

.image-circle {
  position: absolute;

  width: 320px;
  height: 320px;

  bottom: 20px;

  background: #f4f9ed;
  border-radius: 50%;

  z-index: 0;
}

.image-circle::before {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  top: 35px;
  left: 35px;

  border-radius: 50%;

  border: 2px dashed #c32023;
}


/* Technician Image */

.technician-img {
  position: relative;

  z-index: 2;

  width: 320px;
  max-height: 420px;

  object-fit: contain;

  filter: drop-shadow(
    0 20px 25px rgba(3, 63, 45, 0.12)
  );
}


/* Decorative Arrows */

.left-column .why-card:first-child::after {
  content: "⌁";

  position: absolute;
  right: -48px;
  bottom: -28px;

  color: #172033;
  font-size: 32px;

  transform: rotate(-25deg);
}

.right-column .why-card:first-child::before {
  content: "⌁";

  position: absolute;
  left: -48px;
  bottom: -28px;

  color: #172033;
  font-size: 32px;

  transform: rotate(25deg);
}


/* Bottom CTA */

.why-bottom {
  width: fit-content;
  max-width: 100%;

  margin: 0px auto 0;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 9px 18px;

  border-radius: 50px;

  background: #ffffff;

  box-shadow:
    0 8px 30px rgba(3, 63, 45, 0.10);
}

.bottom-avatar {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #c32023;
  color: #172033;

  font-size: 13px;
  font-weight: 700;
}

.why-bottom p {
  margin: 0;

  color: #777;
  font-size: 16px;
}

.why-bottom a {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #172033;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;
}

.why-bottom a i {
  font-size: 10px;
  transition: 0.3s ease;
}

.why-bottom a:hover i {
  transform: translateX(4px);
}


/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

  .why-choose-section {
    padding: 75px 20px;
  }

  .why-heading h2 {
    font-size: 35px;
  }

  .why-content {
    grid-template-columns: 1fr 280px 1fr;
    gap: 20px;
  }

  .why-center {
    height: 380px;
  }

  .technician-img {
    width: 270px;
  }

  .image-circle {
    width: 260px;
    height: 260px;
  }

  .why-column {
    gap: 55px;
  }

  .why-card p {
    font-size: 10px;
  }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

  .why-choose-section {
    padding: 60px 18px;
  }

  .why-heading {
    margin-bottom: 35px;
  }

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

  .why-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Center image first */

  .why-center {
    order: 1;

    width: 100%;
    height: 330px;
  }

  .left-column {
    order: 2;
  }

  .right-column {
    order: 3;
  }

  .why-column {
    width: 100%;
    gap: 20px;
  }

  .left-column,
  .right-column {
    text-align: left;
  }

  .why-card {
    padding: 15px;

    border-radius: 16px;

    background: #f8fbf4;

    border: 1px solid rgba(3, 63, 45, 0.06);
  }

  .left-column .why-card {
    flex-direction: row-reverse;
    text-align: right;
  }

  .left-column .why-card:first-child::after,
  .right-column .why-card:first-child::before {
    display: none;
  }

  .technician-img {
    width: 250px;
  }

  .image-circle {
    width: 250px;
    height: 250px;
  }

  .why-bottom {
    margin-top: 35px;

    flex-wrap: wrap;
    justify-content: center;

    padding: 12px 18px;
  }

  .why-bottom p {
    display: none;
  }

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {

  .why-heading h2 {
    font-size: 25px;
  }

  .why-label {
    font-size: 9px;
  }

  .why-card h3 {
    font-size: 14px;
  }

  .why-card p {
    font-size: 10px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 17px;
  }

  .why-center {
    height: 290px;
  }

  .technician-img {
    width: 220px;
  }

  .image-circle {
    width: 220px;
    height: 220px;
  }

}

footer {
    background: #eee;
}

.footer-grid {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 50px;
}

footer .footer-grid.wrap {
    width: min(1361px, 92%);
    margin: auto;
}
.footer-grid img {
    width: 240px
}

.footer-grid p {
    color: #000;
    margin-top:20px;
    font-size: 16px;
    max-width: 280px
}

.footer-grid>b,
.footer-grid>div>b {
    font-size: 20px
}

.footer-grid a,
.footer-grid span {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    margin-top: 7px;
    transition: .5s;
}
.footer-grid a:hover{
    color: #c32023;
}
.social {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.social a {
    margin: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #172033;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 18px;
}

.bottom {
    border-top: 1px solid #21473e
}

.bottom .wrap {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    color: #172033;
    font-size: 15px
}

.reveal {
    opacity: 1;
    transform: translateY(22px);
    transition: .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay {
    transition-delay: .15s
}

@media(max-width:1000px) {
    .navlinks {
        display: none
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        margin-right: 14px
    }

    .hamburger span {
        width: 23px;
        height: 2px;
        background: #fff
    }

    .navlinks.open {
        display: flex;
        position: absolute;
        left: 15px;
        right: 15px;
        top: 70px;
        background: #073f32;
        padding: 20px;
        border-radius: 14px;
        flex-direction: column
    }

    .hero-grid,
    .split,
    .dark-grid,
    .process-layout,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding: 70px 0
    }

    .hero {
        padding-top: 100px
    }

    .hero-visual {
        max-width: 760px
    }

    .quick-card {
        grid-template-columns: 1fr 1fr
    }

    .quick-title {
        grid-column: 1/-1
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .price-grid .popular {
        transform: none
    }

    .team-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .section-head {
        align-items: start;
        flex-direction: column
    }

    .process-layout {
        gap: 35px
    }

    .test-head {
        align-items: start;
        flex-direction: column
    }

    .test-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:650px) {
    h1 {
        letter-spacing: .5px
    }

    .topbar .wrap {
        display: none
    }

    .header {
        top: 10px
    }

    .nav {
        height: 65px
    }

    .logo img {
        width: 145px
    }

    .header-btn {
        display: none
    }

    .hero {
        padding-top: 35px;
        min-height: auto
    }

    .hero-grid {
        min-height: auto;
        padding: 60px 0 85px;
        padding-top: 0px;
    }
.pill{
    font-size: 10px;
}
    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .floating-stat {
        left: 10px;
        bottom: 18px
    }
.faq-list summary {
    font-weight: 700;
    font-size: 17px;
}
h2 {
    font-size: clamp(30px, 4.5vw, 42px);
    letter-spacing: -0.5px;
}
.image-circle::before{
    display: none;
}

    .floating-safe {
        right: 8px;
        top: 18px
    }

    .quick {
        margin-top: 0
    }

    .quick-card,
    .service-grid,
    .check-grid,
    .numbers,
    .why-points,
    .test-grid,
    .team-grid,
    .blog-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr
    }

    .section {
        padding: 80px 0
    }

    .split,
    .dark-grid,
    .contact-grid {
        gap: 45px
    }

    .experience {
        right: 10px
    }

    .section-head {
        margin-bottom: 35px
    }

    .service-more {
        min-height: 220px
    }

    .why-points {
        margin-top: 15px;
        padding: 0
    }

    .price-grid .popular {
        transform: none
    }

    .bottom .wrap {
        flex-direction: column;
        gap: 7px
    }

    .micro-trust {
        flex-wrap: wrap
    }

    .contact {
        padding: 80px 0
    }
}

/* ===About-Us-Page=== */


/* =========================================
   GLOBAL
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #172033;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.about-container {
  width: min(1200px, 92%);
  margin: auto;
}


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

.section-label {
  display: inline-block;

  padding: 6px 13px;

  background: #f1f8df;

  color: #172033;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.section-heading {
  max-width: 700px;
}

.section-heading.center {
  text-align: center;
  margin: 0 auto 55px;
}

.section-heading h2,
.intro-content h2,
.why-content h2 {
  margin-top: 15px;

  color: #172033;

  font-size: 40px;
  line-height: 1.2;

  font-weight: 700;
}

.section-heading h2 span,
.intro-content h2 span,
.why-content h2 span,
.hero-text h1 span,
.about-cta h2 span {
  color: #739b1e;
}

.section-heading p {
  margin-top: 15px;

  color: #6c7772;

  font-size: 16px;
  line-height: 1.8;
}


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

.about-hero {
  position: relative;

  padding: 45px 0 85px;

  background:
    linear-gradient(
      135deg,
      #f7fbf0 0%,
      #ffffff 65%
    );

  overflow: hidden;
}

.about-hero::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -220px;
  top: 80px;

  background: #c32023;

  opacity: 0.10;

  border-radius: 50%;
}

.hero-breadcrumb {
  display: flex;
  gap: 9px;

  color: #718078;

  font-size: 15px;

}

.hero-breadcrumb a {
  color: #172033;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 0.9fr;

  align-items: center;

  gap: 70px;
}

.hero-text h1 {
  max-width: 650px;

  margin: 17px 0;

  color: #172033;

  font-size: 52px;
  line-height: 1.12;

  font-weight: 700;
}

.hero-text p {
  max-width: 570px;

  color: #65716b;

  font-size: 16px;

  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  gap: 12px;

  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 13px 20px;

  border-radius: 7px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-primary {
  background: #172033;
  color: #ffffff;
}

.btn-primary:hover {
  background: #c32023;
  color: #172033;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #dce7d5;

  color: #172033;

  background: #ffffff;
}

.btn-secondary:hover {
  border-color: #c32023;
  background: #f5fae9;
}


/* Hero Image */

.hero-image {
  position: relative;

  min-height: 470px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-image-bg {
  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background: #eaf4d6;

  border: 1px solid #dceabf;
}

.hero-image img {
  position: relative;
  z-index: 2;

  width: 380px;
  max-height: 470px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 20px 25px rgba(3, 63, 45, 0.12)
    );
}

.experience-badge {
  position: absolute;

  right: 5px;
  bottom: 45px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 14px 18px;

  background: #ffffff;

  border-radius: 12px;

  box-shadow:
    0 12px 35px rgba(3, 63, 45, 0.12);
}

.experience-badge strong {
  color: #172033;

  font-size: 45px;
}

.experience-badge span {
  color: #68736d;

  font-size: 16px;

  line-height: 1.5;
}


/* =========================================
   INTRO
========================================= */

.about-intro {
  padding: 100px 0;
}

.intro-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;

  align-items: center;
}

.intro-image {
  position: relative;

  padding: 20px;
}

.image-box {
  overflow: hidden;

  border-radius: 20px;

  background: #edf5df;
}

.image-box img {
  width: 100%;

  min-height: 480px;

  object-fit: cover;
}

.experience-card {
  position: absolute;

  right: -5px;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 18px;

  background: #172033;

  color: #ffffff;

  border-radius: 10px;

  box-shadow:
    0 15px 35px rgba(3, 63, 45, 0.2);
}

.experience-card i {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  font-size: 18px;
}

.experience-card span {
  margin-top: 2px;

  color: #b9c7c0;

  font-size: 15px;
}

.intro-content h2 {
  max-width: 600px;
}

.intro-content > p {
  margin-top: 16px;

  color: #69756f;

  font-size: 15px;

  line-height: 1.85;
}


/* About Points */

.about-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

  margin-top: 28px;
}

.about-point {
  display: flex;

  align-items: flex-start;

  gap: 9px;
}

.about-point > i {
  color: #739b1e;

  margin-top: 2px;

  font-size: 14px;
}

.about-point strong,
.about-point span {
  display: block;
}

.about-point strong {
  color: #172033;

  font-size: 11px;
}

.about-point span {
  margin-top: 3px;

  color: #7b8580;

  font-size: 9px;
}


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

.about-stats {
  padding: 50px 0;

  background: #172033;
}

.stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;
}

.stat-item {
  text-align: center;

  padding: 10px;

  border-right:
    1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  width: 45px;
  height: 45px;

  margin: 0 auto 12px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(199, 242, 104, 0.13);

  color: #c32023;

  border-radius: 50%;

  font-size: 16px;
}

.stat-item strong {
  display: block;

  color: #ffffff;

  font-size: 38px;
}

.stat-item span {
  display: block;

  margin-top: 3px;

  color: rgba(255,255,255,0.60);

  font-size: 15px;
}


/* =========================================
   MISSION
========================================= */

.mission-section {
  padding: 100px 0;

  background: #f8fbf4;
}

.mission-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;
}

.mission-card {
  padding: 35px 30px;

  background: #ffffff;

  border: 1px solid #e7eee0;

  border-radius: 16px;

  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 15px 35px rgba(3, 63, 45, 0.08);
}

.mission-card.featured {
  background: #172033;
  border-color: #172033;
}

.mission-icon {
  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 12px;

  font-size: 36px;
}

.mission-card h3 {
  margin-top: 22px;

  color: #172033;

  font-size: 22px;
}

.mission-card.featured h3 {
  color: #ffffff;
}

.mission-card p {
  margin-top: 12px;

  color: #707b76;

  font-size: 15px;

  line-height: 1.8;
}

.mission-card.featured p {
  color: rgba(255,255,255,0.65);
}


/* =========================================
   WHY CHOOSE
========================================= */

.why-about {
  padding: 100px 0;
}

.why-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: center;
}

.why-content > p {
  max-width: 570px;

  margin-top: 15px;

  color: #6f7b75;

  font-size: 13px;

  line-height: 1.8;
}

.why-list {
  margin-top: 35px;
}

.why-item {
  display: flex;

  gap: 18px;

  padding: 18px 0;

  border-bottom:
    1px solid #edf1eb;
}

.why-number {
  color: #c32023;

  font-size: 13px;
  font-weight: 700;
}

.why-item h3 {
  color: #172033;

  font-size: 14px;
}

.why-item p {
  margin-top: 5px;

  color: #7a847f;

  font-size: 10px;

  line-height: 1.7;
}


/* Why Image */

.why-image {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.why-image-bg {
  position: absolute;

  width: 390px;
  height: 390px;

  background: #f0f7df;

  border-radius: 50%;
}

.why-image img {
  position: relative;
  z-index: 2;

  width: 360px;

  max-height: 480px;

  object-fit: contain;
}

.floating-card {
  position: absolute;

  z-index: 4;

  left: 0;
  bottom: 45px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 13px 17px;

  background: #ffffff;

  border-radius: 10px;

  box-shadow:
    0 12px 35px rgba(3,63,45,0.12);
}

.floating-card i {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: #172033;

  font-size: 11px;
}

.floating-card span {
  color: #7b8580;

  font-size: 9px;

  margin-top: 2px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
  padding: 100px 0;

  background: #f8fbf4;
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.process-card {
  position: relative;

  padding: 30px 25px;

  background: #ffffff;

  border: 1px solid #e8eee2;

  border-radius: 15px;

  text-align: center;

  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);

  border-color: #c32023;

  box-shadow:
    0 15px 30px rgba(3,63,45,0.07);
}

.process-number {
  position: absolute;

  top: 15px;
  right: 18px;

  color: #c8d3c7;

  font-size: 18px;

  font-weight: 700;
}

.process-card > i {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 5px auto 20px;

  background: #c32023;

  color: #172033;

  border-radius: 50%;

  font-size: 18px;
}

.process-card h3 {
  color: #172033;

  font-size: 22px;
}

.process-card p {
  margin-top: 9px;

  color: #78827d;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.about-cta {
  padding: 80px 0;
}

.cta-box {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 55px 60px;

  background: #172033;

  border-radius: 22px;

  overflow: hidden;
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -120px;
  top: -130px;

  background: #c32023;

  opacity: 0.08;

  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .section-label {
  background: rgba(199,242,104,0.13);
  color: #c32023;
}

.about-cta h2 {
  max-width: 600px;

  margin-top: 13px;

  color: #ffffff;

  font-size: 34px;

  line-height: 1.25;
}

.about-cta h2 span {
  color: #c32023;
}

.cta-content p {
  max-width: 550px;

  margin-top: 12px;

  color: rgba(255,255,255,0.63);

  font-size: 16px;

  line-height: 1.7;
}

.cta-buttons {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 10px;
}

.cta-call,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 25px;

  border-radius: 7px;

  font-size: 16px;

  font-weight: 600;

  white-space: nowrap;

  transition: 0.3s ease;
}
.cta-whatsapp i{
    font-size: 25px;
}
.cta-call {
  background: #c32023;
  color: #172033;
}

.cta-whatsapp {
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;
}

.cta-call:hover {
  background: #ffffff;
}

.cta-whatsapp:hover {
  background: #ffffff;
  color: #172033;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .hero-content,
  .intro-grid,
  .why-grid {
    gap: 45px;
  }

  .hero-text h1 {
    font-size: 43px;
  }

  .section-heading h2,
  .intro-content h2,
  .why-content h2 {
    font-size: 34px;
  }

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

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

  .cta-box {
    padding: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .about-hero {
    padding: 30px 0 60px;
  }

  .hero-breadcrumb {
    margin-bottom: 35px;
  }

  .hero-content,
  .intro-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-text {
    text-align: center;
  }

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

  .hero-text p {
    font-size: 12px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image-bg {
    width: 290px;
    height: 290px;
  }

  .hero-image img {
    width: 280px;
    max-height: 350px;
  }

  .experience-badge {
    right: 5px;
    bottom: 15px;
  }


  /* Intro */

  .about-intro,
  .why-about,
  .mission-section,
  .process-section {
    padding: 70px 0;
  }

  .intro-grid {
    gap: 45px;
  }

  .image-box img {
    min-height: 350px;
  }

  .intro-content h2,
  .why-content h2,
  .section-heading h2 {
    font-size: 30px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }


  /* Stats */

  .about-stats {
    padding: 40px 0;
  }

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

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding-bottom: 20px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: 0;
    padding-top: 10px;
  }


  /* Why */

  .why-grid {
    gap: 45px;
  }

  .why-image {
    min-height: 380px;
    order: -1;
  }

  .why-image-bg {
    width: 290px;
    height: 290px;
  }

  .why-image img {
    width: 270px;
    max-height: 370px;
  }

  .floating-card {
    left: 5px;
    bottom: 20px;
  }


  /* Process */

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


  /* CTA */

  .about-cta {
    padding: 60px 0;
  }

  .cta-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 35px 25px;
  }

  .about-cta h2 {
    font-size: 27px;
  }

  .cta-buttons {
    width: 100%;

    flex-wrap: wrap;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 29px;
  }

  .section-heading h2,
  .intro-content h2,
  .why-content h2 {
    font-size: 27px;
  }

  .hero-image {
    min-height: 310px;
  }

  .hero-image-bg {
    width: 245px;
    height: 245px;
  }

  .hero-image img {
    width: 235px;
    max-height: 310px;
  }

  .experience-badge {
    padding: 10px 12px;
  }

  .experience-badge strong {
    font-size: 20px;
  }

  .mission-card {
    padding: 25px 20px;
  }

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

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

  .cta-call,
  .cta-whatsapp {
    justify-content: center;

    width: 100%;
  }

}

/* ===Contact-Us-Page=== */

/* =========================================
   GLOBAL
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #172033;
  background: #ffffff;
}

a {
  text-decoration: none;
}

.contact-container {
  width: min(1200px, 92%);
  margin: auto;
}


/* =========================================
   COMMON LABEL
========================================= */

.contact-label {
  display: inline-block;

  padding: 6px 13px;

  background: #eff7df;

  color: #172033;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1.4px;
}


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

.contact-hero {
  position: relative;

  padding: 40px 0 70px;

  background:
    linear-gradient(
      135deg,
      #f6faef,
      #ffffff
    );

  overflow: hidden;
}

.contact-hero::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  right: -200px;
  top: -180px;

  background: #c32023;

  opacity: 0.10;

  border-radius: 50%;
}

.contact-breadcrumb {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 9px;

  margin-bottom: 25px;

  font-size: 15px;

  color: #77837d;
}

.contact-breadcrumb a {
  color: #172033;
  font-weight: 600;
}

.contact-hero-content {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.contact-hero h1 {
  max-width: 700px;

  margin-top: 16px;

  color: #172033;

  font-size: 48px;

  line-height: 1.15;
}

.contact-hero h1 span {
  color: #c32023;
}

.contact-hero p {
  max-width: 650px;

  margin-top: 15px;

  color: #68746e;

  font-size: 13px;

  line-height: 1.8;
}

.contact-hero-icon {
  width: 125px;
  height: 125px;

  min-width: 125px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #172033;

  color: #c32023;

  border-radius: 50%;

  font-size: 42px;

  box-shadow:
    0 20px 40px rgba(3, 63, 45, 0.15);
}


/* =========================================
   CONTACT MAIN
========================================= */

.contact-main {
  padding: 100px 0;
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: start;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info h2 {
  margin-top: 15px;

  color: #172033;

  font-size: 38px;

  line-height: 1.2;
}

.contact-info h2 span {
  color: #c32023;
}

.contact-description {
  max-width: 450px;
  color: #707b76;

  font-size: 15px;

  line-height: 1.8;
}


/* Contact Item */

.contact-item {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 25px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;

  min-width: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #eff7df;

  color: #172033;

  border-radius: 10px;

  font-size: 16px;

  transition: 0.3s ease;
}
.contact-item-icon i{
    font-size: 22px;
}
.contact-item:hover .contact-item-icon {
  background: #c32023;

  transform: translateY(-2px);
}

.contact-item span,
.contact-item a,
.contact-item strong {
  display: block;
}

.contact-item span {
  color: #8a938e;

  font-size: 15px;

  margin-bottom: 3px;
}

.contact-item a,
.contact-item strong {
  color: #172033;

  font-size: 16px;

  font-weight: 600;
}

.contact-item a:hover {
  color: #c32023;
}


/* Social */

.contact-social {
  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid #edf0eb;
}

.contact-social > span {
  color: #69756f;

  font-size: 20px;

  font-weight: 600;
}

.social-links {
  display: flex;

  gap: 8px;

  margin-top: 12px;
}

.social-links a {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f0f7e2;

  color: #172033;

  border-radius: 50%;

  font-size: 12px;

  transition: 0.3s ease;
}

.social-links a:hover {
  background: #172033;

  color: #c32023;

  transform: translateY(-3px);
}


/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
  padding: 40px;

  background: #ffffff;

  border: 1px solid #e7eee1;

  border-radius: 18px;

  box-shadow:
    0 15px 45px rgba(3, 63, 45, 0.07);
}

.form-header h2 {
  margin-top: 12px;

  color: #172033;

  font-size: 28px;
}

.form-header h2 span {
  color: #c32023;
}

.form-header p {
  margin-top: 7px;
  color: #7a8580;
  font-size: 16px;
}


/* Form Row */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

#contactForm {
  margin-top: 28px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;

  margin-bottom: 7px;

  color: #172033;

  font-size: 15px;

  font-weight: 600;
}


/* Input */

.input-box,
.textarea-box {
  position: relative;
}

.input-box i,
.textarea-box i {
  position: absolute;

  left: 13px;
  top: 50%;

  transform: translateY(-50%);

  color: #c32023;

  font-size: 12px;

  pointer-events: none;
}

.textarea-box i {
  top: 18px;

  transform: none;
}

.input-box input,
.input-box select,
.textarea-box textarea {
  width: 100%;

  border: 1px solid #e2e9df;

  outline: none;

  background: #fafcf9;

  color: #172033;

  font-family: inherit;

  font-size: 14px;

  border-radius: 7px;

  transition: 0.3s ease;
}

.input-box input,
.input-box select {
  height: 45px;

  padding: 0 13px 0 38px;
}

.textarea-box textarea {
  min-height: 80px;

  resize: vertical;

  padding: 13px 13px 13px 38px;
}

.input-box input::placeholder,
.textarea-box textarea::placeholder {
  color: #a1aaa5;
}

.input-box input:focus,
.input-box select:focus,
.textarea-box textarea:focus {
  border-color: #c32023;

  background: #ffffff;

  box-shadow:
    0 0 0 3px rgba(199, 242, 104, 0.12);
}


/* Select */

.input-box select {
  cursor: pointer;

  appearance: auto;
}


/* Submit */

.submit-btn {
  width: 100%;

  height: 48px;

  border: none;

  border-radius: 7px;

  background: #172033;

  color: #ffffff;

  font-family: inherit;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #c32023;

  color: #172033;

  transform: translateY(-2px);
}

.submit-btn i {
  margin-left: 7px;
}

.form-note {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 6px;

  margin-top: 13px;

  color: #89938e;

  font-size: 14px;
}

.form-note i {
  color: #c32023;
}


/* =========================================
   SERVICE AREA
========================================= */

.service-area {
  padding: 90px 0;

  background: #f7faf3;
}

.section-title {
  max-width: 650px;

  margin: auto;

  text-align: center;
}

.section-title h2 {
  margin-top: 15px;

  color: #172033;

  font-size: 36px;

  line-height: 1.2;
}

.section-title h2 span {
  color: #c32023;
}

.section-title p {
  color: #727d77;

  font-size: 15px;

  line-height: 1.8;
}


/* City Grid */

.city-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin-top: 25px;
}

.city-card {
  display: flex;

  align-items: center;

  gap: 13px;

  padding:10px 15px;

  background: #ffffff;

  border: 1px solid #e6ede0;

  border-radius: 13px;

  color: #172033;

  transition: 0.3s ease;
}

.city-card:hover {
  border-color: #c32023;

  transform: translateY(-5px);

  box-shadow:
    0 15px 30px rgba(3, 63, 45, 0.08);
}

.city-icon {
  width: 85px;
  height: 85px;

  min-width: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #eff7df;

  color: #172033;

  border-radius: 9px;
}
.city-icon i{
    font-size: 35px;
}
.city-card div:nth-child(2){
    flex: 1;
}
.city-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}

.city-card p {
  margin-top: 3px;

  color: #818b86;

  font-size: 15px;

  line-height: 1.5;
}

.city-arrow {
  margin-left: auto;

  color: #9baa96;

  font-size: 10px;

  transition: 0.3s ease;
}

.city-card:hover .city-arrow {
  color: #172033;

  transform: translateX(4px);
}


/* =========================================
   MAP
========================================= */

.map-section {
  padding: 80px 0;
}

.map-box {
  width: 100%;

  height: 400px;

  overflow: hidden;

  border-radius: 18px;

  border: 1px solid #e3e9df;

  box-shadow:
    0 15px 40px rgba(3,63,45,0.07);
}

.map-box iframe {
  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================
   CTA
========================================= */

.contact-cta {
  padding: 70px 0 90px;
}

.cta-inner {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 50px 55px;

  background: #172033;

  border-radius: 20px;

  overflow: hidden;
}

.cta-inner::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -130px;
  top: -160px;

  background: #c32023;

  opacity: 0.08;

  border-radius: 50%;
}

.cta-inner > div:first-child {
  position: relative;
  z-index: 2;
}

.cta-inner .contact-label {
  background: rgba(199, 242, 104, 0.12);

  color: #c32023;
}

.cta-inner h2 {
  max-width: 600px;

  margin-top: 13px;

  color: #ffffff;

  font-size: 32px;

  line-height: 1.25;
}

.cta-inner h2 span {
  color: #c32023;
}

.cta-inner p {
  max-width: 550px;

  margin-top: 10px;

  color: rgba(255,255,255,0.62);

  font-size: 16px;

  line-height: 1.7;
}

.cta-buttons {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 10px;
}

.cta-call,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 13px 18px;

  border-radius: 7px;

  font-size: 16px;

  font-weight: 600;

  white-space: nowrap;

  transition: 0.3s ease;
}

.cta-call {
  background: #c32023;

  color: #172033;
}

.cta-whatsapp {
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;
}

.cta-call:hover {
  background: #ffffff;
}

.cta-whatsapp:hover {
  background: #ffffff;

  color: #172033;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .contact-grid {
    gap: 45px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-info h2 {
    font-size: 33px;
  }

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

  .cta-inner {
    padding: 40px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .contact-hero {
    padding: 30px 0 55px;
  }

  .contact-breadcrumb {
    margin-bottom: 30px;
  }

  .contact-hero-content {
    flex-direction: column;

    align-items: flex-start;
  }

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

  .contact-hero p {
    font-size: 12px;
  }

  .contact-hero-icon {
    width: 80px;
    height: 80px;

    min-width: 80px;

    font-size: 28px;
  }


  /* Main */

  .contact-main {
    padding: 70px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .contact-info h2 {
    font-size: 30px;
  }

  .contact-description {
    font-size: 11px;
  }


  /* Form */

  .contact-form-box {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  /* Service Area */

  .service-area {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 29px;
  }


  /* Map */

  .map-section {
    padding: 60px 0;
  }

  .map-box {
    height: 300px;
  }


  /* CTA */

  .contact-cta {
    padding: 50px 0 70px;
  }

  .cta-inner {
    flex-direction: column;

    align-items: flex-start;

    padding: 35px 25px;
  }

  .cta-inner h2 {
    font-size: 27px;
  }

  .cta-buttons {
    width: 100%;

    flex-direction: column;
  }

  .cta-call,
  .cta-whatsapp {
    width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .contact-hero h1 {
    font-size: 29px;
  }

  .contact-form-box {
    padding: 25px 16px;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

}

/* ===Services-Page-Css=== */

/* =========================================
   GLOBAL
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #172033;
  background: #ffffff;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.service-container {
  width: min(1200px, 92%);
  margin: auto;
}


/* =========================================
   COMMON LABEL
========================================= */

.service-label {
  display: inline-block;

  padding: 6px 13px;

  background: #eff7df;
  text-transform: uppercase;

  color: #172033;

  border-radius: 30px;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 1.3px;
}


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

.service-hero {
  position: relative;

  padding: 35px 0 80px;

  background:
    linear-gradient(
      135deg,
      #f5faed 0%,
      #ffffff 75%
    );

  overflow: hidden;
}

.service-hero::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -230px;
  top: -150px;

  background: #c32023;

  opacity: 0.09;

  border-radius: 50%;
}

.breadcrumb {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 55px;

  color: #7c8781;

  font-size: 10px;
}

.breadcrumb a {
  color: #172033;

  font-weight: 600;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 0.85fr;

  gap: 70px;

  align-items: center;
}

.hero-content h1 {
  max-width: 650px;

  margin-top: 17px;

  color: #172033;

  font-size: 50px;

  line-height: 1.13;

  font-weight: 700;
}

.hero-content h1 span {
  color: #c32023;
}

.hero-content > p {
  max-width: 570px;

  margin-top: 17px;

  color: #69756f;

  font-size: 13px;

  line-height: 1.85;
}


/* Buttons */

.hero-buttons {
  display: flex;

  gap: 11px;

  margin-top: 28px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 19px;

  border-radius: 7px;

  font-size: 16px;

  font-weight: 600;

  transition: 0.3s ease;
}

.btn-primary {
  background: #172033;

  color: #ffffff;
}

.btn-primary:hover {
  background: #c32023;

  color: #172033;

  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #dce6d8;

  background: #ffffff;

  color: #172033;
}

.btn-outline:hover {
  border-color: #c32023;

  background: #f5fae9;
}


/* Hero Points */

.hero-points {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 25px;
}

.hero-points div {
  display: flex;

  align-items: center;

  gap: 6px;

  color: #6f7b75;

  font-size: 9px;
}

.hero-points i {
  color: #c32023;

  font-size: 11px;
}


/* Hero Image */

.hero-image {
  position: relative;

  min-height: 450px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.image-circle {
  position: absolute;

  width: 370px;
  height: 370px;

  background: #eaf4d7;

  border-radius: 50%;

  border: 1px solid #dceabd;
}

.hero-image img {
  position: relative;
  z-index: 2;

  width: 360px;

  max-height: 420px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 20px 25px rgba(3,63,45,0.12)
    );
}

.hero-badge {
  position: absolute;

  z-index: 4;

  right: 0;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 13px 16px;

  background: #ffffff;

  border-radius: 10px;

  box-shadow:
    0 15px 35px rgba(3,63,45,0.12);
}

.hero-badge > i {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  color: #172033;

  font-size: 11px;
}

.hero-badge span {
  margin-top: 2px;

  color: #7d8782;

  font-size: 9px;
}


/* =========================================
   INTRO
========================================= */

.intro-section {
  padding: 100px 0;
}

.intro-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 75px;

  align-items: center;
}

.intro-image {
  position: relative;

  padding: 15px;
}

.intro-image > img {
  width: 100%;

  min-height: 550px;

  object-fit: cover;

  border-radius: 18px;
}

.image-card {
  position: absolute;

  right: -5px;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 13px 16px;

  background: #172033;

  color: #ffffff;

  border-radius: 9px;

  box-shadow:
    0 15px 30px rgba(3,63,45,0.18);
}

.image-card i {
  width: 60px;
  height: 60px;
font-size: 25px;
  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;
}

.image-card strong,
.image-card span {
  display: block;
}

.image-card strong {
  font-size: 18px;
}

.image-card span {
  margin-top: 2px;

  color: #b6c3bd;

  font-size: 16px;
}

.intro-content h2 {
  max-width: 600px;

  margin-top: 15px;

  color: #172033;

  font-size: 38px;

  line-height: 1.2;
}

.intro-content h2 span {
  color: #c32023;
}

.intro-content > p {
  margin-top: 15px;

  color: #707b76;

  font-size: 15px;

  line-height: 1.85;
}


/* Check List */

.check-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;

  margin-top: 25px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #c32023;
  font-size: 14px;
}

.check-list i {
  color: #172033;

  font-size: 18px;
}


/* =========================================
   PROBLEM SECTION
========================================= */

.problem-section {
  padding: 90px 0;

  background: #f7faf3;
}

.section-heading {
  max-width: 700px;

  margin-bottom: 45px;
}

.section-heading.center {
  text-align: center;

  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin-top: 15px;

  color: #172033;

  font-size: 37px;

  line-height: 1.2;
}

.section-heading h2 span {
  color: #c32023;
}

.section-heading p {
  margin-top: 12px;

  color: #737e78;

  font-size: 16px;

  line-height: 1.8;
}


/* Sign Cards */

.sign-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.sign-card {
  padding: 30px 24px;

  background: #ffffff;

  border: 1px solid #e6ede0;

  border-radius: 14px;

  transition: 0.3s ease;
}

.sign-card:hover {
  transform: translateY(-6px);

  border-color: #c32023;

  box-shadow:
    0 15px 30px rgba(3,63,45,0.07);
}

.sign-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #eff7df;

  color: #172033;

  border-radius: 11px;

  font-size: 17px;
}

.sign-card h3 {
  margin-top: 18px;

  color: #172033;

  font-size: 18px;
}

.sign-card p {
  margin-top: 8px;

  color: #7a8580;

  font-size: 15px;

  line-height: 1.75;
}


/* =========================================
   WHY SECTION
========================================= */

.why-section {
  padding: 100px 0;
}

.why-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: center;
}

.why-content h2 {
  max-width: 600px;

  margin-top: 15px;

  color: #172033;

  font-size: 38px;

  line-height: 1.2;
}

.why-content h2 span {
  color: #c32023;
}

.why-content > p {
  max-width: 560px;

  margin-top: 15px;

  color: #707b76;

  font-size: 12px;

  line-height: 1.8;
}

.why-list {
  margin-top: 30px;
}

.why-item {
  display: flex;

  gap: 18px;

  padding: 17px 0;

  border-bottom: 1px solid #edf1eb;
}

.why-item > span {
  color: #c32023;

  font-size: 12px;

  font-weight: 700;
}

.why-item h3 {
  color: #172033;

  font-size: 13px;
}

.why-item p {
  margin-top: 4px;

  color: #7b8580;

  font-size: 9px;

  line-height: 1.7;
}


/* Why Box */

.why-box {
  position: relative;

  min-height: 390px;

  padding: 50px 40px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #172033;

  border-radius: 20px;

  overflow: hidden;
}

.why-circle {
  position: absolute;

  width: 270px;
  height: 270px;

  top: -130px;
  right: -90px;

  background: #c32023;

  opacity: 0.08;

  border-radius: 50%;
}

.why-box > i {
  position: relative;
  z-index: 2;

  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;

  font-size: 27px;
}

.why-box h3 {
  position: relative;
  z-index: 2;

  margin-top: 22px;

  color: #ffffff;

  font-size: 25px;

  line-height: 1.25;
}

.why-box h3 span {
  color: #c32023;
}

.why-box p {
  position: relative;
  z-index: 2;

  max-width: 300px;

  margin-top: 10px;

  color: rgba(255,255,255,0.62);

  font-size: 10px;

  line-height: 1.7;
}

.why-box a {
  position: relative;
  z-index: 2;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 22px;

  padding: 11px 17px;

  background: #ffffff;

  color: #172033;

  border-radius: 6px;

  font-size: 10px;

  font-weight: 600;
}

.why-box a:hover {
  background: #c32023;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
  padding: 90px 0;

  background: #f7faf3;
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.process-card {
  position: relative;

  padding: 30px 23px;

  background: #ffffff;

  border: 1px solid #e6ede0;

  border-radius: 14px;

  text-align: center;

  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);

  border-color: #c32023;
}

.process-number {
  position: absolute;

  right: 15px;
  top: 13px;

  color: #c8d2c7;

  font-size: 10px;

  font-weight: 700;
}

.process-icon {
  width: 55px;
  height: 55px;

  margin: 5px auto 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #c32023;

  color: #172033;

  border-radius: 50%;

  font-size: 18px;
}

.process-card h3 {
  color: #172033;

  font-size: 18px;
}

.process-card p {
  margin-top: 8px;

  color: #7a8580;

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-section {
  padding: 90px 0;
}

.benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.benefit-card {
  padding: 28px 22px;

  background: #ffffff;

  border: 1px solid #e7eee1;

  border-radius: 13px;

  text-align: center;

  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 15px 30px rgba(3,63,45,0.07);
}

.benefit-card > i {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto;

  background: #eff7df;

  color: #172033;

  border-radius: 50%;

  font-size: 17px;
}

.benefit-card h3 {
  margin-top: 17px;

  color: #172033;

  font-size: 18px;
}

.benefit-card p {
  margin-top: 8px;

  color: #7a8580;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
  padding: 90px 0;

  background: #f7faf3;
}

.faq-container {
  max-width: 850px;

  margin: auto;
}

.faq-item {
  margin-bottom: 10px;

  background: #ffffff;

  border: 1px solid #e6ede0;

  border-radius: 9px;

  overflow: hidden;
}

.faq-question {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 10px 20px;

  border: none;

  background: #ffffff;

  color: #172033;

  text-align: left;

  font-family: inherit;

  font-size: 20px;

  font-weight: 700;

  cursor: pointer;
}

.faq-question i {
  color: #c32023;

  font-size: 17px;
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;

  color: #737e78;

  font-size: 15px;

  line-height: 1.8;
}

.faq-item.active {
  border-color: #c32023;
}


/* =========================================
   CTA
========================================= */

.service-cta {
  padding: 70px 0 90px;
}

.cta-box {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 50px 55px;

  background: #172033;

  border-radius: 20px;

  overflow: hidden;
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -140px;
  top: -160px;

  background: #c32023;

  opacity: 0.08;

  border-radius: 50%;
}

.cta-box > div:first-child {
  position: relative;
  z-index: 2;
}

.cta-box .service-label {
  background: rgba(199,242,104,0.12);
  color: #c32023;
}

.cta-box h2 {
  max-width: 600px;

  margin-top: 13px;

  color: #ffffff;

  font-size: 32px;

  line-height: 1.25;
}

.cta-box h2 span {
  color: #c32023;
}

.cta-box p {
  max-width: 550px;

  margin-top: 10px;

  color: rgba(255,255,255,0.62);

  font-size: 15px;

  line-height: 1.7;
}

.cta-buttons {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 10px;
}

.cta-call,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 13px 18px;

  border-radius: 7px;

  font-size: 16px;

  font-weight: 600;

  white-space: nowrap;

  transition: 0.3s ease;
}

.cta-call {
  background: #c32023;

  color: #172033;
}

.cta-whatsapp {
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;
}

.cta-call:hover {
  background: #ffffff;
}

.cta-whatsapp:hover {
  background: #ffffff;

  color: #172033;
}

/* ===Feature-Section-Start=== */
.feature-section .container{
    width:90%;
    margin:auto;
}
.feature-section .fea {
  border-radius: 20px;
  margin-top: -60px;
  background-color: #172033;
  color: #fff;
  display: flex;
  position: relative;
  z-index: 4;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}

.feature-section .fea .fea-box h2 {
  margin-bottom: 0px;
  font-size: 35px;
}

.feature-section .fea .fea-box:nth-child(5) h2 {
  font-size: 24px;
}

.feature-section .fea .fea-box:nth-child(5) {
  display: flex;
  align-items: center;
}

.feature-section .fea .fea-box h6 {
  text-transform: uppercase;
  font-size:16px;
}

.feature-section .fea .fea-box:nth-child(3) img {
  width: 45px;
  margin: auto;
  padding-bottom: 5px;
}

.feature-section .fea .fea-box .icon {
  display: flex;
  align-items: center;
}

.feature-section .fea .fea-box .icon h4 {
  margin-bottom: 0;
}

.feature-section .fea .fea-box .icon img:nth-child(2) {
  padding: 0px 10px;
}

.feature-section .fea .fea-box h6 span {
  color: #eab81f;
  font-size: 18px;
}

/* ====Feature-Section-End==== */
/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .hero-grid,
  .intro-grid,
  .why-grid {
    gap: 45px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .sign-grid,
  .process-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .feature-section .fea {
    flex-wrap: wrap;
    justify-content: center;
    margin-top:40px;
  }

  .feature-section .fea .fea-box {
    width: 33%;
  }

  .faq-section .cta {
    margin-bottom: 30px;
  }

  .feature-section .fea .fea-box:nth-child(4),
  .feature-section .fea .fea-box:nth-child(5) {
    width: 48%;
  }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .service-hero {
    padding: 30px 0 60px;
  }

  .breadcrumb {
    margin-bottom: 35px;
  }

  .hero-grid,
  .intro-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-content > p {
    font-size: 11px;
  }

  .hero-buttons {
    justify-content: center;

    flex-wrap: wrap;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-image {
    min-height: 350px;
  }

  .image-circle {
    width: 285px;
    height: 285px;
  }

  .hero-image img {
    width: 280px;
  }

  .hero-badge {
    right: 5px;
    bottom: 15px;
  }


  /* Intro */

  .intro-section,
  .why-section,
  .benefits-section,
  .process-section,
  .problem-section,
  .faq-section {
    padding: 70px 0;
  }

  .intro-grid {
    gap: 45px;
  }

  .intro-image > img {
    min-height: 350px;
  }

  .intro-content h2,
  .why-content h2,
  .section-heading h2 {
    font-size: 29px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }


  /* Why */

  .why-box {
    min-height: 350px;

    padding: 40px 25px;
  }


  /* CTA */

  .service-cta {
    padding: 50px 0 70px;
  }

  .cta-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 35px 25px;
  }

  .cta-box h2 {
    font-size: 27px;
  }

  .cta-buttons {
    width: 100%;

    flex-direction: column;
  }

  .cta-call,
  .cta-whatsapp {
    width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */
.bottom .wrap a {
    color: #c32023;
    font-weight: 600;
    font-size: 17px;
}



@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-image {
    min-height: 310px;
  }

  .image-circle {
    width: 245px;
    height: 245px;
  }
.contact-main{
    padding-top: 0;
}
.service-hero{
    padding-bottom: 0;
}
.faq-question{
    font-size: 16px;
}
.bottom .wrap{
    font-size: 14px;
}

  .hero-image img {
    width: 235px;
  }

  .sign-grid,
  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .feature-section .fea .fea-box {
    margin-top: 10px;
  }

  .hero-section .form-box {
    margin-right: 0px;
    margin-top: 30px;
  }

  .feature-section .fea {
    margin-top: 30px;
    padding: 20px 15px;
  }

  .booking-section {
    margin: 0px 10px;
    position: relative;
  }

  .feature-section .fea .fea-box:nth-child(4) {
    width: 50%;
  }

  .feature-section .fea .fea-box .icon img:nth-child(2) {
    padding: 0px 6px;
    width: 85px;
  }

  .feature-section .fea .fea-box .icon h4 {
    margin-bottom: 0;
    font-size: 12px;
  }

  .feature-section .fea .fea-box:nth-child(5) h2 {
    font-size: 17px;
  }

  .feature-section .fea .fea-box h6 {
    font-size: 11px;
  }

  .feature-section .fea .fea-box:nth-child(5) {
    width: 50%;
    justify-content: center;
  }
  .hero-points {
    flex-direction: column;

    align-items: center;
  }
.hero-actions{
    align-items:center;
}
.hero-actions .btn{
    width:100%;
}
.hero-actions .call{
    padding:10px 20px;
    width:100%;
    border:1px solid #fff;
    border-radius:4px;
    justify-content:center;
}
.hero-actions .call span{
    font-size:0px;
}
.hero-actions .call span b{
    font-size:15px;
}
.micro-trust {
    gap: 3px 10px;
    align-items: center;
    justify-content:center;
}
.micro-trust span:first-child{
    font-size:25px;
}
.quick-card{
    margin-top:40px;
}

.feature-section .container{
    width:95%;
}
}


/* ===Cities-Page-Css=== */


/*===Clients-Section====*/

/* =========================================
   OUR PROUD CLIENTS SLIDER
========================================= */

.clients-section {
    padding: 85px 0;
    background: #f5f8f4;
    overflow: hidden;
}


/* Heading */

.clients-section .section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.clients-section .section-label {
    color: #c32023;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.clients-section .section-heading h2 {
    color: #172033;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin: 10px 0 15px;
}

.clients-section .section-heading h2 span {
    color: #c32023;
}

.clients-section .section-heading p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* Slider */

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


/* Track */

.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;

    animation: clientSlider 22s linear infinite;
}


/* Pause on hover */

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


/* Client Box */

.client-logo {
    width: 230px;
    height: 135px;

    flex-shrink: 0;

    background: #ffffff;

    border: 1px solid #e4e9e3;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    transition: 0.3s ease;
}


/* Logo */

.client-logo img {
    max-width: 100%;
    max-height: 90px;

    width: auto;
    height: auto;

    object-fit: contain;


    transition: 0.3s ease;
}


/* Hover */

.client-logo:hover {
    border-color: #c7f268;
    box-shadow: 0 10px 30px rgba(3, 63, 45, 0.10);
    transform: translateY(-4px);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}


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

@keyframes clientSlider {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .clients-section {
        padding: 65px 0;
    }

    .client-logo {
        width: 155px;
        height: 100px;
    }

    .client-logo img {
        max-height: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .client-logo {
        width: 140px;
        height: 90px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 50px;
    }

    .clients-track {
        gap: 12px;
        animation-duration: 18s;
    }

}