/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0a400 0%, #ffffff 35%, #1d6ac2 65%, #1d6ac2 100%);
    color: #2d2d2d;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   MASTER WORD STYLE
   ========================================== */
.master-word {
    color: #ffa620;
    margin: 15px;
    font-size: 45px;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0.8, 0.8);
}

.typing-text {
    font-size: 24px;
    color: #ffffff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.cursor {
    color: #FF6B35;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Hero Enroll Button - Zoom + Vibrate */
.hero-enroll-btn {
    background-color: #2a1977;
    color: #fbfdff;
    animation: zoomVibrate 1.4s ease-in-out infinite;
    transform-origin: center;
}

/* Zoom + Vibrate Animation */
@keyframes zoomVibrate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    10% {
        transform: scale(1.05) rotate(-1deg);
    }
    20% {
        transform: scale(1.06) rotate(1deg);
    }
    30% {
        transform: scale(1.08) rotate(-1deg);
    }
    40% {
        transform: scale(1.08) rotate(1deg);
    }
    50% {
        transform: scale(1.04) rotate(0deg);
    }
    60% {
        transform: scale(1.02) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Mouse le jane par ruk jaye */
.hero-enroll-btn:hover {
    animation: none;
    background-color: #3c269e;
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}



/* Jab mouse le jayen toh animation ruk jaye (optional) */
.btn-primary:hover {
    animation: none;
    background-color: #5644a7;
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background-color: #5644a7;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(1, 0, 0, 1.4);
}

.btn-outline {
    background-color: transparent;
    color: #26255a;
    border: 2px solid #ffffff;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
    background: #2c3e50 url(images/header/hed3.png) no-repeat left center;
    background-size: cover;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f0b000;
    letter-spacing: -0.5px;
    margin: 0;
}

.logo span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(13, 0, 83, 0.8);
    font-weight: 400;
    margin-top: -4px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    color: #e67e22;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #ffad65;
}

nav ul li a:hover::after {
    width: 100%;
    background-color: #feffff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* ==========================================
   GALLERY BUTTON IN NAV
   ========================================== */
.gallery-btn {
    background: linear-gradient(135deg, #e67e22, #d3b300);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #e67e22, #e67e22) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(255, 104, 3);
    color: #fff !important;
}

.gallery-btn i {
    margin-right: 5px;
}

.gallery-btn.active {
    background: linear-gradient(135deg, #d35400, #a04000) !important;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
}

/* ==========================================
   HERO SECTION
   ========================================== */

/* ==========================================
   HERO SECTION - SLIDESHOW BACKGROUND
   ========================================== */
.hero {
    padding: 20px 0 30px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease-in-out, transform 2.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Optional: Overlay gradient on slides */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 166, 0, 0.829) 0%,
        rgba(255, 166, 0, 0.507) 30%,
        rgba(64, 92, 218, 0.466) 55%,
        rgba(29, 106, 194, 0.35) 75%,
        rgba(29, 106, 194, 0.486) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Hero Content - stays on top */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 30px;
    max-width: 100%;
    margin: 0;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0 1 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px 0;
    margin: auto 0;
}

/* Heading */
.hero-content h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
    text-shadow: 3px 3px 15px rgb(0, 0, 0);
}

.hero-content h2 span {
    color: #ffbd07;
}

/* Paragraph */
.hero-content .sub-headline {
    font-size: 19px;
    color: #ffffff;
    text-align: left;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Master + Typing Heading */
.hero-heading {
    text-align: left;
    margin: 2px 0 8px 0;
    width: 100%;
}

.master-word {
    color: #ffbd07;
    font-size: 40px;
    font-weight: 800;
    text-shadow: 0 4px 30px rgb(0, 0, 0);
    display: inline-block;
}

.typing-text {
    font-size: 26px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    display: inline-block;
}

.cursor {
    color: #FF6B35;
    animation: blink 0.8s infinite;
    font-size: 26px;
    font-weight: 700;
}

/* Buttons - Left aligned */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin-top: 5px;
}

/* Hero Enroll Button */
.hero-enroll-btn {
    background-color: #2a1977;
    color: #fbfdff;
    padding: 13px 32px;
    font-size: 1.05rem;
    border-radius: 30px;
    animation: zoomVibrate 1.4s ease-in-out infinite;
    transform-origin: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.hero-enroll-btn i {
    font-size: 1rem;
}

.hero-enroll-btn:hover {
    animation: none;
    background-color: #3c269e;
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Zoom + Vibrate Animation */
@keyframes zoomVibrate {
    0% { transform: scale(1) rotate(0deg); }
    10% { transform: scale(1.04) rotate(-0.5deg); }
    20% { transform: scale(1.05) rotate(0.5deg); }
    30% { transform: scale(1.07) rotate(-0.5deg); }
    40% { transform: scale(1.07) rotate(0.5deg); }
    50% { transform: scale(1.03) rotate(0deg); }
    60% { transform: scale(1.01) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.95);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 20px 20px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 8px 0;
    }

    .gallery-btn {
        display: inline-block !important;
        width: auto !important;
    }

    /* HERO MOBILE */
    .hero {
        padding: 30px 0 50px;
        min-height: 400px;
    }

    .hero .container {
        flex-direction: column;
        text-align: left;
        padding-left: 30px !important;
        padding-right: 20px;
        align-items: flex-start;
    }

    .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        max-width: 100% !important;
        flex: 1 1 100%;
    }

    .hero-content h2 {
        font-size: 32px !important;
        text-align: left !important;
    }

    .hero-content .sub-headline {
        font-size: 16px !important;
        text-align: left !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        justify-content: flex-start !important;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .course-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding-left: 20px !important;
        padding-right: 15px;
    }

    .hero-content h2 {
        font-size: 26px !important;
    }

    .hero-content .sub-headline {
        font-size: 14px !important;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.section-header h3 span {
    color: #2c3e50;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.section-header p {
    color: #2c3e50;
    margin-top: 8px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   COURSES SECTION
   ========================================== */
.courses {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course-card {
    background: rgba(205, 207, 224, 0.92);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
    background: rgb(151, 167, 255);
}

.course-icon {
    font-size: 2.8rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.course-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.course-card p {
    font-size: 0.95rem;
    color: #1b2631;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #1b2631;
    margin-bottom: 18px;
}

.course-meta i {
    margin-right: 5px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 60px 0 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 40px 40px 0 0;
    margin-top: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #a5cafa;
    position: relative;
}

.faq-question:hover {
    background: rgba(230, 126, 34, 0.05);
}

.faq-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    min-width: 35px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1rem;
    color: #e67e22;
    transition: transform 0.3s ease;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #34495e;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer p strong {
    color: #e67e22;
}

.faq-answer a {
    color: #e67e22;
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #d35400;
}

.faq-item.active {
    border-color: #e67e22;
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.12);
}

.faq-item.active .faq-question {
    background: rgba(230, 126, 34, 0.05);
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}

.faq-item.active .faq-question h4 {
    color: #e67e22;
}

.faq-item.active .faq-number {
    background: rgba(230, 126, 34, 0.2);
    color: #d35400;
}

/* ==========================================
   FACEBOOK FEED SECTION
   ========================================== */
.facebook-feed {
    padding: 70px 0;
    background: transparent;
}

.facebook-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fb-post-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fb-post-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.fb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e6eb;
}

.fb-card-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-follow-btn {
    background: #1877F2;
    color: #fff;
    padding: 3px 14px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
}

.fb-card-body {
    padding: 12px 0 8px 0;
}

.fb-card-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fb-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.fb-user-info strong {
    display: block;
    color: #2c3e50;
    font-size: 0.8rem;
}

.fb-user-info span {
    font-size: 0.6rem;
    color: #7f8c8d;
}

.fb-card-actions {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #e4e6eb;
    color: #5d6d7e;
    font-size: 0.75rem;
}

.fb-card-actions span i {
    margin-right: 4px;
}

.fb-card-btn {
    display: block;
    text-align: center;
    padding: 8px 20px;
    margin-top: 8px;
    background-color: #1877F2;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fb-card-btn:hover {
    background-color: #0d6ed1;
}

.fb-card-btn i {
    margin-right: 6px;
}

/* ==========================================
   GALLERY PAGE
   ========================================== */
.gallery-section {
    padding: 40px 0 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 25px 15px 15px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.gallery-overlay p {
    font-size: 0.75rem;
    opacity: 0.85;
    margin: 0;
}

.gallery-overlay i {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-load-more {
    text-align: center;
    margin: 30px 0 10px;
}

.gallery-load-more .btn {
    padding: 12px 40px;
    font-size: 1rem;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 30px;
    border-radius: 8px;
    max-width: 80%;
}

.lightbox-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.lightbox-caption p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: #e67e22;
    transform: rotate(90deg);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: rgba(44, 62, 80, 0.92);
    color: #ecf0f1;
    padding: 60px 0 20px;
    border-radius: 40px 40px 0 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col p,
.footer-col ul li a {
    font-size: 0.9rem;
    color: #b0c4d9;
    line-height: 2;
}

.footer-col ul li a:hover {
    color: #e6a822;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.instagram:hover {
    background: #E4405F;
}

.whatsapp-channel a {
    color: #25D366;
    font-weight: 600;
}

.whatsapp-channel a:hover {
    color: #1da851;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.95);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 20px 20px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 8px 0;
    }

    .gallery-btn {
        display: inline-block !important;
        width: auto !important;
    }

    /* HERO MOBILE */
    .hero {
        padding: 30px 0 50px;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero .container {
        flex-direction: column;
        text-align: left;
        padding-left: 30px !important;
        padding-right: 20px;
        align-items: flex-start;
    }

    .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        max-width: 100% !important;
        flex: 1 1 100%;
    }

    .hero-content h2 {
        font-size: 32px !important;
        text-align: left !important;
    }

    .hero-content .sub-headline {
        font-size: 16px !important;
        text-align: left !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        justify-content: flex-start !important;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        display: none !important;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .course-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fb-post-card {
        max-width: 340px;
        padding: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* FAQ RESPONSIVE */
    .faq-question {
        padding: 14px 18px;
        gap: 12px;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .faq-number {
        font-size: 0.7rem;
        min-width: 30px;
        padding: 1px 8px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 15px 18px;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding-left: 20px !important;
        padding-right: 15px;
    }

    .hero-content h2 {
        font-size: 26px !important;
    }

    .hero-content .sub-headline {
        font-size: 14px !important;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }

    .fb-post-card {
        max-width: 290px;
        padding: 12px;
    }

    .fb-card-content p {
        font-size: 0.75rem;
    }

    .fb-card-image img {
        max-height: 60px;
    }

    /* FAQ RESPONSIVE */
    .faq-question {
        padding: 12px 15px;
        gap: 10px;
    }

    .faq-question h4 {
        font-size: 0.8rem;
    }

    .faq-number {
        font-size: 0.6rem;
        min-width: 25px;
        padding: 1px 6px;
    }

    .faq-icon {
        font-size: 0.8rem;
        min-width: 16px;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 12px 15px;
        max-height: 280px;
    }

    /* GALLERY RESPONSIVE */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 15px 0;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-overlay h4 {
        font-size: 0.7rem;
    }

    .gallery-overlay p {
        font-size: 0.6rem;
    }
}






/*  background-color: #2a1977;
    color: #fbfdff;