/* Hero Section Styles */
.hero-cover {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slideshow container */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay to make text/buttons stand out */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

/* Centered content on top of the image */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    z-index: 3;
    color: white;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-button {
    padding: 1rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #312f2f;
    color: #fff;
    border: 2px solid #d9a442;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.hero-button:hover {
    background-color: #e3b35a;
    color: #000;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Slogan Styling */
.hero-slogan {
    width: 100%;
}

.slogan-text {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    white-space: nowrap;
    width: 100%;
    font-size: 90px;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.slogan-static {
    font-weight: 900;
    font-size: 90px;
}

/* Main content section */
.main-content-section {
    max-width: 1200px; /* Match container1 width */
    margin: 0 auto;
    padding: 1.5rem;
    text-align: left;
}

.welcome-section,
.overview-section {
    margin-bottom: 3.5rem; /* Increased from 3rem */
    padding: 0;
    text-align: start; /* Align text to start (left) to match the cards */
}

.welcome-section h1,
.overview-section h2 {
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 0; /* Remove padding to align with cards */
    text-align: left;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 2rem; /* Match the core values heading size */
}

.welcome-section h1::after,
.overview-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--brand-gold);
}

/* Welcome and overview section paragraph styles */
.welcome-section p,
.overview-section p {
    padding-left: 0; /* Remove padding to align with cards */
    font-size: 1.1rem; /* Match the core values description size */
    line-height: 1.6;
    color: #666;
}

/* Add this to your existing styles */

/* Indicator dots container */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

/* Individual indicator */
.indicator {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    opacity: 0.6;
    border: 2px solid gold;
}

.indicator.active {
    background-color: gold;
    opacity: 1;
}

/* Slogan text styling */
.hero-content .hero-slogan .slogan-text {
    font-size: 70px !important;
    font-family: 'Poppins', sans-serif;
}

.hero-content .hero-slogan .slogan-text .slogan-static,
.hero-content .hero-slogan .slogan-text .slogan-dynamic {
    font-size: 70px !important;
    font-weight: 900;
}

.hero-content .hero-slogan .slogan-text .slogan-dynamic {
    color:#d9a442;
}

/* Responsive font sizes for slogan */
@media screen and (max-width: 1024px) {
    .hero-content .hero-slogan .slogan-text,
    .hero-content .hero-slogan .slogan-text .slogan-static,
    .hero-content .hero-slogan .slogan-text .slogan-dynamic {
        font-size: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    .hero-content .hero-slogan .slogan-text,
    .hero-content .hero-slogan .slogan-text .slogan-static,
    .hero-content .hero-slogan .slogan-text .slogan-dynamic {
        font-size: 45px !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-content .hero-slogan .slogan-text,
    .hero-content .hero-slogan .slogan-text .slogan-static,
    .hero-content .hero-slogan .slogan-text .slogan-dynamic {
        font-size: 40px !important;
    }
}
