body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}
h1,h2,h3,h4,h5,h6,a,span, li,button{
  font-family: "Google Sans", sans-serif;
}
p{
  font-family: "Inter", sans-serif;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  color: #fff;
}
/* ============================================================
   SCROLL ANIMATIONS
   - Text: word-by-word reveal, bottom -> top, slow & smooth
   - Images: slide in from left or right based on their position
   ============================================================ */
body {
  overflow-x: hidden;
}

.word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.anim-text-wrap.in-view .word-anim {
  opacity: 1;
  transform: translateY(0);
}

.anim-img {
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.1s ease;
  will-change: opacity, transform;
}
.anim-img-left {
  transform: translateX(-100px);
}
.anim-img-right {
  transform: translateX(100px);
}
.anim-img.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .word-anim,
  .anim-img {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
    /* ============================================================
       SCROLL ANIMATIONS
       - Text: word-by-word reveal, bottom -> top, slow & smooth
       - Images: slide in from left or right based on their position
       ============================================================ */
    body {
      overflow-x: hidden;
    }

    .word-anim {
      display: inline-block;
      opacity: 0;
      transform: translateY(38px);
      transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }

    .anim-text-wrap.in-view .word-anim {
      opacity: 1;
      transform: translateY(0);
    }

    .anim-img {
      opacity: 0;
      transition: opacity 1.1s ease, transform 1.1s ease;
      will-change: opacity, transform;
    }
    .anim-img-left {
      transform: translateX(-100px);
    }
    .anim-img-right {
      transform: translateX(100px);
    }
    .anim-img.in-view {
      opacity: 1;
      transform: translateX(0);
    }

    /* Respect users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .word-anim,
      .anim-img {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }


/* ============================================================
   SWIFT POST FLYING LOGO PRELOADER
   ============================================================ */

html.loading,
html.loading body {
    overflow: hidden;
    height: 100%;
}

#site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #eafaf8;
    overflow: hidden;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

#site-loader.loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader-logo {
    position: absolute;
    width: 130px;
    height: auto;

    left: 50%;
    top: 50%;

    z-index: 5;

    transform: translate(-50%, -50%);

    filter: drop-shadow(0 10px 15px rgba(10, 46, 51, 0.18));

    animation: swiftPostFly 3s ease-in-out forwards;
}


@keyframes swiftPostFly {

    /* Middle */
    0% {
        left: 50%;
        top: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    /* 10% UP */
    12% {
        top: 40%;
        transform: translate(-50%, -50%) rotate(-3deg);
    }

    /* 10% DOWN */
    25% {
        top: 60%;
        transform: translate(-50%, -50%) rotate(3deg);
    }

    /* 10% UP */
    38% {
        top: 40%;
        transform: translate(-50%, -50%) rotate(-3deg);
    }

    /* 10% DOWN */
    50% {
        top: 60%;
        transform: translate(-50%, -50%) rotate(3deg);
    }

    /* Back to middle */
    60% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
    }

    /* Start flying right + slightly upward */
    72% {
        left: 65%;
        top: 43%;
        transform: translate(-50%, -50%) rotate(4deg);
        opacity: 1;
    }

    85% {
        left: 82%;
        top: 32%;
        transform: translate(-50%, -50%) rotate(7deg) scale(0.95);
        opacity: 1;
    }

    /* Exit */
    100% {
        left: 115%;
        top: 18%;
        transform: translate(-50%, -50%) rotate(10deg) scale(0.85);
        opacity: 0;
    }
}
.container{
    max-width: 1280px;
}
.info ul li {
    display: inline-block;
    padding: 0px 25px 0px 0px;
    color: #ffffffe6;
    font-size: 14px;
}
.info ul li i{
    padding: 0px 24px 0px 0px;
}
.topbar {
    background: #000000;
    display: block;
    padding: 7px 0px;
}
.info_address{
  text-align: right;
}

/*header*/

.header {
    background: #fff;
    padding: 6px 0;
    width: 100%;
}

.header .row {
  display: flex;
  align-items: center;
}

.logo img {
    width: 115px;
    height: 97px;
    display: block;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1f812e;
}
.nav-links li a.active {
    color: #1f812e;
}

.nav-links li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1f812e;
}
.quote-btn {
    background: #044421;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 17px;
    border-radius: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}
.quote-btn:hover {
  background: #e08415;
  color: #111111;
}


/*hero*/

/*about_us*/


.about_us {
    padding: 10px 0px;
    background-image: url('../image/counter-bg.png');
}
.about_content{
  text-align: center;
  padding: 10px 0px;
}
.about_content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.about_content p {
    color: #ffffffc2;
    margin: 0;
    /* text-transform: uppercase; */
    font-size: 14px;
}




/* Responsive */
@media (max-width: 991px) {
  .hero_content h1 {
    font-size: 36px;
  }
  .track_box {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
 
}



/* Responsive */


@media (max-width: 767px) {
  .header .row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }

  .menu {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }

  .quote-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
   .hero_content h1 {
    font-size: 28px;
  }
  .hero_content h6 {
    font-size: 12px;
  }
  .hero {
    padding: 40px 0;
  }
}

/*header*/
.fastrans-header {
  width: 100%;
  background: #05063a;
}

.header-inner {
  display: flex;
  align-items: stretch;
  position: relative;
}

/* ---------- LEFT GREEN LOGO BOX ---------- */
.logo-box {
  background: #4caf50;
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

/* ---------- RIGHT SIDE ---------- */
.right-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: -60px;
  padding-left: 90px;
  background: #044421;
}

