
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    background: var(--bg-light);
    color: var(--text-primary);
    /* overflow-x: hidden; */
}

/* HERO SECTION */
.hero-section {
    /* background: url('./asests/herobluewave.png') no-repeat center center/cover; */
    height: 100%;
    width: 100%;
    position: relative;
    font-family: var(--font-base);
    color: var(--text-light);
    overflow: hidden;

}

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

/* .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: background-image 1s ease-in-out;
  } */

/* .background-overlay {
    opacity: 1;
    transition: opacity 1s ease-in-out, background-image 1s ease-in-out;
  } */


/* Main slider wrapper and slides */
.slider-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
  width: 100vw;
  overflow: hidden;
transition: transform 0.5s ease-in-out;}

.slide {
    width: 100vw;
    height: 100vh;
    flex: 0 0 100vw;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Hero content inside slides */
.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button styling */
/* .btn-primary {
   background-color: var(--color-primary-dark);
    padding: 0.75rem 1.5rem;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
} */

/* Navigation buttons */
/* .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
   
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
} */

/* .nav-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
} */

/* .prev {
    left: 20px;
}

.next {
    right: 20px;
} */

/* Dot indicators */
/* .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    background: var(--btn-accent-hover);
    opacity: 1;
} */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .nav-btn {
        font-size: 1.5rem;
        padding: 0.6rem;
    }

    .dots {
        bottom: 10px;
    }
}

/* Extra small mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* NAVBAR


/* ========== NAVBAR STYLING ========== */
.logo-container {
    position: relative;
    width: 160px; /* Adjust width to match wider logo */
    height: 40px;  /* Set max height */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
  }
  
  /* Common styles */
  .logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
  
    transition: opacity 0.3s ease;
  }
  
  /* Individual sizes */
  .full-logo {
    height: 20px;
    display: block;
  }
  
  .small-logo {
    height: 40px;
    display: none;
  }
  
  

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--color-primary-dark);
    z-index: 99999999;
}

/* Hamburger Icon */
.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white; /* White icon */
    display: none; /* hidden by default */
    z-index: 1000;
}

/* .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
} */

/* Responsive Nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links,
    .cta {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background-color: var(--color-primary-dark);
        padding: 1rem;
        text-align: center;
    }

    .navbar.active .nav-links,
    .navbar.active .cta {
        display: flex;
    }
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--btn-accent-bg, #0077c8);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}


/* ========== DROPDOWN STYLING ========== */
.dropdown-card {
    display: none;
    position: absolute;
    top: 100%;
    right: 2rem;
    width: 75vw;
    max-width: 200px;
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: var(--box-shadow-dark);
    margin-top: 1rem;
    z-index: 999;
    overflow: hidden;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230077C8' fill-opacity='0.15' d='M0,160L60,138.7C120,117,240,75,360,101.3C480,128,600,224,720,229.3C840,235,960,149,1080,138.7C1200,128,1320,192,1380,224L1440,256L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat; */
    background-position: bottom;
    background-size: cover;
    padding: 1.5rem 2rem;
}

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

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dropdown-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.dropdown-links a:hover {
    color: var(--btn-accent-bg);
}

/* Clean horizontal divider */
.dropdown-links hr {
    border: none;
    height: 1.5px;
    background-color: #ccc;
    /* Initial light grey */
    opacity: 0.8;
    margin: 0.2rem 0;
    transition: background-color 0.3s ease;
}

.dropdown-links a:hover+hr {
    background-color: var(--btn-accent-bg);
}

.dropdown-links .btn-primary {
    margin-top: 1rem;
    align-self: flex-start;
    background-color: var(--btn-accent-bg);
    color: white;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-card {
        width: 75vw;
        right: 1rem;
    }
}

/* ========== MAIN NAV LINKS ========== */
.nav-links a {
    position: relative;
    margin: 0 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--btn-accent-bg);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--btn-accent-bg);
}

/* .cta .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: var(--font-size-small);
} */


/* HERO CONTENT */
.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    width: 100vw;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--color-primary-dark);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: var(--box-shadow-dark);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--color-light);
}


/* Wrapper for two buttons */
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 15px; /* space between buttons */
}



