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: 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;
}

      .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;
      }

      /* 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;
        }
      }

      /* Tax Collection Styles */
      .word-rotator {
        position: relative;
        display: inline-block;
        text-align: center;
      }

      .word-rotator-words {
        position: relative;
        overflow: hidden;
        display: inline-block;
        height: 1.2em;
        vertical-align: bottom;
        color: white;
        padding: 0 5px;
        border-radius: 4px;
      }

      .word-rotator-words b {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        white-space: nowrap;
        transition: opacity 0.5s ease-in-out;
      }

      .word-rotator-words b.is-visible {
        opacity: 1;
        position: relative;
      }

      .tax-message {
        background-color: #e8f5e9;
        padding: 20px;
        border-radius: 8px;
        margin: 30px 0;
        text-align: center;
        border-left: 4px solid #4caf50;
      }

      .collapse-section {
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
      }

      .collapse-header {
        background-color: #0d1140;
        color: white;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 1.1rem;
      }

      .collapse-header:hover {
        background-color: #171b47;
      }

      .collapse-content {
        background-color: white;
        padding: 20px;
        border-left: 4px solid #0d1140;
      }

      .coming-soon {
        text-align: center;
        padding: 30px;
        color: #6c757d;
        font-style: italic;
      }

      .payment-methods {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
      }

      .payment-method {
        text-align: center;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        width: 120px;
        transition: all 0.3s;
      }

      .payment-method:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      .payment-method i {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #0d1140;
      }