  /* Mobile Styles */
  @media (max-width: 788px) {
    .title h1{
        font-size:20px!important;
    }
    .title p{
        font-size:15px!important;
    }
    .hamburger {
      display: block !important;
      position: absolute;
      right: 20px;
      top: 25px;
      z-index: 2000;
      background: rgba(255, 255, 255, 0.1) !important;
      border: 2px solid rgba(255, 255, 255, 0.3) !important;
      font-size: 1.5rem !important;
      color: white !important;
      cursor: pointer !important;
      padding: 8px !important;
      border-radius: 8px !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      width: 45px !important;
      height: 45px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
      backdrop-filter: blur(10px) !important;
    }

    .hamburger:hover {
      background-color: rgba(255, 255, 255, 0.2) !important;
      border-color: rgba(255, 255, 255, 0.5) !important;
      transform: scale(1.05) !important;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
    }

    .hamburger:active {
      transform: scale(0.95) !important;
    }

    .hamburger i {
      font-size: 1.4rem !important;
      color: white !important;
      transition: transform 0.3s ease !important;
    }

    .hamburger.active i {
      transform: rotate(90deg) !important;
    }

    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: linear-gradient(135deg, #004d00 0%, #006400 100%) !important;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      z-index: 999;
      margin-left: 0;
      padding: 6px 0 6px 0;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
      animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
      .footer-right a {
          font-size:9px;
      }
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .nav-links.active {
      display: flex;
    }

    .nav-links ul {
      flex-direction: column;
      gap: 0 !important;
      width: 100%;
      padding: 0;
    }

    .nav-links ul li {
      width: 100%;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 6px 0 6px 18px;
      transition: background-color 0.3s ease;
    }

    .nav-links ul li:hover {
      background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-links ul li a {
      font-size: 1.1rem !important;
      width: 100%;
      display: block;
      background: none !important;
      color: white !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      font-weight: 600 !important;
      margin: 0;
      padding: 6px 0 6px 18px!important;
      text-align: left;
      transition: color 0.3s ease;
    }

    .nav-links ul li a:hover {
      color: #e0e0e0 !important;
    }

    .nav-links ul li.dropdown > a {
      cursor: pointer;
      font-weight: 600 !important;
      background: none !important;
      color: white !important;
      border: none !important;
      box-shadow: none !important;
      padding: 6px 0 6px 18px !important;
      text-align: left;
      font-size: 1.1rem !important;
    }

    .nav-links ul li.dropdown button.dropdown-toggle {
      cursor: pointer;
      font-weight: 600 !important;
      background: none !important;
      color: white !important;
      border: none !important;
      box-shadow: none !important;
      padding: 6px 0 6px 18px !important;
      text-align: left;
      font-size: 1.1rem !important;
      width: 100%;
      display: block;
      transition: color 0.3s ease;
            z-index: 9990 !important;
    }

    .nav-links ul li.dropdown button.dropdown-toggle:hover {
      color: #e0e0e0 !important;
        z-index: 9990 !important;
    }

    .dropdown {
      position: static;
      z-index: 9990 !important;
    }

    .dropdown-menu {
      position: static !important;
      background: rgba(0, 0, 0, 0.15) !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      min-width: 0 !important;
      padding: 8px 0 8px 28px !important;
      display: none;
      margin-top: 0;
      border-left: 3px solid rgba(255, 255, 255, 0.3);
      animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
      z-index: 9990 !important;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-10px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .dropdown.open .dropdown-menu {
      display: block !important;
      z-index: 9990 !important;
    }

    .dropdown-menu a {
      color: #e0e0e0 !important;
      font-size: 1rem !important;
      padding: 12px 0 !important;
      background: none !important;
      text-align: left !important;
      border: none !important;
      box-shadow: none !important;
      font-weight: 500 !important;
      transition: all 0.3s ease;
      display: block;
      width: 100%;
      text-decoration: none;
    }

    .dropdown-menu a:hover {
      color: white !important;
      background-color: rgba(255, 255, 255, 0.1) !important;
      padding-left: 8px !important;
    }

    /* Ensure dropdown menus are visible on mobile */
    .nav-links ul li.dropdown {
      position: relative;
    }

    .nav-links ul li.dropdown.open .dropdown-menu {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      max-height: 500px !important;
    }

    /* Make sure dropdown items are clickable */
    .dropdown-menu a {
      pointer-events: auto !important;
      cursor: pointer !important;
    }

    .sign-up .btn {
      background: #217977 !important;
      color: white !important;
      border-radius: 8px !important;
      font-size: 1.1rem !important;
      font-weight: 600 !important;
      width: calc(100% - 56px);
      text-align: center;
      padding: 6px 6px !important;
      margin: 6px 18px !important;
      display: block;
      border: none !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      height: auto;
    } 

    .sign-up .btn:hover {
      background: linear-gradient(135deg, #ff6b6b 0%, #ff4d4d 100%) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(255, 77, 77, 0.4) !important;
    }

    .sign-up .btn:active {
      transform: translateY(0) !important;
    }

    /* Fix infrastructure centering on mobile */
    .form-dropdown-infra {
      left: auto !important;
      position: relative !important;
    }
    .carousel {
      height:50vh;
      width: 50vh;
      margin-bottom: auto;
    }
    .read-more{
      font-size: 10px;
    }
    .footer-right{
  font-size: 9px;
}

/* === ANNOUNCEMENT MOBILE FIX === */
.announcement-item {
  display: flex;
  flex-direction: column !important; /* stack vertically */
  align-items: center;
  text-align: center;
  padding: 15px;
}

.announcement-details {
  width: 100%;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.0 !important;
}

.announcement-details h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.announcement-info {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}
  }
    
    @media (max-width: 1300px) {
      .news-cards-track {
        width: 95vw;
        max-width: 95vw;
      }
    }
  /* ===== Responsive Fixes ===== */

  /* Tablets (≤ 992px) */
  @media (max-width: 992px) {
    .announcement-carousel {
      flex-direction: column;
      padding: 20px;
      height: auto;
    }

    .announcement-item.active {
      flex-direction: column;
    }

    .announcement-image img {
      width: 100%;
      height: auto;
      max-height: 400px;
    }

    .announcement-details {
      padding-left: 0;
      margin-top: 20px;
      text-align: center;
    }

    .announcement-details h3 {
      font-size: 26px;
    }

    .announcement-details p,
    .announcement-info {
      font-size: 18px;
    }

      .announcement-controls.left { left: 10px; }
  .announcement-controls.right { right: 10px; }

  /* Fix infrastructure centering on tablets */
  .form-dropdown-infra {
    left: auto !important;
    position: relative !important;
  }
}

  /* Mobile Phones (≤ 600px) */
  @media (max-width: 800px) {
    .announcement-carousel {
      padding: 15px;
    }

    .announcement-details h3 {
      font-size: 20px;
    }

    .announcement-details p,
    .announcement-info {
      font-size: 14px;
    }

    .announcement-controls {
      font-size: 20px;
      width: 40px;
      height: 40px;
    }

    .announcement-controls.left,
    .announcement-controls.right {
      top: 200px;
      bottom: 15px;
      transform: none;
    }

    .announcement-controls.left { left: 15px; }
    .announcement-controls.right { right: 15px; }

  }    
    @media (max-width: 768px) {
      .announcement-container { flex-direction: column; }
      .announcement-details { padding-left: 0; padding-top: 20px; }
    }


      @media (min-width: 100px) and (max-width: 700px) {

          .form-container {
            display: flex;             /* Ensure flexbox layout is applied */
            flex-wrap: wrap;           /* Allow items to wrap to next line */
            gap: 20px;                 /* Space between items */
            justify-content: center;  /* Center the items horizontally */
            padding: 20px;             /* Add internal padding */
        }
      
        .form-container > * {
            flex: 1 1 45%;             /* Each child takes ~45% width */
            max-width: 100%;           /* Prevent overflow */
            min-width: 250px;          /* Prevent too-small items */
        }

        /* Fix infrastructure centering on small screens */
        .form-dropdown-infra {
            left: auto !important;
            position: relative !important;
        }
        .form-title{
            font-size:12px;
        }
        .form-title img{
            width: 70px;
            height: auto;
        }
        .form-dropdown-content{
            font-size:10px;
            position:absolute;
            top:0;
            max-height:150px;
        }
        .form-dropdown-infra .form-dropdown-content {
    display: none; /* hide by default */
    position: absolute;
    top: 0;
    font-size: 10px;
}

.form-dropdown-infra.open .form-dropdown-content {
    display: block !important; /* show when .open is added by JS */
}
        .form-dropdown:hover .form-dropdown-content  {
            display: none !important;  /* disable hover open ONLY on mobile */
        }

        .form-dropdown.open .form-dropdown-content {
            display: block !important;  /* allow click-to-open */
        }
        .description{
            font-size:11px;
        }
        .announcement-details{
            font-size: 5x;
        }
        .announcement-image{
            height: 10px;
            width:auto;
        }
        .announcement-info{
            font-size: 5px;
        }
  }


    /* Media Queries for Larger Screens */
    @media (min-width: 768px) and (max-width: 1023px) {
      .navbar {
          padding: 10px 50px;
      }
      
      .logo img {
          width: 80px;
      }
      
      .title h1 {
          font-size: 30px;
      }
      
      .title p {
          font-size: 20px;
      }
      
      nav {
          position: static;
          width: auto;
          height: auto;
          background: transparent;
          padding-top: 0;
      }
      
      nav ul {
          flex-direction: row;
          padding: 0;
          gap: 30px;
      }
      
      nav ul li a {
          font-size: 18px;
      }
      
      .dropdown-menu {
          position: absolute;
          background: rgba(0, 0, 0, 0.9);
          min-width: 180px;
          border-radius: 5px;
          padding-left: 0;
      }
      
      .menu-toggle {
          display: none;
      }
      
      .announcement-carousel {
          height: 400px;
      }
      
      .announcement-item.active {
          flex-direction: row;
      }
      
      .announcement-container {
          flex-direction: row;
      }
      
      
      .announcement-details {
          padding-left: 20px;
          text-align: left;
      }
      
      .news-carousel-track {
          justify-content: center;
          overflow-x: hidden;
      }
      
      .news-controls {
          display: block;
      }
      
      .form-container {
        display: flex;             /* Ensure flexbox layout is applied */
        flex-wrap: wrap;           /* Allow items to wrap to next line */
        gap: 20px;                 /* Space between items */
        justify-content: center;  /* Center the items horizontally */
        padding: 20px;             /* Add internal padding */
    }

    .form-container > * {
        flex: 1 1 45%;             /* Each child takes ~45% width */
        max-width: 100%;           /* Prevent overflow */
        min-width: 250px;          /* Prevent too-small items */
    }

    /* Fix infrastructure centering on tablets */
    .form-dropdown-infra {
        left: auto !important;
        position: relative !important;
    }
    .form-title{
        font-size:medium;
    }
    .form-title img{
        width: 70px;
        height: auto;
    }
    .form-dropdown-content{
        font-size:medium;
    }
    .description{
        font-size:medium;
    }

      .footer-content {
          flex-direction: row;
      }
      
      .footer-left {
          align-items: flex-start;
      }
      
      .footer-right {
          align-items: flex-end;
          text-align: right;
          margin-top: 0;
      }
  }

  @media (min-width: 992px) {
      .logo img {
          width: 100px;
      }
      
      .title h1 {
          font-size: 24px;
      }
      
      .title p {
          font-size: 16px;
      }
      
      nav ul {
          gap: 40px;
      }
      
      nav ul li a {
          font-size: 20px;
      }
      
      .carousel {
          height: 70vh;
      }
      
      .announcement-carousel {
          height: 450px;
      }
      
      .announcement-image img {
          max-width: 600px;
          max-height: 400px;
      }
      
      .form-container {
          grid-template-columns: 1fr 1fr 1fr;
          flex-direction:wrap;
      }

      /* Fix infrastructure centering on large screens */
      .form-dropdown-infra {
          left: auto !important;
          position: relative !important;
      }
  }

  @media (min-width: 1200px) {
      .carousel {
          height: 80vh;
      }
      
      .form-container {
          grid-template-columns: 1fr 1fr;
          flex-direction:wrap;
      }

      /* Fix infrastructure centering on extra large screens */
      .form-dropdown-infra {
          left: auto !important;
          position: relative !important;
      }
  }
  @media (max-width: 768px) {
    .announcement-carousel {
      padding: 15px;
      height: auto;
    }
  
    .announcement-item {
      flex-direction: column;
    }
  
  
    .announcement-details {
      padding-left: 0;
      margin-top: 15px;
      text-align: center;
    }
  
    .announcement-details h3 {
      font-size: 20px;
    }
  
    .announcement-details p,
    .announcement-info {
      font-size: 14px;
    }
  
.announcement-controls {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  .announcement-controls.left { left: 10px !important; right: auto !important; }
  .announcement-controls.right { right: 10px !important; left: auto !important; }
  }

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 10px 15px;
  }
  .logo img {
    width: 90px !important;
  }
  .title h1 {
    font-size: 22px;
  }
  .title p {
    font-size: 14px;
  }
  .nav-links {
    margin-left: 0;
  }
  .nav-links ul {
    gap: 20px !important;
  }
    .news-cards-track {
        width: 98vw;
        max-width: 98vw;
      }
      .news-card-item {
        width: 320px;
        height: 450px;
      }
      .news-arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
  }
    .news-arrow.left {
    left: 10px;
    right: auto;
  }
  .news-arrow.right {
    right: 10px;
    left: auto;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 10px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(135deg, #006400 0%, #00b86b 100%) !important;
    z-index: 1000;
    height: auto;
    padding-top: 12px !important;
  }
  .top-sections {
    background: none !important;
  }
  .logo-title-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  .logo img {
    width: 100px !important;
    margin: 0 !important;
  }
  .title {
    margin-left: 10px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 !important;
  }
  .certificates-header{
    font-size: larger;
  }
  .latest-news{
    font-size: large;
    margin-top: -150px;
  }
  .announcements{
    font-size: large;
  }
  .announcement-carousel{
    margin-bottom: 100px;
  }
}

@media (max-width: 500px) {
  .logo img {
    width: 50px !important;
  }
  .title h1 {
    font-size: 12px;
  }
  .title p {
    font-size: 8px;
  }
  
  .hamburger {
    right: 15px !important;
    top: 20px !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 1.2rem !important;
  }
  
  .nav-links ul li {
    padding: 10px 0 10px 20px !important;
  }
  
  .nav-links ul li a {
    font-size: 1.1rem !important;
  }
  
  .dropdown-menu {
    padding-left: 20px !important;
  }
  
  .dropdown-menu a {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 700px) {
  .logo-title-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto;
  }
  .logo img {
    width: 100px !important;
    margin: 0 !important;
  }
  .title {
    margin-left: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 !important;
  }
  .dropdown-menu {
    display: none;
    position: static !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    padding-left: 24px !important;
  }
  .dropdown.open .dropdown-menu {
    display: block !important;
  }
  .dropdown-menu a {
    color: #e0e0e0 !important;
    font-size: 1rem !important;
    padding: 8px 0 !important;
    background: none !important;
    text-align: left !important;
    border: none !important;
    box-shadow: none !important;
  }
  .nav-links ul li.dropdown > a {
    cursor: pointer;
    font-weight: bold;
    background: none !important;
    color: white !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    text-align: left;
  }
    .news-cards-track {
        width: 100vw;
        max-width: 100vw;
        gap: 10px;
      }
      .news-card-item {
        width: 50vw ;
        min-width: 160px;
        height: 300px !important;
        padding: 10px 5px 20px 5px;
      }
      .news-card-item img {
        height: 120px !important;
        width: 140px !important;
      }
      .news-card-item h3 {
      font-size: 0.8rem;
    }
      .news-card-item h3 {
      font-size: 0.6rem;
    }
      .view-btn {
        font-size: 0.6rem;
        padding: 8px 0;
        margin-top: 30px;
      }
        .news-arrow {
    position: absolute;
    top: 50%;
    left: 100px;
    right: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 18px;
    z-index: 20;
  }
  .news-arrow.left {
    left: -100px;
    right: auto;
  }
  .news-arrow.right {
    right: -100px;
    left: auto;
  }
      .news-section h2 {
      font-size: larger;
      }
        .logo img {
    width: 100px !important;
  }

  .announcement-carousel {
    width: 90vw;
    margin: 10px auto;
    padding: 0;
    height: auto;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    position: relative;
  }

  /* NEWS SECTION MOBILE FIX */
  .news-section {
    padding: 20px 10px;
    background-size: 100% 50%;
  }

  .news-section h2 {
    font-size: large;
    text-align: center;
    margin-bottom: 20px;
  }
  .news-cards-track {
    gap: 15px;
  }

  .news-card-item {
    margin: 0 5px;
  }
  .announcement-container {
    flex: 1 1 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 90%;
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #ccc;
    padding: 10px;
    position: relative;
    margin-bottom: 90px;
  }
  .announcement-controls {
    position: absolute;
    bottom: 10%;
    transform: translateY(-50%);
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 18px;
    z-index: 20;
    background: #004225;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
  }
  .announcement-controls.left {
    left: -18px;
    right: auto;
  }
  .announcement-controls.right {
    right: -18px;
    left: auto;
  }
  .announcement-item {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    display: flex;
    gap: 10px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .announcement-image {
    flex: 0 0 40vw;
    max-width: 90vw;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .announcement-image img {
    width: 100%;
    max-width: 100%;
    height: 800px;
    min-height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block;
  }
  .announcement-details {
    flex: 1 1 0;
    padding-left: 0;
    margin-top: 0;
    text-align: center;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
  .announcement-details h3 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
    color: #004d00 !important;
    font-weight: bold !important;
  }
  .announcement-details p,
  .announcement-info {
    font-size: 0.7rem !important;
    color: #333 !important;
  }
  .announcement-info li {
    font-size: 0.7rem !important;
    margin-bottom: 4px !important;
    color: #555 !important;
  }
  .announcement-controls {
    top: 30% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  .announcement-controls.left { left: 10px !important; right: auto !important; }
  .announcement-controls.right { right: 10px !important; left: auto !important; }
.map-container{
  height: 200px !important;
  width: 230px !important;
}
.map-container iframe {
    width: 100% !important;
    height: 400px !important;
    max-height: 50vh !important;
    border: none !important;
    display: block !important;
  }
  
  .location-title {
    font-size: 1.2rem !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  
  .location-title::before {
    font-size: 1rem !important;
  }

  .location-description {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    padding: 0 10px !important;
  }
}

@media (max-width: 1200px) {
  .footer {
    padding: 20px 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px !important;
    min-height: auto !important;
  }
  
  .footer-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    font-size: inherit;
    flex: 1;
    text-align: center !important;
  }

  .logo-container {
    display: flex;
    gap: 15px !important;
    margin-bottom: 20px !important;
    left: 0 !important;
    justify-content: center !important;
    width: 100%;
  }

  .logo-container img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
  }

  .footer-right .contact-heading {
    width: 100%;
    text-align: center !important;
    margin-bottom: 20px !important;
    font-size: 16px !important;
    font-weight: bold;
  }

  .footer-right .contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px !important;
    gap: 12px !important;
    width: 100%;
  }

  .footer-right .contact-icon {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer-left div{
    margin-top: 0 !important;
  }
  .footer-left p {
    text-align: center !important;
    position: static !important;
    right: auto !important;
    font-size: 13px !important;
    margin-bottom: 1px !important;
    line-height: 1.0;
    width: 100%;
  }

  .footer-right p {
    font-size: 13px !important;
    margin-bottom: 15px !important;
    line-height: 1.4;
  }
}

@media (max-width: 500px) {
  .footer {
    padding: 20px 12px !important;
    font-size: 13px !important;
  }
  
  .footer-content {
    gap: 15px !important;
  }

  .logo-container {
    gap: 12px !important;
    margin-bottom: 15px !important;
  }

  .logo-container img {
    width: 40px !important;
    height: 40px !important;
  }

  .footer-right .contact-heading {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }

  .footer-right .contact-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .footer-left p,
  .footer-right p {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .footer-right .contact-row {
    margin-bottom: 12px !important;
    gap: 10px !important;
  }
}

@media (max-width: 400px) {
  .footer {
    padding: 18px 10px !important;
    font-size: 12px !important;
  }
  
  .logo-container img {
    width: 35px !important;
    height: 35px !important;
  }

  .footer-right .contact-heading {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }

  .footer-left p,
  .footer-right p {
    font-size: 11px !important;
  }

  .footer-right .contact-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .footer-right .contact-row {
    margin-bottom: 10px !important;
    gap: 8px !important;
  }
  
  .hamburger {
    right: 10px !important;
    top: 15px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  
  .nav-links ul li {
    padding: 8px 0 8px 15px !important;
  }
  
  .nav-links ul li a {
    font-size: 1rem !important;
  }
  
  .dropdown-menu {
    padding-left: 15px !important;
  }
  
  .dropdown-menu a {
    font-size: 0.8rem !important;
  }
}
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1;
    max-height: 500px;
  }
}

/* Mobile dropdowns - click only, no hover */
@media (max-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }
  
  .dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