/* New Contrast Button */
.btn-secondary {
 background: var(--color-accent);
    /* green color */
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
     background: var(--btn-accent-hover);
    /* darker green on hover */
}


/* section:not(.hero-section) {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
} */

.features,
.blog-grid,
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--box-shadow-light);
}

.card h3 {
    margin-top: 0;
}

.logos img {
    max-width: 100px;
    object-fit: contain;
    margin: auto;
}

.how-it-works {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 1rem;
}



form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
}

form button {
    background: var(--btn-primary-bg);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-medium);
    cursor: pointer;
}

/* overview  */


/* General Overview Section */
/* .overview {
    background-color: var(--bg-light);
    padding: 0px 20px; /
}

.overview-container {
    display: flex;
    align-items: stretch; 
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
   
}


.overview-text {
    flex: 1;
    max-width: 600px;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 28px !important;
    
 
    margin-bottom: 15px;
   
    font-weight: 500 !important;
    color: #111111  !important;
    margin-bottom: 40px;

   
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}


.service-tree {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tree-item {
    display: flex;
  
    gap: 20px;
    position: relative;
}

.tree-icon {
    color: #28a745; 
    width: 50px; 
    height: 50px; 
    font-size: 30px; 
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tree-content h4 {
   
    color: var(--color-primary-dark);
    margin: 0;
    
}

.tree-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    
}


.overview-image {
    flex: 1;
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: stretch; 
    height: auto;
   
}

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


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

    .overview-text,
    .overview-image {
        flex: 1 1 100%;
    }

    .overview-image {
        padding-top: 30px;
        justify-content: center;
        align-items: center;
    }

    .overview-image img {
        margin: 0 auto;
    }

    .service-tree {
        align-items: center;
    }

    .tree-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tree-icon {
        margin-bottom: 10px;
    }

    .tree-content {
        margin-left: 0;
    }
}
 */




