:root {
    --primary-color: "#1d8d0b";
    --secondary-color: "#ff5733";
  }
    /* Top bar */
    .top-bar {
      background: #2e0e86;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }

    .top-bar a {
      color: #fff;
    }

    /* Sticky navbar */
    .sticky-top {
      z-index: 1020;
    }

    /* Navbar base style */
    .navbar {
      padding: 0;
      background-color: transparent !important;
    }

    /* Nav links default for mobile */
    .navbar-light .navbar-nav .nav-link {
      
      padding: 15px;
      font-weight: 500;
    }
     .dropdown:hover .dropdown-menu {
        display: block;
      }

    /* Desktop-specific navbar */
    @media (min-width: 992px) {
      .navbar {
        background-color: var(--primary-color) !important;
      }

      .navbar-light .navbar-nav .nav-link {
        color: #ffffff !important;
      }

      .navbar-light .navbar-nav .nav-link:hover,
      .navbar-light .navbar-nav .nav-link.active {
        
        background: var(--secondary-color) !important;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
      }

     .dropdown-menu {
    margin: 0 !important;
    padding: 0 !important;
    top: 100%; /* aligns just below navbar */
    border: none;
    border-radius: 0;
    left: 0;
    right: 0;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--secondary-color);
  }
  
  
      .dropdown-menu a {
        color: #2e0e86 !important;
        padding: 10px;
        display: block;
      }

      .dropdown-menu a:hover {
        background-color: var(--secondary-color) !important;
        color: white !important;
        display: block;
      }
    }

    /* Hero section */
 #hero-slider {
  position: relative;
}

.swiper {
  width: 100%;
  height: 85vh;
  position: relative;
    z-index: 2;

}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  position: relative;
}

.overlay-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5); /* dark overlay for content only */
  color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 600px;
}

.slider-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.slider-description {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 20px;
}

.btn-yellow {
  background-color: var(--secondary-color);
  color: #000;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
  font-size: 1rem;
  text-decoration: none;
}

.btn-yellow:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .overlay-box {
    left: 5%;
    right: 5%;
    padding: 20px;
    max-width: 100%;
  }

  .slider-title {
    font-size: 2rem;
  }

  .slider-description {
    font-size: 1rem;
  }
}

  .bg1{
        background-color:indigo;color:white;
    }
    .bg1:hover{
        color:yellow;
    }

.contact-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    font-size: 24px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #e91e63;
}
.breaking-marquee-wrapper {
     background: var(--secondary-color, #ffc107);
 
  color: white;
  font-size: 16px;
  overflow: hidden;
}

.breaking-label {
  background: linear-gradient(135deg, var(--secondary-color, #ffc107), var(--primary-color, #004080));
  color: #fff;
  padding: 10px 25px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 0 50px 50px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.breaking-marquee {
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden;
}

.marquee-track-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  margin-right: 60px;
}

.marquee-track a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.marquee-track a:hover {
  text-decoration: underline;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  background-color: var(--primary-color, #004080);
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  transition: background-color 0.3s ease;
}

#goTopBtn:hover {
  background-color: var(--secondary-color, #ffc107);
  color: #000;
}

.site-footer {
  background-color: var(--primary-color, #1d3557);
  color: #fff;
  font-size: 15px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color, #ffc107);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color, #ffc107);
}

.footer-contact i {
  margin-right: 8px;
  color: var(--secondary-color, #ffc107);
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Desktop Header */
.header-top {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid #f0f0f0;
}

/* Logo Section */
.logo-section img {
    max-height: 80px;
    width: auto;
}

/* Contact Section Styling */
.contact-section {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: #e91e63;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
    line-height: 1.2;
}

.contact-detail {
    color: #666;
    font-size: 14px;
    line-height: 1.2;
}

/* Login Buttons */
.login-buttons {
    display: flex;
    gap: 0;
}

.btn.bg1 {
    background: #6b46c1 !important;
    color: white !important;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.btn.bg1:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn.bg1:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-right: none;
    margin-left: 0 !important;
}

.btn.bg1:hover {
    background: #553c9a !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Mobile Header Specific Styles */
.mobile-header {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-logo {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-contact-section {
    padding: 15px 0;
    background: #f8f9fa;
}

.mobile-contact-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.mobile-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e91e63;
    border-radius: 50%;
    margin-bottom: 8px;
}

.mobile-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
}

.mobile-contact-label {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 2px;
}

.mobile-contact-detail {
    color: #666;
    font-size: 11px;
    word-break: break-all;
}

.mobile-login-section {
    padding: 15px 0;
    text-align: center;
}

.mobile-login-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 280px;
    margin: 0 auto;
}

.mobile-login-buttons .btn.bg1 {
    padding: 10px 16px;
    font-size: 12px;
    flex: 1;
}

/* Hamburger Menu for Mobile Navigation */
.mobile-nav-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    padding: 10px;
}

.mobile-nav-menu {
    display: none;
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 15px 0;
}

.mobile-nav-menu.show {
    display: block;
}

.mobile-nav-item {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-item a:hover {
    color: #6b46c1;
}
body {
  overflow-x: hidden;
}
