/* --------------------------------------------------- */
/*                 Global and Reset                    */
/* --------------------------------------------------- */
:root {
    /* Color palette */
    --primary-color: #4A339A;       /* Purple */
    --secondary-color: #FFA200;     /* Orange */
    --accent-color: #FF4C4C;        /* Red accent (defined for elements referencing var(--accent-color)) */
    --text-color: #333333;
    --light-text: #4A339A;          /* Lighter text color, can be used for headings or highlights */
    --background-color: #FFFFFF;
    --light-background: #F8F8F8;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
  
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
  
    /* Spacing */
    --section-spacing: 80px;
    --element-spacing: 24px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    /* Offset the fixed header so content does not hide behind it */
    padding-top: 70px;
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Loader container (centers the loader over the form) */
#formLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
  }
  
  /* Simple spinner */
  .loader {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid var(--primary-color); /* Use your brand primary color */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  /* --------------------------------------------------- */
  /*                    Header/Nav                       */
  /* --------------------------------------------------- */
  header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-img {
    max-height: 50px;
    margin: 0;
    padding: 0;
  }
  
  /* Navigation Menu */
  nav {
    display: flex;
    align-items: center;
  }
  
  #nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;  /* Prevent wrapping on desktop */
    margin: 0;
    padding: 0;
  }
  
  #nav-menu li {
    margin-left: 20px;
    white-space: nowrap;
  }
  
  #nav-menu li a {
    font-family: var(--heading-font);
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .footer-logo-badge {
    display: inline-block;
    background-color: #FFFFFF; /* or a very light gray (#F0F0F0) */
    border-radius: 8px;       /* optional: gives a rounded badge look */
    padding: 8px;             /* space around the logo */
  }
  .footer-logo {
    max-width: 180px;
  }
  
  
  /* Hover effect on nav links */
  #nav-menu li a:hover {
    background-color: #f39c11; /* Custom hover color */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

      /* Highlight the active nav link */
      #nav-menu li a.active {
        background-color: #FFFFFF;   /* White background, or pick any highlight color */
        color: var(--primary-color); /* Purple text, or any color that contrasts well */
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-2px);
        border-radius: 4px;
    }
  
  /* Mobile Menu Toggle (Hamburger) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    height: 2px;
    width: 25px;
    background-color: var(--text-color);
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  /* Show Hamburger */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
      z-index: 10000;
    }
  
    /* Hide the nav menu by default */
    #nav-menu {
      position: absolute;
      top: 70px;
      right: 0;
      width: 250px;
      flex-direction: column;
      background-color: var(--white);
      display: none;
      box-shadow: 0 4px 10px var(--shadow-color);
      padding: 20px 0;
      z-index: 9999;
      border-radius: 0 0 8px 8px;
    }
  
    /* Display menu when .active is toggled */
    #nav-menu.active {
      display: flex;
    }
  
    #nav-menu li {
      margin-left: 0;
      margin-bottom: 15px;
      width: 100%;
      text-align: center;
    }
  
    #nav-menu li a {
      display: block;
      padding: 10px 20px;
    }
  }
  
  /* --------------------------------------------------- */
  /*                      Hero                           */
  /* --------------------------------------------------- */
