/* ====================================
   MODERN HOME PAGE - DREAMZONE
   ==================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #666666;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   HEADER SECTION - FULL WIDTH
   ==================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    max-width: 100%;
    padding: 0 60px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 25px 0;
    transition: var(--transition);
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
}

.nav-menu>li>a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-menu>li.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 300px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    color: var(--gray);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    padding: 10px 28px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
    transition: var(--transition);
}

.btn-contact:hover {
    background: #C2185B;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: #C2185B;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ====================================
   PROFESSIONAL CIRCULAR SLIDER CONTAINER
   ==================================== */
.hero-circular-container {
    position: relative;
    width: 550px;
    height: 550px;
    margin-left: auto;
    margin-right: 0;
}

/* Outer Rotating Border Ring */
.circular-border-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            var(--primary-color),
            var(--secondary-color),
            #FF6B6B,
            var(--primary-color));
    padding: 8px;
    animation: rotateBorder 10s linear infinite;
    box-shadow:
        0 0 40px rgba(233, 30, 99, 0.3),
        0 0 80px rgba(156, 39, 176, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 30% OFF Badge - Orbiting Around Circle */
/* 30% OFF Badge - Static Position (Top Right) */
.offer-badge-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 100;
    /* Static position at top-right (approx 45 degrees equivalent) */
    transform: rotate(-45deg) translateX(275px) rotate(45deg);
    /* Animation removed as requested */
    /* animation: orbitBadge 12s linear infinite; */
}

/* Orbit animation - Kept for reference but unused
@keyframes orbitBadge { ... } 
*/

/* Static Background Circle (No Rotation) */
.badge-rotating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 50%;
    box-shadow:
        0 10px 40px rgba(255, 107, 107, 0.5),
        0 0 0 8px rgba(255, 255, 255, 0.2),
        0 0 0 12px rgba(255, 107, 107, 0.1);
    /* Rotation removed, Pulse kept for subtle attention */
    animation: badgePulse 3s ease-in-out infinite;
}

/* Rotation animation for background only */
@keyframes badgeRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 10px 40px rgba(255, 107, 107, 0.5),
            0 0 0 8px rgba(255, 255, 255, 0.2),
            0 0 0 12px rgba(255, 107, 107, 0.1);
    }

    50% {
        box-shadow:
            0 15px 50px rgba(255, 107, 107, 0.7),
            0 0 0 12px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 107, 107, 0.2);
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Static Text Overlay (Does NOT Rotate - stays upright) */
.badge-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #FF8E53, #FF6B6B);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    /* Text stays upright - no rotation */
}

.badge-percent {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: scalePercent 2s ease-in-out infinite;
}

@keyframes scalePercent {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-top: -3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* Inner Circle with Image Slider */
.circular-slider-wrapper {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.circular-slider-wrapper .slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
}

.circular-slider-wrapper .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.2) rotate(5deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    overflow: hidden;
}

.circular-slider-wrapper .slider-item.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 1;
}

.circular-slider-wrapper .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Slider Info Overlay - Clean Text Only (No Dark Background) */
.slider-info {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-slider-wrapper .slider-item.active .slider-info {
    opacity: 1;
}

.slider-info h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    text-shadow:
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
}

.slider-info p {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.8),
        0 2px 15px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 1);
}

/* Circular Slider Navigation */
.circular-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.circular-slider-nav .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.circular-slider-nav .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.circular-slider-nav .slider-dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    border-radius: 5px;
    border-color: transparent;
}

/* Decorative Elements */
.circular-border-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    background: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-circular-container {
        width: 480px;
        height: 480px;
    }

    .offer-badge-circle {
        width: 120px;
        height: 120px;
    }

    .badge-inner {
        width: 100px;
        height: 100px;
    }

    .badge-percent {
        font-size: 36px;
    }

    .badge-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-circular-container {
        width: 380px;
        height: 380px;
    }

    .offer-badge-circle {
        width: 100px;
        height: 100px;
        top: 10%;
    }

    .badge-inner {
        width: 85px;
        height: 85px;
    }

    .badge-percent {
        font-size: 30px;
    }

    .badge-text {
        font-size: 16px;
    }
}

