body {
            font-family: 'Poppins', sans-serif; 
        }

        
        /* --- Slider Styles --- */
        .swiper-container {
            width: 100%;
            height: 100vh;
        }

        .swiper-slide {
            background-size: cover;
            background-position: center;
            color: #fff;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .swiper-slide::before {
            content: '';
            position: absolute;
            width: 60%; 
            height: 100%;
            bottom: 0;
            left: 0;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
            z-index: 1;
        }
        
        .slide-content-container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .slide-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }

        .slide-text p {
            font-size: 1.1rem;
            margin: 1.5rem 0;
        }

        /* Fade Up Animation */
        .slide-text > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .swiper-slide-active .slide-text.active-anim > h1 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }
        .swiper-slide-active .slide-text.active-anim > p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }
        .swiper-slide-active .slide-text.active-anim > a {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        /* Pagination styles */
        .swiper-pagination-custom {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            padding: 0 1rem; 
            z-index: 10;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        .swiper-pagination-bullet {
            width: auto;
            height: 40px;
            line-height: 40px;
            font-size: 14px;
            color: #fff;
            opacity: 0.7;
            background: transparent;
            border-radius: 0;
            padding: 0 15px;
            margin: 0 5px !important;
            position: relative;
            cursor: pointer;
            font-weight: 400;
            transition: opacity 0.3s ease;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            font-weight: 600;
        }

        .swiper-pagination-bullet-active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #fff;
            transform: scaleX(0);
            transform-origin: left;
            animation: progress-line 4000ms linear;
        }

        @keyframes progress-line {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        /* Slider Responsive adjustments */
        @media (max-width: 991.98px) {
            .slide-text h1 {
                font-size: 2.5rem;
            }
            .swiper-slide {
                align-items: center; 
                padding-top: 0;
                padding-bottom: 5rem;
            }
            .swiper-slide::before {
                 width: 100%; 
                         background-image: linear-gradient(to top, rgb(0 0 0 / 40%), rgb(0 0 0 / 6%));
    }
            }
        }
        @media (max-width: 768px) {
             .swiper-pagination-bullet {
                font-size: 12px;
                padding: 0 8px;
            }
             .swiper-pagination-custom {
                bottom: 15px;
             }
        }

        /* --- Features Section --- */
        .features-section {
            padding: 80px 0;
            background-color: #080808;
            color: #fff;
        }
        .feature-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
            height: 100%;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }
        .feature-icon {
            font-size: 3rem;
            color: #a7c5ff;
            margin-bottom: 20px;
        }
        .feature-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
