/* Add these variables if not already present vvvvvvvvvvvv nnnn*/
:root {
    --primary-blue: #1a365d;
    --dark-blue: #0f1e3a;
    --light-blue: #2d4a7c;
    --accent-orange: #ff7b00;
    --light-orange: #ff9e40;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
}
/* Modern Hero Carousel Section */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--dark-blue);
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 2.50s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.9) 0%,
        rgba(26, 54, 93, 0.7) 50%,
        rgba(26, 54, 93, 0.9) 100%
    );
    z-index: 1;
}


.slide-content {
    max-width: 1000px;
    padding: 60px 40px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: slideUp 1s ease-out 0.3s both;
    text-align: center;
    width: 100%;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 0.6s both;
    text-align: center;
    width: 100%;
    line-height: 1.7;
    max-width: 800px;
    font-weight: 300;
    opacity: 0.95;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--light-orange) 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    animation: slideUp 1s ease-out 0.9s both;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 123, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Modern Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0 20px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-orange);
    transition: left 0.4s ease;
}

.carousel-dot.active {
    background: var(--accent-orange);
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.6);
}

.carousel-dot.active::before {
    left: 0;
}

.carousel-dot:hover {
    background: var(--light-orange);
    transform: scale(1.3);
}

/* Enhanced Slide Backgrounds */
.slide-1 {
    background: 
        linear-gradient(
            135deg,
            rgba(26, 54, 93, 0.85) 0%,
            rgba(26, 54, 93, 0.75) 100%
        ), 
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.slide-2 {
    background: 
        linear-gradient(
            135deg,
            rgba(26, 54, 93, 0.85) 0%,
            rgba(26, 54, 93, 0.75) 100%
        ), 
        url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.slide-3 {
    background: 
        linear-gradient(
            135deg,
            rgba(26, 54, 93, 0.85) 0%,
            rgba(26, 54, 93, 0.75) 100%
        ), 
        url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.slide-4 {
    background: 
        linear-gradient(
            135deg,
            rgba(26, 54, 93, 0.85) 0%,
            rgba(26, 54, 93, 0.75) 100%
        ), 
        url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Modern Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Floating Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 80vh;
    }
    
    .slide-content {
        padding: 40px 20px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .carousel-nav {
        bottom: 40px;
    }
    
    .carousel-dots {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 70vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        padding: 8px 16px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

