/* ============================================ */
/* =========== GLOBAL / BASIC RESET =========== */
/* ============================================ */
:root {
    --black: #0D0D0D;
    --dark: #1a1a1a;
    --yellow: #FFD700;
    --yellow-dark: #F4B400;
    --white: #ffffff;
    --sw-font-main: 'Outfit', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sw-font-main);
    background-color: #0D0D0D;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Make content expand to push footer down */
body > * {
    flex-shrink: 0;
}

/* Make the main content area expand */
body > header,
body > main,
body > section,
body > div {
    flex-shrink: 0;
}

/* Ensure any content wrapper takes available space */
:where(.content-wrapper, #app, main) {
    flex: 1 0 auto;
}

/* ============================================ */
/* =========== GLOBAL SECTION SPACING ========= */
/* ============================================ */

section {
    padding: 20px 15px;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

/* ============================================ */
/* ============ HERO SECTION ALIGNMENT ============ */
/* ============================================ */

.hero {
    padding: 100px 0 80px;
    background: linear-gradient(to top, #F4B400 0%, #FFE566 35%, #FFF9C4 65%, #FFFDE7 100%);
    position: relative;
    overflow: hidden;
}



.hero .row {
    align-items: center !important;
    min-height: 500px;
}

.hero .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
}

.hero .col-lg-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
    font-family: var(--sw-font-main);
    line-height: 1.2;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #C47F00;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
    animation: popupFade 1s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 30px;
    font-family: var(--sw-font-main);
    line-height: 1.6;
}

.hero-video-wrapper {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.hero-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.4);
    border-color: #FFD700;
}

