/* Hero Section - Full Width Carousel */
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 40, 69, 0.6) 0%, rgba(10, 40, 69, 0.8) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
    margin-top: 2rem; /* Added margin-top to push content up */
}

.hero-tag {
    font-size: 16px;
    word-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--orange);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--pure-white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-title strong {
    font-weight: 700;
    color: var(--orange);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 200;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    margin-bottom: 60px; /* Added margin to create gap with carousel dots */
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-primary {
    background: var(--gradient-2);
    color: var(--pure-white);
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(175, 77, 88, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.hero-btn-outline:hover {
    background: var(--pure-white);
    color: var(--primary);
}

/* Carousel Navigation */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 40px;
    border-radius: 20px;
    background: var(--orange);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
HERO SECTION
===================================================== */
/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {

.hero {
padding: 60px 0;
/* margin-top: 70px;  */
}
.hero h1 {
    font-size: 32px;
}

.hero p {
    font-size: 16px;
}

.hero-buttons {
    flex-direction: column;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.hero-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
}

.carousel-dots {
    bottom: 20px;
}
}
/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
.hero h1 {
font-size: 28px;
}
.hero-title {
    font-size: 36px;
}
}