/* ====================================
   SECTIONS
   ==================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.section-description {
    font-size: 16px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   FESTIVAL SECTION
   ==================================== */
.festival-section {
    background: var(--light-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Course Card Base */
.course-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 400px;
    /* Fixed height for consistency */
}

/* Image scaling on hover (handled via parent overflow) */
.course-image {
    height: 100%;
    width: 100%;
    transition: var(--transition);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Static Content (Title at bottom) - Hidden on hover */
.course-content-static {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.course-content-static .course-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover Content Overlay - Initially Hidden */
.course-hover-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(20px);
    z-index: 5;
    text-align: left;
}

/* Specific Colors for each card */
.card-fashion .course-hover-details {
    background-color: #7E57C2;
    /* Purple */
}

.card-graphic .course-hover-details {
    background-color: #F57C00;
    /* Orange */
}

.card-interior .course-hover-details {
    background-color: #43A047;
    /* Green */
}

/* Hover State Actions */
.course-card:hover .course-hover-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.course-card:hover .course-content-static {
    opacity: 0;
}

/* Typography Inside Overlay */
.course-hover-details h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.course-hover-details p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.course-hover-details ul {
    list-style: none;
    /* Remove default bullets, using custom */
    margin-bottom: 25px;
    padding-left: 5px;
}

.course-hover-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.course-hover-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 18px;
    line-height: 1;
}

.view-program-btn {
    display: inline-block;
    color: white;
    font-weight: 600;
    text-decoration: underline;
    font-size: 16px;
    margin-top: auto;
    /* Push to bottom if needed */
    transition: opacity 0.3s;
}

.view-program-btn:hover {
    opacity: 0.8;
}

/* ====================================
   WHY CHOOSE US SECTION - PROFESSIONAL LIGHT DESIGN
   ==================================== */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 15s ease-in-out infinite;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 18s ease-in-out infinite 2s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.why-choose-section .section-header {
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title {
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.why-choose-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.why-choose-section .section-description {
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.feature-card {
    width: 100%;
    max-width: 400px;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15), 0 10px 30px rgba(156, 39, 176, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.feature-icon i {
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-title::after {
    width: 50px;
}

.feature-card:hover .feature-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.feature-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.feature-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.feature-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.feature-card:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.feature-card:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.feature-card:nth-child(7) {
    animation: fadeInUp 0.6s ease 0.7s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   WORKSHOPS SECTION - MODERN VIDEO PLAYER
   ==================================== */
.workshops-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.workshops-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.workshops-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workshops-section .section-title {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.workshops-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.8;
}

.workshops-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 35px;
}

.workshops-section .btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Modern Video Player */
.workshops-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.video-bg {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(156, 39, 176, 0.3));
    transition: all 0.5s ease;
}

.video-wrapper:hover .video-overlay {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    z-index: 2;
    position: relative;
}

.play-icon svg {
    width: 24px;
    height: 28px;
}

.play-icon path {
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.video-play-btn:hover .play-icon path {
    fill: var(--secondary-color);
}

/* Pulsing Rings */
.play-pulse,
.play-pulse-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.play-pulse-2 {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Video Info Badge */
.video-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-duration i {
    font-size: 18px;
}

/* ====================================
   ACHIEVEMENTS SECTION - MODERN DESIGN
   ==================================== */
.achievements-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.achievements-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite 2s;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.achievement-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Glassmorphism Effect */
.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.achievement-card:hover::before {
    opacity: 1;
}

/* Gradient Border Effect */
.achievement-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.25);
}

.achievement-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.achievement-card:hover img {
    transform: scale(1.08);
}

/* Modern Badge Overlay */
.achievement-card .achievement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover .achievement-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Shine Effect */
@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.achievement-card .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 3;
    pointer-events: none;
}

.achievement-card:hover .shine {
    animation: shine 0.8s ease;
}

/* PDF Card Styles */
.pdf-card {
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
}

.pdf-preview-container {
    position: relative;
    width: 100%;
    height: 250px;
    /* Reduced to better match landscape PDFs */
    overflow: hidden;
    background: #f0f0f0;
}

.pdf-preview-container iframe {
    width: 150%;
    /* Significantly wider */
    height: 150%;
    /* Significantly taller */
    border: none;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(0.66);
    /* Scale content back down, but fill 100% of container visually? No, this logic is tricky. 
                              Better logic: Making iframe larger and shifting it crops the edges. 
                              Let's stick to the previous plan: Width 120%, Offset -10%. */
}

/* Override previous iframe logic for a simpler zoom crop */
.pdf-preview-container iframe {
    width: 140%;
    height: 140%;
    position: absolute;
    top: -20%;
    left: -20%;
    transform: none;
}

.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    /* Subtle dim */
    transition: background 0.3s ease;
    z-index: 2;
}

.pdf-card:hover .pdf-overlay {
    background: rgba(0, 0, 0, 0);
}

.achievement-info {
    padding: 20px;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
}

.achievement-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.achievement-info p {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* PDF Loader */
.pdf-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ====================================
   GALLERY SECTION - SLIDING CAROUSEL
   ==================================== */
.gallery-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

.gallery-section .container {
    max-width: 100%;
    padding: 0;
}

.gallery-section .section-header {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    margin-bottom: 60px;
}

.gallery-section .gallery-cta {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Sliding Grid Container */
.masonry-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Sliding Rows */
.gallery-row {
    display: flex;
    gap: 15px;
    animation: slideLeft 40s linear infinite;
    will-change: transform;
}

.gallery-row:nth-child(2) {
    animation: slideRight 45s linear infinite;
}

.gallery-row:nth-child(3) {
    animation: slideLeft 50s linear infinite;
}

/* Pause on hover */
.gallery-row:hover {
    animation-play-state: paused;
}

/* Slide Animations */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Gallery Items */
.gallery-item {
    position: relative;
    min-width: 280px;
    width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--white);
    flex-shrink: 0;
}

.gallery-row:nth-child(2) .gallery-item {
    height: 220px;
}

.gallery-row:nth-child(3) .gallery-item {
    height: 180px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.15;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(156, 39, 176, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0;
    visibility: hidden;
}

.gallery-overlay i {
    display: none;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.gallery-cta .btn {
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
}

.gallery-cta .btn:hover {
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-item {
        min-width: 180px;
        width: 180px;
        height: 180px;
    }

    .gallery-row:nth-child(2) .gallery-item {
        height: 200px;
    }

    .gallery-row:nth-child(3) .gallery-item {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .gallery-item {
        min-width: 150px;
        width: 150px;
        height: 150px;
    }

    .gallery-row:nth-child(2) .gallery-item,
    .gallery-row:nth-child(3) .gallery-item {
        height: 150px;
    }

    .gallery-overlay i {
        font-size: 36px;
    }

    .gallery-row {
        animation-duration: 30s;
        gap: 12px;
    }

    .gallery-row:nth-child(2) {
        animation-duration: 35s;
    }

    .gallery-row:nth-child(3) {
        animation-duration: 40s;
    }
}

/* ====================================
   REGISTRATION SECTION
   ==================================== */
.registration-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.registration-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.course-category {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.course-items {
    list-style: none;
}

.course-items li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.course-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.registration-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ====================================
   FOOTER
   ==================================== */
.main-footer {
    background: #f8f9fa;
    color: #333333;
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #666666;
}

.footer-col ul li a {
    color: #666666;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666666;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workshops-content {
        grid-template-columns: 1fr;
    }

    .courses-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .courses-grid,
    .features-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-overlay i {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   VIDEO MODAL - UNIQUE LIGHTBOX
   ==================================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-close-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* HTML5 Video Player Styling */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    outline: none;
}

.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.video-container video::-webkit-media-controls-play-button,
.video-container video::-webkit-media-controls-volume-slider {
    filter: brightness(1.2);
}







/* ====================================
   PROMOTIONAL BANNER - MODERN GLOW DESIGN
   ==================================== */
.promo-banner-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.promo-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 52px;
}

.promo-description {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-color);
}

.promo-feature i {
    font-size: 20px;
    color: var(--primary-color);
}

.promo-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-promo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.promo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.2) 0%, transparent 70%);
    animation-delay: 0s;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.2) 0%, transparent 70%);
    animation-delay: 1.3s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    animation-delay: 2.6s;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.promo-image-container {
    position: relative;
    z-index: 2;
}

.promo-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5);
    animation: rotateBadge 10s linear infinite;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.discount-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: counterRotate 10s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.discount-percent {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.discount-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .promo-banner-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-title .highlight {
        font-size: 40px;
    }

    .promo-visual {
        margin-top: 30px;
    }
}

/* ====================================
   HERO DISCOUNT BADGE - CIRCULAR DESIGN
   ==================================== */
.discount-circle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    z-index: 10;
    animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.discount-border-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.discount-inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.5), 0 0 30px rgba(156, 39, 176, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 15px 50px rgba(233, 30, 99, 0.5), 0 0 30px rgba(156, 39, 176, 0.3);
    }

    50% {
        box-shadow: 0 20px 60px rgba(233, 30, 99, 0.7), 0 0 50px rgba(156, 39, 176, 0.5);
    }
}

