/* Include all the CSS from previous implementation */
      body {
        font-family: "Mukta", sans-serif;
        background-color: #f9f9f9;
        color: #333;
        line-height: 1.6;
      }

      .top-bar {
        background-color: #0d1140;
        color: white;
        padding: 8px 0;
        font-size: 14px;
      }

      .logo-header {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(219, 219, 219, 0.2);
  transition: all 0.3s ease;
  margin: 10px auto;  
  display: flex;      
  flex-direction: column; 
  align-items: center;
  justify-content: center; 
  padding: 15px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.logo {
  height: 95px;          
  width: 1000px;           
  object-fit: contain;   
  border-radius: 8px;   
  border: 2px solid #ffffff;
  transition: transform 0.3s ease;
  margin-bottom: 10px;   
}

      .nav-bar {
        background-color: #0d1140;
        padding: 0;
      }

      .navbar-nav .nav-link {
        color: white !important;
        padding: 15px 20px;
        font-weight: 500;
      }

      .navbar-nav .nav-link:hover {
        background-color: #171b47;
      }

      .section-title {
        color: #171b47;
        border-bottom: 2px solid #171b47;
        padding-bottom: 10px;
        margin: 30px 0 20px;
      }

      .notification {
        background-color: #fff8e1;
        border-left: 4px solid #ffc107;
        padding: 15px;
        margin: 20px 0;
      }

      .red-icon {
        color: red;     
        font-size: 15px; 
}

      .marquee {
        background-color: #181b3a;
        color: white;
        padding: 10px;
        overflow: hidden;
      }

      .footer {
        background-color: #171b47;
        color: white;
        padding: 30px 0;
        margin-top: 30px;
      }

      .quick-links a {
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
      }

      .quick-links a:hover {
        text-decoration: underline;
      }

      .contact-info i {
        margin-right: 10px;
        width: 20px;
      }

      .copyright {
        background-color: #171b47;
        color: white;
        padding: 10px 0;
        text-align: center;
      }

      .visitor-count {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 2px 8px;
        border-radius: 4px;
        margin-left: 10px;
      }

      /* Dropdown Menu Styles */
      .dropdown-menu-custom {
        background-color: #0d1140;
        border: none;
        border-radius: 0;
        padding: 0;
      }

      .dropdown-item-custom {
        color: white !important;
        padding: 12px 20px;
        border-bottom: 1px solid #2a3173;
      }

      .dropdown-item-custom:hover {
        background-color: #171b47 !important;
        color: white !important;
      }

      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }

      .dropdown-toggle::after {
        margin-left: 5px;
      }
      .footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: "Mukta", sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-bottom: 200px;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,111,97,0.15) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}

.footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.footer h5::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #ff6f61;
  display: block;
  margin-top: 5px;
  transition: width 0.3s;
}

.footer h5:hover::after {
  width: 100px; /* Animated underline */
}

/* Footer links */
.footer p, .footer a {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: #ff6f61;
  transform: translateX(5px);
}

.footer .quick-links a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.footer .quick-links a:hover {
  padding-left: 10px;
  color: #ff6f61;
}

/* Contact info */
.footer .contact-info i {
  margin-right: 10px;
  color: #ff6f61;
  transition: transform 0.3s;
}

.footer .contact-info i:hover {
  transform: scale(1.2);
}

/* Social icons */
.footer .social-icons {
  margin-top: 20px;
}

.footer .social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: white;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.footer .social-icons a:hover {
  background-color: #ff6f61;
  color: #fff;
  transform: scale(1.2);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom a {
  color: #ff6f61;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Footer grid */
.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .col {
  flex: 1 1 200px;
  margin-bottom: 20px;
}
      /* For mobile view */
      @media (max-width: 991px) {
        .dropdown-menu {
          position: static;
          float: none;
          width: auto;
          margin-top: 0;
          background-color: transparent;
          border: 0;
          box-shadow: none;
        }

        .dropdown-item-custom {
          padding-left: 40px;
        }
      }

      /* Complain Form Styles */
      .complain-form-container {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
      }

      .form-label {
        font-weight: 600;
        color: #0d1140;
      }

      .form-control {
        border: 2px solid #e9ecef;
        padding: 12px 15px;
        border-radius: 6px;
        transition: all 0.3s;
      }

      .form-control:focus {
        border-color: #0d1140;
        box-shadow: 0 0 0 0.2rem rgba(13, 17, 64, 0.25);
      }

      .captcha-container {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .captcha-code {
        font-family: "Courier New", monospace;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 3px;
        background: linear-gradient(45deg, #0d1140, #171b47);
        color: white;
        padding: 10px 15px;
        border-radius: 4px;
      }

      .btn-primary {
        background-color: #0d1140;
        border-color: #0d1140;
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s;
      }

      .btn-primary:hover {
        background-color: #171b47;
        border-color: #171b47;
        transform: translateY(-2px);
      }

      .privacy-note {
        background-color: #e8f5e9;
        padding: 15px;
        border-radius: 6px;
        margin-top: 20px;
        font-size: 0.9rem;
      }

      .required-field::after {
        content: " *";
        color: #dc3545;
      }