/* Hero Section with Purple-Orange Gradient */
#hero {
    /* Example gradient from top-left (purple) to bottom-right (orange) */
    background: linear-gradient(135deg, #6C4EE2 0%, #FFA200 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
  }
  
  #hero::before {
    /* Remove or comment out if you don't want an extra overlay. */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* optional subtle overlay, reduce opacity if desired */
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
  }
  
  
  .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
  }
  
  #hero h2 {
    font-family: var(--heading-font);
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
  }
  
  #hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    /* background-color: var(--light-background); */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* --------------------------------------------------- */
  /*                   Section Basics                    */
  /* --------------------------------------------------- */
  section {
    padding: 80px 0;
    background-color: var(--white);
  }
  
  section h2 {
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    font-size: 28px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
  }
  
  section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  section p,
  section ul {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    line-height: 1.8;
    font-size: 1.05em;
  }
  
  /* Light alternate background for every second section */
  section:nth-of-type(even) {
    background-color: var(--light-background);
  }
  
  /* Improved padding and margins */
  section {
    padding: 80px 0;
  }
  
  section h2 {
    margin-bottom: 16px;
  }
  
  section p,
  section ul {
    margin-bottom: 40px;
  }
  
  /* --------------------------------------------------- */
  /*                   About Us                          */
  /* --------------------------------------------------- */
  .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: var(--element-spacing);
    gap: var(--element-spacing);
  }
  
  .about-text {
    flex: 1 1 45%;
    color: var(--text-color);
    text-align: left;
    margin-bottom: var(--element-spacing);
    padding-right: var(--element-spacing);
  }
  
  .about-text p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .about-text h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6em;
    font-weight: 600;
  }
  
  .about-image {
    flex: 1 1 45%;
    text-align: center;
    align-self: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 16px var(--shadow-color);
  }
  
  /* Core Values styling */
  .about-text ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: var(--element-spacing);
  }
  
  .about-text ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
  }
  
  .about-text ul li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.3em;
    min-width: 25px;
    text-align: center;
  }
  
  .about-text ul li strong {
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
  }
  
  /* CTA in About section */
  .about-cta {
    text-align: center;
    margin-top: var(--element-spacing);
    padding: 40px;
    background-color: var(--light-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
  }
  
  .about-cta h3 {
    color: var(--primary-color);
    font-family: var(--heading-font);
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
  }
  
  .about-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-cta a.btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about-cta a.btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* --------------------------------------------------- */
  /*                   Services                          */
  /* --------------------------------------------------- */
  .services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: var(--element-spacing);
    gap: var(--element-spacing);
  }
  
  .service-item {
    width: calc(33.333% - var(--element-spacing));
    margin-bottom: var(--element-spacing);
    text-align: center;
    color: var(--text-color);
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 4px 8px var(--shadow-color);
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
  }
  
  .service-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-block;
  }
  
  .service-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4em;
  }
  
  .service-item p {
    text-align: center;
    font-size: 1em;
    line-height: 1.6;
    color: var(--light-text);
  }
  
  /* --------------------------------------------------- */
  /*                 How We Work                         */
  /* --------------------------------------------------- */
  #how-we-work .how-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  
  #how-we-work .how-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 1;
  }
  
  .how-step {
    width: 45%;
    margin-bottom: var(--element-spacing);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow-color);
    text-align: left;
    position: relative;
    z-index: 2;
  }
  
  .how-step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4em;
    padding-left: 20px;
    text-align: center;
  }
  
  .how-step p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05em;
    padding-left: 20px;
  }
  
  /* --------------------------------------------------- */
  /*                 Testimonials                        */
  /* --------------------------------------------------- */
  #testimonials .testimonials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    gap: var(--element-spacing);
  }
  
  .testimonial-item {
    width: calc(50% - var(--element-spacing));
    margin-bottom: var(--element-spacing);
    background-color: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px var(--shadow-color);
    color: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
  }
  
  .testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4em;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
    padding-left: 10px;
  }
  
  .testimonial-item span {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
    text-align: right;
    font-size: 1.05em;
  }
  
  .testimonial-item span::before {
    content: '— ';
  }
  
  /* --------------------------------------------------- */
  /*                 Why Choose Us                       */
  /* --------------------------------------------------- */
  .why-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--element-spacing);
    margin-top: var(--element-spacing);
  }
  
  .why-item {
    width: calc(33.333% - var(--element-spacing));
    margin-bottom: var(--element-spacing);
    text-align: center;
    color: var(--text-color);
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 4px 8px var(--shadow-color);
  }
  
  .why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
  }
  
  .why-item i {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--light-background);
    display: inline-block;
  }
  
  .why-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4em;
  }
  
  .why-item p {
    text-align: center;
    font-size: 1em;
    line-height: 1.6;
    color: var(--light-text);
  }
  
  /* --------------------------------------------------- */
  /*                   Our Team                          */
  /* --------------------------------------------------- */
  #our-team {
    padding: var(--section-spacing) 0;
    background-color: var(--light-background);
  }
  
  #our-team .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--element-spacing);
    margin-top: var(--element-spacing);
  }
  
  .team-member {
    width: calc(25% - var(--element-spacing));
    margin-bottom: var(--element-spacing);
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: all 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
  }
  
  .team-member i {
    font-size: 80px;
    color: var(--accent-color);
    background-color: var(--light-background);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .team-member h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4em;
  }
  
  .team-member p {
    color: var(--light-text);
    font-size: 1em;
    line-height: 1.6;
  }
  
  /* --------------------------------------------------- */
  /*                  Contact Form                       */
  /* --------------------------------------------------- */
  #contact {
    background-color: var(--white);
  }
  
  form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 0 0 48%;
    margin-bottom: 25px;
  }
  
  form label {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-family: var(--heading-font);
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 14px;
    margin-top: 5px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1em;
    transition: all 0.3s ease;
  }
  
  form input:focus,
  form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
    outline: none;
  }
  
  form textarea {
    resize: vertical;
    height: 150px;
    line-height: 1.6;
  }
  
  form button.btnFooter {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  form button.btnFooter:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* --------------------------------------------------- */
  /*                     Footer                          */
  /* --------------------------------------------------- */
  footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: left;
    position: relative;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
  }
  
  footer .container {
    position: relative;
    z-index: 2;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    max-width: 180px; 
  }
  
  .footer-tagline {
    font-size: 0.95em;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 100%;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 200px;
  }
  
  .footer-column h4 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
    display: inline-block;
  }
  
  .footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
  }
  
  /* Locations Grid Styles */
  .footer-locations {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-locations h4 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
  }
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }
  
  .location-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
  }
  
  .location-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .location-card h5 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .location-card h5 i {
    color: var(--accent-color);
  }
  
  .location-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
  }
  
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    margin: 10px 0;
    font-size: 0.85em;
    opacity: 0.7;
  }
  
  .footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 10px 0;
  }
  
  .footer-menu li {
    margin-right: 20px;
    margin-bottom: 10px;
  }
  
  .footer-menu li:last-child {
    margin-right: 0;
  }
  
  .footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.3s ease;
  }
  
  .footer-menu li a:hover {
    color: var(--white);
  }
  
  /* Responsive adjustments for locations grid */
  @media (max-width: 768px) {
    .locations-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .location-card {
      padding: 15px;
    }
    .location-card:hover {
      transform: none;
    }
  }
  
  /* Footer responsive styles */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
  
    .footer-brand {
      max-width: 100%;
      text-align: center;
      margin-bottom: 40px;
    }
  
    .footer-logo {
      margin: 0 auto 15px;
    }
  
    .footer-tagline {
      text-align: center;
    }
  
    .footer-columns {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-column {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .footer-column h4 {
      text-align: center;
    }
  
    .footer-column h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-column ul li {
      text-align: center;
    }
  
    .footer-column ul li a:hover {
      transform: none;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-menu {
      justify-content: center;
      margin-top: 15px;
    }
  }
  
  /* --------------------------------------------------- */
  /*               Scroll to Top Button                  */
  /* --------------------------------------------------- */
  .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px;
    border-radius: 50%;
    text-align: center;
    display: none;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px var(--shadow-color);
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  
  .scroll-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Show scroll to top button when scrolling down */
  @media (min-width: 768px) {
    .scroll-top {
      display: block;
    }
  }
  
  /* --------------------------------------------------- */
  /*               Responsive Design                     */
  /* --------------------------------------------------- */
  @media (max-width: 992px) {
    section {
      padding: 70px 0;
    }
  
    .service-item,
    .why-item {
      width: calc(50% - var(--element-spacing));
    }
  
    .team-member {
      width: calc(33.333% - var(--element-spacing));
    }
  
    .form-group {
      flex: 0 0 100%;
    }
  
    .how-step,
    .testimonial-item {
      width: 80%;
    }
  
    #how-we-work .how-content::before {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }
  
    /* Show Hamburger */
    .menu-toggle {
      display: flex;
      z-index: 10000;
    }
  
    /* Hide the nav menu by default */
    #nav-menu {
      position: absolute;
      top: 70px;
      right: 0;
      width: 250px;
      flex-direction: column;
      background-color: var(--white);
      display: none;
      box-shadow: 0 4px 10px var(--shadow-color);
      padding: 20px 0;
      z-index: 9999;
      border-radius: 0 0 8px 8px;
    }
  
    /* Display menu when .active is toggled */
    #nav-menu.active {
      display: flex;
    }
  
    #nav-menu li {
      margin-left: 0;
      margin-bottom: 15px;
      width: 100%;
      text-align: center;
    }
  
    #nav-menu li a {
      display: block;
      padding: 10px 20px;
    }


  
  
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text,
    .about-image {
      flex: 1 1 100%;
      padding-right: 0;
    }
  
    .about-text ul li {
      justify-content: center;
    }
  
    .about-text p,
    .about-text ul {
      text-align: center;
    }
  
    .services-list,
    .why-content,
    .team-members {
      flex-direction: column;
      align-items: center;
    }
  
    .service-item,
    .why-item,
    .team-member {
      width: 100%;
      max-width: 450px;
    }
  
    .testimonial-item {
      width: 100%;
    }
  
    /* Footer responsive styles */
    .footer-top {
      flex-direction: column;
    }
  
    .footer-brand {
      max-width: 100%;
      text-align: center;
      margin-bottom: 40px;
    }
  
    .footer-logo {
      margin: 0 auto 15px;
    }
  
    .footer-tagline {
      text-align: center;
    }
  
    .footer-columns {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-column {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .footer-column h4 {
      text-align: center;
    }
  
    .footer-column h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-column ul li {
      text-align: center;
    }
  
    .footer-column ul li a:hover {
      transform: none;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-menu {
      justify-content: center;
      margin-top: 15px;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 50px 0;
    }
  
    section h2 {
      font-size: 2em;
    }
  
    #hero h2 {
      font-size: 2em;
    }
  
    #hero p {
      font-size: 1em;
    }
  
    .btn {
      font-size: 0.9em;
      padding: 10px 20px;
    }
  
    .how-step,
    .testimonial-item,
    .team-member {
      width: 100%;
    }
  
    form {
      padding: 20px 15px;
    }
  
    .footer-menu li {
      margin: 0 10px 10px;
    }
  }
  