/* top row - dark blue */
.top-row {
  background: #4caf50;
  padding: 10px 30px;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 104px;
}

.contact-info li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-info i {
  color: #fff;
}

/* bottom row - very dark navy */
.bottom-row {
  background: #044421;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #4caf50;
}

.book-btn {
  background: #fff;
  color: #05063a;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
  corner-shape: superellipse(0.5);
  letter-spacing: 1px;
}

.book-btn:hover {
  background: #4caf50;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .logo-box {
    flex: 0 0 220px;
    padding: 16px 20px;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  }
  .right-box {
    margin-left: -40px;
    padding-left: 60px;
  }
  .contact-info {
    gap: 20px;
  }
  .contact-info li {
    font-size: 13px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links li a {
    font-size: 14px;
  }
  .book-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
  }

  .logo-box {
    clip-path: none;
    flex: none;
    width: 100%;
    justify-content: center;
    padding: 16px;
  }

  .right-box {
    margin-left: 0;
    padding-left: 0;
  }

  .top-row {
    padding: 10px 16px;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .contact-info li {
    font-size: 12.5px;
    white-space: normal;
  }

  .bottom-row {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .book-btn {
    order: 2;
    padding: 8px 18px;
    font-size: 13px;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    background: #05063a;
    padding: 16px 0 0;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Extra small (321px) */
@media (max-width: 375px) {
  .logo span {
    font-size: 20px;
  }
  .contact-info li {
    font-size: 11.5px;
  }
  .nav-links li a {
    font-size: 14px;
  }
}


/*hero*/


.hero {
  position: relative;
  width: 100%;
  background: #0a1e22;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 110px 0px;
}

/* ---------- BACKGROUND SLIDER ---------- */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 2s ease-in-out;
  /* zoom animation continuously runs on EVERY slide, never restarts */
  animation: kenBurnsZoom 18s ease-in-out infinite alternate;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenBurnsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* ---------- OVERLAY ---------- */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0 0 0 / 45%) 0%, rgb(0 0 0 / 35%) 25%, rgb(0 0 0 / 12%) 50%, rgb(0 0 0 / 3%) 75%, rgb(0 0 0 / 3%) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* decorative left shape - as image */
.hero-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-shape img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: left;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-content p {
  color: #d8dede;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-right: 42px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-service {
  background: #4caf50;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
  corner-shape: superellipse(0.5);
  letter-spacing: 1px;
}

.btn-service:hover {
  background: #3d9440;
}

.btn-about {
  background: transparent;
  border: 1.5px solid #4caf50;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  corner-shape: superellipse(0.5);
  letter-spacing: 1px;
}

.btn-about:hover {
  background: #4caf50;
  color: #fff;
}

/*about*/
.about{
  padding: 80px 0px;
}
.ab_img img{
width: 100%;
}

.about_content h6{

text-transform: uppercase;

color: #247f32;

border: 1px solid #247f32;

width: 197px;

margin: 0px auto;

padding: 5px;

font-size: 14px;

border-radius: 31px;
}
.company_content h1{
    color: #000 !important;
}
.company_content p{
    color: #5d5d5d !important;
    padding: 0px 28px;
    font-size: 16px;
    margin: 15px 0px 35px 0px;
}
.about_content h1 {
    color: #fff;
    margin: 35px 0px 0px 0px;
}
.about_content p {
    color: #dbd7d7;
    padding: 0px 28px;
    font-size: 16px;
    margin: 15px 0px 35px 0px;
}
.about_content button,
.content button, .consultancy-btn, .content_btn button  {
    background: #188229;
    border: none;
    padding: 15px 44px;
    color: #fff;
    font-weight: 600;
    corner-shape: superellipse(0.5);
    border-radius: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.about_content button:hover,
.content button:hover {
    animation: buttonMove 0.7s ease-in-out;
}

@keyframes buttonMove {
    0% {
        transform: translateX(0) scale(1);
    }

    25% {
        transform: translateX(-8px) scale(1);
    }

    50% {
        transform: translateX(8px) scale(1);
    }

    75% {
        transform: translateX(0) scale(1.08);
    }

    100% {
        transform: translateX(0) scale(1.05);
    }
}
.ab_row{
 margin-bottom: 29px;
}
.satisfied_client, .satisfied_client_1, .satisfied_client_2  {
    background: #188229;
    clip-path: polygon(88% 0, 100% 26%, 100% 59%, 100% 100%, 0 100%, 0% 60%, 0 0);
    display: flex;
    padding: 42px 30px;
}
.satisfied_client_1 {
    background: #034317;
    clip-path: polygon(10% 0%, 89% 0%, 100% 25%, 100% 80%, 100% 100%, 20% 100%, 0 100%, 0% 26%);
}
.satisfied_client_2{
    clip-path: polygon(10% 0, 0 26%, 0 59%, 0 100%, 100% 100%, 100% 60%, 100% 0);
}

.c_img{

}
.c_img img{

width: 60px;

filter: brightness(6.5);
}
.satisfied_content {
    padding: 0px 0px 0px 15px;
}
.satisfied_content h1 {
    margin: 0;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
}
.satisfied_content p {
    text-transform: uppercase;
    color: #c5bdbd;
    font-size: 15px;
    margin: 8px 0px 0px 0px;
}

/*chosse-us*/


.chosse_us {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

.column {
  position: relative;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  cursor: pointer;
}

/* SHARED background - same image across all columns, fixed attachment
   so it looks like one continuous image spanning the whole width */
.column::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../image/cbg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: opacity 2s ease, transform 0.8s ease;
  z-index: 0;
}

/* HOVER-specific background - fades in on top of the shared bg,
   only for the column being hovered */
.column::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.8s ease;
  z-index: 0;
}

.col1::after {
  background-image: url('../image/l.png');
}
.col2::after {
  background-image: url('../image/c.png');
}
.col3::after {
  background-image: url('../image/f.png');
}

.column:hover::after {
  opacity: 1;
}

.column:hover::before,
.column:hover::after {
  transform: scale(1.04);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 20, 0.8);
  transition: background 0.7s ease;
  z-index: 1;
}

.column:hover .overlay {
  background: rgba(2, 8, 20, 0.45);
}

.divider {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.2);
  z-index: 5;
}

