	<style>
        :root {
            --primary-color: #fbd905; /* Main golden yellow */
            --primary-dark: #d8c004;
            --primary-light: #fff3b8;
            --secondary-color: #f80200; /* Red from your nav */
            --secondary-dark: #d60000;
            --accent-color: #166088; /* Complementary blue */
            --text-color: #333;
            --text-light: #666;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --dark: #2c3e50;
            --gray: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        /* ========== RICH DROPDOWN MENU ========== */
        .premium-navbar {
            background: #550000;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 2rem;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
            margin-left: 1.5rem;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.8rem 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px 3px 0 0;
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        .dropdown-menu {
            position: absolute;
            left: 0;
            top: 100%;
            background: var(--white);
            width: 220px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-hover);
            padding: 0.8rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            z-index: 100;
        }

        .dropdown-menu li {
            padding: 0.5rem 1.5rem;
            transition: var(--transition);
        }

        .dropdown-menu li:hover {
            background: var(--primary-light);
        }

        .dropdown-menu li a {
            text-decoration: none;
            color: var(--text-color);
            transition: var(--transition);
            display: block;
            padding-left: 10px;
            font-size: 0.95rem;
        }

        .dropdown-menu li a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--primary-color);
        }

        /* Banner */
        .announcement-banner {
            background-color: var(--primary-color);
            padding: 0.8rem;
            text-align: center;
            font-weight: 500;
            color: var(--dark);
            position: relative;
			height:100%;

        }

  .banner-image {
    /* Mobile-first: 100% width by default */
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto; /* Centers the image */
}

/* Desktop styles (60% width) */
@media (min-width: 768px) {
    .banner-image {
        width: 60%;
    }
}

