/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --darker-color: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #334155;
    --text-gray: #64748b;
    --border-color: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-md: rgba(0, 0, 0, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.16);
    --shadow-xl: rgba(37, 99, 235, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 3px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #2d3748 100%);
    padding: 100px 20px 0px;
    position: relative;
    overflow: visible;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero-content {
    padding: 40px 20px;
    animation: fadeInLeft 0.8s ease;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.highlight-text {
    color: var(--white);
    display: block;
    font-size: 4rem;
    font-style: italic;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
}

.feature-item i {
    font-size: 1.5rem;
    color: #93c5fd;
}

.hero-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #93c5fd;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background: var(--white);
    color: #1e40af;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #1e40af;
    color: var(--white);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
}

.student-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Popular Courses Section */
.popular-courses-container {
    position: relative;
    padding: 0 7.5%;
    margin-top: -80px;
    z-index: 10;
}

.popular-courses-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 50px 60px 50px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    height: auto;
}

.popular-courses-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff6b35;
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto 40px auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.courses-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.course-box {
    width: 250px;
    height: 300px;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.course-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.course-yellow {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb400 100%);
}

.course-orange {
    background: linear-gradient(135deg, #ff9a76 0%, #ff6b6b 100%);
}

.course-green {
    background: linear-gradient(135deg, #6fdc8c 0%, #3bb78f 100%);
}

.course-blue {
    background: linear-gradient(135deg, #a8d8ff 0%, #667eea 100%);
}

.course-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.course-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.course-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.course-image {
    text-align: center;
    margin-top: 15px;
    flex-shrink: 0;
}

.course-image img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.course-box:hover .course-image img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
}

.hero-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 10px 40px var(--shadow-xl);
    border: 3px solid var(--primary-color);
}

.since-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-xl);
    background: var(--primary-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--dark-color);
    font-size: 1.5rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* About Section */
/* Premium About Section */
.about-premium {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dot-pattern {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #e0e0e0 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    right: 10%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
}

.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Image Section */
.about-image-section {
    position: relative;
}

.main-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-stat-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.stat-content h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.stat-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

.floating-video-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.play-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    padding-left: 3px;
}

.floating-video-card span {
    font-weight: 600;
    color: #1a202c;
    font-size: 1rem;
}

/* Right Side - Content Section */
.about-content-section {
    padding: 20px;
}

.section-label {
    display: inline-block;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 40px;
}

.highlight-year {
    color: #10b981;
    position: relative;
}

.highlight-year::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-block {
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateX(10px);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.block-header i {
    font-size: 1.5rem;
    color: #10b981;
}

.block-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.content-block p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-left: 40px;
}

/* Courses Section */
.courses {
    background: var(--light-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-md);
    border-color: var(--primary-color);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px var(--shadow-xl);
}

.course-card:hover .course-icon {
    transform: scale(1.05) rotate(-5deg);
}

.course-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.course-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.course-features {
    list-style: none;
    text-align: left;
}