/* CSS */
.services-overview {
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .service-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px ;
  }

  .services-overview h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    /* margin-bottom: 40px; */
  }
  
  .services-overview p {
    font-size: 15px;
    color: #555;
    margin-bottom: 60px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
  }
  
  .timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 300px;

  }
  
  .timeline-img {
    width: 100%;
    max-height: 400px;
    padding-top: 100px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .point {
    position: absolute;
    display: flex;
    z-index: 2;
    color: #222;
  }
  
  /* Icons */
  .icon {
    font-size: 20px;
    line-height: 1;
   
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  /* Point 1 */
  .point1 {
    top: -20px;
    left: 16%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
  }
  
  /* Point 2 */
  .point2 {
    top: 255px;
    left: 33%;
    flex-direction: row;
    gap: 10px;
  }
  
  .point2 .icon-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  
  .point2 .text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 260px;
  }
  
  .point2 .text-content h4 {
    color: #000; /* Title black */
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .point2 .text-content p {
    color: var(--color-primary-dark, #004080); /* Description blue */
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Point 3 */
  .point3 {
    top: 12px;
    right: 19%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
  }
  
  /* Shared text content */
  .text-content {
    max-width: 260px;
  }
  
  .text-content h4 {
    color: #000;
    font-size: 16px;
    margin: 2px 0 4px 0;
  }
  
  .text-content p {
    color: var(--color-primary-dark, #004080);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Responsive for tablets and below */
  @media (max-width: 768px) {
    .timeline-img {
      display: none;
    }
  
    .timeline-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .point {
      position: static;
      margin-bottom: 40px;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .point2 .icon-text {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .text-content {
      text-align: center;
    }
  
    .icon {
      font-size: 26px;
    }
  
    .text-content h4 {
      font-size: 15px;
    }
  
    .text-content p {
      font-size: 13px;
    }
  }
  
 @media (min-width: 992px) and (max-width: 1279px) {
  .timeline-container {
    max-width: 1000px;
  }

  .point1 {
 
    top: -12px;
  }

  .point2 {
    left: 33%;
    top: 230px;
  }

  .point3 {
    right: 18%;
    top: 20px;
  }

  .point2 .icon-text {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .text-content {
    max-width: 240px;
  }

  .icon {
    font-size: 20px;
  }
}

  
  
  
  

/* booking section  */


.booking-process-section {
    margin-top: 80px; /* Add this */
    background-color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .booking-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .booking-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 40px;
  }
  
  .booking-tabs {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 30px;
  }
  
  .booking-tab {
    padding: 10px 35px;
    border: none;
    border-radius: 1px;
    background-color: #f0f0f0;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .booking-tab.active {
    background-color: #4CAF50;
  }
  
  .booking-step-content {
    text-align: left;
  }
  
  .booking-step-content h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #222;
  }
  
  .booking-step-content p {
    font-size: 16px;
    color: #003366;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  /* Underline base */
  .underline {
    width: 100%;
    height: 3px;
    margin-top: 30px;
    background: transparent;
    position: relative;
  }
  
  /* Green bar - absolute inside underline */
  .underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #4CAF50;
    width: 33.33%;
    transition: all 0.3s ease-in-out;
  }
  
  /* Positions */
  .underline-left::after {
    left: 0%;
  }
  .underline-center::after {
    left: 33.33%;
  }
  .underline-right::after {
    left: 66.66%;
  }
  
  @media (max-width: 768px) {
    .booking-tabs {
      gap: 10px;
      justify-content: space-around;
    }
  }
  
  


/* .why-choose-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
} */

/* .why-choose-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230077C8' fill-opacity='0.15' d='M0,64L48,80C96,96,192,128,288,122.7C384,117,480,75,576,90.7C672,107,768,181,864,176C960,171,1056,85,1152,90.7C1248,96,1344,192,1392,240L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--radius-large);
    z-index: 0;
} */

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

.why-choose-section {
  padding: 60px 20px;
  text-align: center;
  position: relative; /* Required for ::before to position correctly */

  z-index: 1;
}

/* .why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px; 
  height: 180px;
  background-image: url('./asests/Vectorbackground.png'); 
  background-repeat: no-repeat;
  background-size: 550px auto; 
  background-position: top right;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
} */




.why-choose-us-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}


/* Tablets */
/* @media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }
} */

/* Mobiles */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
    place-items: center; /* ✅ center the single card horizontally */
  }
}

.card {
  background: #fff;
  padding: 30px 20px 30px;
  border-radius: 0; /* ✅ Explicitly no rounded corners */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  margin-top: 20px;
}


.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  position: absolute;         /* ✅ Take out from normal flow */
  top: -35px;                 /* ✅ Push icon upward */
  /* background-color: #fff;     optional, match card or page background */
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
  z-index: 1;
}


.card:hover .icon-wrapper {
  /* background-color: #d1f3de; */
  transform: scale(1.1);
}

.icon {
  font-size: 40px;
  color: #28a745; /* consistent green */
  transition: color 0.3s;
}

.card:hover .icon {
  color: #22aa3c;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
color: var(--color-primary-dark);  }

.card p {
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* Responsive tweaks for small screens */
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .card {
    padding: 40px 15px 25px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon {
    font-size: 22px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}

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

@media (min-width: 1024px) {
  .card {
    padding: 60px 30px 40px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  /* .icon {
    font-size: 56px;
  } */
}



.how-it-works-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--bg-white);
  font-family: var(--font-base);
}


.how-it-works-title{
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 40px;
}

.work-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--bg-light);
  padding: 60px 20px 30px;
  width: 280px;
  box-shadow: var(--box-shadow-light);
  position: relative;
  text-align: center;
  /* border-radius: var(--radius-medium); */
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-dark);
  /* border-color: var(--color-accent); */
}

.icon-circle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  /* background-color: var(--bg-white);
  border: 3px solid var(--color-accent); */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 50px;
  height: 50px;
}

.step-card h3 {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .work-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 90%;
  }
}

  


  
/* How It Works Section */
/* Section Setup */
/* .how-it-works-section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .how-it-works-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230077C8' fill-opacity='0.15' d='M0,160L60,138.7C120,117,240,75,360,101.3C480,128,600,224,720,229.3C840,235,960,149,1080,138.7C1200,128,1320,192,1380,224L1440,256L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center top;
    background-size: contain;
    z-index: -1;
} */

/* .section-title {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
} */

/* Flex container */
/* .how-it-works {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* Wrapper handles spacing and responsiveness */
/* .step-wrapper {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
} */




