    
    .hero-section {         
        position: relative;         
        height: 100vh;         
        overflow: hidden;
    }          
    
    .video-slider {         
        position: absolute;         
        top: 0;         
        left: 0;         
        width: 100%;         
        height: 100%;       
    }          
    
    .video-slide {         
        position: absolute;         
        top: 0;         
        left: 0;         
        width: 100%;         
        height: 100%;         
        opacity: 0;         
        transition: opacity 1s ease-in-out;     
    }          
    
    .video-slide.active {         
        opacity: 1;     
    }          
    
    .hero-video {         
        width: 100%;         
        height: 100%;         
        object-fit: cover;     
    }

    /* Slide content styling */
    .slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        pointer-events: none;
    }
    
    .video-slide.active .slide-content {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* First slide styling (EY Style) */
    .first-slide-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 80px;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
        color: white;
        position: relative;
    }
    
    .top-label {
        font-size: 40px;
        font-weight: 500;
        color: #c1c1b7;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }
    
    .slide-heading {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.1;
        color: white;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        max-width: 600px;
    }
    
    .description-container {
        max-width: 600px;
        border-left: 3px solid #ffff00; /* EY yellow */
        padding-left: 20px;
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    
    .description-text {
        font-size: 18px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Animated Card Styling */
    .animated-card {
        position: absolute;
        top: 50%;
        right: -400px; /* Start off-screen to the right */
        transform: translateY(-50%);
        width: 400px;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 5px;
        overflow: hidden;
        z-index: 5;
        opacity: 1;
        animation: slideInOut 28s ease-in-out infinite;

    }
    
    .card-border-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        border: 3px solid transparent;
        border-image: linear-gradient(to right, #ffff00, #ff00ff, #00ffff);
        border-image-slice: 1;
        animation: borderDraw 1.5s ease-in-out forwards;
        animation-delay: 0.5s;
        
    }
    
    .card-content {
        padding: 30px;
        opacity: 0;
        animation: fadeIn 1s ease-in-out forwards;
        animation-delay: 1.5s;
    }
    
    .card-title {
        font-size: 20px;
        font-weight: 600;
        color: #ffff00;
        margin-bottom: 15px;
    }
    
    .card-text {
        font-size: 16px;
        line-height: 1.6;
        color: white;
    }
    
    /* Card Animations */
    @keyframes slideInOut {
        0% {
            right: -400px;
            opacity: 0;
        }
        10% {
            right: 80px;
            opacity: 1;
        }
        40% {
            right: 80px;
            opacity: 1;
        }
        50% {
            right: -400px;
            opacity: 0;
        }
        100% {
            right: -400px;
            opacity: 0;
        }
    }
    
    @keyframes borderDraw {
        0% {
            width: 0;
            height: 100%;
        }
        100% {
            width: 100%;
            height: 100%;
        }
    }
    
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    /* Second slide styling (IDSIL style) */
    .second-slide-content {
        background-color: rgba(0, 19, 34, 0.6); /* Semi-transparent dark blue */
        display: flex;
        align-items: center;
        color: white;
    }
    
    .badge-tag {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 25px;
        backdrop-filter: blur(5px);
    }
    
    .main-heading {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 25px;
        color: white;
    }
    
    .sub-heading {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
    }
    
    .highlight {
        font-weight: 600;
        color: #1db4e9; /* Light blue for highlighted text */
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        background-color: #1db4e9; /* Light blue similar to IDSIL */
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .cta-button:hover {
        background-color: #15a3d6;
        transform: translateY(-2px);
        color: white;
    }
    
    .cta-button svg {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .cta-button:hover svg {
        transform: translateX(4px);
    }
    
    /* Navigation Dots */     
    .slider-navigation {         
        position: absolute;         
        bottom: 30px;         
        left: 50%;         
        transform: translateX(-50%);         
        z-index: 10;         
        display: flex;         
        gap: 10px;     
    }          
    
    .nav-dot {         
        width: 12px;         
        height: 12px;         
        border-radius: 50%;         
        background-color: rgba(255, 255, 255, 0.3);         
        cursor: pointer;         
        transition: background-color 0.3s ease;     
    }          
    
    .nav-dot.active {         
        background-color: #1db4e9; /* Light blue for active dot */     
    }

    /* Mobile Responsiveness */
    @media (max-width: 991px) {
        .slide-heading,
        .main-heading {
            font-size: 48px;
        }
        
        .first-slide-content {
            padding: 40px;
        }
        
        .animated-card {
            width: 350px;
        }
        
        @keyframes slideInOut {
            0% {
                right: -350px;
                opacity: 0;
            }
            10% {
                right: 40px;
                opacity: 1;
            }
            40% {
                right: 40px;
                opacity: 1;
            }
            50% {
                right: -350px;
                opacity: 0;
            }
            100% {
                right: -350px;
                opacity: 0;
            }
        }
    }
    
    @media (max-width: 767px) {
        .slide-heading,
        .main-heading {
            font-size: 36px;
        }
        
        .sub-heading,
        .description-text {
            font-size: 16px;
        }
        
        .top-label,
        .badge-tag {
            font-size: 14px;
        }
        
        .first-slide-content {
            padding: 30px;
        }
        
        .animated-card {
            width: 280px;
            top: 40%;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 18px;
        }
        
        .card-text {
            font-size: 14px;
        }
        
        @keyframes slideInOut {
            0% {
                right: -280px;
                opacity: 0;
            }
            10% {
                right: 20px;
                opacity: 1;
            }
            40% {
                right: 20px;
                opacity: 1;
            }
            50% {
                right: -280px;
                opacity: 0;
            }
            100% {
                right: -280px;
                opacity: 0;
            }
        }
    }