.hero-video-wrapper iframe {
    display: block;
    width: 100%;
    height: 315px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero .col-lg-6:first-child,
    .hero .col-lg-6:last-child {
        padding: 0 15px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.5rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .hero .row { min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.3rem; }
    .hero p { font-size: 1rem; }
    .hero-video-wrapper iframe { height: 250px; }
}

/* ============================================ */
/* ============ FOOTER STYLING ============ */
/* ============================================ */

/* Full-width footer background */
.footer-full-width {
     background: #0b1a2f; 
    width: 100%;
    position: relative;
    color: #fff !important;
    padding: 40px 0 30px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-full-width::before {
    
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    opacity: 0.2;
    letter-spacing: 12px;
    /* animation: bounce 4s ease-in-out infinite; */
    white-space: nowrap;
    z-index: 1;
}

.footer-full-width::after {
    
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    opacity: 0.15;
    letter-spacing: 10px;
    /* animation: bounce 4s ease-in-out infinite 0.5s; */
    white-space: nowrap;
    z-index: 1;
}

.footer-full-width .container {
    position: relative;
    z-index: 2;
}

/* Enhanced footer text styling */
.footer-full-width .brand-text {
    color: #FFD700 !important;
    font-weight: 900;
    font-family: var(--sw-font-main);
    font-size: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    /* animation: glow 2s ease-in-out infinite alternate; */
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 15px rgba(255, 215, 0, 0.4); }
    to { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 25px rgba(255, 215, 0, 0.8); }
}

.footer-full-width .footer-socials a {
    color: #fff !important;
    font-size: 1.4rem;
    margin: 0 12px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-full-width .footer-socials a:hover {
    color: #F4B400 !important;
    transform: scale(1.2) rotate(10deg);
    background: rgba(244, 180, 0, 0.2);
    box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

.footer-full-width .footer-legal {
    margin: 25px 0;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-full-width .footer-legal a {
    color: #ffffff !important;
    font-size: 1.1rem;
    opacity: 1 !important;
    transition: all 0.3s ease;
    font-family: var(--sw-font-main);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0 8px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

.footer-full-width .footer-legal a:hover {
    color: #FFD700 !important;
    opacity: 1;
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

/* Footer text visibility - MAXIMUM STRENGTH */
.footer-full-width p,
.footer-full-width .text-secondary {
    color: #FFFFFF !important;
    font-size: 18px !important;
    font-family: var(--sw-font-main);
    text-shadow: 6px 6px 12px rgba(0,0,0,1) !important;
    font-weight: 900 !important;
    opacity: 1 !important;
    letter-spacing: 1px !important;
    background: transparent !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
    display: inline-block !important;
    position: relative !important;
    z-index: 9999 !important;
}

.footer-full-width .text-primary {
    color: #FFFF00 !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    font-family: var(--sw-font-main);
    text-shadow: 6px 6px 12px rgba(0,0,0,1) !important;
    opacity: 1 !important;
    letter-spacing: 1px !important;
    background: transparent !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
    display: inline-block !important;
    position: relative !important;
    z-index: 9999 !important;
}

.footer-full-width .border-secondary {
    border-color: transparent !important;
    border-width: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-full-width::before { 
        font-size: 1rem; 
        letter-spacing: 5px;
    }
    .footer-full-width .brand-text { 
        font-size: 1rem; 
    }
    .footer-full-width .footer-socials a { 
        font-size: 1rem; 
        margin: 0 5px;
    }
    .footer-full-width .footer-legal a { 
        font-size: 0.8rem; 
    }
}

/* Enhanced About Section */
.about-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    font-family: var(--sw-font-main);
    /* animation: wiggle 4s ease-in-out infinite; */
    position: relative;
}

.about-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #F4B400;
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

.about-section .about-card {
    background: #F4B400;
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.2);
    transition: all 0.3s ease;
}

.about-section .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
}

.about-section .lead {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    font-family: var(--sw-font-main);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-family: var(--sw-font-main);
}

/* ============================================ */
/* ============ AUDITION PAGE STYLING ============ */
/* ============================================ */

/* Audition Page Background */
body.audition-page {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 25%, #FFE4B5 50%, #FFD700 75%, #FFF9E6 100%);
    background-size: 400% 400%;
    /* animation: rainbow 20s ease infinite; */
    min-height: 100vh;
}

.audition-page::before {
    
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.2;
    letter-spacing: 12px;
    /* animation: bounce 4s ease-in-out infinite; */
    white-space: nowrap;
    z-index: 1;
}

.audition-page::after {
    
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 1.3rem;
    opacity: 0.15;
    letter-spacing: 10px;
    /* animation: bounce 4s ease-in-out infinite 0.5s; */
    white-space: nowrap;
    z-index: 1;
}

/* Audition Form Container */
.audition-container {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 5px solid #F4B400;
    border-radius: 25px;
    padding: 40px;
    margin: 30px auto;
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.audition-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .audition-container:hover::before {
    animation: shimmer 0.5s ease;
} */

/* Section Styling */
.audition-section {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.audition-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
}

.audition-section h3 {
    color: #111;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--sw-font-main);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.audition-section h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Form Elements */
.audition-section label {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--sw-font-main);
    margin-bottom: 8px;
    display: block;
}

.audition-section input,
.audition-section select,
.audition-section textarea {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 15px;
    padding: 15px;
    font-size: 1rem;
    font-family: var(--sw-font-main);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.audition-section input:focus,
.audition-section select:focus,
.audition-section textarea:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
    outline: none;
    transform: scale(1.02);
}

.audition-section input[type="radio"],
.audition-section input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.audition-section .form-check {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 2px solid #F4B400;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.audition-section .form-check:hover {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

/* Submit Button */
.btn-audition {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--sw-font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /* animation: pulse 2s ease-in-out infinite; */
}

.btn-audition:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.5);
    background: linear-gradient(135deg, #FF6B6B 0%, #F4B400 100%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* File Upload Styling */
.audition-section input[type="file"] {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    border: 3px dashed #F4B400;
    color: #333;
    font-weight: 700;
}

.audition-section input[type="file"]:hover {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* Responsive Audition Form */
@media (max-width: 768px) {
    .audition-container {
        margin: 15px;
        padding: 20px;
    }
    
    .audition-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .audition-section h3 {
        font-size: 1.5rem;
    }
    
    .btn-audition {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* ============================================ */
/* ============ COLLABORATE PAGE STYLING ============ */
/* ============================================ */

/* Collaborate Page Background */
body.collaborate-page {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 25%, #FFE4B5 50%, #FFD700 75%, #FFF9E6 100%);
    background-size: 400% 400%;
    /* animation: rainbow 20s ease infinite; */
    min-height: 100vh;
}

.collaborate-page::before {
    
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.2;
    letter-spacing: 12px;
    /* animation: bounce 4s ease-in-out infinite; */
    white-space: nowrap;
    z-index: 1;
}

.collaborate-page::after {
    
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 1.3rem;
    opacity: 0.15;
    letter-spacing: 10px;
    /* animation: bounce 4s ease-in-out infinite 0.5s; */
    white-space: nowrap;
    z-index: 1;
}

/* Hero Section */
.collaborate-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 50%, #FFA500 100%);
    position: relative;
    overflow: hidden;
}

.collaborate-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .collaborate-hero:hover::before {
    animation: shimmer 0.5s ease;
} */

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(244, 180, 0, 0.3);
    font-family: var(--sw-font-main);
    /* animation: wiggle 4s ease-in-out infinite; */
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F4B400;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    font-family: var(--sw-font-main);
    line-height: 1.6;
}

/* Collaboration Types Section */
.collaboration-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
    position: relative;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Collaboration Cards */
.collaboration-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.collaboration-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.35);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

.collaboration-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    /* animation: bounce 3s ease-in-out infinite; */
}

.collaboration-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
    text-align: center;
}

.collaboration-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-family: var(--sw-font-main);
    text-align: center;
    margin-bottom: 20px;
}

.collaboration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--sw-font-main);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
}

/* Form Section */
.collaboration-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 50%, #FFA500 100%);
    position: relative;
}

.form-container {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 5px solid #F4B400;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    position: relative;
}

.form-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .form-container:hover::before {
    animation: shimmer 0.5s ease;
} */

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--sw-font-main);
    position: relative;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Enhanced Form Elements */
.form-label {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--sw-font-main);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 15px;
    padding: 15px;
    font-size: 1rem;
    font-family: var(--sw-font-main);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
    outline: none;
    transform: scale(1.02);
}

.radio-group {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 2px solid #F4B400;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.radio-label {
    color: #333;
    font-weight: 600;
    font-family: var(--sw-font-main);
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--sw-font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /* animation: pulse 2s ease-in-out infinite; */
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.5);
    background: linear-gradient(135deg, #FF6B6B 0%, #F4B400 100%);
}

/* Email Contact Section */
.email-contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
}

.email-contact-container {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.2);
}

.email-contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
}

.email-contact-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
}

.email-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.email-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.email-address {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F4B400;
    font-family: var(--sw-font-main);
}

/* Footer Note Section */
.footer-note-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 50%, #FFA500 100%);
}

.footer-note-container {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.2);
}

.footer-note-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-family: var(--sw-font-main);
}

.footer-note-text strong {
    color: #F4B400;
    font-weight: 800;
}

