html {
  scroll-behavior: smooth;
  }
                 footer {
    background-color: #0b1957;
    color: #f8f3ea;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
  }

  .navbar {
      background-color: rgba(11, 25, 87, 0.95);
      padding: 15px 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1030;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .navbar-brand {
      font-weight: 700;
      color: #f8f3ea;
      text-decoration: none;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .navbar-brand:hover {
      color: #9eccfa;
    }

    .navbar-nav {
      display: flex;
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

    .navbar .navbar-nav > li > a {
      color: #f8f3ea;
      padding: 8px 15px;
      text-decoration: none;
      transition: color 0.3s ease, background-color 0.3s ease;
      border-radius: 5px;
      font-size: 1rem;
    }

    .navbar-nav > li > a:hover,
    .navbar-nav > li > a:focus {
      color: #9eccfa;
      background-color: rgba(158, 204, 250, 0.1);
    }

    .navbar-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
    }

    .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      background-color: #f8f3ea;
      margin: 4px 0;
      transition: all 0.3s ease;
    }

    .navbar-social {
      display: flex;
      align-items: center;
    }

    .navbar-social a {
      color: #f8f3ea;
      font-size: 2.0rem; /* Increased from 1.2rem to 1.5rem */
      margin-left: 15px;
      transition: color 0.3s ease;
    }

    .navbar-social a:hover {
      color: #9eccfa;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: rgba(11, 25, 87, 0.95);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      margin-top:0px;
      z-index: 1;
    }

    .dropdown-content a {
      color: #f8f3ea;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }

    .dropdown-content a:hover {
      background-color: rgba(158, 204, 250, 0.1);
      color: #9eccfa;
    }

    .dropdown-social {
      display: flex;
      justify-content: center;
      padding: 12px 0;
    }

    .dropdown-social a {
      color: #f8f3ea;
      margin: 0 15px; /* Increased from 10px to 15px for better spacing */
      padding: 0;
    }

    .dropdown-social a:hover {
      background-color: transparent;
      color: #9eccfa;
    }

    .show {
      display: block;
    }

    @media (max-width: 980px) {
      .navbar-nav, .navbar-social {
        display: none;
      }

      .navbar-toggle {
        display: block;
      }
    }

    @media (min-width: 980px) {
      .dropdown-content {
        display: none !important;
      }
    }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .footer-section {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 30px;
    min-width: 200px;
  }

  .footer-section:last-child {
    margin-right: 0;
  }

  .footer-section h2 {
    color: #9eccfa;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #9eccfa;
  }

  .footer-section p,
  .footer-section a {
    color: #e6d8c7;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;

  }

  .footer-section a:hover {
    color: #9eccfa;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 216, 199, 0.1);
  }

  .copyright-text {
    color: #e6d8c7;
    font-size: 0.9rem;
  }

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

  .footer-social a {
    color: #e6d8c7;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .footer-social a:hover {
    color: #9eccfa;
  }

  .footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
  }

  @media (max-width: 768px) {
    h2{
      font-size: 1.7rem;
    }
    .sections-title h2{
      font-size: 1.9rem;
    }

    .footer-content {
      flex-direction: column;}
      .navbar.scrolled .navbar-nav > li > a,
      .navbar.scrolled .navbar-social a {
        color: #ffffff; /* Dark blue color when scrolled */
      }
      .navbar-nav{
        display: hide;
      }
      #navbarNav{
        display: hide;
      }
      .navbar-social{
        display: hide;
      }
      .navbar-social{
        display: none;
      }
    }

    .footer-section {
      margin-right: 0;
    }

   /* New styles for scrolled state */




   /* Add these new styles for the navbar toggle button */
   .navbar-toggle .icon-bar {
     background-color: #ffffff; /* White color for the toggle button bars */
   }


   /* Add this new style for the navbar toggle button on mobile */
   .navbar-toggle {
     border: none;
     background-color: transparent;
   }

   .navbar.scrolled .navbar-toggle {
     background-color: transparent;
   }

   @media (min-width: 769px) {
     .navbar-brand {
       font-size: 2rem; /* Increased from 1.5rem to 2rem for desktop */
     }

     .navbar-social a {
       font-size: 1.2rem;
     }
     #findus{
      margin-left: 70px;
    }
   }

   @media (max-width: 768px) {
    .dropdown-social {
      padding: 20px 0; /* Increased padding for more space */
    }

    .dropdown-social a {
      font-size: 1.6rem; /* Further increased for mobile */
    }
    
   }

/* === Responsive Adjustments === */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    #home {
        background-position: center;
    }
    .home-info h1 {
        font-size: 2.5rem;
    }
    .mains {
        flex-direction: column;
    }
    .about-img {
        margin-top: 50px;
    }
    #contact .col-md-8,
    #contact .col-md-4 {
        width: 100%;
    }
    .google-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .home-info h1 {
        font-size: 2rem;
    }
    .btn.section-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .about-info h2 {
        font-size: 2.2rem;
    }
    .aboutp p {
        font-size: 1.5rem;
    }
    #contact .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .home-info h1 {
        font-size: 2rem;
    }
    .home-info span {
        font-size: 1rem;
    }
    .about-info h2 {
        font-size: 2rem;
    }
    .aboutp p {
        margin-top: 10px;
        font-size: 1.2rem;
    }
    #contact .section-title h2 {
        font-size: 1.5rem;
    }
    .form-control {
        margin-bottom: 10px;
    }
}