.content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  padding: 0 20px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.content h2 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: font-size 0.5s ease;
  font-family: 'Google Sans';
  font-size: 28px;
}

.btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.5s ease;
  opacity: 0.85;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

.column-subtitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 0 15px;
  width: 100%;
}

.column:hover .column-subtitle {
  opacity: 1;
}

.column-subtitle p {
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.chosse_us:has(.col1:hover) .col2,
.chosse_us:has(.col1:hover) .col3 {
  flex: 0.65;
}
.chosse_us:has(.col1:hover) .col1 {
  flex: 2.7;
}

.chosse_us:has(.col2:hover) .col1,
.chosse_us:has(.col2:hover) .col3 {
  flex: 0.65;
}
.chosse_us:has(.col2:hover) .col2 {
  flex: 2.7;
}

.chosse_us:has(.col3:hover) .col1,
.chosse_us:has(.col3:hover) .col2 {
  flex: 0.65;
}
.chosse_us:has(.col3:hover) .col3 {
  flex: 2.7;
}

.column:hover .content h2 {
  font-size: clamp(16px, 2.4vw, 26px);
}

.main_logo {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
  pointer-events: none;
}

.main_logo span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.main_logo-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 8px auto;
}

/* ================= FREIGHT SCROLL SECTION ================= */
.freight-section {
  width: 100%;
  height: 300vh; /* 3 rows worth of scroll distance */
  position: relative;
  background: #f4f6f7;
}