.course-features li {
    padding: 6px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.course-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* New Colorful Course Cards */
.courses-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card-main {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.course-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-card-yellow {
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE89E 100%);
}

.course-card-orange {
    background: linear-gradient(135deg, #FFE5D6 0%, #FFCBA4 100%);
}

.course-card-green {
    background: linear-gradient(135deg, #D6F5E8 0%, #B0EAD5 100%);
}

.course-card-blue {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
}

.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.course-badge {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

.course-card-yellow .course-badge { color: #D4A000; }
.course-card-orange .course-badge { color: #D46A00; }
.course-card-green .course-badge { color: #008A52; }
.course-card-blue .course-badge { color: #4F46E5; }

.course-decoration {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.course-title-main {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.course-card-yellow .course-title-main { color: #5A4A2A; }
.course-card-orange .course-title-main { color: #5A3A2A; }
.course-card-green .course-title-main { color: #2A5A4A; }
.course-card-blue .course-title-main { color: #3A2A5A; }

.course-description {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    width: fit-content;
}

.course-btn-yellow {
    background: linear-gradient(135deg, #FDB913 0%, #F39200 100%);
}

.course-btn-orange {
    background: linear-gradient(135deg, #FF8A3D 0%, #FF5722 100%);
}

.course-btn-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.course-btn-blue {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-image-circle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.course-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add decorative circles */
.course-card-main::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    opacity: 0.3;
}

.course-card-yellow::after { background: #FDB913; }
.course-card-orange::after { background: #FF5722; }
.course-card-green::after { background: #10B981; }
.course-card-blue::after { background: #6366F1; }

.highlight-text {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 80px;
}

.gallery-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    min-height: 500px;
}

.gallery-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: none;
    cursor: pointer;
}

.gallery-slide.active {
    opacity: 1;
    position: relative;
    display: block;
}

.gallery-slide:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-slide:hover img {
    filter: brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.gallery-explore-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ff6b35;
    transform: scale(1.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .gallery-carousel-wrapper {
        padding: 0 60px;
    }
    
    .gallery-slide img {
        height: 350px;
    }
    
    .gallery-carousel {
        min-height: 350px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.3rem;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Testimonials Section */
.testimonials-section-new {
    background: #f8f9fa;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonials-left {
    padding-right: 40px;
}

.testimonials-label {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.testimonials-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.testimonial-nav-btn i {
    font-size: 1.2rem;
    color: #4a5568;
}

.testimonial-nav-btn:hover i {
    color: white;
}

.testimonials-right {
    position: relative;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
    align-items: start;
}

.testimonial-card-new {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    display: none;
    opacity: 0;
}

.testimonial-card-new.active {
    display: block;
    opacity: 1;
    animation: fadeInSlide 0.5s ease-in-out;
}

.testimonial-card-new:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.review-short {
    display: inline;
}

.review-full {
    display: none;
}

.review-full.show {
    display: inline;
}

.read-more-btn {
    color: #ff6b35;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-new {
        display: none !important;
        opacity: 0;
    }
    
    .testimonial-card-new.active {
        display: block !important;
        opacity: 1;
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-review {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.read-more {
    color: #ff6b35;
    font-weight: 600;
    cursor: pointer;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23cbd5e0" opacity="0.3"/><circle cx="80" cy="80" r="1" fill="%23cbd5e0" opacity="0.3"/><circle cx="40" cy="60" r="1" fill="%23cbd5e0" opacity="0.3"/><circle cx="60" cy="40" r="1" fill="%23cbd5e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Results Section */
.results {
    background: var(--light-bg);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.achievement-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.achievement-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.achievement-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.achievement-card:nth-child(1):hover {
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.achievement-card:nth-child(2):hover {
    box-shadow: 0 20px 50px rgba(240, 147, 251, 0.5);
}

.achievement-card:nth-child(3):hover {
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.5);
}

.achievement-card:nth-child(4):hover {
    box-shadow: 0 20px 50px rgba(67, 233, 123, 0.5);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievement-label {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--dark-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow-md);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Activities Page Styles */
.activities-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&h=900&fit=crop'),
                      linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.9) 100%);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.activities-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.activities-hero .container {
    position: relative;
    z-index: 2;
}

.activities-hero .hero-content {
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.activities-hero .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.activities-gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.activity-category {
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

.activity-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 60%;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Scroll functionality for activities page */
.gallery-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.gallery-scroll::-webkit-scrollbar {
    width: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    transition: background 0.3s ease;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px var(--shadow-xl);
}

.contact-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    border: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Make footer links clearly visible on dark footer background */
.footer-bottom a,
.footer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover,
.footer a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-slide-in {
    animation: slideIn 1s ease-out forwards;
}

.animate-slide-in-delay {
    opacity: 0;
    animation: slideInScale 1s ease-out 0.3s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 3rem;
    }

    .hero-features {
        gap: 15px;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .feature-item i {
        font-size: 1.2rem;
    }

    .pricing-label {
        font-size: 1.1rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .student-img {
        max-width: 350px;
    }

    .popular-courses-container {
        padding: 0 5%;
        margin-top: -60px;
    }

    .popular-courses-section {
        padding: 30px 25px 50px 25px;
        max-width: 95%;
    }

    .popular-courses-title {
        font-size: 1.5rem;
        padding: 10px 25px;
        margin-bottom: 30px;
    }

    .courses-carousel {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .course-box {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-parallax-bg {
        background-attachment: scroll;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-form {
        padding: 25px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        animation: scrollUpMobile 25s linear infinite;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 200px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    @keyframes scrollUpMobile {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-150%);
        }
    }

    /* Activities Page Mobile */
    .activities-hero {
        padding: 120px 0 80px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .activities-hero .wave {
        height: 60px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .hero-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricing-label {
        font-size: 1rem;
    }

    .pricing-amount {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .courses-carousel {
        grid-template-columns: 1fr;
    }

    .course-box {
        min-height: 250px;
    }

    .popular-courses-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials - Mobile */
    .testimonials-section-new {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .testimonials-left {
        padding-right: 0;
        text-align: left;
    }

    .testimonials-heading {
        font-size: 1.8rem;
    }

    .testimonials-description {
        font-size: 0.95rem;
    }

    .testimonials-nav {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }

    .courses-grid-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .course-card-main {
        padding: 2rem;
        min-height: 340px;
    }

    .course-title-main {
        font-size: 1.6rem;
    }

    .course-image-circle {
        width: 120px;
        height: 120px;
        bottom: 15px;
        right: 15px;
    }

    .course-card-main::after {
        width: 150px;
        height: 150px;
    }

    /* Activities Page - Small Mobile */
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }

    .stat-item i {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .activities-hero .wave {
        height: 40px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 1.1rem;
    }

    /* About Premium Section Mobile */
    .about-premium {
        padding: 60px 0;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-image {
        height: 400px;
        border-radius: 20px;
    }

    .floating-stat-card {
        top: 20px;
        right: -15px;
        padding: 15px 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .stat-content h4 {
        font-size: 1.5rem;
    }

    .stat-content p {
        font-size: 0.85rem;
    }

    .floating-video-card {
        bottom: 20px;
        left: -15px;
        padding: 15px 20px;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .about-main-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .block-header h3 {
        font-size: 1.2rem;
    }

    .content-block p {
        font-size: 0.95rem;
        padding-left: 35px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
    }

    .testimonials-main-title {
        font-size: 2.5rem;
    }

    .testimonials-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-box {
        padding: 25px 20px;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .testimonial-content {
        font-size: 0.95rem;
    }
}

/* Success Modal Styles */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-modal-overlay.show .success-modal {
    transform: scale(1);
    opacity: 1;
}

/* Decorative gradient background */
.success-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    z-index: -1;
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-icon circle {
    stroke: #10b981;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon path {
    stroke: #10b981;
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

/* Modal Text */
.success-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-modal p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-modal p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.success-modal .sub-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Close Button */
.modal-close-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.modal-close-btn:active {
    transform: translateY(0);
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-modal {
        padding: 40px 30px;
        max-width: 350px;
        border-radius: 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-modal h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .success-modal p {
        font-size: 1rem;
    }

    .success-modal .sub-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .modal-close-btn {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .success-modal {
        padding: 35px 25px;
        max-width: 320px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-modal h2 {
        font-size: 1.4rem;
    }

    .success-modal p {
        font-size: 0.95rem;
    }

    .modal-close-btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}
