/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */
:root {
    --primary: #F4C430;
    /* Saffron Accents */
    --primary-dark: #D4A31A;
    --secondary: #F4C430;
    /* Liquid Saffron Glow */
    --secondary-dark: #D4A31A;
    --accent: #F7E7CE;
    /* Champagne Gold / Highlights */
    --gold: #F7E7CE;
    --gold-dark: #E1C699;

    --bg-main: #140A05;
    /* Warm Espresso Black */
    --bg-light: #1A0D0A;
    /* Slightly lighter Espresso */
    --bg-dark: #0A0502;
    /* Deep Espresso for contrast */
    --bg-darker: #050201;

    --text-main: #FAF3E7;
    /* Warm Cream Body Text */
    --text-muted: #F7E7CE;
    /* Gold Muted */
    --text-light: #FAF3E7;
    --text-light-muted: rgba(250, 243, 231, 0.7);

    --success: #2DC653;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --glass-bg: rgba(20, 10, 5, 0.85);
    /* Espresso Glass */
    --glass-border: rgba(247, 231, 206, 0.3);
    /* Champagne Gold border luxury */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

/* Typography & Utilities */
.highlight {
    color: var(--primary);
}

.highlight-gold {
    color: var(--gold);
}

.gradient-text {
    background: linear-gradient(45deg, var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light) !important;
}

.text-light-muted {
    color: var(--text-light-muted) !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

.d-inline-block {
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--bg-main);
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--bg-main);
    box-shadow: 0 4px 15px rgba(247, 231, 206, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 231, 206, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--bg-main);
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.dark-glass {
    background: rgba(20, 10, 5, 0.7);
    border: 1px solid rgba(247, 231, 206, 0.1);
}

/* Layout Utilities */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.row-reverse {
    flex-direction: row-reverse;
}

.content-col {
    flex: 1 1 400px;
}

.image-col {
    flex: 1 1 400px;
    position: relative;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    background-color: rgba(244, 196, 48, 0.1);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tag-light {
    background-color: rgba(247, 231, 206, 0.1);
    color: var(--gold);
}


/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    color: var(--text-main);
}

.navbar:not(.scrolled) .logo-text {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--text-main);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

/* Nav Dropdown Floating Glass */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn i {
    font-size: 0.8rem;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    min-width: 320px;
    padding: 1rem;
    z-index: 1000;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-card {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem !important;
    border-radius: var(--border-radius);
    background: transparent;
    transition: all 0.3s ease !important;
}

.dropdown-card::after {
    display: none !important;
    /* disable standard underline hover */
}

.dropdown-card:hover {
    background: rgba(244, 196, 48, 0.05);
    transform: translateY(-3px);
}

.dropdown-card i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(244, 196, 48, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.dropdown-card h4 {
    margin: 0 0 0.2rem 0;
    color: var(--text-main);
    /* force dark text inside drop */
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.dropdown-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 5, 2, 0.4), rgba(10, 5, 2, 0.7)), url('assets/media/pr-lokmat-times-1.jpg') center/cover no-repeat;
    z-index: -1;
    transform: scale(1);
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-content {
    max-width: 800px;
    padding-top: 5rem;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp 1s ease-out 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.875rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ==========================================================================
   Image Wrappers
   ========================================================================== */
.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0.5rem;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}

.image-wrapper img {
    border-radius: calc(var(--border-radius) - 0.25rem);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-light);
    color: var(--text-main);
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    text-align: center;
    border: 4px solid var(--bg-light);
    animation: float 4s ease-in-out infinite;
}

.floating-badge .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-badge .text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

@keyframes float {

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

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

/* ==========================================================================
   Summer Camp Features
   ========================================================================== */
.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(244, 196, 48, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   Pageants
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    background: rgba(247, 231, 206, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(247, 231, 206, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(247, 231, 206, 0.1);
    border-color: var(--gold);
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    margin: 0;
}

/* ==========================================================================
   Mall Decor
   ========================================================================== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-cards .card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.service-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-cards i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-cards h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-cards p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h4 {
    color: var(--text-main);
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay h4 {
    transform: translateY(0);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-dark);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(232, 147, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(10, 5, 2, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Add soft fade at edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding-bottom: 2rem;
}

.testimonial-slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.testimonial-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.testimonial-card {
    min-width: 350px;
    max-width: 400px;
    flex: 0 0 auto;
    background: rgba(247, 231, 206, 0.05);
    border: 1px solid rgba(247, 231, 206, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(247, 231, 206, 0.08);
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author h5 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card .author span {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Area
   ========================================================================== */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(244, 196, 48, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-main);
    transform: translateY(-3px);
}

.contact-form {
    padding: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #F8F9FA;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-main);
    padding: 4rem 0 2rem;
}

.footer-text {
    color: var(--text-light-muted);
    max-width: 400px;
    margin: 0 auto 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: rgba(247, 231, 206, 0.3);
    font-size: 0.9rem;
    border-top: 1px solid rgba(247, 231, 206, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}


/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .section {
        padding: 4rem 0;
    }

    .flex-row {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .row-reverse {
        flex-direction: column;
    }

    .section-text {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list li {
        justify-content: center;
    }

    .stats-grid,
    .service-cards {
        justify-content: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.item-wide {
        grid-column: span 1;
    }

    .gallery-item.item-tall {
        grid-row: span 1;
    }

    .floating-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        color: var(--text-main);
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   About Section & Animations
   ========================================================================== */
.about-section {
    overflow: hidden;
}

.founder-portrait-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.founder-portrait-wrapper:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(10deg) scale(1.05);
}

.founder-portrait {
    position: relative;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.accent-circle {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    z-index: 0;
    opacity: 0.5;
    transition: transform 0.5s ease;
}

.accent-circle-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold);
    z-index: 0;
    opacity: 0.2;
    transition: transform 0.5s ease;
}

.founder-portrait-wrapper:hover .accent-circle {
    transform: translate(10px, 10px);
}

.founder-portrait-wrapper:hover .accent-circle-2 {
    transform: translate(-10px, -10px);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-right {
    transform: translateX(100px);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.slide-in-bottom {
    transform: translateY(50px);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(244, 196, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1.2);
}

.faq-item.active .icon-wrap {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--text-main);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    /* Slow gravity drop transition */
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.8s;
}

/* Inner answer container for pushing down effect */
.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    transform: translateY(-20px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    /* Soft delay for falling effect */
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
        visibility 0.8s;
}

.faq-item.active .faq-answer-inner {
    transform: translateY(0);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.08);
    /* slight zoom on the image when hovering the card */
}

.blog-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* floating animation for the tag */
    animation: drift 4s ease-in-out infinite;
}

@keyframes drift {

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

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

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.blog-card:hover .read-more {
    gap: 0.8rem;
}

/* Hero Gradient Sweep */
.gradient-sweep {
    background: linear-gradient(-45deg, var(--bg-main), #F4C430, #3D0C4E, var(--bg-dark), var(--bg-main));
    background-size: 400% 400%;
    animation: gradientSweep 15s ease infinite;
    opacity: 0.85;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Badge */
.hero-badge {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-main);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(247, 231, 206, 0.4);
    width: 100px;
    height: 100px;
    opacity: 0;
    animation: fadeUpBadge 1s ease-out forwards;
}

.hero-badge .number {
    color: var(--bg-main);
    font-size: 1.25rem;
}

.hero-badge .text {
    color: var(--bg-main);
    font-size: 0.65rem;
}

@keyframes fadeUpBadge {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Specific Buttons */
.btn-rose {
    background: #C8637A;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(200, 99, 122, 0.4);
}

.btn-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 99, 122, 0.6);
}

.btn-ghost {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFF;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

/* Confetti */
.confetti-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.confetti {
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--gold);
    opacity: 0;
    bottom: -20px;
    animation: driftUp 5s linear infinite;
    box-shadow: 0 0 5px var(--gold);
}

.confetti:nth-child(even) {
    background: var(--secondary);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.confetti:nth-child(3n) {
    background: #3D0C4E;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-duration: 6s;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 20%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.confetti:nth-child(3) {
    left: 30%;
    animation-duration: 5s;
    animation-delay: 2s;
}

.confetti:nth-child(4) {
    left: 40%;
    animation-duration: 8s;
    animation-delay: 0.5s;
}

.confetti:nth-child(5) {
    left: 50%;
    animation-duration: 6.5s;
    animation-delay: 3s;
}

.confetti:nth-child(6) {
    left: 60%;
    animation-duration: 7.5s;
    animation-delay: 1.5s;
}

.confetti:nth-child(7) {
    left: 70%;
    animation-duration: 6s;
    animation-delay: 2.5s;
}

.confetti:nth-child(8) {
    left: 80%;
    animation-duration: 8.5s;
    animation-delay: 0.2s;
}

.confetti:nth-child(9) {
    left: 90%;
    animation-duration: 5.5s;
    animation-delay: 3.5s;
}

.confetti:nth-child(10) {
    left: 15%;
    animation-duration: 7s;
    animation-delay: 4s;
}

.confetti:nth-child(11) {
    left: 85%;
    animation-duration: 6.2s;
    animation-delay: 2.2s;
}

.confetti:nth-child(12) {
    left: 55%;
    animation-duration: 8.1s;
    animation-delay: 1.1s;
}

@keyframes driftUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Hero Redesign --- */
.new-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--bg-main) !important;
    overflow: hidden;
}

.new-gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, #F4C430 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, #3D0C4E 0%, transparent 50%);
    opacity: 0.5;
    animation: slowSaffronPlum 15s infinite alternate ease-in-out;
}

@keyframes slowSaffronPlum {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-5%, -5%);
    }
}

.floating-gold-badge {
    position: absolute;
    top: 130px;
    /* Below Navbar */
    left: 10%;
    background: var(--gold);
    color: var(--bg-main);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(247, 231, 206, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.hero-cta-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 15px;
}

.hero-card {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 2px solid rgba(247, 231, 206, 0.1);
    color: var(--text-main);
    text-decoration: none;
    max-width: 250px;
}

.hero-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero-card .card-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-card.card-saffron {
    border-color: rgba(244, 196, 48, 0.5);
}

.hero-card.card-plum {
    border-color: rgba(61, 12, 78, 0.8);
}

.hero-card.card-emerald {
    border-color: rgba(45, 198, 83, 0.5);
}

.hero-card:hover {
    transform: translateY(-12px);
}

.hero-card.card-saffron:hover {
    background: rgba(244, 196, 48, 0.15);
    box-shadow: 0 15px 30px rgba(244, 196, 48, 0.3);
}

.hero-card.card-plum:hover {
    background: rgba(61, 12, 78, 0.3);
    box-shadow: 0 15px 30px rgba(61, 12, 78, 0.4);
}

.hero-card.card-emerald:hover {
    background: rgba(45, 198, 83, 0.15);
    box-shadow: 0 15px 30px rgba(45, 198, 83, 0.3);
}

/* --- Full-Width Stats Marquee --- */
.stats-marquee-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: rgba(61, 12, 78, 0.5);
    /* Translucent Plum */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(244, 196, 48, 0.3);
    border-bottom: none;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.stats-marquee {
    display: flex;
    animation: scrollMarquee 25s linear infinite;
}

.stats-marquee:hover {
    animation-play-state: paused;
}

.stat-group {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-right: 0.2rem;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.saffron-diamond {
    color: #F4C430;
    /* Saffron */
    font-size: 0.8rem;
    margin: 0 2rem;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Services Overview --- */
.services-overview-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.overview-card {
    flex: 1 1 300px;
    background: var(--bg-light);
    border: 1px solid rgba(247, 231, 206, 0.1);
    /* Subtle Gold border */
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    color: var(--text-main);
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: var(--border-radius);
}

.overview-card:hover {
    transform: translateY(-15px);
}

.overview-card .card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.overview-card:hover .card-icon {
    transform: scale(1.1);
}

.overview-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-card .card-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-light-muted);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.overview-card .card-highlights span {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Saffron Accent (Summer Camp) */
.overview-card.card-saffron {
    border-bottom: 3px solid #F4C430;
}

.overview-card.card-saffron:hover {
    border-color: #F4C430;
    box-shadow: 0 20px 40px rgba(244, 196, 48, 0.2);
}

.overview-card.card-saffron::before {
    background: radial-gradient(circle at top, rgba(244, 196, 48, 0.15), transparent 70%);
}

.overview-card.card-saffron:hover::before {
    opacity: 1;
}

/* Rose Accent (Pageants & Grooming) */
.overview-card.card-rose {
    border-bottom: 3px solid #E57373;
}

.overview-card.card-rose:hover {
    border-color: #E57373;
    box-shadow: 0 20px 40px rgba(229, 115, 115, 0.2);
}

.overview-card.card-rose::before {
    background: radial-gradient(circle at top, rgba(229, 115, 115, 0.15), transparent 70%);
}

.overview-card.card-rose:hover::before {
    opacity: 1;
}

/* Gold Accent (Mall Decor) */
.overview-card.card-gold {
    border-bottom: 3px solid #F7E7CE;
}

.overview-card.card-gold:hover {
    border-color: #F7E7CE;
    box-shadow: 0 20px 40px rgba(247, 231, 206, 0.2);
}

.overview-card.card-gold::before {
    background: radial-gradient(circle at top, rgba(247, 231, 206, 0.15), transparent 70%);
}

.overview-card.card-gold:hover::before {
    opacity: 1;
}

/* --- Deep Summer Camp Section --- */
.bg-espresso-camp {
    background: linear-gradient(135deg, #140A05 0%, #3D0C4E 100%) !important;
    position: relative;
    padding: 6rem 0;
}

.bg-espresso-camp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(244, 196, 48, 0.15), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.light-heading {
    color: #FFF !important;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.light-heading span {
    color: #F4C430;
}

.camp-quick-info {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2.5rem;
    color: #F4C430;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.camp-quick-info .info-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFF;
}

.camp-quick-info .info-block i {
    color: #F4C430;
}

.camp-quick-info .info-divider {
    width: 5px;
    height: 5px;
    background: #F4C430;
    border-radius: 50%;
    margin: 0 1.25rem;
    opacity: 0.5;
}

.venue-line {
    font-size: 1.35rem;
    font-weight: 500;
    color: #F7E7CE;
    /* Champagne Gold */
    font-family: var(--font-body);
    font-style: italic;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.activity-chips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.activity-chip {
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(247, 231, 206, 0.3);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.activity-chip:hover {
    background: rgba(244, 196, 48, 0.1);
    color: #F4C430;
    border-color: #F4C430;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.2);
}

.bob-anim {
    animation: bob 3.5s infinite ease-in-out;
}

@keyframes bob {

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

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

.inclusion-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.inclusion-badge {
    background: rgba(244, 196, 48, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: #FFF;
    font-weight: 500;
    border: 1px dashed rgba(244, 196, 48, 0.5);
    font-family: var(--font-body);
}

/* Upgraded Pulsing Pop-up Button */
.highlight-popup-btn-container {
    margin-top: 4rem;
    /* Adds much more spacing above */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.emotional-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold) !important;
    background: #140A05 !important;
    /* Espresso */
    border: 2px solid var(--gold);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(20, 10, 5, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatingPop 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.emotional-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 231, 206, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shineLight 4s infinite 1s;
}

.emotional-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(20, 10, 5, 0.6), 0 0 20px rgba(247, 231, 206, 0.5);
    background: #3D0C4E !important;
    /* Changes to plum on hover */
    border-color: #FFF;
    color: #FFF !important;
}

@keyframes floatingPop {

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

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

@keyframes shineLight {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- About Journey CSS --- */
.about-in-depth {
    padding: 6rem 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(244, 196, 48, 0.4); /* Saffron */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #140A05;
    border: 4px solid #F4C430; /* Saffron base */
    border-radius: 50%;
    top: 2.5rem;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    background: #FFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(247, 231, 206, 0.5); /* Champagne Gold */
    position: relative;
}
.timeline-content::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}
.timeline-item:nth-child(odd) .timeline-content::after {
    right: -24px;
    border-left-color: #FFF;
}
.timeline-item:nth-child(even) .timeline-content::after {
    left: -24px;
    border-right-color: #FFF;
}
.timeline-content h3 {
    color: #3D0C4E; /* Plum */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* TG Bar Chart & Graphs */
.tg-charts-container {
    max-width: 900px;
    margin: 3rem auto 0;
}
.chart-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(247, 231, 206, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 4rem;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.chart-header h4 {
    font-size: 1.5rem;
    color: #F7E7CE;
    font-weight: 500;
}
.bar-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}
.bar-label {
    width: 35%;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #FFF;
}
.bar-track {
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 2px 0 10px rgba(255, 255, 255, 0.2);
}
.bar-value {
    width: 15%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFF;
    text-align: right;
}

/* TG Stats Grid */
.tg-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.tg-stat-card {
    background: rgba(20, 10, 5, 0.8);
    border: 1px solid rgba(244, 196, 48, 0.2); 
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}
.tg-stat-card:hover {
    transform: translateY(-8px);
    border-color: #F4C430;
}
.tg-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.tg-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.2rem;
}
.tg-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
}
.tg-desc {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot { left: 20px; }
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after { left: -24px; border-right-color: #FFF; }
    
    .bar-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .bar-label, .bar-track { width: 100%; }
    .bar-value { width: 100%; text-align: left; }
}


/* --- Media / PR Section Styling --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.media-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.media-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 10, 5, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    gap: 1rem;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 2.5rem;
    color: #F4C430;
}

.media-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
}

.media-info h4 {
    font-size: 1.4rem;
    color: #140A05;
    margin-bottom: 0.5rem;
}

.media-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 5, 2, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 3px solid #F7E7CE;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #F4C430;
}


/* --- Homepage Gallery Moving Banner --- */
.gallery-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    display: flex;
}

.gallery-marquee {
    display: flex;
    animation: scrollGalleryMarquee 40s linear infinite;
    gap: 1.5rem;
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-marquee-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

@keyframes scrollGalleryMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-slide {
    flex: 0 0 350px;
    height: 250px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-slide:hover {
    transform: scale(1.05);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(20, 10, 5, 0.8));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #F4C430;
}

@media (max-width: 768px) {
    .gallery-slide { flex: 0 0 280px; height: 200px; }
}