/* Responsive Collaborate Page */
@media (max-width: 768px) {
    .collaborate-hero h1 { font-size: 2.5rem; }
    .collaborate-hero { padding: 80px 0 60px; }
    .collaboration-card { padding: 30px 20px; margin-bottom: 20px; }
    .collaboration-icon { font-size: 3rem; }
    .collaboration-card h3 { font-size: 1.5rem; }
    .collaboration-card p { font-size: 1rem; }
    .form-container { padding: 30px 20px; }
    .form-title { font-size: 1.8rem; }
    .btn-submit { padding: 15px 30px; font-size: 1.1rem; }
}

/* ============================================ */
/* ============ GALLERY PAGE ============ */
/* ============================================ */

/* Gallery Hero Section */
.gallery-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE4B5 25%, #FFD700 50%, #FFA500 75%, #FFF4D6 100%);
    background-size: 400% 400%;
    /* animation: rainbow 15s ease infinite; */
    border-bottom: 5px solid #F4B400;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
   
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 15px;
    /* animation: bounce 3s ease-in-out infinite; */
    white-space: nowrap;
}

.gallery-hero::after {
    
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    opacity: 0.25;
    letter-spacing: 12px;
    /* animation: bounce 3s ease-in-out infinite 0.5s; */
    white-space: nowrap;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(244, 180, 0, 0.3);
    font-family: var(--sw-font-main);
    position: relative;
}

.gallery-hero h1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

.gallery-hero p {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    font-family: var(--sw-font-main);
    /* animation: wiggle 4s ease-in-out infinite; */
}

/* Enhanced Gallery Section Titles */
section:not(.hero) h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0px rgba(244, 180, 0, 0.2);
    font-family: var(--sw-font-main);
    position: relative;
}

section:not(.hero) h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Enhanced Gallery Cards */
.gallery-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.2);
    margin-bottom: 20px;
}

.gallery-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .gallery-card:hover::before {
    animation: shimmer 0.5s ease;
} */

.gallery-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.35);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-caption {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--sw-font-main);
    position: relative;
}

.gallery-caption::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    /* animation: bounce 2s ease-in-out infinite; */
}

/* Enhanced Background Sections */
.bg-light {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 50%, #FFE4B5 100%) !important;
    position: relative;
}

.bg-light::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 2rem;
    opacity: 0.2;
    /* animation: bounce 4s ease-in-out infinite; */
}

/* Regular sections */
section:not(.hero):not(.gallery-hero):not(.bg-light){
    background: linear-gradient(135deg, #FFE4B5 0%, #fff 50%, #fff9e6 100%);
    position: relative;
}

section:not(.hero):not(.gallery-hero):not(.bg-light)::before {
    content: " ";
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 1.8rem;
    opacity: 0.15;
    /* animation: bounce 3.5s ease-in-out infinite; */
}

/* Responsive adjustments for Gallery */
@media (max-width: 768px) {
    .gallery-hero h1 { font-size: 2.5rem; }
    .gallery-hero p { font-size: 1.1rem; }
    .gallery-hero::before, .gallery-hero::after { font-size: 1.5rem; }
    section h2 { font-size: 2rem; }
    .gallery-card img { height: 200px; }
    .gallery-caption { font-size: 1rem; padding: 12px; }
}

/* ============================================ */
/* ============ CREATIVE LAB PAGE ============ */
/* ============================================ */

/* Creative Lab Hero Section */
.creative-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE4B5 25%, #FFD700 50%, #FFA500 75%, #FFF4D6 100%);
    background-size: 400% 400%;
    /* animation: rainbow 15s ease infinite; */
    border-bottom: 5px solid #F4B400;
    position: relative;
    overflow: hidden;
}

.creative-hero::before {
    content: " ";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 15px;
    /* animation: bounce 3s ease-in-out infinite; */
    white-space: nowrap;
}

.creative-hero::after {
    content: " ";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    opacity: 0.25;
    letter-spacing: 12px;
    /* animation: bounce 3s ease-in-out infinite 0.5s; */
    white-space: nowrap;
}

.creative-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(244, 180, 0, 0.3);
    font-family: var(--sw-font-main);
    position: relative;
}

.creative-hero h1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

.creative-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
    /* animation: wiggle 4s ease-in-out infinite; */
}

.creative-hero p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    font-family: var(--sw-font-main);
}

/* Enhanced Cards for Creative Lab */
.creative-hero .card,
.bg-light .card,
section .card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.creative-hero .card::before,
.bg-light .card::before,
section .card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .creative-hero .card:hover::before,
.bg-light .card:hover::before,
section .card:hover::before {
    animation: shimmer 0.5s ease;
} */

.creative-hero .card:hover,
.bg-light .card:hover,
section .card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

.creative-hero .card h4,
.bg-light .card h4,
section .card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
}

.creative-hero .card h5,
.bg-light .card h5,
section .card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
}

.creative-hero .card h3,
.bg-light .card h3,
section .card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #F4B400;
    margin-bottom: 10px;
    font-family: var(--sw-font-main);
    /* animation: bounce 2s ease-in-out infinite; */
}

.creative-hero .card p,
.bg-light .card p,
section .card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-family: var(--sw-font-main);
    font-weight: 500;
}

/* Enhanced Section Titles */
section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0px rgba(244, 180, 0, 0.2);
    font-family: var(--sw-font-main);
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Enhanced Form Elements */
.form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: var(--sw-font-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label::before {
    content: " ";
    font-size: 1rem;
    opacity: 0.8;
    /* animation: bounce 3s ease-in-out infinite; */
}

.form-control {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    font-family: var(--sw-font-main);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.1);
}

.form-control:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 0.3rem rgba(255, 107, 107, 0.25);
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
    transform: scale(1.02);
    outline: none;
}

