@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            transition: all 0.25s ease-in-out;
        }

        html {
            font-size: 62.5%;
            font-family: "Montserrat", sans-serif;
        }
        body {
            background-color: var(--background-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        ::-webkit-scrollbar {
            width: 6px;
          }
          ::-webkit-scrollbar-thumb {
            background: var(--main-gradient);
            border-radius: 50px;
          }
          ::-webkit-scrollbar-track {
            background: #f1f1f1;
          }

          .glass {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 1.2rem;
          }
        :root {
            --primary-color: #02a95c;
            --secondary-color: #2a5298;
            --third-color: #1e3c72;
             --main-gradient: linear-gradient(135deg, #2a5298, #1e3c72);
            --font-color: #608a89;
            --font-color-2: #ddd;
            --background-color: #e8f2f4;
            --box-color: #fefefe;
            --heading-color: #444444;
            --heading--font-size: 4rem;
            --font-size: 2rem;
            --hover-color: #00d4ff;
        }

        .container{
          width: 80%;
          height: 100%;
          padding: 2rem 4rem;
          overflow: hidden;
        }

        .grid{
          display: grid;
        }
         .grid-two-column{
          grid-template-columns: repeat(2, 1fr);
        }
         .grid-three-column{
          grid-template-columns: repeat(3, 1fr);
        }
        .grid-four-column{
          grid-template-columns: repeat(4, 1fr);
        }

        li, a {
            list-style: none;
            text-decoration: none;
            color: var(--font-color);
            font-size: var(--font-size);
            font-weight: 800;
        }
      
        .highlight{
          color: var(--secondary-color);
          font-size: 2.5rem;
          font-weight: 800;
          text-align: center;
        }
        .header-main-section {
            padding: 3rem 4rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            width: 100%; 
            z-index: 1000;
        }

        .header-section {
            width: 100%;
            height: 80px;
            background: var(--main-gradient);
            border-radius: 10rem;
            position: relative;
            display: flex;
            align-items: center;
        }

        .navbar {
            width: 100%;
            height: 80px;
            background: transparent;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .nav-left ul,
        .nav-right ul {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-left a,
        .nav-right a,
        .dropdown-btn {
            color: var(--font-color-2);
            text-decoration: none;
            margin: 0 10px;
            font-size: 18px;
            display: block;

            &:hover{
              color: var(--hover-color);
            }
        }

        .logo-img {
            position: absolute;
            left: 50%;
            transform: translate(-50%);
        }

        .logo-img img {
            height: 7.5rem;
            width: auto;
        }
        
.dropdown-content,
.about-dropdown-content {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-content.active,
.about-dropdown-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.about-dropdown {
  position: relative;
}

.about-dropdown-content {
  display: none;
  position: absolute;
  width: 550px;
  max-height: 450px;
  opacity: 0;
  top: 5rem;
  left: -10rem;
  background-color: var(--box-color);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 10px;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  z-index: 200;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease;
  -moz-transition: opacity 0.3s ease, transform 0.3s ease;
  -ms-transition: opacity 0.3s ease, transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
}
.about-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5rem;
    background: transparent;
    z-index: 99;
}

.about-dropdown-content li {
  margin: 0;
  list-style: none; 
}

.about-dropdown-content a {
  color: var(--secondary-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.about-dropdown:hover .about-dropdown-content {
  display: block !important; 
}


.about-dropdown-content {
  transition: linear 0.2s ease;
  -webkit-transition: linear 0.2s ease;
  -moz-transition: linear 0.2s ease;
  -ms-transition: linear 0.2s ease;
  -o-transition: linear 0.2s ease;
}

.about-grid{
  padding: 2rem 1rem;
  text-align: center;
  line-height: 1;
}
.about-contact{
  background: var(--main-gradient);
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  cursor: pointer;

  & a{
     color: #fff;
  }

  &:hover{
     background-color: var(--third-color);
  }
}


.dropdown {
      position: relative;
      display: inline-block;
  }

.dropdown-btn {
    cursor: pointer;
    transition: color 0.3s ease;
  }

/* .dropdown-btn:hover {
   color: var(--primary-color);
  } */
       
.dropdown-content {
    position: absolute;
    left: -20rem;
    width: 650px;
    max-height: 450px; 
    overflow-y: auto;
    top: 5rem; 
    padding: 20px; 
    border-radius: 10px;
    background-color: var(--box-color);
    border: 1px solid var(--main-gradient);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
    z-index: 200;
}


.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5rem;
    background: transparent;
    z-index: 99;
}


.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 20px;
    align-items: start; 
    min-height: 250px; 
}


.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    max-height: 410px; 
    overflow-y: auto; 

    & a{
      color: var(--secondary-color);
    }
}


.divider {
    width: 2px; 
    background: var(--main-gradient);
    margin: 10px auto; 
}

.dropdown-grid .divider {
    width: 2px; 
    min-height: 100%; 
}


.service-overviews {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 410px; 
    overflow-y: auto; 
    
}

.service-overview {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--third-color);
    padding: 10px 15px;
    display: none;
    line-height: 1.5;
    text-align: justify;
}

.service-overview.active {
    display: block;
}

.contact{
  background-color: var(--box-color);
  padding: 2rem 2rem;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  cursor: pointer;

  & a{
     color: var(--main-gradient);
  }
}

.contact:hover{
  background-color: var(--main-gradient);
}

.hero-image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  text-align: center;
  padding: 20px;

  & h2{
    color: var(--box-color);
    font-size: 4rem;
  }
}
.header-image {
  background-image: url('../images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px; 
  position: relative;
}

.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 2rem;
}
.hero-main{
  width: 90%;
  height: auto;
  background: var(--main-gradient);
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  margin-top: 2rem;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}

.hero-content{
  width: 25rem;
  height: 40rem;
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--box-color);
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}

.hero-icon img{ 
  width: 12rem;
  height: 12rem;
}

.box-heading p{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
}
.box-heading:hover{
  color: var(--primary-color);
  cursor: pointer;
}

.sub-heading{
  padding: 1rem 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--third-color) ;
  text-align: center;
}

