body {
    font-family: "Raleway", sans-serif;
}

.h1-fnt {
    font-size: 3.25rem;
    font-weight: 400;
}

.h2-fnt {
    font-size: 2.5rem;
    font-weight: 400;
}

.fnt-color {
    color: #967a50 !important;

}

.underline {
    width: 100px;
    /* Half-line effect — adjust as needed */
    height: 3px;
    /* Line thickness */
    background-color: #0f2453;
    /* Gold-ish accent color */
    margin-top: 10%;
    /* Closer to heading */
    margin-bottom: 10px;
    /* Space before paragraph */
    border-radius: 2px;
    /* Smooth ends */
    margin-left: 5%;
}

/* Caption text styles */

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 25px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Move arrows closer to edges */
.carousel-control-prev {
    left: 45px;
}

.carousel-control-next {
    right: 45px;
}

/* On hover — brighter background */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    /* background-color: rgba(0, 0, 0, 0.7); */
    transform: translateY(-50%) scale(1.1);
}

/* Custom arrow image style */
.carousel-arrow {
    width: 24px;
    height: 24px;
    /* opacity: 0.8; */
    transition: opacity 0.3s ease;
}

.carousel-arrow:hover {
    /* opacity: 1; */
}



.carousel-indicators [data-bs-target] {
    background-color: white;
}

/* Custom circular carousel indicators */
.carousel-indicators {
    bottom: 30px;
    /* lift it slightly above bottom */
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #967a50;
    /* active circle color */
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(215, 245, 238, 0.6);
}


/* ==== Font Utilities ==== */
body {
    font-family: "Raleway", sans-serif;
}

.h1-fnt {
    font-size: 3.25rem;
    font-weight: 400;
}

.h2-fnt {
    font-size: 2.5rem;
    font-weight: 400;
}

.fnt-color {
    color: #967a50 !important;
}

.underline {
    width: 100px;
    height: 3px;
    background-color: #0f2453;
    margin-top: 10%;
    margin-bottom: 10px;
    border-radius: 2px;
    margin-left: 5%;
}

/* ==== Responsive Queries ==== */

/* 🟢 Tablets and small laptops */
@media (max-width: 1024px) {
    .carousel-caption h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .carousel-caption {
        bottom: 35%;
    }

    .carousel-caption h1 {
        font-size: 3rem;
    }

    .carousel-caption p {
        font-size: 1.4rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow {
        width: 20px;
        height: 20px;
    }
}

/* 🟡 Mobile landscape / large phones */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 30%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* 🔵 Small mobile phones */
@media (max-width: 576px) {

    .carousel,
    .carousel-item,
    .carousel-item img {
        height: 80vh;
    }

    .carousel-caption {
        bottom: 25%;
        text-align: center;
        padding: 0 10px;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow {
        width: 16px;
        height: 16px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}