.form-control:hover {
    border-color: #FFA500;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.25);
    transform: translateY(-2px);
}

/* Enhanced Submit Button */
.btn-dark {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 50%, #FF6B6B 100%) !important;
    border: 3px solid #fff !important;
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--sw-font-main);
    /* animation: bounce 2s ease-in-out infinite; */
}

.btn-dark:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FF6B6B 50%, #4ECDC4 100%) !important;
}

/* Enhanced Alerts */
.alert {
    border: none;
    border-radius: 20px;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--sw-font-main);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* animation: bounce 3s ease-in-out infinite; */
}

.alert-success {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
}

/* Enhanced Final Section */
section[style*="background:#f4b400"] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%) !important;
    position: relative;
    overflow: hidden;
}

section[style*="background:#f4b400"]::before {
    content: " ";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 15px;
    /* animation: bounce 3s ease-in-out infinite; */
    white-space: nowrap;
}

section[style*="background:#f4b400"] h2 {
    color: white !important;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

section[style*="background:#f4b400"] p {
    color: white !important;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--sw-font-main);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .creative-hero h1 { font-size: 2.5rem; }
    .creative-hero h2 { font-size: 2rem; }
    .creative-hero::before, .creative-hero::after { font-size: 1.5rem; }
    section h2 { font-size: 2rem; }
    .creative-hero .card, .bg-light .card, section .card { padding: 20px; }
    .form-control { padding: 12px 15px; font-size: 1rem; }
    .btn-dark { padding: 12px 30px; font-size: 1.1rem; }
}

/* What Happens Section */
.what-happens-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 50%, #FFE4B5 100%);
}

.lab-activity-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.lab-activity-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .lab-activity-card:hover::before {
    animation: shimmer 0.5s ease;
} */

.lab-activity-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    /* animation: bounce 3s ease-in-out infinite; */
}

/* .lab-activity-card:nth-child(2) .activity-icon {
    animation-delay: 0.5s;
}

.lab-activity-card:nth-child(3) .activity-icon {
    animation-delay: 1s;
}

.lab-activity-card:nth-child(4) .activity-icon {
    animation-delay: 1.5s;
}

.lab-activity-card:nth-child(5) .activity-icon {
    animation-delay: 2s;
}

.lab-activity-card:nth-child(6) .activity-icon {
    animation-delay: 2.5s;
} */

.lab-activity-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
}

.lab-activity-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-family: var(--sw-font-main);
    font-weight: 500;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #fff 50%, #fff9e6 100%);
}

.story-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 20px;
}

.story-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    font-family: var(--sw-font-main);
}

.story-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    font-family: var(--sw-font-main);
    font-weight: 500;
}

/* Join CTA Section */
.join-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    position: relative;
    overflow: hidden;
}

.join-cta-section::before {
    content: " ";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.3;
    letter-spacing: 20px;
    /* animation: bounce 3s ease-in-out infinite; */
    white-space: nowrap;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #fff;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
}

.cta-card p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    font-family: var(--sw-font-main);
    font-weight: 600;
}

/* Responsive adjustments for Creative Lab page */
@media (max-width: 768px) {
    .creative-lab-hero h1 { font-size: 2.5rem; }
    .hero-tagline-highlight { font-size: 1.4rem; }
    .creative-lab-hero::before, .creative-lab-hero::after { font-size: 1.5rem; }
    .lab-activity-card { padding: 20px; }
    .activity-icon { font-size: 2.5rem; }
    .cta-card { padding: 30px; }
    .cta-card h2 { font-size: 2rem; }
}

/* ============================================ */
/* ============ CHILDREN-FRIENDLY AUDITION PAGE ============ */
/* ============================================ */

/* Enhanced Audition Form Container */
.audition-form-container {
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE4B5 25%, #FFD700 50%, #FFA500 75%, #FFF4D6 100%);
    background-size: 400% 400%;
    /* animation: rainbow 15s ease infinite; */
    padding: 60px 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.audition-form-container::before {
    content: " ";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.3;
    letter-spacing: 20px;
    /* animation: bounce 3s ease-in-out infinite; */
    white-space: nowrap;
}

.audition-form-container::after {
    content: " ";
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.25;
    letter-spacing: 15px;
    /* animation: bounce 3s ease-in-out infinite 0.5s; */
    white-space: nowrap;
}

/* Enhanced Section Titles */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(244, 180, 0, 0.3);
    font-family: var(--sw-font-main);
    position: relative;
    text-align: center;
    /* animation: wiggle 4s ease-in-out infinite; */
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 10px;
    /* animation: rainbow 5s ease infinite; */
}

/* Enhanced Form Sections */
.audition-section {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.audition-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .audition-section:hover::before {
        animation: shimmer 0.5s ease;
} */

.audition-section:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.35);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

/* Enhanced Form Headers */
.audition-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    font-family: var(--sw-font-main);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.audition-section h3::before {
    content: " ";
    font-size: 2rem;
    /* animation: bounce 2s ease-in-out infinite; */
}

/* Enhanced Form Labels */
.form-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: var(--sw-font-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-label::before {
    content: " ";
    font-size: 1.2rem;
    opacity: 0.8;
    /* animation: bounce 3s ease-in-out infinite; */
}

/* Enhanced Form Inputs */
.form-control {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    font-family: var(--sw-font-main);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.1);
}

.form-control:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 0.3rem rgba(255, 107, 107, 0.25);
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
    transform: scale(1.03);
    outline: none;
}

.form-control:hover {
    border-color: #FFA500;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.25);
    transform: translateY(-2px);
}

