/* Simplified base styles for carousel items */
.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay for text readability */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Caption styles */
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 15%;
}

/* Icon styles */
.carousel-caption i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

/* Heading styles */
.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Paragraph styles */
.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button styles */
.carousel-caption .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* Simplified responsive adjustments */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        height: 80vh;
    }
    
    .carousel-caption h1 {
        font-size: 3rem;
    }
    
    .carousel-caption i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 60vh;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}
/* Simple Animation */
.animate-me {
    opacity: 0;
}

.animate__animated.animate__fadeInUp {
    --animate-duration: 0.8s;
    animation-fill-mode: both;
}

/* Simplified Slide Transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--primary-color);
}

.scroll-down i {
    animation: bounce 2s infinite;
    display: block;
    margin-top: 8px;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}