/* ==========================================
   Mrinalini Devi College - Premium Enhanced
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #d81b60;
    --primary-pink-dark: #ad1457;
    --primary-blue: #003c8f;
    --primary-green: #2e7d32;
    --accent-gold: #ffb300;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 60, 143, 0.9), rgba(216, 27, 96, 0.8));
    --gradient-text: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(216, 27, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-pink);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.top-links a:hover {
    opacity: 0.8;
}

.top-links a.donate-btn {
    background: white;
    color: var(--primary-pink);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    background: #e3f2fd;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-text {
    line-height: 1.2;
}

.logo-title {
    display: block;
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    display: block;
    font-weight: 700;
    color: var(--primary-pink);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-pink);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #fff5f8;
    color: var(--primary-pink);
    padding-left: 30px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 60, 143, 0.7), rgba(216, 27, 96, 0.6));
    z-index: 1;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide.active {
    opacity: 1;
    animation: zoomEffect 20s infinite alternate;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 900px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero {
    background: var(--primary-pink);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .btn-hero {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero:hover {
    background: #ad1457;
    transform: translateY(-3px);
}

/* Welcome Section */
.welcome-section {
    padding: 120px 0;
    background: white;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text h4 {
    color: var(--primary-pink);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.welcome-text h2 {
    color: var(--primary-blue);
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    font-weight: 800;
}

.welcome-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

.btn-outline {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: white;
}

.welcome-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s;
    z-index: 2;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Stats Section */
.stats-section {
    background: url('https://images.unsplash.com/photo-1576091160550-217358c7e618?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    position: relative;
    padding: 80px 0;
    color: white;
    background-attachment: fixed;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 143, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: #f0f4f8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h4 {
    color: var(--primary-pink);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.course-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-light);
    flex-grow: 1;
}

.btn-small {
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s;
}

.btn-small:hover {
    background: var(--primary-pink);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
    font-size: 2rem;
    transition: background 0.3s, color 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--primary-pink);
    color: white;
}

.feature-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Study Mode Section */
.study-mode-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--primary-blue);
}

.study-img {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.5s;
}

.study-img:hover img {
    transform: scale(1.05);
}

.study-content {
    background: var(--primary-blue);
    color: white;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.study-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 30px 15px 0;
    border-style: solid;
    border-color: transparent var(--primary-blue) transparent transparent;
    z-index: 10;
}

.study-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.study-content p {
    margin-bottom: 50px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.study-icons {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.study-icon-box {
    text-align: center;
}

.study-icon-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.study-icon-box:hover i {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.study-icon-box span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Action Bar */
.action-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.action-item {
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    gap: 15px;
    transition: filter 0.3s;
}

.action-item:hover {
    filter: brightness(1.1);
}

.action-item i {
    font-size: 1.8rem;
}

.action-item span {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-pink {
    background: var(--primary-pink);
}

.bg-green {
    background: var(--primary-green);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--primary-pink);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #f0f0f0;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.testimonial-card {
    background: white;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.quote-icon {
    background: var(--accent-gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Latest News */
.news-section {
    padding: 100px 0;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.news-img {
    height: 220px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-item:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.read-more-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 10px;
}

/* Footer */
.footer {
    background: #001835;
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-pink), var(--primary-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: white;
}

.footer-logo-text span {
    display: block;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    flex-grow: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-pink-dark);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================
   Enhanced Course Pages
   ========================= */

.course-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.course-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.course-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Key Stats Cards */
.course-stats-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.course-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.course-stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.course-stat-card h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.course-stat-card span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
}

/* Layout */
.course-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
    padding-bottom: 80px;
}

/* Main Content */
.course-main h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.course-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-pink);
}

.course-main p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
}

/* Accordion Enhanced */
.course-accordion {
    margin-top: 40px;
}

.acc-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.acc-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s;
}

.acc-header:hover {
    background: #f1f1f1;
}

.acc-header.active {
    background: var(--primary-blue);
    color: white;
}

.acc-content {
    padding: 20px;
    display: none;
    background: white;
    border-top: 1px solid #eee;
}

.acc-content.active {
    display: block;
}

/* Sidebar */
.course-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: var(--primary-blue);
}

.brochure-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.brochure-btn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.apply-sidebar-btn {
    display: block;
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.apply-sidebar-btn:hover {
    background: var(--primary-pink);
}

@media (max-width: 900px) {
    .course-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .course-layout {
        grid-template-columns: 1fr;
    }
    .course-stats-wrapper {
        margin-top: 40px;
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-blue);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 0 20px;
        width: 100%;
        border-top: none;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item .nav-link:hover + .dropdown-menu {
        display: block;
    }

    .course-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .course-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .course-hero-content h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .welcome-grid, .stats-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .study-mode-section {
        grid-template-columns: 1fr;
    }
    
    .study-img {
        min-height: 300px;
    }
    
    .study-content {
        padding: 40px 20px;
    }
    
    .study-content::before {
        display: none;
    }
}

/* Mobile Toggle Base Style */
.mobile-toggle {
    display: none;
}





    .page-banner {
            position: relative;
            height: 500px;
            background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            /* Parallax effect */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 60, 143, 0.85), rgba(216, 27, 96, 0.8));
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .page-banner h1 {
            font-size: 4rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .page-banner p {
            font-size: 1.3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.3s;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .breadcrumb-premium {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 1s ease forwards 0.5s;
        }

        /* Shape Divider */
        .custom-shape-divider-bottom-1685634567 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
            z-index: 2;
        }

        .custom-shape-divider-bottom-1685634567 svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .custom-shape-divider-bottom-1685634567 .shape-fill {
            fill: #FFFFFF;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Who We Are */
        .who-we-are {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .who-we-are::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: rgba(216, 27, 96, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .welcome-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .welcome-image-wrapper {
            position: relative;
        }

        .welcome-image-wrapper img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s;
        }

        .welcome-image-wrapper:hover img {
            transform: scale(1.02);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--primary-blue);
            color: white;
            padding: 30px;
            border-radius: 50%;
            width: 150px;
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 60, 143, 0.3);
            border: 5px solid white;
            animation: float 3s ease-in-out infinite;
        }

        .experience-badge span {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            font-family: 'Playfair Display', serif;
        }

        .experience-badge small {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-subtitle {
            color: var(--primary-pink);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: rgba(216, 27, 96, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
        }

        .section-title-large {
            color: var(--primary-blue);
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .content-text {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Chairman Section */
        .chairman-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
        }

        .chairman-card {
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .chairman-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 40px;
            left: 40px;
            font-size: 4rem;
            color: rgba(0, 60, 143, 0.05);
        }

        .chairman-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .chairman-img-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .chairman-img-wrapper img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }

        .chairman-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .chairman-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .chairman-info span {
            color: var(--primary-pink);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Certificates */
        .certificate-section {
            padding: 100px 0;
            background: white;
            text-align: center;
        }

        .certificate-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .certificate-item {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            border: 1px solid #eee;
        }

        .certificate-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .certificate-item img {
            width: 100%;
            border-radius: 10px;
            border: 1px solid #f0f0f0;
        }

        .certificate-item h4 {
            margin-top: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--primary-blue);
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @media (max-width: 992px) {

            .welcome-grid,
            .chairman-grid {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                right: 20px;
                bottom: -20px;
                width: 100px;
                height: 100px;
            }

            .experience-badge span {
                font-size: 1.5rem;
            }

            .experience-badge small {
                font-size: 0.6rem;
            }
        }


.section-subtitle-data span{
	    color: #d81b60;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(216, 27, 96, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}