/* ==========================================
   ROOT VARIABLES - DAY & NIGHT THEMES
   ========================================== */
:root {
    /* Day Theme (Default) */
    --primary-color: #FFB800;
    --primary-dark: #E6A600;
    --primary-light: #FFD966;

    /* --secondary-color: #6C5CE7; */
    --secondary-color: #2816ad;
    --accent-color: #00D9A3;
    --danger-color: #FF6B6B;

    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F2F5;

    --text-primary: #1A1A2E;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;

    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    --gradient-primary: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    --gradient-secondary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-accent: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] {
    /* Night Theme */
    --primary-color: #FFD966;
    --primary-dark: #FFB800;
    --primary-light: #FFE699;

    --secondary-color: #A29BFE;
    --accent-color: #00E6AC;

    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;

    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;

    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.logo-light,
.logo-dark {
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .premium-card {
    background: linear-gradient(#0F172A 100%);
}

[data-theme="dark"] .btn-premium {
    background: var(--primary-color);
    color: #0F172A;
}

[data-theme="dark"] .premium-description {
    color: rgba(255, 255, 255, 0.85);
}

/* CTA section */

[data-theme="dark"] .btn-cta {
    background: white;
    color: var(--bg-primary);
    font-weight: 700;
}

body:has(.fancybox__container) .theme-toggle {
    opacity: 0;
    pointer-events: none;
}


/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
    overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

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

.section-padding {
    padding: 80px 0;
}

/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */
.theme-toggle {
    position: fixed;
    top: 18px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-xl);
}

.theme-toggle i {
    font-size: 20px;
    color: white;
    position: absolute;
    transition: var(--transition);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background-color: var(--bg-primary);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-tertiary);
}

.nav-link.btn-get-started {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px !important;
    border-radius: var(--radius-md);
}

.nav-link.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 184, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

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

.badge-chip {
    display: inline-block;
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    margin-bottom: 20px;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

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

.hero-main-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

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

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

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 4s ease-in-out infinite;
    border: 2px solid var(--border-color);
}

.floating-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.floating-card h4 {
    font-size: 24px;
    margin: 0;
    color: var(--text-primary);
}

.floating-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: -1s;
}

.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: -2s;
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

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

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background-color: var(--bg-secondary);
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--gradient-accent);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.about-badge i {
    font-size: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight-box {
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    text-align: center;
}

.feature-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   WHY JOIN SECTION
   ========================================== */
.benefit-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(360deg);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.benefit-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.15;
}

/* ==========================================
   PREMIUM SECTION
   ========================================== */
.premium-section {
    background-color: var(--bg-secondary);
}

.premium-card {
    background: var(--text-primary);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.premium-title {
    font-size: clamp(28px, 4vw, 42px);
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.premium-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.premium-features {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.premium-features li {
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-features i {
    font-size: 24px;
}

.premium-icon-wrapper {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
}

.premium-icon-wrapper i {
    font-size: 60px;
    color: white;
}

.btn-premium {
    background: white;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* color: var(--secondary-color); */
    background: white;

}

.premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.15),
            transparent 70%);
    pointer-events: none;
}

.premium-features i {
    color: var(--primary-dark);
    /* filter: drop-shadow(0 0 6px rgba(255, 211, 105, 0.4)); */
}


/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-icon i {
    font-size: 28px;
    color: white;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Timeline */
@media (max-width: 768px) {

    .timeline {
        padding-left: 40px;
        position: relative;
    }

    /* Vertical line on left */
    .timeline::before {
        display: block;
        left: 18px;
        width: 4px;
        transform: none;
    }

    .timeline-item {
        display: block;
        position: relative;
        margin-bottom: 40px;
    }

    /* Number bubble */
    .timeline-number {
        display: flex;
        left: -37px;
        top: 0;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 18px;
        box-shadow: var(--shadow-md);
    }

    /* Content card */
    .timeline-content {
        width: 100%;
        margin: 0 0 0 8px !important;
        padding: 22px 24px;
        text-align: left !important;
        border-radius: 16px;
        transform: none !important;
    }

    .timeline-content:hover {
        transform: none;
        box-shadow: var(--shadow-lg);
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .timeline-icon i {
        font-size: 22px;
    }
}


/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    margin: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    cursor: pointer;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary) !important;
    border-radius: 50%;
    color: white !important;
    font-size: 24px !important;
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

/* Dots container */
.owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

/* Dot button reset */
.owl-carousel .owl-dot {
    background: transparent !important;
    border: none;
    padding: 0;
    margin: 0 6px;
}

/* ACTUAL DOT */
.owl-carousel .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

/* Active dot */
.owl-carousel .owl-dot.active span {
    width: 30px;
    border-radius: 6px;
    background: var(--gradient-primary) !important;
}



/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 48px;
    color: white;
}

/* Swiper Custom Styles */
.gallery-swiper {
    padding: 40px 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: var(--primary-color);
}



.gallery-grid .gallery-item {
    display: block;
    position: relative;
    height: 280px;
    /* set your desired equal height */
    overflow: hidden;
    border-radius: 8px;
    /* optional */
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* keeps aspect ratio & fills container */
    display: block;
}

/* Optional: smooth hover effect */
.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

/* Ensure overlay fills item */
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.accordion-item {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.accordion-button {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFB800'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
}

.cta-card {
    padding: 20px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    background: white;
    color: var(--text-primary);
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: white;

}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-info {
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    height: 100%;
}

/* .brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.brand-logo i {
    font-size: 48px;
    color: var(--primary-color);
}

.brand-logo h3 {
    font-size: 32px;
    margin: 0;
} */

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}


.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-tertiary);
}

.contact-item p,
.contact-item a {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
}

.qr-section {
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    text-align: center;
    height: 100%;
}

.qr-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.qr-section p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-control {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-tertiary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--bg-primary);
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    margin: 0;
    color: var(--text-secondary);
}

.footer-content i {
    color: var(--danger-color);
    margin: 0 5px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

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

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .floating-card {
        display: none;
    }

    .premium-card {
        padding: 40px 30px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .theme-toggle {
        top: 17px;
        right: 70px;
        width: 45px;
        height: 45px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width:580px) {
    .footer-links a {
        font-size: 13px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

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


/* Common mobile media query */

@media (max-width:580px) {
    /* hero section */

    .hero-section {
        margin-top: -100px;
    }

    .badge-chip {
        margin-bottom: 35px;
    }

    /* .hero-stats {
        padding-bottom: 2rem;
    } */

    .stat-item p {
        font-size: 12px;
    }

    .stat-item h3 {
        font-size: 23px;
    }

    .about-badge {
        right: 0px;
    }

    .about-badge {
        position: absolute;
        bottom: 0px;
        right: 0px;
        background: var(--gradient-accent);
        color: white;
        padding: 7px 10px;
        font-size: 14px;
    }

}