.sub-heading p{
  padding: 2rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--third-color) ;
  text-align: justify;

   & span{
        color: var(--secondary-color);
        font-size: 1.8;
        font-weight: 700;
    }
}


.section-work-do {
  background: #f8f9fa;
  padding: 6rem 0;
}

.section-work {
  display: grid;
  gap: 2rem; 
  container: section-work / inline-size;
}

.section-work-content.grid-three-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr; 
  gap: 2rem; 
  align-items: start;
}

.section-main {
  text-align: left;
  padding: 0 0;

  & .about-contact {
    margin-top: 2rem;
    text-align: center;

    a {
      display: inline-block;
      background: var(--third-color);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;

      &:hover {
        background: var(--hover-color);
        transform: translateY(-2px);
      }
    }
  }
}

.section-sub-main {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;

  & h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;

    & span {
      color: var(--main-gradient);
      font-weight: 700;
    }
  }
}

    .progress-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
      text-align: center;
    }

    .progress-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .progress-box {
      background: white;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
    }

    .progress-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--main-gradient);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
}

    .progress-box:hover::before {
      transform: scaleX(1);
    }

    .progress-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

   .icon {
    display: block;
    width: 12rem;       
    height: 12rem;       
    margin: 0 auto 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  display: block;
}

    .counter {
      font-size: 3.2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 10px 0;
    }

    .label {
      font-size: 1.1rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    /* ---Footer--CSS--START-- */
     .main-content {
            flex: 1;
            padding: 50px 20px;
            text-align: center;
            color: #333;
        }

        footer {
            /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
            background: var(--main-gradient);
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-about, .footer-links, .footer-contact {
            padding: 10px;
        }

        p{
            font-size: 12px;
            text-align: justify;
        }
        .footer-about h3, .footer-links h3, .footer-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #00d4ff;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin: 12px 0;
        }

        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links ul li a:hover {
            color: #00d4ff;
            padding-left: 8px;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            margin: 0 10px;
            font-size: 2.0rem;
            color: #ddd;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: #00d4ff;
            transform: translateY(-5px);
        }

        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.95rem;
            color: #ccc;

            & p{
                 text-align: center;
            }
        }

        .copyright a {
            color: #00d4ff;
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

    .footer-logo .logo{
      height: 10rem;
      width: auto;
}

    /* .footer-section .main-heading{
     padding-bottom: 2rem;
    }
   .footer-main {
    width: 100%;
    min-height: 600px;
    background-color: var(--primary-color);
    position: relative;
    margin-top: 20rem;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
}

  .footer-contact-section {
    position: absolute;
    top: 0;
    left: 50%;
    gap: 4rem;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    width: 100%;
    max-width: 100rem;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
  }

 .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    margin-top: 250px;
  }

  .quick-link,
  .footer-workwedo {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;

  & a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s ease;

    &:hover {
      color: #fff;
      text-decoration: underline;
    }
  }

  & h4 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
  }
}
.footer-logo {
  & .logo {
      height: 10rem;
      width: auto;
  }
  & .tagline {
    font-size: 1.5rem;
    opacity: 0.85;
  }
}

.footer-form {
  & h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 2.5rem;
  }

  & form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  & input[type="email"] {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.5rem;
    outline: none;
  }

  & input[type="submit"] {
    background: white;
    color: #28a745;
    border: 1rem solid var(--font-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;

    &:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
    }
  }
} */
.hamburger {
  display: none !important;
}



.hamburger {
  display: none;
  position: fixed;
  top: 4rem;
  right: 6rem;
  font-size: 3rem;
  color: var(--secondary-color);
  background: var(--box-color);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.hamburger.active i::before {
  content: "\f00d";
}


 /* About-Team */
  .team-container {
      padding: 20rem 0;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }
  h1 {
      font-size: 5rem;
      margin-bottom: 10px;
      background: var(--main-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
    }

    /* Dropdown */
    .team-dropdown-container {
      position: relative;
      display: inline-block;
      margin-bottom: 50px;
    }

    .team-dropdown-btn {
      background: var(--main-gradient);
      color: white;
      padding: 18px 40px;
      font-size: 1.5rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      min-width: 320px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
      transition: all 0.3s ease;
      position: relative;
    }

    .team-dropdown-btn::after {
      content: '▼';
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1rem;
    }

    .team-dropdown-btn.open::after {
      transform: translateY(-50%) rotate(180deg);
    }

    .team-dropdown-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 30px rgba(102, 126, 234, 0.5);
    }

    .team-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-radius: 16px;
      margin-top: 12px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 10;
    }

    .team-dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .team-dropdown-item {
      padding: 16px 24px;
      color: #333;
      font-weight: 500;
      cursor: pointer;
      transition: 0.2s;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .team-dropdown-item:hover {
      background: #f0f4ff;
      color: #667eea;
      padding-left: 32px;
    }

    .emoji {
      font-size: 1.4rem;
    }

    /* Team Grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .team-grid.show {
      opacity: 1;
      transform: translateY(0);
    }

    .employee-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
    }

    .employee-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .employee-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 15px;
      border: 4px solid #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .employee-name {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .employee-role {
      font-size: 1.8rem;
      color: var(--font-color);
      margin-bottom: 8px;
    }

    .employee-exp {
      font-size: 1.6rem;
      color: var(--primary-color);
      font-weight: 500;
    }

    .fun-fact {
      margin-top: 1.4rem;
      font-size: 0.85rem;
      color: var(--font-color);
      font-style: italic;
      line-height: 1.4;
    }

    .no-data {
      font-size: 1.1rem;
      color: var(--font-color);
      font-style: italic;
      margin-top: 30px;
    }
     .contact-container { 
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
            margin-top: 20rem;
        }

        .contact-info h2, .contact-form h2 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.8em;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .info-item i {
            font-size: 1.4em;
            color: var(--secondary-color);
            margin-right: 15px;
            width: 30px;
        }

        .info-item div h4 {
            margin: 0 0 5px 0;
            color: #333;
        }

        .info-item div p {
            margin: 0;
            color: #666;
            line-height: 1.5;
        }

        .map-container {
            margin-top: 30px;
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            height: 350px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .contact-form form {
            display: grid;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1.5rem;
            transition: border 0.3s;
            font-family: "Montserrat", sans-serif;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        button {
            background: var(--main-gradient);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        button:hover {
            background: var(--font-color);
        }
        .alert-success {
            background-color: #d4edda;   
            color: #155724;            
            border: 1px solid #c3e6cb;  
            padding: 15px 20px;
            border-radius: 5px;
            font-family: 'Arial', sans-serif;
            font-size: 16px;
            margin-bottom: 20px;
            text-align: center;     
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* ===== Desktop ≥1200px ===== */
@media (min-width: 1200px) {
    .hamburger { display: none !important; }
    .navbar { flex-direction: row; justify-content: space-between; position: relative; height: 80px; }
    .nav-left ul, .nav-right ul { flex-direction: row; gap: 20px; }
    .logo-img { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* ===== Laptop 992px – 1199px ===== */
@media (max-width: 1199px) and (min-width: 992px) {
    .hamburger { display: none !important; }
    
    .navbar { 
        flex-direction: row; 
        justify-content: space-between; 
        padding: 0 1rem !important; 
        text-align: center;
    }

    .nav-left ul, .nav-right ul { 
        flex-direction: row; 
        gap: 10px !important;  
    }

    .nav-left a,
    .nav-right a,
    .dropdown-btn,
    .about-dropbtn {
        font-size: 14px !important;        
        padding: 6px 10px !important;    
    }

    .logo-img img {
        /* height: 55px !important;           */
        display: none;
    }
    .contact{
      padding: 1rem 1rem;
    }
     .hero-section{
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
}


/* ===== Tablet 768px – 991px ===== */
@media (max-width: 991px) and (min-width: 768px) {
    .hamburger { display: flex !important; }
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 8rem;
        transition: left 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        background: var(--box-color);

        & li a{
        color: var(--secondary-color);
      }
    }
    .navbar.active { left: 0; }
    .nav-left ul, .nav-right ul { flex-direction: column; gap: 2rem; padding: 0 2rem; }
    .logo-img { position: static; transform: none; margin: 2rem 0; }

    .hero-section{
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
}

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--box-color);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10rem;
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;

    & li a{
      color: var(--secondary-color);
    }
  }
  .contact-container {
        flex-direction: column;
        }
        .contact-info, .contact-form {
            width: 100%;
        }
 
  .navbar.active { left: 0; }

  .nav-left, .nav-right { width: 100%; text-align: center; }
  .nav-left ul, .nav-right ul { flex-direction: column; gap: 2.5rem; padding: 0 3rem; }
  .nav-left a, .nav-right a, .dropdown-btn, .about-dropbtn { font-size: 2.4rem; padding: 1rem 0; display: block; }

  .logo-img { position: static; transform: none; margin: 2rem 0; }
  .logo-img img { height: 60px; }


  .dropdown-content, .about-dropdown-content {
    position: static;
    width: 100%;
    left: 0;
    top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: #f0f8f7;
    border-radius: 1.5rem;
    margin-top: 1.5rem;
    padding: 0 2rem;
    transition: all 0.4s ease;
    box-shadow: none;
  }

  .dropdown-content.active, .about-dropdown-content.active {
    max-height: 1500px;
    opacity: 1;
    padding: 2.5rem 2rem;
  }

  .dropdown-grid { grid-template-columns: 1fr; gap: 2rem; }
  .divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-div { border-right: none; border-bottom: 1px solid #ddd; padding-bottom: 1.5rem; }
  .social-icon { width: 6rem; height: 6rem; }
   .contact-container { 
            margin: 0 0;
        }

  .footer-contact-section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: -10rem auto 4rem !important;
    width: 90% !important;
    max-width: 600px;
    z-index: 10;
  }

  .footer-main { margin-top: 12rem; }
   .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
            
    .footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
      }


  .hero-content, .progress-box, .section-sub-main {
    width: 100% !important;
    margin: 1.5rem 0;
    padding: 2rem;
  }

  .hero-main, .progress-container, .section-work-content, .hero-section, .footer-contact-section, .footer-content{
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-content{
    text-align: center;
    margin-top: 5rem;
  }

  body.menu-open { overflow: hidden; }
}
   @media (max-width: 600px) {
      h1 { font-size: 2.2rem; }
      .team-dropdown-btn { min-width: 280px; font-size: 1.1rem; }
      .team-grid { grid-template-columns: 1fr; }
    }