  
        /* Hero Section - Optimized Height */
        .hero-section {
            width: 100%;
            height: 75vh; /* Further reduced from 85vh */
            max-height: 480px; /* Reduced max height */
            min-height: 400px;
            overflow: hidden;
            position: relative;
            background-color: #000;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .hero-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Slider */
        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        /* Image */
        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Lighter overlay */
        .hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            z-index: 2;
        }

        /* Content - Better vertical positioning */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 550px;
            padding: 0 30px;
            margin-left: 5%;
            color: white;
            animation: fadeInUp 0.6s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .hero-title {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem); /* Slightly smaller */
            font-weight: 500;
            line-height: 1.2;
            margin: 0 0 8px 0; /* Reduced margin */
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: clamp(0.85rem, 1.2vw, 0.95rem); /* Slightly smaller */
            line-height: 1.4;
            margin: 0 0 15px 0; /* Reduced margin */
            color: rgba(255,255,255,0.95);
            max-width: 450px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .hero-btn {
            display: inline-block;
            padding: 8px 22px; /* Smaller padding */
            background: #0066cc;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem; /* Smaller font */
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid #0066cc;
            box-shadow: 0 4px 10px rgba(0,102,204,0.3);
            width: fit-content; /* Button only as wide as content */
        }

        .hero-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,102,204,0.4);
        }

        /* Navigation Arrows */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            padding: 0;
        }

        .hero-arrow:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-50%) scale(1.05);
        }

        .hero-arrow-left {
            left: 15px;
        }

        .hero-arrow-right {
            right: 15px;
        }

        .hero-arrow svg {
            width: 18px;
            height: 18px;
        }

        /* Slide Indicators */
        .hero-indicators {
            position: absolute;
            bottom: 15px; /* Closer to bottom */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hero-indicator {
            width: 30px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-indicator.active {
            background: white;
            width: 45px;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Desktop Optimizations */
        @media (min-width: 769px) {
            .hero-content {
                padding-top: 0;
                padding-bottom: 0;
            }
            
            .hero-title {
                margin-bottom: 6px;
            }
            
            .hero-description {
                margin-bottom: 12px;
            }
        }

        /* Mobile Styles - Optimized */
        @media (max-width: 768px) {
            .hero-section {
                height: 65vh; /* Reduced further */
                min-height: 450px;
                max-height: 550px;
            }

            .hero-image::after {
                background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
            }

            .hero-content {
                max-width: 90%;
                padding: 0 15px;
                margin-left: 0;
                text-align: center;
                align-items: center;
                left: 50%;
                transform: translateX(-50%);
                position: absolute;
                width: 100%;
                height: auto;
                bottom: 18%; /* Adjusted position */
                top: auto;
                justify-content: flex-end;
            }

            .hero-title {
                font-size: 1.5rem;
                margin-bottom: 5px;
            }

            .hero-description {
                font-size: 0.8rem;
                margin: 0 auto 12px auto;
                max-width: 280px;
            }

            .hero-btn {
                padding: 7px 18px;
                font-size: 0.85rem;
                margin: 0 auto; /* Center the button */
            }

            .hero-arrow {
                width: 30px;
                height: 30px;
                background: rgba(0,0,0,0.5);
            }

            .hero-arrow svg {
                width: 14px;
                height: 14px;
            }

            .hero-arrow-left {
                left: 8px;
            }

            .hero-arrow-right {
                right: 8px;
            }

            .hero-indicators {
                bottom: 12px;
                gap: 5px;
            }

            .hero-indicator {
                width: 22px;
                height: 3px;
            }

            .hero-indicator.active {
                width: 32px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .hero-section {
                height: 60vh;
                min-height: 400px;
            }

            .hero-title {
                font-size: 1.3rem;
            }

            .hero-description {
                font-size: 0.75rem;
                margin-bottom: 10px;
                max-width: 230px;
            }

            .hero-btn {
                padding: 6px 16px;
                font-size: 0.8rem;
            }

            .hero-content {
                bottom: 15%;
            }
        }

        /* Landscape Mode */
        @media (orientation: landscape) and (max-height: 600px) {
            .hero-section {
                height: 100vh;
                min-height: 350px;
            }

            .hero-content {
                bottom: 12%;
            }

            .hero-title {
                font-size: 1.3rem;
            }

            .hero-description {
                margin-bottom: 8px;
                font-size: 0.75rem;
                max-width: 350px;
            }

            .hero-btn {
                padding: 5px 14px;
            }
        }

        /* Large Desktop */
        @media (min-width: 1400px) {
            .hero-section {
                height: 70vh;
                max-height: 600px;
            }
            
            .hero-content {
                max-width: 600px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
                max-width: 500px;
            }
        }
        /* Desktop Improvements - Add this to your existing CSS */
@media (min-width: 769px) {
    .hero-content {
        position: relative;
        margin-left: 8%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .hero-title {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 15px 0;
        color: white;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin: 0 0 25px 0;
        color: rgba(255,255,255,0.95);
        max-width: 520px;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        font-weight: 400;
    }
    
    .hero-btn {
        display: inline-block;
        padding: 12px 32px;
        background: #0066cc;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        border: 2px solid #0066cc;
        box-shadow: 0 8px 20px rgba(0,102,204,0.4);
        width: fit-content;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-btn:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0,102,204,0.6);
        border-color: white;
    }
    
    /* Optional: Add a subtle overlay pattern */
    .hero-image::after {
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    }
}

/* For larger desktops */
@media (min-width: 1200px) {
    .hero-content {
        margin-left: 10%;
        max-width: 650px;
    }
    
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 550px;
    }
    
    .hero-btn {
        padding: 14px 38px;
        font-size: 1.1rem;
    }
}

/* For ultra-wide screens */
@media (min-width: 1600px) {
    .hero-content {
        margin-left: 12%;
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
}
/* Desktop - Even Smaller Hero Title */
@media (min-width: 769px) {
    .hero-title {
        font-size: 2rem; /* Much smaller */
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 1600px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