.freight-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.freight-row {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.freight-row.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- CHILD COLUMN ANIMATIONS (slide + grow) ---------- */
.freight-row .freight-image,
.freight-row .freight-card {
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease;
}

/* default row (image left, card right) - hidden state */
.freight-row .freight-image {
  opacity: 0;
  transform: translateX(-90px) scale(0.82);
}

.freight-row .freight-card {
  opacity: 0;
  transform: translateX(90px) scale(0.82);
  transition-delay: 0.12s, 0.05s;
}

/* default row - active state */
.freight-row.active .freight-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.freight-row.active .freight-card {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* reversed row (card left, image right) - hidden state */
.freight-row.reverse .freight-image {
  transform: translateX(90px) scale(0.82);
}

.freight-row.reverse .freight-card {
  transform: translateX(-90px) scale(0.82);
}

/* reversed row - active state (same end position, just direction differs) */
.freight-row.reverse.active .freight-image {
  transform: translateX(0) scale(1);
}

.freight-row.reverse.active .freight-card {
  transform: translateX(0) scale(1);
}

/* ---------- LEFT IMAGE ---------- */
.freight-image {
  flex: 0 0 50%;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
}

.freight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- CENTER NOTCH (triangle + circle button) ---------- */
.freight-notch {
  position: absolute;
  top: 0%;
  left: 51%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 55px solid #188229;
}

.circle-btn {
  position: absolute;
  top: 165px;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.circle-btn i {
  width: 55px;
  height: 55px;
  background: #034317;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ---------- RIGHT TEAL CARD ---------- */
.freight-card {
  flex: 0 0 50%;
  background: #0f3b3e;
  border-radius: 24px;
  padding: 55px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  clip-path: polygon(10% 0, 0 17%, 0 59%, 0 100%, 100% 100%, 100% 60%, 100% 0);
  margin: 0px 20px 0px 0px;
}

.freight-card .badge {
  display: inline-block;
  background: #188229;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 22px;
  width: fit-content;
}

.freight-card h2 {
  color: #ffffff;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 13px;
  max-width: 70%;
}

.big-number {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 90px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.freight-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 26px;
  width: 100%;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.check-list i {
  color: #188229;
  font-size: 16px;
}

/* ---------- PROGRESS DOTS ---------- */
.progress-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 59, 62, 0.25);
  transition: background 0.4s ease, transform 0.4s ease;
}

.dot.active {
  background: #ff5722;
  transform: scale(1.3);
}
.freight-image{
    margin: 0px 20px 0px 0px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .freight-card h2 {
    font-size: 26px;
    max-width: 85%;
  }
  .big-number {
    font-size: 80px;
  }
  .freight-card {
    padding: 45px 40px;
  }
}

@media (max-width: 767px) {
  .freight-section {
    height: auto;
    padding: 0;
  }

  .freight-sticky {
    position: static;
    height: auto;
    display: block;
    padding: 60px 0;
  }

  .freight-row {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: column;
    min-height: auto;
    margin-bottom: 50px;
    transition: none;
  }

  .freight-row .freight-image,
  .freight-row .freight-card,
  .freight-row.reverse .freight-image,
  .freight-row.reverse .freight-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .freight-image,
  .freight-card {
    flex: 0 0 100%;
    width: 100%;
    height: 260px;
    min-height: auto;
  }

  .freight-image {
    border-radius: 24px 24px 0 0;
  }

  .freight-card {
    border-radius: 0 0 24px 24px;
    padding: 40px 30px;
    clip-path: none;
    height: auto;
  }

  .freight-notch {
    display: none;
  }

  .big-number {
    font-size: 60px;
    top: 20px;
    right: 30px;
  }

  .freight-card h2 {
    max-width: 100%;
    font-size: 24px;
  }

  .progress-dots {
    display: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-shape {
    width: 55%;
    opacity: 0.6;
  }
  .hero-bg-img {
    width: 100%;
    opacity: 0.35;
  }
  .hero-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 500px;
    padding: 60px 0;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .btn-service, .btn-about {
    padding: 11px 24px;
    font-size: 14px;
  }
}

/*service*/
.services {
  padding: 80px 0px;
  overflow: hidden;
}

.services-heading h1,
.services-heading h2 {
  font-weight: 800;
}

.services-heading p {
  max-width: 468px;
  margin: 0px auto;
  margin-bottom: 40px;
}

/* ---------- SLIDER WRAPPER ---------- */
.services-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.services-slider-wrap::before,
.services-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.services-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollTrack 22s linear infinite;
}

.services-slider-wrap:hover .services-track {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- SERVICE CARD ---------- */
.service_card {
  box-shadow: 0px 7px 13px rgba(0, 0, 0, 0.3);
  padding: 24px;
  clip-path: polygon(14% 0, 0 12%, 0 58%, 0 100%, 100% 100%, 100% 60%, 100% 0);
  background: #F0F8FA;
  flex: 0 0 360px;
  width: 360px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}

.service_card:hover {
  transform: scale(1.06);
  background: #188229;
  box-shadow: 0px 15px 30px rgba(24, 130, 41, 0.35);
}

.service_card img {
  width: 100%;
  clip-path: polygon(0 20%, 12% 0, 100% 0, 100% 74%, 88% 100%, 0 100%);
  transition: filter 0.4s ease;
}

.service_card h2 {
  font-size: 26px;
  padding-top: 22px;
  transition: color 0.4s ease;
}

.service_card p {
  font-size: 15px;
  color: #393939;
  transition: color 0.4s ease;
}

.service_card:hover h2,
.service_card:hover p {
  color: #ffffff;
}

/* ---------- CONTACT BUTTON (assuming existing styles, kept consistent) ---------- */
.btn-wrap {
  margin-top: 20px;
}


.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f1e22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s ease;
}

.service_card:hover .audit-btn {
  color: #ffffff;
}

.service_card:hover .icon-circle {
  background: #ffffff;
  color: #188229;
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .service_card {
    flex: 0 0 280px;
    width: 280px;
    padding: 18px;
  }

  .service_card h2 {
    font-size: 21px;
  }

  .services-track {
    gap: 20px;
  }
}


/*process*/



.process-section {
  width: 100%;
  padding: 70px 0;
  background: #eef6f8;
  position: relative;
}

.process-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADING ---------- */
.process-heading {
  margin-bottom: 30px;
}

.process-badge {
    display: inline-block;
    border: 1px solid #034317;
    color: #188229;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.process-heading h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f2b32;
  line-height: 1.35;
  margin: 0;
}

.process-heading h2 span {
    color: #188229;
}

/* ---------- ROW / CONNECTOR LINES ---------- */
.process-row {
  position: relative;
}

.process-row::before,
.process-row::after {
  content: "";
  position: absolute;
  top: -32px;
  height: 32px;
  border-top: 2px dashed #c7d3d5;
  z-index: 1;
  display: none; /* enabled via JS-free pure CSS trick below on desktop */
}

/* connector dashed arcs between circles - desktop only, built with pseudo elements on cards */
@media (min-width: 992px) {
  .process-card::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 50%;
    width: 100%;
    height: 32px;
    border-top: 2px dashed #c7d3d5;
    border-radius: 0 0 0 0;
    z-index: 0;
  }

  .col-lg-4:first-child .process-card::before {
    left: 50%;
    width: 100%;
    border-radius: 0 40px 0 0;
    border-left: none;
  }

  .col-lg-4:last-child .process-card::before {
    left: -100%;
    width: 100%;
    border-radius: 40px 0 0 0;
    border-right: none;
  }

  .col-lg-4:nth-child(2) .process-card::before {
    display: none;
  }

  /* middle-to-left and middle-to-right connectors drawn from side columns instead */
  .col-lg-4:first-child .process-card::after {
    content: "";
    position: absolute;
    top: -37px;
    right: -50%;
    width: 100%;
    height: 32px;
    border-top: 2px dashed #c7d3d5;
    border-radius: 0 40px 0 0;
    z-index: 0;
  }

  .col-lg-4:last-child .process-card::after {
    content: "";
    position: absolute;
    top: -37px;
    left: -50%;
    width: 100%;
    height: 32px;
    border-top: 2px dashed #c7d3d5;
    border-radius: 40px 0 0 0;
    z-index: 0;
  }

  .col-lg-4:first-child .process-card::before {
    display: none;
  }

  .col-lg-4:last-child .process-card::before {
    display: none;
  }
}

/* ---------- CARD ---------- */
.process-card {
  position: relative;
  margin-top: 32px;
  background-image: url(../image/cardbg.png);
  padding: 115px 20px 36px 20px;
  border-bottom: 1px solid #00000012;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
  transform: scale(1.03);
  box-shadow: 0 3px 0 0 #188229;
}
.process-number {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%) scale(1) rotate(0deg);
    width: 64px;
    height: 64px;
    background: #188229;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    z-index: 2;
    border: 5px solid #e8e9ea;

    transition: transform 0.5s ease;
}

.process-card:hover .process-number {
    transform: translateX(-50%) scale(1.15) rotate(360deg);
}

.process-card-inner {
  text-align: center;
  position: relative;
  overflow: hidden;
}


.process-card-inner h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f2b32;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.process-card-inner p {
  font-size: 14.5px;
  color: #262626;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .process-heading h2 {
    font-size: 30px;
  }
  .process-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 60px 0;
  }
  .process-heading {
    margin-bottom: 60px;
  }
  .process-heading h2 {
    font-size: 24px;
  }
  .process-card {
    margin-top: 32px;
    margin-bottom: 20px;
  }
  .process-number {
    width: 54px;
    height: 54px;
    font-size: 15px;
  }
  .process-card-inner {
    padding: 50px 24px 32px;
  }
  .process-card-inner h3 {
    font-size: 17px;
  }
}

