:root {
    --primary-color: black;
    --secondary-color: #fff7f1;
    --tertiary-color: #ffffff;
}

/* ========================================== */
body {
    background-color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

[data-scroll-container] {
    min-height: 100vh;
}

/* ========================================== */
.hero {
    height: 100vh;
    min-height: 600px;
}

.hero img {
    object-fit: cover;
    height: 100vh;
    min-height: 600px;
}

/* =========================================== */
.title {
    color: #8a014b;
    font-weight: 600;
    margin-bottom: 5px;
    font-style: italic;
}

/* =========================================== */
.carousel-overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: 'Times New Roman', Times, serif;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
}

.hero .btn-primary {
    background-color: var(--primary-color, #000);
    border: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
    z-index: 2;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================== */
.head-title {
    margin-bottom: 20px;
}

.head-title h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.head-title p {
    color: #8a014b;
    font-weight: 600;
    margin-bottom: 5px;
    font-style: italic;
}

.text-justify {
    text-align: justify;
}

/* ===================================== */
.counter-box {
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    color: var(--tertiary-color);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    color: var(--tertiary-color);
}

/* ============button======================= */


.btn {
    /* width: 160px; */
    height: 50px;
    padding: 12px 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, var(--primary-color), var(--primary-color));
    z-index: -1;
    transition: width 0.4s ease-in-out;
}

.btn:hover {
    color: #fff;
}

.btn:hover::after {
    width: 100%;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.3);
}

.btn:active {
    transform: scale(0.97);
}

/* ================================================ */
.custom-btn {
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    color: var(--tertiary-color);
    text-decoration: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-btn:hover {
    transform: translateY(-5px);
}

/* ================================================= */
.mission-vission .card {
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
}

.mission-vission .card:hover {
    transform: translateY(-5px);
}

/* ================================= */