/* Enhanced Radio Buttons and Checkboxes */
.form-check-input {
    width: 30px;
    height: 30px;
    border: 3px solid #F4B400;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(244, 180, 0, 0.2);
}

.form-check-input:checked {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.form-check-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-left: 12px;
    font-family: var(--sw-font-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-label:hover {
    color: #FF6B6B;
    transform: scale(1.05);
}

/* Enhanced File Upload */
.form-control[type="file"] {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    border: 3px dashed #FF6B6B;
    cursor: pointer;
    padding: 25px;
    text-align: center;
}

.form-control[type="file"]:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #4ECDC4;
    transform: scale(1.02);
}

/* Enhanced Textarea */
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Enhanced Select */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23F4B400' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
}

/* Enhanced Submit Button */
.btn-main.btn-submit {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 50%, #FF6B6B 100%);
    color: white !important;
    padding: 25px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(244, 180, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--sw-font-main);
    /* animation: bounce 2s ease-in-out infinite; */
    margin-top: 20px;
}

.btn-main.btn-submit::before {
    content: " ";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    /* animation: wiggle 3s ease-in-out infinite; */
}

.btn-main.btn-submit:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FF6B6B 50%, #4ECDC4 100%);
}

/* Enhanced HR Divider */
hr {
    border: none;
    height: 6px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #F4B400);
    border-radius: 15px;
    margin: 60px 0;
    /* animation: rainbow 8s ease infinite; */
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.2);
}

/* Enhanced Form Help Text */
.form-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    font-family: var(--sw-font-main);
    margin-top: 8px;
    /* animation: bounce 4s ease-in-out infinite; */
}

/* Enhanced Alert Messages */
.alert {
    border: none;
    border-radius: 25px;
    padding: 25px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--sw-font-main);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    /* animation: bounce 3s ease-in-out infinite; */
}

.alert-success {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
}

/* Enhanced Info Section */
.info-section {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: " ";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    /* animation: bounce 2s ease-in-out infinite; */
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
}

.info-section p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    font-family: var(--sw-font-main);
    line-height: 1.7;
}

/* Responsive adjustments for audition page */
@media (max-width: 768px) {
    .audition-form-container { padding: 40px 15px; }
    .section-title { font-size: 2.5rem; }
    .audition-section { padding: 30px; }
    .audition-section h3 { font-size: 1.8rem; }
    .form-label { font-size: 1rem; }
    .form-control { padding: 15px 20px; font-size: 1rem; }
    .btn-main.btn-submit { padding: 20px 40px; font-size: 1.2rem; }
    .audition-form-container::before, .audition-form-container::after { font-size: 1.5rem; }
    .form-check-input { width: 25px; height: 25px; }
}

/* ============================================ */
/* ============ CHILDREN-FRIENDLY ENHANCEMENTS ============ */
/* ============================================ */

/* Playful floating animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Hero Section for Children */
.hero {
    padding: 100px 0 80px;
    background: #0D0D0D;
    border-bottom: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Enhanced Buttons for Children */
.btn-main {
    background: linear-gradient(135deg, #F4B400 0%, #FFA500 50%, #FF6B6B 100%);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--sw-font-main);
}

.btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(244, 180, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FF6B6B 50%, #4ECDC4 100%);
}

/* Enhanced Video Wrapper */
.hero-video-wrapper {
    border: 5px solid #F4B400;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FFE4B5, #FFF4D6);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-video-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 3rem;
    background: #FF6B6B;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    /* animation: bounce 2s ease-in-out infinite; */
}

.hero-video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
}

/* Enhanced About Section */
.about-section {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 50%, #FFE4B5 100%);
    padding: 80px 0;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 2rem;
    opacity: 0.2;
    /* animation: bounce 4s ease-in-out infinite; */
}

/* Enhanced What We Do Section */
.whatwedo-section {
    background: linear-gradient(135deg, #FFE4B5 0%, #fff 50%, #fff9e6 100%);
    padding: 80px 0;
}

/* Enhanced Cards for Children */
.feature-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .feature-card:hover::before {
    animation: shimmer 0.5s ease;
} */

.feature-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    border-color: #FF6B6B;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    /* animation: bounce 3s ease-in-out infinite; */
}

/* .feature-card:nth-child(2) .icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .icon {
    animation-delay: 1.5s;
} */

/* Enhanced Creative Lab Section */
.creative-lab-section {
    background: linear-gradient(135deg, #fff9e6 0%, #FFE4B5 50%, #fff 100%);
    padding: 80px 0;
}

.experiment-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.experiment-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.3);
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
}

.experiment-number {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    /* animation: bounce 2s ease-in-out infinite; */
}

/* Enhanced Audition Section */
.auditions-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.auditions-section::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.3;
    letter-spacing: 20px;
    /* animation: bounce 3s ease-in-out infinite; */
}

.audition-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #fff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.audition-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}



/* ============================================ */
/* =============== NAVBAR STYLES ============== */
/* ============================================ */

.navbar {
    background: #FFF4D6;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #F4B400;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.brand-text {
    font-weight: 700;
    font-size: 22px;
    color: #111 !important;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #333 !important;
    margin: 0 10px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    background: rgba(244, 180, 0, 0.1);
    color: #000 !important;
}

.btn-main {
    background-color: #111;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    margin: 5px;
}

.btn-main:hover {
    background-color: #333;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ============================================ */
/* =============== HERO SECTION ============== */
/* ============================================ */

.hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF4D6 0%, #ffe574 100%);
    border-bottom: 5px solid #F4B400;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #444;
    max-width: 100%;
}

.hero-video-wrapper {
    border: 5px solid #111;
    background: #000;
}

