
*,
*::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);
}

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

  
.mission-section {
  position: relative;
  z-index: 0;
  padding: 30px 20px 40px;
}
.mission-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px ;
}

.mission-title {
  text-align: center;
  font-size: 26px; /* slightly smaller font */
  font-weight: 500;
  color: #111111;
  margin-bottom: 10px; /* reduced margin */
}

.mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  gap: 1.5rem; /* reduced gap */
}

.mission-text {
  flex: 1 1 50%;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  max-width: 600px;
  /* margin-top: -30px; reduced upward pull */
  text-align: justify;
  text-justify: inter-word;
}

.mission-text p {
  margin: 0; /* remove default paragraph margin */
}

.mission-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.zigzag-img {
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.zigzag-img img {
  width: 100%;
  display: block;
  height: auto;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .mission-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1rem;
  }

  .mission-text,
  .mission-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .zigzag-img {
    max-width: 250px;
    margin: 0 auto;
  }

  .mission-text {
    padding: 0 10px;
    margin-top: 0; /* remove negative margin on mobile */
  }

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





  
.journey-section {
    position: relative;
    /* padding: 4rem 1.5rem; */
    font-family: var(--font-base);
    color: var(--text-primary);
    overflow: hidden;
    background-color: white;
    /* border-radius: var(--radius-large); */
    margin: 2rem auto;
    position: relative;
  z-index: 0;
  padding: 30px 20px 40px;
    margin: 0 auto;
    /* box-shadow: var(--box-shadow-light); */
  }

 

  .journey-flex {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
   justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px ;
  }
  
  .journey-content {
    flex: 1 1 55%;
    min-width: 300px;
  
  }
  
  .journey-image {
    flex: 1 1 40%;
    min-width: 250px;
    text-align: center;
  }
  
  .journey-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: var(--radius-medium);
    box-shadow: var(--box-shadow-light); */
  }
    

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

  .journey-description {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .timeline-step {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-step::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 8px;
    width: 16px;
    height: 16px;
    background-color: var(--color-accent);
    border-radius: 50%;
    border: 2px solid var(--color-primary);
  }

  .timeline-year {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .timeline-year i {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
  }

  .timeline-desc {
    font-size: var(--font-size-small);
    color: var(--text-primary);
  }

  @media (max-width: 1024px) {
    .journey-section {
      padding: 2.5rem 2rem;
    }
  
    .journey-title {
      font-size: 1.75rem;
    }
  
    .journey-description {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 768px) {
    .journey-section {
      padding: 2rem 1.5rem;
    }
  
    .journey-flex {
      flex-direction: column;
      gap: 2rem;
    }
  
    .journey-title {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .journey-description {
      font-size: 0.9rem;
      text-align: justify;
    }
  
    .journey-image img {
      max-width: 90%;
    }
  
    /* .timeline-step {
      padding-left: 2rem;
    }
  
    .timeline-step::before {
      left: -7px;
    } */

    .timeline-year {
      font-size: 1rem;
    }
  
    .timeline-desc {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .journey-section {
      padding: 2rem 1rem;
    }
  
    .journey-title {
      font-size: 1.3rem;
    }
  
    /* .timeline-step {
      padding-left: 1.5rem;
    }
  
    .timeline-step::before {
      top: 6px;
      left: -6px;
      width: 12px;
      height: 12px;
    } */
  
    .timeline-year {
      font-size: 0.95rem;
    }
  
    .timeline-desc {
      font-size: 0.85rem;
    }
  }
  
  
  @media (min-width: 2500px) {
    .journey-section {
      padding-left: 8rem;
      padding-right: 8rem;
    }
  }


  
  
  .why-choose-us-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
  }
  
  .why-choose-us-title {
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 40px;
  }
  
  .choose-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Crucial for equal height */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .step-wrapper {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    display: flex;
  }
  
  .how-step {
    background-color: var(--bg-white);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 150px;
  }
  
  .how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .step-icon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 15px;
    transition: transform 0.3s, color 0.3s;
  }
  
  .how-step:hover .step-icon {
    transform: scale(1.1);
    color: #22aa3c;
  }
  
  .how-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
  }
  
  .how-step p {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
  }
  
  .why-extra-text {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Tablet - 2 in a row */
  @media (max-width: 1024px) {
    .step-wrapper {
      flex: 1 1 calc(50% - 30px);
      max-width: calc(50% - 30px);
    }
  }
  
  /* Mobile - 1 in a row */
  @media (max-width: 768px) {
    .why-choose-us-section {
      padding: 2rem 1rem;
    }
  
    .step-wrapper {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .how-step {
      padding: 20px 15px;
      min-height: 150px;
    }
  
    .step-icon {
      font-size: 30px;
    }
  
    .how-step h3 {
      font-size: 16px;
    }
  
    .how-step p {
      font-size: 13px;
    }
  
    .why-extra-text {
      font-size: 14px;
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .why-choose-us-title {
      font-size: 24px;
    }
  
    .step-icon {
      font-size: 24px;
    }
  
    .how-step {
      padding: 16px 12px;
      min-height: 150px;
    }
  }
  
  /* @media (min-width: 1440px) {
    .choose-us-wrapper {
      max-width: 1320px;
      gap: 40px;
      padding: 0 40px;
    }
  
    .step-wrapper {
      flex: 1 1 calc(33.333% - 40px);
      max-width: calc(33.333% - 40px);
    }
  
    .how-step {
      padding: 32px 28px;
    }
  
    .how-step h3 {
      font-size: 20px;
    }
  
    .how-step p {
      font-size: 15px;
    }
  
    .step-icon {
      font-size: 48px;
    }
  
    .why-choose-us-title {
      font-size: 34px;
    }
  
    .why-extra-text {
      font-size: 1.1rem;
      max-width: 800px;
    }
  } */
  
  /* @media (min-width: 1440px) {
    .choose-us-wrapper {
      max-width: 1400px;
      gap: 40px;
      padding: 0 32px;
    }
  
    .step-wrapper {
      flex: 1 1 calc(25% - 40px);
      max-width: calc(25% - 40px);
    }
  
    .how-step {
      padding: 30px 24px;
    }
  
    .how-step h3 {
      font-size: 20px;
    }
  
    .how-step p {
      font-size: 15px;
    }
  
    .step-icon {
      font-size: 48px;
    }
  
    .why-choose-us-title {
      font-size: 32px;
    }
  
    .why-extra-text {
      font-size: 1.1rem;
    }
  } */
  
  
  
  .team-section {
    position: relative;
    background-color: #12203a;
    color: white;
    padding: 3rem 12rem;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    z-index: 1;
  }
  
  
  .team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .team-heading {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .team-subtext {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
  }
  
  .team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .team-card {
    background: transparent;
    border: 1px solid #2563eb;
    padding: 2rem;
    /* border-radius: 20px; */
    width: 300px;
    transition: 0.3s ease;
    box-shadow: none;
  }

  .team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    /* border: 2px solid #3b82f6; */
  }
  
  .social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-icons a {
    color: #3b82f6;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #60a5fa;
  }
  
  
  .team-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.1);
  }
  
  .team-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .team-card p {
    color: #ccc;
    font-size: 0.95rem;
  }
  
  @media (max-width: 768px) {
    .team-section {
      padding: 2rem 1rem;
    }
  
    .team-heading {
      font-size: 22px;
    }
  
    .team-subtext {
      font-size: 14px;
      padding: 0 1rem;
      text-align: justify;
    }
  
    .team-cards {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
  
    .team-card {
      width: 90%;
      padding: 1.5rem;
    }
  
    .team-img {
      width: 80px;
      height: 80px;
    }
  
    .team-card h3 {
      font-size: 18px;
    }
  
    .team-card p {
      font-size: 13px;
    }
  
    .social-icons a {
      font-size: 1rem;
    }
  }
  


  /* Section Styling */
.service-footprint {
  position: relative;
  z-index: 0;
  padding: 30px 20px 40px;
    
   
  }
  

  
  .service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px ;
  }
  
  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 40px;
  }
  
  .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }
  
  /* City Cards */
  .city-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center; /* Center cards horizontally */
  }
  