/*experience*/



.experience {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.experience .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- LEFT IMAGE ---------- */
.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- ROTATING BADGE ---------- */
.rotating-badge {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 170px;
  height: 170px;
  z-index: 3;
}

.rotating-text {
  width: 100%;
  height: 100%;
  animation: rotateBadge 14s linear infinite;
}

.rotating-text text {
  fill: none;
}

.rotating-text textPath {
  fill: #ffffff;
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
    transform-origin: center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center;
  }
}

.rotating-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f2b32;
  border-radius: 50%;
  z-index: -1;
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #188229;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  z-index: 2;
}

/* ---------- STAT CARD ---------- */
.stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
  min-width: 190px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: #188229;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  margin: 0 auto 14px;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f2b32;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 13px;
  color: #7a8a8c;
  margin: 0;
}

/* ---------- RIGHT CONTENT ---------- */
.experience-content {
  padding-left: 40px;
}

.about-badge {
  display: inline-block;
  border: 1px solid #034317;
  color: #188229;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.experience-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000;
  line-height: 1.35;
  margin-bottom: 20px;
}

.experience-content h2 span {
  color: #000;
}

.experience-content p {
    font-size: 17px;
    color: #5c6b6d;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-right: 13px;
}
.experience-content hr {
  border: none;
  border-top: 1px solid #e2e8e9;
  margin-bottom: 30px;
}

.feature-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #eef6f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #188229;
  font-size: 23px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2b32;
  line-height: 1.5;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .experience-content h2 {
    font-size: 27px;
  }
  .experience-content {
    padding-left: 20px;
  }
  .feature-row {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .experience .row {
    flex-direction: column;
  }
  .col-sm-12.col-md-6.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .experience-image img {
    height: 340px;
  }
  .experience-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .rotating-badge {
    width: 110px;
    height: 110px;
    top: -15px;
    right: -15px;
  }
  .badge-center {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .rotating-text textPath {
    font-size: 9px;
  }
  .stat-card {
    min-width: 150px;
    padding: 20px 22px 18px;
    right: 10px;
    bottom: -15px;
  }
  .stat-card h3 {
    font-size: 22px;
  }
  .experience-content h2 {
    font-size: 24px;
  }
  .feature-row {
    flex-direction: column;
    gap: 20px;
  }
}




/*footer*/


.footer {
    background-image: url(../image/feature-bg.png);
    padding: 50px 0px 9px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer_logo{
    margin-top: 31px;
}
.footer_logo img{
    width: 110px;
}
.footer_logo p{
    color: #fff;
    margin: 22px 0px 0px 0px;
}
.footer_logo h4{
    color: #fff;
}
.footer_logo ul li {
    padding: 0px 0px 11px 0px;
}
.footer_logo ul li a {
    color: #ffffffcf;
}
.social-icons ul {
    display: flex;
    gap: 22px;
    padding-top: 25px;
}
.footer_wig .social-icons a {
    padding: 4px;
    text-align: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: #fff;
    
}
.footer_wig .social-icons a i {
  color: #188229;
}

/*faq*/
.faq-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.faq-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- LEFT IMAGE ---------- */
.faq-image-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.faq-circle-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 10px solid #188229;
  overflow: hidden;
}

.faq-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* happy customer floating circle */
.happy-customer-badge {
  position: absolute;
  top: 0;
  left: -20px;
  width: 150px;
  height: 150px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  animation: floatBadge 3.5s ease-in-out infinite;
  border: 3px solid #188229;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

.happy-customer-badge h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0f2b32;
  margin-bottom: 4px;
}

.happy-customer-badge p {
  font-size: 12px;
  font-weight: 600;
  color: #0f2b32;
  margin: 0;
}

.happy-customer-badge::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: #034317;
  border-radius: 50%;
}

/* reviews floating card */
.reviews-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 3;
}

.stars {
  color: #188229;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.reviews-badge p {
  font-size: 15px;
  font-weight: 700;
  color: #0f2b32;
  margin: 0;
}

/* chat icon bottom-left */

/* ---------- RIGHT CONTENT ---------- */
.faq-content {
  padding-left: 10px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #188229;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.faq-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f2b32;
  line-height: 1.25;
  margin-bottom: 35px;
  max-width: 520px;
}