.discount-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discount-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .discount-circle-badge {
        width: 140px;
        height: 140px;
        top: 30px;
        right: 30px;
    }

    .discount-inner-circle {
        width: 110px;
        height: 110px;
    }

    .discount-number {
        font-size: 36px;
    }

    .discount-label {
        font-size: 16px;
    }
}


.badge-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.3;
    z-index: 0;
}

.discount-number,
.discount-label {
    position: relative;
    z-index: 1;
}

/* ====================================
   RESPONSIVE DESIGN - HERO SECTION
   ==================================== */

/* Tablet - Large (1024px - 1200px) */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }

    .hero-circular-container {
        width: 480px;
        height: 480px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .offer-badge-circle {
        width: 90px;
        height: 90px;
        margin-left: -45px;
        margin-top: -45px;
    }

    .badge-inner {
        width: 75px;
        height: 75px;
    }

    .badge-percent {
        font-size: 28px;
    }

    .badge-text {
        font-size: 14px;
    }

    @keyframes orbitBadge {
        0% {
            transform: rotate(0deg) translateX(240px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(240px) rotate(-360deg);
        }
    }
}

/* Tablet - Medium (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        gap: 30px;
    }

    .hero-circular-container {
        width: 420px;
        height: 420px;
    }

    .hero-title {
        font-size: 38px;
    }

    .slider-info h3 {
        font-size: 26px;
    }

    .slider-info p {
        font-size: 15px;
    }

    @keyframes orbitBadge {
        0% {
            transform: rotate(0deg) translateX(210px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(210px) rotate(-360deg);
        }
    }
}

/* Mobile - Large (600px - 768px) - SWITCH TO VERTICAL LAYOUT */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    /* Circular slider on TOP */
    .hero-circular-container {
        width: 380px;
        height: 380px;
        margin: 0 auto;
        order: 1;
    }

    /* Text content BELOW */
    .hero-text {
        order: 2;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .offer-badge-circle {
        width: 85px;
        height: 85px;
        margin-left: -42.5px;
        margin-top: -42.5px;
    }

    .badge-inner {
        width: 70px;
        height: 70px;
    }

    .badge-percent {
        font-size: 26px;
    }

    .badge-text {
        font-size: 13px;
    }

    @keyframes orbitBadge {
        0% {
            transform: rotate(0deg) translateX(190px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(190px) rotate(-360deg);
        }
    }

    .slider-info {
        bottom: 70px;
    }

    .slider-info h3 {
        font-size: 24px;
    }

    .slider-info p {
        font-size: 14px;
    }

    .circular-slider-nav {
        bottom: 25px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile - Medium (480px - 600px) */
@media (max-width: 600px) {
    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-circular-container {
        width: 340px;
        height: 340px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .offer-badge-circle {
        width: 80px;
        height: 80px;
        margin-left: -40px;
        margin-top: -40px;
    }

    .badge-inner {
        width: 65px;
        height: 65px;
    }

    .badge-percent {
        font-size: 24px;
    }

    .badge-text {
        font-size: 12px;
    }

    @keyframes orbitBadge {
        0% {
            transform: rotate(0deg) translateX(170px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(170px) rotate(-360deg);
        }
    }

    .slider-info h3 {
        font-size: 22px;
    }

    .slider-info p {
        font-size: 13px;
    }
}

/* Mobile - Small (320px - 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 40px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-circular-container {
        width: 300px;
        height: 300px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        justify-content: center;
    }

    .offer-badge-circle {
        width: 70px;
        height: 70px;
        margin-left: -35px;
        margin-top: -35px;
    }

    .badge-inner {
        width: 58px;
        height: 58px;
    }

    .badge-percent {
        font-size: 20px;
    }

    .badge-text {
        font-size: 10px;
    }

    @keyframes orbitBadge {
        0% {
            transform: rotate(0deg) translateX(150px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(150px) rotate(-360deg);
        }
    }

    .slider-info {
        bottom: 60px;
        padding: 15px;
    }

    .slider-info h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .slider-info p {
        font-size: 12px;
    }

    .circular-slider-nav {
        bottom: 20px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* Mobile-specific fixes */
@media (max-width: 768px) {

    /* Header fixes */
    .main-header .container {
        padding: 0 20px;
    }

    .header-wrapper {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    /* Hero section - add top padding for circle */
    .hero-circular-container {
        margin-top: 30px;
    }

    /* Reduce text sizes */
    .hero-title {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px !important;
    }

    /* Make 30% badge STATIC on top-left for mobile */
    .offer-badge-circle {
        animation: none !important;
        top: -30px;
        left: -30px;
        transform: none !important;
        margin: 0;
    }

    /* Slider text overlay adjustments */
    .slider-info h3 {
        font-size: 20px !important;
    }

    .slider-info p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .hero-circular-container {
        margin-top: 25px;
    }

    .offer-badge-circle {
        top: -25px;
        left: -25px;
        width: 65px;
        height: 65px;
    }

    .badge-inner {
        width: 53px;
        height: 53px;
    }

    .badge-percent {
        font-size: 18px;
    }

    .badge-text {
        font-size: 9px;
    }

    .slider-info h3 {
        font-size: 18px !important;
    }

    .slider-info p {
        font-size: 12px !important;
    }
}

/* Mobile badge positioning - top-right, centered on border */
@media (max-width: 768px) {

    /* More top padding for header */
    .main-header {
        padding-top: 8px;
    }

    /* More top padding for circular container */
    .hero-circular-container {
        margin-top: 50px !important;
    }

    /* Position 30% badge on TOP-RIGHT, centered on border */
    .offer-badge-circle {
        animation: none !important;
        top: -40px;
        left: auto;
        right: 20px;
        transform: none !important;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .hero-circular-container {
        margin-top: 45px !important;
    }

    .offer-badge-circle {
        top: -35px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding-top: 6px;
    }

    .hero-circular-container {
        margin-top: 40px !important;
    }

    .offer-badge-circle {
        top: -32px;
        right: 10px;
        width: 65px;
        height: 65px;
    }

    .badge-inner {
        width: 53px;
        height: 53px;
    }
}

/* Precise badge positioning - top-right on border as marked */
@media (max-width: 768px) {
    .offer-badge-circle {
        animation: none !important;
        top: 10px;
        left: auto;
        right: 10px;
        transform: none !important;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .offer-badge-circle {
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .offer-badge-circle {
        top: 5px;
        right: 5px;
        width: 65px;
        height: 65px;
    }
}

/* ====================================
   MOBILE HAMBURGER MENU
   ==================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
    margin: -20px -20px 30px -20px;
    border-radius: 0;
}

.mobile-logo {
    height: 45px;
}

.mobile-close {
    background: transparent;
    border: none;
    color: #333;
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    transform: rotate(90deg);
    color: #e91e63;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu>li {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateX(10px);
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu li {
    margin-bottom: 5px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: block;
    margin-top: 30px;
    padding: 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* ====================================
   RESPONSIVE VIDEO PLAYER & WORKSHOPS
   ==================================== */

/* Make video wrapper responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 20px;
}

.video-wrapper .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper .video-overlay,
.video-wrapper .video-play-btn,
.video-wrapper .video-info {
    position: absolute;
}

/* Responsive Video Modal */
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Workshops Section Responsive */
@media (max-width: 1024px) {
    .workshops-content {
        gap: 40px;
    }

    .workshops-text {
        max-width: 100%;
    }

    .video-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .workshops-content {
        flex-direction: column;
        gap: 30px;
    }

    .workshops-text {
        text-align: center;
        order: 1;
    }

    .workshops-video {
        order: 2;
        width: 100%;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .video-play-btn {
        width: 70px !important;
        height: 70px !important;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-container {
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .workshops-section {
        padding: 60px 0;
    }

    .workshops-text h2 {
        font-size: 28px;
    }

    .workshops-text p {
        font-size: 15px;
    }

    .video-play-btn {
        width: 60px !important;
        height: 60px !important;
    }

    .video-play-btn .play-icon svg {
        width: 18px !important;
        height: 22px !important;
    }

    .video-info {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .workshops-text h2 {
        font-size: 24px;
    }

    .workshops-text p {
        font-size: 14px;
    }

    .video-play-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .video-play-btn .play-icon svg {
        width: 16px !important;
        height: 20px !important;
    }

    .video-modal-content {
        width: 100%;
        padding: 0 10px;
    }
}

/* ====================================
   REGISTRATION & DOWNLOAD POPUPS
   ==================================== */

/* Registration Modal */
.registration-modal,
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.registration-modal.active,
.download-modal.active {
    display: flex;
}

.registration-overlay,
.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.registration-content,
.download-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.registration-close,
.download-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.registration-close:hover,
.download-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.registration-close i,
.download-close i {
    font-size: 24px;
    color: #333;
}

/* Registration Header */
.registration-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    color: white;
}

.registration-header i {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
}

.registration-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.registration-header p {
    font-size: 16px;
    opacity: 0.95;
}

/* Registration Form */
.registration-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.btn-submit i {
    font-size: 20px;
}

/* Download Success Popup */
.download-success {
    padding: 50px 30px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-icon i {
    font-size: 60px;
    color: white;
}

.download-success h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.download-success p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.btn-download i {
    font-size: 24px;
}

.download-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {

    .registration-content,
    .download-content {
        width: 95%;
        border-radius: 15px;
    }

    .registration-header {
        padding: 30px 20px;
    }

    .registration-header h2 {
        font-size: 24px;
    }

    .registration-header i {
        font-size: 50px;
    }

    .registration-form {
        padding: 20px;
    }

    .download-success {
        padding: 40px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 50px;
    }

    .download-success h2 {
        font-size: 26px;
    }
}

/* Force mobile stacking for courses list */
@media (max-width: 991px) {
    .courses-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        grid-template-columns: none !important;
    }

    .course-category {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* Force show dropdown for programmatic activation */
.has-dropdown.force-show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ====================================
   FLOATING ACTION BUTTONS
   ==================================== */
.float-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FFF;
    z-index: 9999;
}

.float-btn:hover {
    color: #FFF !important;
}

.whatsapp-float {
    left: 30px;
    background-color: #25d366;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.call-float {
    right: 30px;
    background-color: #007bff;
    /* Corporate Blue */
    animation: pulse-blue 2s infinite;
    animation-delay: 1s;
}

.call-float:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.float-btn i {
    margin-top: 2px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* ====================================
   TOAST NOTIFICATIONS
   ==================================== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2147483647;
    /* Maximum z-index */
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.toast-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
}

.toast-close:hover {
    color: #333;
}