@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding: 80px 0;
    }
    .hero .text-start {
        text-align: center !important;
    }
    .hero .d-flex {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero .btn {
    margin: 8px;
}

/* ============================================ */
/* ============= SECTION TITLES =============== */
/* ============================================ */

.section-title {
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #F4B400;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================ */
/* ============= ABOUT SECTION ================ */
/* ============================================ */

.about-section {
    background: #fff;
}

.about-card {
    background: #fff9e6;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #F4B400;
    max-width: 850px;
    margin: 0 auto;
}

.about-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
}

/* ============================================
   CHANNELS SECTION (YELLOW + BLACK THEME)
============================================ */

.channels-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE4B5 40%, #FFD700 100%);
}

/* Section Title */
.channels-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    font-family: var(--sw-font-main);
    position: relative;
}

.channels-section .section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #F4B400);
    border-radius: 10px;
}

/* Channel Card */
.channel-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 4px solid #F4B400;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Hover Effect */
.channel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.35);
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #fff 0%, #FFE4B5 100%);
}

/* Heading */
.channel-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--sw-font-main);
}

/* Description */
.channel-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--sw-font-main);
}

/* Buttons container */
.channel-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* YouTube Button */
.channel-links .btn-danger {
    background: linear-gradient(135deg, #FF0000, #cc0000) !important;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    padding: 6px 14px;
}

/* Instagram Button */
.channel-links .btn-info {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
    border: none;
    border-radius: 20px;
    color: #fff !important;
    font-weight: 600;
}

/* Followers */
.followers {
    margin-top: 20px;
    font-weight: 700;
    color: #111;
    font-size: 1rem;
}

/* Icon styling */
.channel-links i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .channel-card {
        padding: 20px;
    }

    .channels-section .section-title {
        font-size: 2rem;
    }
}

/* ============================================ */
/* ============= WHAT WE DO =================== */
/* ============================================ */

.features-section {
    background: #fff;
}

.feature-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #F4B400;
    background: #fffdf5;
}

.feature-item i {
    font-size: 40px;
    color: #F4B400;
    margin-bottom: 20px;
    display: block;
}

.feature-item h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ============================================ */
/* ============= VIDEO CARDS ================== */
/* ============================================ */

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #eee;
}

.thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

/* ============================================ */
/* ============ PREMIUM SHORTS STYLE ========== */
/* ============================================ */

.shorts-section {
    background: #f9f9f9;
}

.shorts-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.short-item {
    width: 280px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.short-item:hover {
    transform: translateY(-5px);
}

.short-thumb {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.short-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.short-title {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #111;
}

/* ============================================ */
/* ============== CTA SECTION ================ */
/* ============================================ */

.cta-section {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================ */
/* ============= LAB / IDEA SECTIONS ========== */
/* ============================================ */

.lab-section, .idea-section {
    padding: 80px 0;
    text-align: center;
}

.lab-section { background: #fff; }
.idea-section { background: #fdfdfd; }

.lab-section h2, .idea-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ============================================ */
/* ================ FOOTER =================== */
/* ============================================ */

footer.footer-compact {
    background-color: #FFF4D6;
    color: #333;
    padding: 15px 0;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

footer .brand-text {
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    display: inline-block !important;
}

.footer-socials a {
    font-size: 1.2rem;
    color: #333;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #F4B400;
}

.lang-switcher-footer a {
    font-size: 13px;
    color: #333 !important;
    font-weight: 600;
}

.lang-switcher-footer a.text-danger {
    color: #dc3545 !important;
}

.footer-compact p.text-secondary,
.footer-compact .text-secondary {
    color: #333 !important;
    font-weight: 500;
}

.footer-compact .border-secondary {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .footer-compact .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ============================================ */
/* ============== ABOUT US PAGE =============== */
/* ============================================ */

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF4D6 0%, #ffe574 100%);
    border-bottom: 5px solid #F4B400;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.2;
    letter-spacing: 20px;
    /* animation: float 6s ease-in-out infinite; */
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .row {
    align-items: stretch !important;
    min-height: 500px;
}

.about-hero .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 0px rgba(244, 180, 0, 0.3);
    font-family: var(--sw-font-main);
}

.about-hero h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4B400, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    /* animation: colorChange 3s ease-in-out infinite; */
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: #444;
    max-width: 700px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    font-family: var(--sw-font-main);
}

.about-hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    line-height: 1.8;
    font-family: var(--sw-font-main);
}


.about-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    height: 100%;
    min-height: 30px;
    margin-top: -170px;
    
}

.about-hero-image img {
    max-width: 1000px;
    max-height: 700px;
    object-fit: cover;
    /* border: 5px solid #F4B400; */
    transition: all 0.3s ease;
    /* border-radius: 20px; */
    /* box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3); */
}

.about-hero-image img:hover {
    transform: scale(1.02);
    /* box-shadow: 0 25px 50px rgba(244, 180, 0, 0.4); */
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes colorChange {
    0%, 100% { background: linear-gradient(90deg, #F4B400, #ff6b6b, #4ecdc4); }
    33% { background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #F4B400); }
    66% { background: linear-gradient(90deg, #4ecdc4, #F4B400, #ff6b6b); }
}

.story-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #fff9e6 50%, #fff 100%);
    min-height: 80vh;
}

.story-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.15);
    border: 4px solid #F4B400;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.story-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .story-card:hover::before {
    animation: shimmer 0.5s ease;
} */

.story-card h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-family: var(--sw-font-main);
}

.story-card h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #F4B400, #ffa500, #ff6b6b);
    border-radius: 2px;
}

.story-content {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.story-text .lead {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: var(--sw-font-main);
}

.story-text .mission-statement {
    font-size: 1.3rem;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: var(--sw-font-main);
    font-style: italic;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border-radius: 18px;
    border: 3px solid #F4B400;
    transition: all 0.3s ease;
    min-height: 80px;
}

.point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.25);
}

.point-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.point-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: var(--sw-font-main);
}

/* Founder Image Section */
.founder-image {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.founder-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 6px solid #F4B400;
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(244, 180, 0, 0.4);
}

.image-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 4px dashed #ffa500;
    border-radius: 50%;
    /* animation: rotate 20s linear infinite; */
    pointer-events: none;
}

.founder-image h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    font-family: var(--sw-font-main);
}