/* Card inside border */
/* .how-step {
    background-color: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius-medium);
    text-align: center;
    /* box-shadow: var(--box-shadow-dark); */
    /* box-shadow: 0 10px 30px rgba(0, 119, 200, 0.15);
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 320px;
    position: relative;
}


.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(--color-primary);
    border: 1px solid var(--color-primary);
} */ 

/* Icon */

/* .step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    /* background-color: var(--color-light); */
    /* padding: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
} */


/* .step-icon-wrapper {
   
    display: inline-block;
}  */



/* 
@keyframes sparkle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
} */

/* Headings and Text */
/* .how-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.how-step p {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    line-height: 1.5;
} */

/* Glow animation */
/* @keyframes sparkleGlow {
    0% {
        box-shadow: 0 0 8px var(--color-primary-dark), 0 0 12px var(--color-primary-light);
    }

    100% {
        box-shadow: 0 0 15px var(--color-primary-light), 0 0 25px var(--color-primary-dark);
    }
} */

/* Responsive */
/* @media (max-width: 768px) {
    .how-it-works {
        flex-direction: column;
        gap: 30px;
    }

    .step-wrapper {
        width: 100%;
    }
}  */

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
    font-family: var(--font-base);
    color: var(--text-muted);
    text-align: center;
  }

  .testimonial-title{
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 40px;
  }
  
  .testimonials-section .section-title {
    font-size: var(--font-size-large);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 60px;
  }
  
  .testimonials-section .testimonial-container {
   
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px ;
  }
  
  .testimonial-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  
  .testimonial-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--box-shadow-light);
    flex: 1 1 300px;
    max-width: 360px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    background-color: var(--bg-light);
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    line-height: 1.6;
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  
  .testimonial-divider {
    display: block;
    height: 4px;
    width: 40px;
    background-color: var(--color-accent); /* theme green */
    border-radius: 2px;
    margin: 16px auto;
  }
  
  .client-name {
    font-weight: 600;
    font-size: var(--font-size-small);
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    margin: 10px 0 4px;
  }
  
  .client-title {
    font-size: var(--font-size-small);
    color: var(--text-muted);
  }
  
  

/* Clients Section */
/* .clients-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
} */

/* .clients-section::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230077C8' fill-opacity='0.15' d='M0,160L60,138.7C120,117,240,75,360,101.3C480,128,600,224,720,229.3C840,235,960,149,1080,138.7C1200,128,1320,192,1380,224L1440,256L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    z-index: -1;
} */

/* .section-title {
    font-size: var(--font-size-large);
    color: var(--color-primary-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.client-logo {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

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

.divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-light);
} */

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

    .divider {
        width: 50%;
        height: 1px;
        margin: 15px 0;
    }
} */

/* Blog Section */
.blog-section {
  padding: 30px 20px 40px;
  background-color: var(--bg-white);
  text-align: center;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px ;
}

.blog-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 40px;
}

.blog-scroll-wrapper {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  align-items: stretch; /* Ensures equal height for all child cards */
}


.blog-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.blog-card {
  flex: 0 0 33%;
  background: var(--bg-light);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  box-shadow: var(--box-shadow-light);
  border: 1px solid var(--border-light);
  scroll-snap-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-height: 400px; /* 👈 fixed height baseline */
}


.blog-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px; /* tighter space under image */
  margin-top: 0; /* remove extra top space */
}

.blog-card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.blog-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 10px;
  flex-grow: 1; /* makes it take up vertical space */
  hyphens: auto;
  word-break: break-word;
}


.blog-link {
  align-self: flex-start;
  text-align: left;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 2px solid var(--color-accent);
  font-size: var(--font-size-small);
  padding-bottom: 1px;
  margin-top: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .blog-link {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 1024px) {
  .blog-card {
    flex: 0 0 60%;
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 80%;
  }
}

@media (max-width: 480px) {
  .blog-card {
    flex: 0 0 90%;
    padding: 28px 16px;
  }

  .blog-text {
    font-size: 16px;
    line-height: 1.5;
  }

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




.contact-section {
    position: relative;
    z-index: 0;
    padding: 30px 20px 40px;
}

/* .contact-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230077C8' fill-opacity='0.15' d='M0,160L60,138.7C120,117,240,75,360,101.3C480,128,600,224,720,229.3C840,235,960,149,1080,138.7C1200,128,1320,192,1380,224L1440,256L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--radius-large);
    z-index: 0;
} */




.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px ;
}

.contact-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    /* margin-bottom: 40px; */
}