/* ---------- ACCORDION ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #f4f6f7;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2b32;
  margin: 0;
  line-height: 1.5;
  font-family: 'Google Sans';
}

.faq-item.active .faq-question h4 {
  color: #188229;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: #0f2b32;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  color: #ff5722;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14px;
  color: #5c6b6d;
  line-height: 1.75;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .faq-content h2 {
    font-size: 30px;
  }
  .happy-customer-badge {
    width: 120px;
    height: 120px;
  }
  .happy-customer-badge h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .faq-section .row {
    flex-direction: column;
  }
  .col-sm-12.col-md-6.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-image-wrap {
    max-width: 320px;
    margin: 0 auto 90px;
  }

  .happy-customer-badge {
    width: 100px;
    height: 100px;
    left: -10px;
  }
  .happy-customer-badge h3 {
    font-size: 17px;
  }
  .happy-customer-badge p {
    font-size: 10px;
  }

  .reviews-badge {
    padding: 12px 18px;
    right: -10px;
    bottom: -30px;
  }

  .chat-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    left: -10px;
    bottom: -20px;
  }

  .faq-content {
    padding-left: 0;
  }

  .faq-content h2 {
    font-size: 24px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h4 {
    font-size: 14px;
  }
}

/*form*/



.contact-section {
  position: relative;
  width: 100%;
  padding-bottom: 90px;

}

/* ---------- TOP DARK BACKGROUND ---------- */
.contact-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: #0a1e22;
  background-image: url(../image/touch.png);
  background-size: cover;
  background-position:  center;
  background-repeat: no-repeat;
  border-top: 3px solid #188229;
  z-index: 0;
}

.contact-top-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 30, 34, 0.95) 0%, rgba(10, 30, 34, 0.6) 55%, rgba(10, 30, 34, 0.1) 100%);
}

.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADING ---------- */
.contact-heading {
  padding: 70px 0 60px;
}

.get-touch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #034317;
  color: #188229;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.contact-heading h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

/* ---------- APPOINTMENT CARD ---------- */
.appointment-card {
  position: relative;
  z-index: 3;
  background: #eaf5f8;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  margin-top: -20px;
}

.appointment-image {
  flex: 0 0 42%;
}

.appointment-image img {
  width: 100%;
  height: 527px;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.appointment-form {
  flex: 1;
  padding: 45px 45px 40px;
}

.appointment-form h3 {
  font-size: 31px;
  font-weight: 800;
  color: #0f2b32;
  line-height: 1.4;
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row input,
.form-row select {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 1px solid #c9d8da;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: #0f2b32;
  outline: none;
}

.form-row input::placeholder {
  color: #7a8a8c;
}

.form-row select {
  color: #188229;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.appointment-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #c9d8da;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #0f2b32;
  outline: none;
  resize: vertical;
  margin-bottom: 24px;
  font-family: inherit;
}

.appointment-form textarea::placeholder {
  color: #7a8a8c;
}

.consultancy-btn {
  background: #188229;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  padding: 14px 32px;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  corner-shape: superellipse(0.5);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-top-bg {
    height: 460px;
  }
  .contact-heading h2 {
    font-size: 27px;
  }
  .appointment-form {
    padding: 35px 30px 30px;
  }
}

@media (max-width: 767px) {
  .contact-top-bg {
    height: auto;
    position: relative;
    padding-bottom: 260px;
  }

  .contact-heading {
    padding: 50px 0 40px;
  }

  .contact-heading h2 {
    font-size: 22px;
  }

  .appointment-card {
    flex-direction: column;
    margin-top: -200px;
  }

  .appointment-image img {
    min-height: 220px;
  }

  .appointment-form {
    padding: 30px 22px 28px;
  }

  .appointment-form h3 {
    font-size: 19px;
  }

  .form-row {
    flex-direction: column;
    gap: 14px;
  }
}


/*main-services*/

.services-section {
  width: 100%;
  padding: 80px 0 40px 0px;
  /* background: #f4f6f7; */
  overflow: hidden;
}

.services-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADING ---------- */
.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #188229;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.services-heading h2 {
  font-size: 35px;
  font-weight: 800;
  color: #0f2b32;
  line-height: 1.35;
  margin: 0;
}

/* ---------- SLIDER NAV ---------- */
.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #0f2b32;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
  background: #ff5722;
  color: #ffffff;
}

/* ---------- CARDS ROW ---------- */
.service-cards-row {
  margin-top: 60px;
}

.service-card-box {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ---------- IMAGE + DOME OVERLAY ---------- */
.service-img {
  position: relative;
  height: 300px;
  overflow: visible;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* big white dome/ellipse covering bottom of image */
.service-img::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

/* orange curved border - only the top edge of the dome */
.service-img::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #188229;
  z-index: 2;
  clip-path: inset(0 0 58% 0);
}

.service-icon {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 2px solid #188229;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #188229;
  font-size: 22px;
  z-index: 3;
}

/* ---------- CARD BODY ---------- */
.service-body {
  padding: 50px 10px 30px;
  text-align: center;
  position: relative;
  z-index: 999;
  margin-top: -45px;
}

.service-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f2b32;
  margin-bottom: 14px;
}

.service-body p {
  font-size: 14px;
  color: #5c6b6d;
  line-height: 1.7;
  margin-bottom: 18px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #188229;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .services-heading h2 {
    font-size: 26px;
  }
  .slider-nav {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .service-img {
    height: 260px;
  }
  .service-img::before,
  .service-img::after {
    height: 100px;
    bottom: -50px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }
  .services-heading h2 {
    font-size: 22px;
  }
  .service-cards-row {
    margin-top: 40px;
  }
  .service-body {
    padding: 45px 20px 26px;
  }
  .service-img {
    height: 230px;
  }
  .service-img::before,
  .service-img::after {
    height: 85px;
    bottom: -42px;
  }
  .service-icon {
    bottom: -20px;
    width: 52px;
    height: 52px;
    font-size: 19px;
  }
}
.content button{
    letter-spacing: 1px  !important;
    padding: 15px 33px !important;
}