/* Optional: Adjust max-height for smaller mobile devices */
@media (max-width: 480px) {
    .banner-image {
        max-height: 150px; /* Slightly smaller on very small screens */
    }
}

        /* ========== MODERN SLIDER ========== */
        .hero-slider {
            width: 100%;
            height: 550px;
            position: relative;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 80%;
            max-width: 900px;
            z-index: 2;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.4);
            border-radius: var(--border-radius);
        }

        .slide-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            color: var(--primary-color);
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--primary-color);
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 2;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 7px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 2;
            transition: var(--transition);
            border: none;
        }

        .slider-arrow:hover {
            background: var(--primary-color);
            color: var(--dark);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* ========== REST OF THE PAGE CONTENT ========== */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            display: inline-block;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .elegant-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }
        
        .feature-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            background: var(--primary-light);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--text-light);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Slide1.JPG');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 5rem 0;
            color: var(--white);
            text-align: center;
            margin: 4rem 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-text {
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .testimonials {
            background: var(--white);
            padding: 4rem 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 4rem 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            position: relative;
            transition: var(--transition);
            border-left: 4px solid var(--primary-color);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .testimonial-card:before {
            content: '"';
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.1;
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: serif;
        }
        
        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .testimonial-role {
            display: block;
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: normal;
            margin-top: 0.3rem;
        }

        /* News Section */
        .news-section {
            margin: 4rem 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-date {
            font-size: 0.9rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            display: block;
        }

        .news-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .news-excerpt {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .read-more:hover i {
            transform: translateX(5px);
        }
        
 footer {
        background: linear-gradient(135deg, 
            #550000 0%, 
            #6a0000 25%, 
            #800000 50%, 
            #6a0000 75%, 
            #550000 100%);
        color: white;
        padding: 4rem 0 2rem;
        margin-top: 4rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, 
            rgba(255,215,0,0.8) 0%, 
            rgba(255,165,0,0.8) 50%, 
            rgba(255,215,0,0.8) 100%);
        box-shadow: 0 2px 5px rgba(255,215,0,0.3);
    }

    footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255,255,255,0.1);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        color: #ffd700;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 10px;
        font-size: 1.2rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #ffd700, transparent);
    }

    .footer-section p, 
    .footer-section a {
        color: rgba(255,255,255,0.8);
        line-height: 1.6;
        margin-bottom: 0.8rem;
        display: block;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-section a:hover {
        color: #ffd700;
        transform: translateX(5px);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        color: white;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #ffd700;
        color: #550000;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        footer {
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
    }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-col p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-link {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            opacity: 0.8;
            display: flex;
            align-items: center;
        }

        .footer-link i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .footer-link:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary-color);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-slider {
                height: 500px;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-slider {
                height: 450px;
            }
            
            .slide-content {
                width: 90%;
            }
            
            .slide-content h2 {
                font-size: 2.2rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--secondary-color);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 1rem 0;
                width: 80%;
                text-align: center;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                padding: 0;
                background: rgba(0, 0, 0, 0.1);
                border-radius: 0;
                margin-top: 0.5rem;
            }
            
            .nav-item:hover .dropdown-menu {
                transform: none;
            }
            
            .dropdown-menu li {
                padding: 0.5rem 1rem;
            }
            
            .dropdown-menu li a {
                padding-left: 1rem;
                color: var(--white);
            }

            .dropdown-menu li:hover {
                background: rgba(0, 0, 0, 0.2);
            }
            
            .dropdown-menu li a:hover {
                color: var(--primary-color);
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .nav-container {
                padding: 0 1rem;
                height: 70px;
            }

            .announcement-banner {
                padding: 0.5rem;
            }
            
            .hero-slider {
                height: 350px;
            }
            
            .slide-content {
                padding: 1.5rem;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                display: none;
            }
            
            .slider-arrow {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .testimonials {
                padding: 3rem 1.5rem;
            }

            .stats {
                padding: 3rem 0;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 400px) {
            .hero-slider {
                height: 300px;
            }

            .slide-content h2 {
                font-size: 1.5rem;
            }

            .btn-group {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .btn-outline {
                margin-left: 0;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }
        }
		
		.vm-card-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vm-unified-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--primary-color);
}

.vm-unified-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.vm-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.vm-icon-circle {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vm-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

.vm-content {
  padding: 2.5rem;
}

.vision-section, .mission-section {
  margin-bottom: 2.5rem;
}

.vision-section h3, .mission-section
		
		
		/* Google Translate Widget Styles */
.goog-te-gadget {
    font-family: 'Poppins', sans-serif !important;
}

.goog-te-gadget-simple {
    background-color: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 4px !important;
    padding: 5px 10px !important;
    color: white !important;
    font-size: 0.9rem !important;
}

.goog-te-menu-value span {
    color: white !important;
}

.goog-te-menu-value img {
    display: none !important;
}

.goog-te-menu-value:before {
    content: '\f1ab';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

.goog-te-menu2 {
    background-color: #550000 !important;
    border: none !important;
    box-shadow: var(--shadow) !important;
}

.goog-te-menu2-item div, .goog-te-menu2-item:link {
    color: white !important;
    padding: 8px 15px !important;
}

.goog-te-menu2-item:hover {
    background-color: var(--primary-color) !important;
    color: var(--dark) !important;
}

.goog-te-menu2-item div:hover {
    color: var(--dark) !important;
}

@media (max-width: 768px) {
    #google_translate_element {
        top: 10px;
        right: 10px;
    }
}
		
</style>
	
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

      

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .staff-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .staff-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .staff-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .staff-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .staff-info {
            padding: 20px;
            text-align: center;
        }

        .staff-name {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 5px;
        }

        .staff-position {
            color: #666;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .staff-bio {
            color: #777;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .staff-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .staff-container {
                grid-template-columns: 1fr;
            }
            
            .staff-image {
                height: 250px;
            }
        }
    </style>
	
	
	<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

     

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .video-description {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .video-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .video-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
    </style>
	
	
	
	   <style>
 
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background-color: #550000;
            color: white;
            padding: 15px;
            font-size: 1.2rem;
            font-weight: bold;
			text-align:center;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .card-link {
            display: inline-block;
            background-color: #2980b9;
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .card-link:hover {
            background-color: #1a5276;
        }
        
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
        }
    </style>
	