              /* Custom Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #1a1a1a; /* Dark charcoal */
            color: #f0f0f0;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
        }
        .hero-section {
            background-image: url('https://b.zmtcdn.com/data/pictures/5/20216105/4a820e1715f2c55bfb25050130978606.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Simple parallax effect */
        }
        .nav-link {
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #f97316; /* Orange */
            transition: width 0.3s ease-in-out;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .btn-primary {
            background-color: #f97316;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #fb923c;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
        }
        .btn-secondary {
            background-color: transparent;
            border: 2px solid #f97316;
            color: #f97316;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #f97316;
            color: white;
        }
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .is-visible {
            opacity: 1;
            transform: translateX(0);
        }
        /* Carousel styling */
        .carousel-container {
            overflow: hidden;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel-item {
            flex: 0 0 100%;
        }
        @media (min-width: 768px) {
            .carousel-item {
                flex: 0 0 50%;
            }
        }
        @media (min-width: 1024px) {
            .carousel-item {
                flex: 0 0 33.333%;
            }
        }
        /* Modal Styles */
        .modal {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .modal-content {
            transition: transform 0.3s ease;
        }
        /* Hero Text Animation */
        @keyframes slide-up-fade-in {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-hero-text {
            opacity: 0; /* Start hidden */
            animation: slide-up-fade-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        .animation-delay-400 { animation-delay: 0.4s; }
        .animation-delay-600 { animation-delay: 0.6s; }
    