/* =========================
   FOOTER
========================= */

}
.footer{
  background: #222;
  padding: 50px 0px;
}
.footer_wig img{
  width: 100px;
}
.footer_wig ul li {
    padding-bottom: 25px;
    color: #fff;
}
.footer_wig ul li a{
    color: #fff;
} 
.footer_wig ul li a i{
   color: #188229;
}
.footer_wig h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 34px;
}
.footer_wig p {
    color: #fff;
    padding-right: 50px;
    margin-top: 12px;
    margin-bottom: 0;
}
.footer_wig .social-icons {
    display: flex;
    gap: 10px;
    padding-top: 10px;
}
.footer-header-wrapper .social-icons li
 {
    display: inline-block;
}
}
.footer_wig_1 img {
    width: 100px;
    margin-bottom: 0px;
}
.footer_wig .social-icons a {
    padding: 8px;
    text-align: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: #fff;
    border-radius: 34px;
    font-size: 17px;
}
.footer_swift {
    padding-top: 20px !important;
    margin-bottom: 90px;
}
.footer-header-wrapper .footer_wig h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4em;
    margin-bottom: 25px;
    position: relative;
    text-transform: capitalize;
    font-family: "Manrope", sans-serif;
    margin-top: 0;
}


.footer-header-wrapper .footer_wig ul li {
    padding: 0 0px 18px 0;
    color: #fff;
}
.footer-header-wrapper .footer_wig ul li a {
    color: #fff !important;
    display: block;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    text-transform: capitalize;
    font-weight: 400;
}
.footer-header-wrapper i
 {
    color: #1f812e;
    font-size: 18px;
    padding-right: 4px;
}
.footer-header-wrapper .footer_wig ul li {
    padding: 0 0px 18px 0;
    color: #fff;
}
.footer_bottom p{
    text-align: center;
    color: #fff;
}
.footer_bottom a{
    color: #fff;
}


.stack-section {
  width: 100%;
  background: #0a2e33;
  padding: 60px 0 70px;
}
.stack-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.stack-card {
  position: sticky;
  width: 100%;
  padding-bottom: 40px;
}
.stack-inner {
  background: #0f3a40;
  border-radius: 20px;
  padding: 50px 50px 20px 50px;
  display: flex;
  align-items: stretch;
  gap: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  min-height: 450px;
}
/* ---------- CONTENT ---------- */
.stack-content {
  flex: 0 0 32%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stack-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.badge-orange {
  background: #188229;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 30px;
}
.badge-gray {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
}
.stack-content h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}
/* ---------- IMAGE ---------- */
.stack-image {
  flex: 1;
  height: auto;
  min-height: 400px;
  border-radius: 16px 16px 16px 16px;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}
.stack-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .stack-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 30px;
    min-height: auto;
  }
  .stack-content {
    flex: 0 0 100%;
  }
  .stack-image {
    width: 100%;
    height: 300px;
    min-height: unset;
  }
  .stack-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .stack-section {
    padding: 40px 0 80px;
  }
  .stack-container {
    padding: 0 20px;
  }
  .stack-inner {
    padding: 30px 22px;
    border-radius: 16px;
  }
  .stack-content h2 {
    font-size: 20px;
  }
  .stack-image {
    height: 220px;
  }
}


/*About Page*/


.ab_section{
  background-image: url('../image/banner1.png');
  padding: 140px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about_text h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}
.about_text ul li{
    font-size: 18px;
    color: #fff;
}
.about_text ul li i{
    color: #4caf50;
    font-size: 20px;
    padding: 0px 19px 0px 0px;
}
.about_text ul li a {
    color: #fff;
    padding: 0px 14px 0px 0px;
}
.main_text{
  color: red !important;
}

/*contact_page*/


