  /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a5276;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #f5f7fa;
            --dark: #2c3e50;
            --success: #27ae60;
            --food: #e67e22;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .logo span {
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Chairman Section */
        .chairman {
            padding: 80px 0;
            background-color: white;
        }

        .chairman-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
        }

        .chairman-image {
            text-align: center;
        }

        .chairman-photo {
            width: 100%;
            max-width: 300px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .chairman-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.8rem;
        }

        .chairman-info h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .chairman-message {
            background-color: var(--light);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            position: relative;
        }

        .chairman-message p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .chairman-signature {
            text-align: right;
            font-weight: 600;
            color: var(--primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--accent);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Institutions Section */
        .institutions {
            padding: 80px 0;
            background-color: white;
        }

        .institution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .institution-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .institution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .institution-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .card-content p {
            margin-bottom: 15px;
            color: #666;
        }

        .card-btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .card-btn:hover {
            background-color: var(--primary);
        }

        /* DrBee Section */
        .drbee {
            padding: 80px 0;
            background: linear-gradient(135deg, #fef9e7 0%, #fdebd0 100%);
        }

        .drbee-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .drbee-image {
            text-align: center;
        }

        .drbee-logo {
            width: 100%;
            max-width: 300px;
            border-radius: 10px;
        }

        .drbee-info h3 {
            color: var(--food);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .drbee-info p {
            margin-bottom: 20px;
        }

        .drbee-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: var(--food);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.2rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--light);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo h3 {
            color: white;
            margin-bottom: 15px;
        }

        .footer-links h4,
        .footer-contact h4 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after,
        .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: #bbb;
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .contact-container,
            .chairman-container,
            .drbee-container {
                grid-template-columns: 1fr;
            }

            .about-image,
            .chairman-image,
            .drbee-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                margin-bottom: 15px;
            }

            nav ul {
                margin-top: 15px;
            }

            nav ul li {
                margin: 0 10px;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .drbee-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }

            nav {
                width: 100%;
                display: none;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                margin-top: 20px;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hero {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        
/* Notices and YouTube Section */
.notices-youtube {
  padding: 80px 0;
  background-color: var(--light);
}

.notices-youtube .row {
  display: flex;
  flex-wrap: wrap;
}

.notices-youtube .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.notices-youtube .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.notices-youtube .section-title h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.notices-youtube .notice-board {
  height: 300px;
  overflow: hidden;
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.notices-youtube .notice-board::before {
  content: "📢";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 24px;
}

.notices-youtube .notice-board marquee p {
  margin: 15px 0;
  padding: 15px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.notices-youtube .notice-board marquee p:hover {
  transform: translateX(5px);
}

.notices-youtube .notice-board marquee p::before {
  content: "📌 ";
  color: var(--secondary);
  font-weight: bold;
}

/* Card Carousel Section */
.card-carousel {
  padding: 80px 0;
  background-color: white;
}

.card-carousel .carousel-item {
  padding: 20px;
}

.card-carousel .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-carousel .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-carousel .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.card-carousel .card-body {
  padding: 20px;
}

.card-carousel .card-title {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-carousel .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive adjustments for card carousel */
@media (max-width: 992px) {
  .card-carousel .col-lg-4 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .card-carousel .col-md-6 {
    margin-bottom: 30px;
  }

  .card-carousel .card-img-top {
    height: 150px;
  }

  .card-carousel .card-body {
    padding: 15px;
  }

  .card-carousel .card-title {
    font-size: 1.1rem;
  }

  .card-carousel .card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .card-carousel .col-sm-12 {
    margin-bottom: 30px;
  }

  .card-carousel .card-img-top {
    height: 120px;
  }

  .card-carousel .card-body {
    padding: 12px;
  }

  .card-carousel .card-title {
    font-size: 1rem;
  }

  .card-carousel .card-text {
    font-size: 0.85rem;
  }
}

#heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
#heroCarousel .container {
  position: relative;
  /* z-index: 2; */
}
.hero-btn {
  background-color: #ffc107; /* yellow theme */
  color: #000;
  font-weight: 600;
  padding: 6px 18px;       /* smaller size */
  font-size: 0.9rem;       /* smaller text */
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.hero-btn:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-btn {
    padding: 5px 16px;
    font-size: 0.8rem;
  }
}


/* Ensure dropdown works in Chrome */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown > a {
    cursor: pointer;
    display: block;
}

/* Submenu hidden by default */
nav ul li.dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;       /* directly below parent */
    left: 0;
    background: #1a5276;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Make sure submenu items don’t wrap */
nav ul li.dropdown .submenu li a {
    color: white;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

/* Show submenu on hover */
nav ul li.dropdown:hover .submenu,
nav ul li.dropdown:focus-within .submenu {
    display: block;
}

/* Hover effect */
nav ul li.dropdown .submenu li a:hover {
    background-color: #3498db;
}

/* Important: parent containers must allow overflow */
header, .header-container, nav {
    overflow: visible;
}