/* Improve responsiveness for small screens */
@media (min-width: 640px) {
  .city-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium screens and up: 3 cards */
@media (min-width: 768px) {
  .city-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens and up: 4 cards */
@media (min-width: 1024px) {
  .city-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* City Card Styling */
.city-card {
  background-color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: var(--box-shadow-light);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 50px;
  width: 100%;
  max-width: 300px; /* Prevents stretching on small screens */
  text-align: center;
}
  
  .city-card:hover {
    box-shadow: var(--box-shadow-dark);
  }
  
  .city-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
  }
  
  .city-description {
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  
  /* Icon container */
  .icon-container {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #28a745; /* ✅ Green icon color */
  }
  

  
/* Glow Animation */
/* @keyframes imageGlow {
    0% {
      box-shadow: 0 0 12px rgba(0, 119, 200, 0.4), 0 0 18px rgba(0, 119, 200, 0.4);
    }
    100% {
      box-shadow: 0 0 24px rgba(0, 119, 200, 0.6), 0 0 36px rgba(0, 119, 200, 0.6);
    }
  } */
  /* Button Styling */
  /* .request-button-container {
    margin-top: 2.5rem;
  } */



  
  /* .request-button {
    display: inline-block;
    background-color: var(--color-primary-dark);
    color: var(--text-light);
    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;
    text-decoration: none;

  } */
  
  /* .request-button:hover {
    background-color: var(--text-light);
  color: var(--color-primary-dark);
  }
   */
  
  
  /* 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);
    }
} */


