/* ========== BASE STYLES ========== */
/* :root {
    --primary: #6a0dad;
    --primary-dark: #5a0b9d;
    --primary-light: #7b1fa2;
    --secondary: #FFD700;
    --secondary-dark: #FFC000;
    --white: #ffffff;
    --black: #222222;
    --gray: #f5f5f5;
    --dark-gray: #e0e0e0;
    --text-color: #444444;
    --light-text: #777777;
} */

/* ========== BASE STYLES ========== */
/* :root {
    --primary: #001C40;
    --primary-dark: #183153;
    --primary-light: #6741D9;
    --secondary: #FFD43B;
    --secondary-dark: #FCBC16;
    --white: #ffffff;
    --black: #222222;
    --dusk: #183153;
    --gray: #F0F1F3;
    --dark-gray: #e0e0e0;
    --text-color: #444444;
    --light-text: #777777;
} */

/* :root {
    --primary: #001C40;
    --primary-dark: #183153;
    --primary-light: #6741D9;
    --secondary: #FFD43B;
    --secondary-dark: #FCBC16;
    --white: #ffffff;
    --black: #222222;
    --dusk: #183153;
    --sky-blue: #74C0FC;
    --sky-blue-light: #b4deff;
    --sky-blue-dark: #034272;
    --gray: #F0F1F3;
    --dark-gray: #e0e0e0;
    --text-color: #444444;
    --light-text: #777777;
    --green: #0E8238;
} */

/* :root {
    --primary: #2f04b1;
    --primary-dark: #183153;
    --primary-light: #3304c0;
    --secondary: #FFD43B;
    --secondary-dark: #FCBC16;
    --white: #ffffff;
    --black: #222222;
    --dusk: #183153;
    --sky-blue: #74C0FC;
    --sky-blue-light: #b4deff;
    --sky-blue-dark: #51ABE5;
    --gray: #F0F1F3;
    --dark-gray: #e0e0e0;
    --text-color: #444444;
    --light-text: #777777;
    --green: #0E8238;
} */


:root {
    --primary: #24028a;
    --primary-dark: #20066b;
    --primary-light: #3304c0;
    /* --secondary: #ee5a04;
    --secondary-dark: #b94400; */
    --secondary: #FFD43B;
    --secondary-dark: #FCBC16;
    --white: #ffffff;
    --black: #222222;
    --dusk: #183153;
    --sky-blue: #74C0FC;
    --sky-blue-light: #b4deff;
    --sky-blue-dark: #035d99;
    --gray: #F0F1F3;
    --dark-gray: #e0e0e0;
    --text-color: #444444;
    --light-text: #777777;
    --green: #0E8238;
    --dark-red: #680C0D;
    --purply: #460155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========== HERO SLIDER SECTION (NEW) ========== */
.hero-slider {
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    position: relative;
    padding-top: 90px;
    /* 90px the original Account for fixed header height */
    box-sizing: border-box;
    /* Include padding in height calculation */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    /* Use flexbox for centering content */
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    /* Horizontally center content */
    text-align: center;
    /* Center text within slide-content */
    color: var(--white);
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    /* Dark overlay for text readability */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    /*max-width: 900px;*/

    padding: 10%;
    /* Ensure slide-content itself is not restricting centering */
    width: 100%;
    /* Allow content to take full width of its flex container */
    display: flex;
    /* Make slide-content a flex container itself */
    flex-direction: column;
    /* Stack children vertically */
    align-items: center;
    /* Center children horizontally */
    justify-content: center;
    /* Center children vertically */
}

.slide-content h1 {
    font-size: 3.8rem;
    /* Adjust as needed */
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    /* Ensure title is white */
}

.slide-content h1 .highlight {
    color: var(--secondary);
    /* Highlight color from your theme */
    position: relative;
    display: inline-block;
}

.slide-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgb(70, 1, 85); /* Semi-transparent secondary color */
    z-index: -1;
}

.slide-content p {
    font-size: 1.3rem;
    /* Adjust as needed */
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for subtitle */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center buttons */
    margin-top: 20px;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    --swiper-navigation-size: 30px;
    /* Adjust arrow size */
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    opacity: 1 !important;
    width: 25px !important;
    /* Elongate active dot */
    border-radius: 10px !important;
}


/* Remove old hero section styles if they conflict */
/* .hero { display: none; } /* Or comment out if you want to keep for reference */


/* Remove old hero section styles if they conflict */
/* .hero { display: none; } /* Or comment out if you want to keep for reference */