.founder-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: var(--sw-font-main);
}

.founder-quote {
    background: linear-gradient(135deg, #F4B400 0%, #ffa500 100%);
    color: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-top: 25px;
    position: relative;
    max-width: 300px;
}

.founder-quote p {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    font-family: var(--sw-font-main);
    line-height: 1.6;
}

.founder-quote::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    opacity: 0.3;
    font-family: var(--sw-font-main);
}

.founder-quote::after {
    content: "\201D";
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-size: 3rem;
    opacity: 0.3;
    font-family: var(--sw-font-main);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.story-card {
    background: #fff9e6;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #F4B400;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
}

.story-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.story-content {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.story-content .col-lg-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.story-content .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image {
    margin-top: 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 244, 214, 0.9) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid #F4B400;
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.founder-image::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .founder-image:hover::before {
    animation: shimmer 0.5s ease;
} */

.founder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.3);
}

.founder-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #F4B400;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.founder-image:hover .founder-photo {
    transform: scale(1.05);
    border-color: #111;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.founder-image h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.founder-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.vision-mission-section {
    padding: 60px 0;
    background: #fdfdfd;
    position: relative;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F4B400, transparent);
}

.vision-card, .mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.vision-card::before, .mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F4B400, #111);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #F4B400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
    transition: transform 0.3s ease;
}

.vision-card:hover .card-icon, .mission-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: #111;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

.vision-card p, .mission-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.experimental-section {
    padding: 80px 0;
    background: #fff;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.experiment-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #F4B400;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experiment-card:nth-child(1) {
    border-color: #F4B400;
    background: linear-gradient(135deg, #fff 0%, #fff3cd 100%);
}

.experiment-card:nth-child(2) {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff 0%, #ffe0e0 100%);
}

.experiment-card:nth-child(3) {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, #fff 0%, #e0f7f6 100%);
}

.experiment-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.experiment-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.experiment-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.experiment-card:hover::before {
    top: -150%;
    left: -150%;
}

.experiment-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experiment-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
}

.experiment-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.experiment-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.experiment-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.experiment-card:nth-child(1) .experiment-number {
    background: linear-gradient(135deg, #F4B400 0%, #ffa500 100%);
}

.experiment-card:nth-child(2) .experiment-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.experiment-card:nth-child(3) .experiment-number {
    background: linear-gradient(135deg, #4ecdc4 0%, #6ee7df 100%);
}

.experiment-card:hover .experiment-number {
    transform: scale(1.1) rotate(10deg);
}

.experiment-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.experiment-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.future-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.future-card {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.future-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
     color: #ffcc00; 
}

.future-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.future-goals {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.future-goals li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.future-goals li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.future-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fff9e6 50%, #fff3cd 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 20px;
    /* animation: bounce 2s ease-in-out infinite; */
}

.team-section::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.3;
    letter-spacing: 20px;
    /* animation: bounce 2s ease-in-out infinite reverse; */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 3px 3px 0px rgba(244, 180, 0, 0.2);
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #F4B400, #ff6b6b, #4ecdc4, #F4B400);
    border-radius: 2px;
    /* animation: colorChange 3s ease-in-out infinite; */
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    position: relative;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 3px solid #F4B400;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 180, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .team-member:hover::before {
    animation: shimmer 0.5s ease;
} */

.team-member:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.3);
}

.team-member img {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover !important;
    border: 6px solid #F4B400;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    aspect-ratio: 1/1;
}

.team-member:hover img {
    transform: scale(1.1) rotate(5deg);
    border-color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.team-role {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero .row { min-height: auto; }
    .about-hero .col-lg-6 { min-height: auto; margin-bottom: 30px; }
    .about-hero-image { min-height: 250px; }
    .about-hero-image img { max-height: 250px; }
    .story-card { padding: 40px 20px; }
    .future-card { padding: 40px 20px; }
    .team-member img { width: 150px !important; height: 150px !important; }
    .team-member { padding: 20px; }
    .experiment-card { padding: 30px 20px; }
    .experiment-number { width: 60px; height: 60px; font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .about-hero { padding: 60px 0 40px; }
    .about-hero h1 { font-size: 2rem; }
    .about-hero .row { flex-direction: column; }
    .about-hero .col-lg-6 { min-height: auto; }
    .about-hero-image { min-height: 200px; order: -1; }
    .about-hero-image img { max-height: 200px; }
    .team-member img { width: 120px !important; height: 120px !important; }
    .team-member { padding: 15px; }
    .section-header h2 { font-size: 2rem; }
    .experiment-card { padding: 25px 15px; }
}

/* ============================================ */
/* ============ COLLABORATION PAGE STYLE ============ */
/* ============================================ */

.collaborate-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FFFDF0 0%, #FFF8DC 100%);
    border-bottom: 5px solid #FFE4B5;
    position: relative;
    overflow: hidden;
}

.collaborate-hero::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.15;
    letter-spacing: 20px;
    /* animation: float 6s ease-in-out infinite; */
}

