  body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa; /* Default light background */
        }
        .font-oswald {
            font-family: 'Oswald', sans-serif;
        }
        .golden-text {
            color: #ffbc3b;
        }
        .bg-footer {
            background-color: #11112a;
        }

      

        /* Hero Section Styles */
        .hero-section {
            background: radial-gradient(ellipse at bottom right, rgba(255, 188, 59, 0.15) 0%, #1a1a37 50%);
            padding: 10rem 0;
            overflow: hidden;
            position: relative;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: .05em;
            line-height: 1.2;
            color: #ffffff;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: #e5e7eb;
            max-width: 550px;
        }
        .image-collage {
            position: relative;
            height: 500px;
        }
        .collage-card {
            position: absolute;
            background-color: #fff;
            padding: 0.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .collage-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.25rem;
        }
        .card-1 {
            width: 250px;
            height: 320px;
            transform: rotate(-12deg);
            top: 10%;
            left: 15%;
        }
        .card-2 {
            width: 250px;
            height: 320px;
            transform: rotate(3deg);
            top: 25%;
            left: 40%;
            z-index: 2;
        }
        .card-3 {
            width: 250px;
            height: 320px;
            transform: rotate(12deg);
            top: 15%;
            left: 65%;
        }

        /* Story Section Styles */
        .story-section {
            padding: 6rem 0;
            background-color: #f8f9fa; /* Light background */
            position: relative;
            overflow: hidden;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.6); /* Light glassmorphism */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(26, 26, 55, 0.1); /* Subtle dark border */
            border-radius: 1rem;
            padding: 3rem;
            height: 100%;
        }
        .story-image-container {
            position: relative;
        }
        .story-image {
            border-radius: 0.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .animated-dots {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(circle, rgba(26, 26, 55, 0.3) 1px, transparent 1px);
            background-size: 15px 15px;
            z-index: -1;
            animation: float 15s infinite ease-in-out;
        }
        .animated-shape {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            border: 2px solid rgba(255, 188, 59, 0.3);
            z-index: -1;
            animation: spin 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(40px, -40px); }
            100% { transform: translate(0, 0); }
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .story-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: #1a1a37; /* Dark text */
        }
        .story-text {
            color: #343a40; /* Dark text */
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        /* Footer Styles */
        /*.footer {*/
        /*    background-color: #11112a;*/
        /*    color: #adb5bd;*/
        /*}*/
        /*.footer a.text-color {*/
        /*    color: #adb5bd !important;*/
        /*}*/
        /*.footer a.text-color:hover {*/
        /*    color: #ffbc3b !important;*/
        /*}*/
        /*.text-primary {*/
        /*    color: #ffbc3b !important;*/
        /*}*/
        /*.copyright {*/
        /*    background-color: #11112a;*/
        /*}*/
        /*.copyright p, .copyright a {*/
        /*    color: #6c757d;*/
        /*}*/
        
          .navigation {
            background-image: none !important;
        }

        .navbar-nav {
            background: transparent !important;
        }