.contact-section .map-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.map-box {
    position: relative;
    flex: 1 1 60%;
    background-color: var(--color-light);
    border-radius: var(--radius-medium);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--box-shadow-dark);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.2) opacity(0.4);
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

/* === Map Overlay Styling === */
.map-overlay {
    position: relative;
    background-color: var(--color-primary-dark);
    /* Deep blue from theme */
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--box-shadow-dark);
    border-radius: var(--radius-medium);
    z-index: 1;
    margin: 20px;
    color: var(--text-light);
}

/* Column structure inside overlay */
.map-overlay .address,
.map-overlay .contact-info {
    flex: 1;
    padding: 12px;
}

/* Headings */
.map-overlay h2 {
    font-size: var(--font-size-small);
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}

/* Paragraph/text */
.map-overlay p {
    font-size: var(--font-size-base);
    color: #e0e0e0;
    margin: 0;
}

/* Email links or clickable text */
.map-overlay a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-overlay a:hover {
    color: var(--btn-accent-hover);
}

/* Optional: slight blur/glow effect for elevated style */
.map-overlay {
    backdrop-filter: blur(6px);
}


.form-box {
    flex: 1 1 35%;
    background-color: var(--color-primary-dark);
    /* Primary blue */
    color: var(--text-light);
    /* White text */

    padding: 30px;
    border-radius: var(--radius-medium);
    box-shadow: var(--box-shadow-light);
}

.form-box h2.form-title {
    font-size: var(--font-size-large);
    margin-bottom: 10px;
    color: var(--text-light);
}

.form-box .form-description {
    margin-bottom: 20px;
    color: #e8e8e8;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-box label {
    font-size: var(--font-size-small);
    color: #cfcfcf;
    /* color: var( --text-light); */
    margin-bottom: 5px;
}

.form-box input,
.form-box textarea {
    padding: 10px;
    background-color: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-light);

    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    outline: none;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 119, 200, 0.2);
}

.form-box button {
    background-color: var(--color-accent);
    /* Accent green */
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-medium);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-box button:hover {
    background-color: #4c9244;
    /* Darker accent */
}

.form-box .form-note {
    font-size: var(--font-size-small);
    color: var(--text-light);
    margin-top: 10px;
}




/* footer section */

.footer-section {
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    color: #fff;
    margin-top: 20px;
    /* border-top: 3px solid rgb(216, 216, 216) */
}


