
         :root {
            --bg-primary: #0f1f35;
            --bg-secondary: #142844;
            --bg-card: #1b3354;

            --accent-gold: #c29644;
            --accent-gold-light: #b99044;
            --accent-copper: #b87333;

            --text-primary: #ffffff;
            --text-secondary: #a8b5c9;
            --text-muted: #f5f5f5;

            --border-color: rgba(212, 168, 83, 0.25);

            --gradient-gold: linear-gradient(135deg, #c29644 0%, #b87333 100%);
            --gradient-dark: linear-gradient(180deg, #0a1628 0%, #1b3354 100%);

            --navbar-bg: rgba(10, 22, 40, 0.95);

            /* Improved Hero Overlay (Stronger + Premium) */
             --hero-overlay: linear-gradient(
                135deg,
                rgba(26, 32, 44, 0.55) 0%,
                rgba(26, 32, 44, 0.45) 50%,
                rgba(26, 32, 44, 0.60) 100%
            );

            --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

            /* Fixed toggle bg to match gold theme */
            --toggle-bg: #f7f7f7;
        }

       [data-theme="light"] {
            --bg-primary: #f8f9fc;
            --bg-secondary: #ffffff;
            --bg-card: #ffffff;

            --text-primary: #1a202c;
            --text-secondary: #4a4a4d;
            --text-muted: #333333;

            --border-color: rgba(212, 168, 83, 0.3);

            --gradient-dark: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
            --navbar-bg: rgba(255, 255, 255, 0.95);

            /* FIXED: More visible hero overlay */
            --hero-overlay: linear-gradient(
                135deg,
                rgba(26, 32, 44, 0.55) 0%,
                rgba(26, 32, 44, 0.45) 50%,
                rgba(26, 32, 44, 0.60) 100%
            );

            --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            --toggle-bg: rgba(212, 168, 83, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background 0.4s ease, color 0.4s ease;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }

        /* Navigation */
        .navbar {
            background: var(--navbar-bg);
            backdrop-filter: blur(20px);
            padding: 1rem 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            background: var(--navbar-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 0.6rem 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-gold) !important;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1.2rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover {
            color: var(--accent-gold) !important;
        }

        .nav-link:hover::after {
            width: 60%;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--toggle-bg);
            border-radius: 8px;
        }

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

        .hamburger {
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            bottom: -8px;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger {
            background: transparent;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger::before {
            top: 0;
            transform: rotate(45deg);
        }

        .navbar-toggler[aria-expanded="true"] .hamburger::after {
            bottom: 0;
            transform: rotate(-45deg);
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--toggle-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 15px;
        }

        .theme-toggle:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: rotate(15deg);
        }

        .theme-toggle:hover svg {
            color: var(--bg-primary);
        }

        .theme-toggle svg {
            width: 20px;
            height: 20px;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }

        .theme-toggle .sun-icon {
            display: none;
        }

        [data-theme="light"] .theme-toggle .sun-icon {
            display: block;
        }

        [data-theme="light"] .theme-toggle .moon-icon {
            display: none;
        }

        @media (max-width: 991px) {
            .theme-toggle {
                margin-top: 20px;
                margin-left: 0;
                width: 100%;
                border-radius: 8px;
            }

            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                padding: 80px 20px 30px;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                border-left: 1px solid var(--border-color);
            }

            .navbar-collapse.show {
                right: 0;
            }

            .nav-link {
                padding: 1rem !important;
                border-bottom: 1px solid var(--border-color);
                font-size: 1rem;
            }

            .nav-link::after {
                display: none;
            }

            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            .mobile-overlay.show {
                opacity: 1;
                visibility: visible;
            }

            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: var(--toggle-bg);
                border: none;
                border-radius: 50%;
                color: var(--accent-gold);
                font-size: 1.5rem;
                cursor: pointer;
            }
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;

        }

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

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--hero-overlay);
            z-index: 1;
        }

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

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0.6;
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
            padding-top: 70px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
            color: #ffffff;
        }

        .hero-title span {
            color: var(--accent-gold);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s forwards;
            opacity: 0;
        }

        .btn-primary-custom {
            background: var(--gradient-gold);
            color: #0a1628;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
            background: #ffffff;
            color: var(--accent-gold);
            border: solid var(--accent-gold);
        }

        .btn-secondary-custom {
            background: transparent;
            color: #ffffff;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            border: 1px solid var(--accent-gold);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary-custom:hover {
            border-color: var(--accent-gold);
            background: var(--accent-gold);
            color: white;
        }

        /* Slider Navigation */
        .slider-nav-container {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--accent-gold);
            transform: scale(1.3);
        }

        .slider-arrows {
            position: absolute;
            left: 20px;
            bottom: 80px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--toggle-bg);
            border: 1px solid var(--border-color);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background: var(--accent-gold);
            color: var(--bg-primary);
            transform: scale(1.1);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: bounce 2s infinite;
            cursor: pointer;
            text-decoration: none;
        }

        .scroll-indicator span {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid var(--accent-gold);
            border-radius: 15px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scrollDown 2s infinite;
        }

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

        @keyframes scrollDown {
            0% {
                top: 8px;
                opacity: 1;
            }
            100% {
                top: 30px;
                opacity: 0;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
            background: var(--bg-primary);
            transition: background 0.4s ease;
        }

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

        .section-label {
            display: inline-block;
            color: var(--accent-gold);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .section-desc {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Countdown */
        .countdown-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            min-width: 100px;
        }

        .countdown-value {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 8px;
        }

        .countdown-separator {
            font-size: 3rem;
            color: var(--accent-gold);
            opacity: 0.3;
            align-self: flex-start;
            margin-top: 10px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-gold);
            border-radius: 16px;
            z-index: -1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        .feature-list li svg {
            color: var(--accent-gold);
            flex-shrink: 0;
            margin-top: 4px;
        }

        /* Schedule Tabs */
        .schedule-section {
            background: var(--bg-secondary);
        }

        .schedule-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .schedule-tab {
            padding: 12px 24px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .schedule-tab.active {
            background: var(--gradient-gold);
            border-color: var(--accent-gold);
            color: #0a1628;
        }

        .schedule-tab:hover:not(.active) {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .schedule-content {
            display: none;
        }

        .schedule-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .schedule-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .schedule-card:hover {
            border-color: var(--accent-gold);
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(212, 168, 83, 0.1);
        }

        @media (max-width: 576px) {
            .schedule-card {
                grid-template-columns: 1fr;
            }
        }

        .schedule-time {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.9rem;

        }

        .schedule-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .schedule-speakers {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

       /* Default (desktop) */
        .speakers-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
          gap: 30px;
        }

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

        /* Small phones */
        @media (max-width: 768px) {
          .speakers-grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        /* Very small devices */
        @media (max-width: 480px) {
          .speakers-grid {
             grid-template-columns: repeat(2, 1fr);
          }
        }

        .speaker-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .speaker-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 40px rgba(212, 168, 83, 0.15);
        }

        .speaker-image {
            width: 100%;
            height: 300px;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

       .speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;   /* 👈 This is what you need */
    transition: transform 0.4s ease;
}

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

        .speaker-placeholder {
            font-size: 4rem;
            color: rgba(10, 22, 40, 0.5);
        }

        .speaker-info {
            padding: 20px;
            text-align: center;
        }

        .speaker-name {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .speaker-title {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.2;
        }

        .speaker-country {
            display: inline-block;
            margin-top: 10px;
            padding: 4px 12px;
            background: var(--toggle-bg);
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--accent-gold);
        }

        /* Safari Section */
        .safari-section {
            background: var(--gradient-dark);
        }

        .safari-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

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

        .safari-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .safari-card:hover {
            transform: scale(1.02);
            border-color: var(--accent-gold);
        }

        .safari-image {
            height: 300px;
            background: var(--gradient-gold);
            position: relative;
            overflow: hidden;
        }

        .safari-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

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

        .safari-day {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-gold);
            color: #0a1628;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .safari-content {
            padding: 25px;
        }

        .safari-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .safari-list {
            list-style: none;
            padding: 0;
        }

        .safari-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .safari-list li svg {
            color: var(--accent-gold);
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

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

        .contact-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--toggle-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon svg {
            color: var(--accent-gold);
        }

        .contact-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .contact-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 40px 0;
            text-align: center;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-text a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .floating-btn:hover {
            transform: scale(1.1);
            color: white;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .call-btn {
            background: var(--accent-gold);
        }

        .scroll-top-btn {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn svg {
            color: var(--accent-gold);
        }

        @media (min-width: 992px) {
            .floating-buttons {
                display: none;
            }
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        @media (max-width: 768px) {
            .slider-nav-container {
                right: 15px;
            }
            .slider-arrows {
                left: 15px;
                bottom: 80px;
            }
            .hero-content {
                padding: 0 15px;
            }
        }


 /* --- Partners Slider --- */
        .partner-logo {
            filter: grayscale(10%);
            opacity: 0.9;
            transition: all 0.4s ease;
            width: 120px; 
            height: 100px;
            margin: 0 auto;
            display: block;
            padding: 5px;
        }
        .swiper-slide:hover .partner-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        .partner-name {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            background: rgba(0,0,0,0.8);
            color: white;
            text-align: center;
            padding: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: 0.3s;
            transform: translateY(10px);
        }
        .swiper-slide:hover .partner-name {
            opacity: 1; transform: translateY(0);
        }


        #partners {
            background: var(--bg-primary);
        }

        #partners p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }


.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 700;

    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    border-radius: 4px;
}


/*.speaker-card,
.safari-card,
.contact-card,
.schedule-card {
    will-change: transform;
}*/