.collaborate-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(255, 228, 181, 0.3);
}

.collaborate-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 600;
}

.collaborate-hero .hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.collaboration-types-section {
    padding: 80px 0;
    background: #fff;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFE4B5, #FFD700, #FFA500);
    border-radius: 2px;
}

.collaboration-card {
    background: linear-gradient(135deg, #fff 0%, #FFFEF7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 3px solid #FFE4B5;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collaboration-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 228, 181, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

/* .collaboration-card:hover::before {
    animation: shimmer 0.5s ease;
} */

.collaboration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 228, 181, 0.3);
}

.collaboration-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.collaboration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.collaboration-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.collaboration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.collaboration-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #FFFDF0 50%, #FFF8DC 100%);
}

.form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 3px solid #FFE4B5;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFE4B5, #FFD700, #FFA500);
    border-radius: 2px;
}

.email-contact-section {
    padding: 60px 0;
    background: #fff;
}

.email-contact-container {
    background: linear-gradient(135deg, #fff 0%, #FFFEF7 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #FFE4B5;
    text-align: center;
}

.email-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.email-contact-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.email-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    color: #333;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 228, 181, 0.4);
}

.email-icon {
    font-size: 1.2rem;
}

.email-address {
    font-size: 1.1rem;
}

.footer-note-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFDF0 100%);
}

.footer-note-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FFE4B5;
    text-align: center;
}

.footer-note-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collaborate-hero .hero-content h1 { font-size: 2.5rem; }
    .collaborate-hero .hero-subtitle { font-size: 1.1rem; }
    .collaboration-card { padding: 30px 20px; }
    .form-container { padding: 30px 20px; }
    .radio-group { flex-direction: column; }
    .email-contact-container { padding: 25px 20px; }
}

@media (max-width: 576px) {
    .collaborate-hero { padding: 60px 0 40px; }
    .collaborate-hero .hero-content h1 { font-size: 2rem; }
    .form-container { padding: 25px 15px; }
    .collaboration-card { padding: 25px 15px; }
    .collaboration-features { flex-direction: column; align-items: center; }
}

/* ============================================ */
/* ============ IDEA SUBMISSION STYLE ============ */
/* ============================================ */

/* Alert Messages */
.alert {
    border: none;
    border-radius: 0;
    padding: 15px 0;
    margin-bottom: 0;
}

.alert-success {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(90deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.alert-icon {
    font-size: 1.5rem;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.idea-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FFF4D6 0%, #ffe574 100%);
    border-bottom: 5px solid #F4B400;
    position: relative;
    overflow: hidden;
}

.idea-hero::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.2;
    letter-spacing: 30px;
    /* animation: float 6s ease-in-out infinite; */
}

.idea-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(244, 180, 0, 0.3);
}

.idea-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 600;
}

.about-idea-section {
    padding: 80px 0;
    background: #fff;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    position: relative;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4B400, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border: 2px solid #F4B400;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-weight: 600;
    color: #111;
}

.submission-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fff9e6 50%, #fff3cd 100%);
}

.form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #F4B400;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4B400, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.form-label {
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #ff6b6b;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #F4B400;
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
    outline: none;
}

.form-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #F4B400;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
}

.radio-option input[type="radio"]:checked + .radio-label {
    color: #F4B400;
    font-weight: 600;
}

.optional-fields {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff9e6 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px dashed #F4B400;
}

.optional-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    text-align: center;
}

.submit-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F4B400;
}

.btn-submit {
    background: linear-gradient(135deg, #F4B400 0%, #ffa500 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(244, 180, 0, 0.5);
    background: linear-gradient(135deg, #ffa500 0%, #F4B400 100%);
}

.btn-submit:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 180, 0, 0.4);
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.4), 0 0 0 4px rgba(244, 180, 0, 0.2);
}

.guidelines-section {
    padding: 80px 0;
    background: #fff;
}

.guidelines-container {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #F4B400;
}

.guidelines-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 30px;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #F4B400;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.1);
}

.guideline-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.guideline-text {
    color: #555;
    line-height: 1.5;
}

.disclaimer-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffe574 0%, #FFF4D6 100%);
}

.disclaimer-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff6b6b;
    text-align: center;
}

.disclaimer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.disclaimer-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* ================= HERO BUTTON FIX ================= */
.hero .hero-btn {
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .idea-hero .hero-content h1 { font-size: 2.5rem; }
    .idea-hero .hero-subtitle { font-size: 1.1rem; }
    .benefits { flex-direction: column; align-items: center; }
    .form-container { padding: 30px 20px; }
    .radio-group { flex-direction: column; }
    .guidelines-container { padding: 25px 20px; }
}

@media (max-width: 576px) {
    .idea-hero { padding: 60px 0 40px; }
    .idea-hero .hero-content h1 { font-size: 2rem; }
    .form-container { padding: 25px 15px; }
    .optional-fields { padding: 20px 15px; }
    .benefit-item { padding: 10px 20px; }
}

/* ============================================ */
/* ============ VIDEO MODAL STYLE ============ */
/* ============================================ */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
}

.video-modal iframe {
    width: 100%;
    height: 500px;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F4B400;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================================
   LOGIN PAGE STYLES (SAFE VERSION)
========================================= */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.login-card {
    background: #fff;
    width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.login-main-btn {
    width: 100%;
    padding: 14px;
    background: #F4B400;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.4rem; }
    .section-title { font-size: 2rem; }
}
@keyframes popupFade {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