.zigzag-bg {
    background: linear-gradient(-12deg, #0d2961 64%, var(--bg-light) 64%);
    padding: 80px 20px 50px;
    color: #fff;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px ;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Left: Logo diagonally placed */
.footer-logo {
    position: absolute;
    left: 0;
    bottom: 140px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.footer-logo-img {
    width: 200px;
   
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.footer-tagline {
    color: #fcfcfc;
    font-size: 12px; /* was 16px */
    margin-top: 12px;
    line-height: 1.5;
    text-align: left;
}

/* Center: Quick Links + Follow Us in column */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: 70px;
    padding-left: 200px; /* to offset logo space */
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #7ed957;
    text-align: left;
}
.footer-column {
    width: 150px; /* or 160px depending on design */
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #fcfcfc;
}

.footer-column a {
    color: #fcfcfc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #7ed957;
}

.social-icons {
    display: flex;
    gap: 10px;
    font-size: 18px;
    margin-top: 8px;
}

.social-icons a {
    color: #fcfcfc;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #7ed957;
}

/* Right: Contact Info */
.footer-contact {
    font-size: 18px;
    margin-bottom: 12px;
    color: #7ed957;
    margin-top: 70px;

}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #fcfcfc;
}

.footer-bottom {
  background: #0d2961;
  border-top: 2px solid #fcfcfc;
  padding: 20px;
  color: #fcfcfc;
  position: relative;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center; /* center the copyright */
  align-items: center;
  position: relative;
}

.footer-copy {
  font-size: 15px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom-links {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom-links a {
  color: #fcfcfc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #7ed957;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    position: static;
    justify-content: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding-top: 100px;
        align-items: center;
        text-align: center;
        padding: 80px 20px 40px;
    }
  
    .footer-logo {
        position: relative;
        bottom: unset;
        left: unset;
        margin-bottom: -65px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
  
    .footer-logo-img {
      margin: 0 auto;
    }
  
    .footer-tagline {
      font-size: 13px;
      max-width: 300px;
      margin-top: 10px;
      text-align: center;
    }
  
    .footer-center {
      padding-left: 0;
      flex-direction: column;
      gap: 30px;
      margin-top: 100px;
    }
  
    .footer-column {
      width: 100%;
      max-width: 280px;
    }
  
    .footer-column h4 {
      text-align: center;
    }
  
    .footer-column ul {
      padding: 0;
      margin: 0 auto;
    }
  
    .footer-column li {
      font-size: 13px;
    }
  
    .footer-contact {
      margin-top: 40px;
      text-align: center;
      width: 100%;
      max-width: 280px;
    }
  
    .footer-contact li {
      font-size: 13px;
    }
  
    .footer-social-icons {
      justify-content: center;
    }
  
    .zigzag-bg {
      background: linear-gradient(-8deg, #0d2961 75%, var(--bg-light) 75%);
      padding: 60px 20px 40px;
    }
  }
  
  /* @media (min-width: 1440px) {
    .footer-content {
      max-width: 1600px; 
      padding: 80px 40px;
    }
  
    .footer-center {
      padding-left: 250px; 
    }
  
    .footer-logo {
      width: 250px;
      bottom: 180px;
    }
  
    .footer-logo-img {
      width: 250px;
    }
  
    .footer-tagline {
      font-size: 14px;
      max-width: 250px;
    }
  
    .footer-column {
      width: 180px;
    }
  
    .footer-column h4 {
      font-size: 20px;
    }
  
    .footer-column li {
      font-size: 15px;
    }
  
    .footer-contact {
      font-size: 20px;
    }
  
    .footer-contact li {
      font-size: 15px;
    }
  
    .footer-social-icons {
      font-size: 20px;
    }
  
    .zigzag-bg {
      background: linear-gradient(-12deg, #0d2961 64%, var(--bg-light) 64%);
      padding: 100px 40px 60px;
    }
  } */
  
  @media (min-width: 2560px) {
    .footer-content {
      max-width: 1800px;
      padding: 100px 60px;
    }
  
    .footer-center {
      padding-left: 300px;
    }
  
    .footer-logo {
      width: 300px;
      bottom: 180px;
    }
  
    .footer-logo-img {
      width: 300px;
    }
  
    .footer-tagline {
      font-size: 16px;
      max-width: 280px;
    }
  
    .zigzag-bg {
      background: linear-gradient(-10deg, #0d2961 64%, var(--bg-light) 64%);
      padding: 165px 85px 105px;
    }
  } 
  


/* .footer-animation {
    max-width: 120px;
    margin-top: 10px;
    animation: floatCab 3s ease-in-out infinite;
}


@keyframes floatCab {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


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

    .footer-grid {
        justify-content: center;
        gap: 40px;
    }
}

.footer-animation-container {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(0.8);
    margin: 50px auto 0;
}

.footer-bg {
    position: absolute;
    width: 200%;
    height: 30%;
    background: url('./asests/office-building (1).png') repeat-x;
    background-size: contain;
    animation: scroll-bg 15s linear infinite;
    z-index: 0;
}

@keyframes scroll-bg {
    0% {
        transform: translateX(0);
    }

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

.moving-car {
    overflow: hidden;
    width: 100%;
    margin: 80px auto 0;
    position: relative;
    height: 100px;
}

.moving-car img {
    position: absolute;
    bottom: 0;
    left: -300px;
    width: 200px;
    animation: driveCar 15s linear infinite;
}

@keyframes driveCar {
    0% {
        left: -300px;
        transform: scaleX(1);
    }

    100% {
        left: calc(100% + 300px);
        transform: scaleX(1);
    }
} */