.contact_sec{
  background-image: url('../image/contactbg.png') !important;
}
 .help-section {
    width: 100%;
    background: #ffffff;
  }

  .help-container {
    display: flex;
    width: 100%;
  }

  /* -------- LEFT IMAGE (col-6) -------- */
  .help-image {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .help-image img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
  }

  /* -------- RIGHT FORM (col-6) -------- */
  .help-form-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .help-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border: 1px solid #4caf50;
    color: #044421;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 26px;
  }

  .help-form-wrap h2 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 0 0 38px;
    line-height: 1.2;
  }

  .help-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .help-row input,
  .help-row select {
    flex: 1;
    width: 100%;
    padding: 16px 22px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    font-size: 15px;
    color: #333333;
    outline: none;
    background: #ffffff;
    font-family: inherit;
  }

  .help-row select {
    color: #4caf50;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%23ff5722' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-position: right 22px center;
    padding-right: 44px;
  }

  .help-row select.has-value {
    color: #333333;
  }

  .help-form textarea {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    font-size: 15px;
    color: #333333;
    margin-bottom: 32px;
    resize: vertical;
    min-height: 130px;
    outline: none;
    font-family: inherit;
  }

  ::placeholder {
    color: #8a8a8a;
  }

  .help-btn {
    background: #044421;
    color: #ffffff;
    border: none;
    padding: 15px 39px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background 0.25s ease;
    corner-shape: superellipse(0.5);
    border-radius: 15px;
  }
  .help-btn:hover {
    background: #e64a19;
  }

  /* -------- RESPONSIVE -------- */
  @media (max-width: 991px) {
    .help-container {
      flex-direction: column;
    }
    .help-image,
    .help-form-wrap {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .help-image img {
      min-height: 300px;
    }
    .help-form-wrap {
      padding: 40px 24px;
    }
    .help-form-wrap h2 {
      font-size: 30px;
    }
    .help-row {
      flex-direction: column;
      gap: 16px;
    }
  }

  .achieve-section {
    width: 100%;
    background: #e9f8f7;
    padding: 90px 0;
  }

  .achieve-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
  }

  /* -------- LEFT COLUMN -------- */
  .achieve-left {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .achieve-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a2e33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
  }
  .achieve-badge i {
    color: #044421;
  }

  .achieve-left h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a2e33;
    margin: 0 0 20px;
  }
  .achieve-left h2 span {
    color: #4caf50;
  }

  .achieve-left-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  .achieve-left-img img {
    width: 100%;
    height: 372px;
    object-fit: cover;
    display: block;
  }

  /* -------- RIGHT COLUMN -------- */
  .achieve-right {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .achieve-top-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
  }
  .achieve-top-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }
  .achieve-top-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,46,51,0.85) 0%, rgba(10,46,51,0.35) 45%, rgba(10,46,51,0) 75%);
  }

  .achieve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .achieve-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(10, 46, 51, 0.06);
  }

  .achieve-card i {
    font-size: 26px;
    color: #044421;
    margin-bottom: 16px;
    display: inline-block;
  }

  .achieve-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2e33;
    margin: 0 0 10px;
  }

  .achieve-card p {
    margin: 0;
    font-size: 14px;
    color: #4caf50;
    line-height: 1.6;
  }

  /* -------- RESPONSIVE -------- */
  @media (max-width: 991px) {
    .achieve-container {
      flex-direction: column;
      gap: 40px;
    }
    .achieve-left,
    .achieve-right {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .achieve-left h2 {
      font-size: 30px;
    }
  }

  @media (max-width: 576px) {
    .achieve-grid {
      grid-template-columns: 1fr;
    }
    .achieve-left-img img {
      height: 280px;
    }
  }

    .word-anim {
      display: inline-block;
      opacity: 0;
      transform: translateY(38px);
      transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }

    .anim-text-wrap.in-view .word-anim {
      opacity: 1;
      transform: translateY(0);
    }

    /* Book-opening image reveal: image stays put, unfolds left -> right */
    .anim-img-book {
      clip-path: inset(0 100% 0 0);
      -webkit-clip-path: inset(0 100% 0 0);
      transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1),
                  -webkit-clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1);
      will-change: clip-path;
    }
    .anim-img-book.in-view {
      clip-path: inset(0 0 0 0);
      -webkit-clip-path: inset(0 0 0 0);
    }

    /* Highlighted word color in "Celebrating Years..." heading */
    .achieve-left h2 span {
      color: #000;
    }

    /* Respect users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .word-anim,
      .anim-img-book {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: inset(0 0 0 0) !important;
        -webkit-clip-path: inset(0 0 0 0) !important;
      }
    }



/*privacy-policy*/


.privacy_sec{
  background-image: url('../image/privacy.png') !important;

}
.privacy_policy{
  padding: 50px 0px;
}
.privacy_content h1{
    margin-bottom: 30px;
}
.privacy_content h5{

    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.privacy_content p{
    padding-bottom: 18px;
    border-bottom: 1px solid #80808040;
}
 
    .word-anim {
      display: inline-block;
      opacity: 0;
      transform: translateY(38px);
      transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }
 
    .anim-text-wrap.in-view .word-anim {
      opacity: 1;
      transform: translateY(0);
    }
 
    /* Book-opening image reveal: image stays put, unfolds left -> right */
    .anim-img-book {
      clip-path: inset(0 100% 0 0);
      -webkit-clip-path: inset(0 100% 0 0);
      transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1),
                  -webkit-clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1);
      will-change: clip-path;
    }
    .anim-img-book.in-view {
      clip-path: inset(0 0 0 0);
      -webkit-clip-path: inset(0 0 0 0);
    }
 
    /* Respect users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .word-anim,
      .anim-img-book {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: inset(0 0 0 0) !important;
        -webkit-clip-path: inset(0 0 0 0) !important;
      }
    }

/*term-conditions*/

.term_sec{
    background-image: url('../image/termbg.png') !important;

}


/*media-query*/

@media (min-width: 321px) and (max-width: 767px) {
    
    .container{
      width: 100%;
    }
    .logo-box{
      display: none;
    }
        .top-row {
        padding: 10px 16px;
        display: none;
    }
    .hero .container {
    padding: 0 18px;
}
.hero::before {
    background: linear-gradient(90deg, rgb(0 0 0 / 83%) 0%, rgb(0 0 0 / 67%) 25%, rgb(0 0 0 / 58%) 50%, rgb(0 0 0 / 55%) 75%, rgb(0 0 0) 100%);
}
.about_content h1 {
    font-size: 26px;
}
.satisfied_client, .satisfied_client_1, .satisfied_client_2 {
    padding: 20px 12px;
    margin-bottom: 20px;
}
.content button {
    letter-spacing: 0px !important;
    padding: 11px 14px !important;
}
.faq_col{
  width: 100%;
}
    .service-icon {
        bottom: 16px;
    }
        .process-heading h2 {
        font-size: 23px;
    }
    .process-card {
 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
     padding: 0px 20px 20px 20px;
}
.footer_swift {
    margin-bottom: 0px;
}
.ab_section {
    padding: 80px 0px;
}
    .rotating-badge {
        width: 100px;
        height: 100px;
         top: 8px;
        right: -7px;
    }
        .rotating-text textPath {
        font-size: 20px;
    }
   .appointment-image img {
    height: 329px;
}
    .achieve-left h2 {
        font-size: 23px;
    }
    .achieve-container {
    margin: 0 auto;
    padding: 0 10px;
}
}