/* Page Stylesheet for homepageslider.blade.php */

.carousel-indicators.slider {
        position: absolute !important;
        display: flex;
        justify-content: center !important;
        z-index: 10 !important;
    }

    .carousel-indicators.slider [data-bs-target] {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: white;
        border: 2px solid #4f5660;
        position: relative;
        margin: 0 2px;
        padding: 0;
        opacity: 1;
        box-sizing: border-box;
        transition: all 0.3s ease;
        cursor: pointer;
    }


    /* Active indicator styling */
    .carousel-indicators.slider .active {
        background-color: white;
        /* Keep white background */
    }

    /* Inner dark dot for active */
    .carousel-indicators.slider .active::after {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #4f5660;
        /* Inner dot color */
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    /* Hover effect: show inner dot */
    .carousel-indicators.slider [data-bs-target]:not(.active):hover::after {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #4f5660;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    /* Hover outline and cursor */
    .carousel-indicators.slider [data-bs-target]:not(.active):hover {
        background-color: transparent;
        cursor: pointer;
    }

    /* Optional: dark carousel adjustments */
    .carousel-dark .carousel-indicators.slider [data-bs-target]:not(.active) {
        background-color: white;
    }

    .carousel-dark .carousel-indicators.slider [data-bs-target].active {
        background-color: transparent;
    }

    /* Make carousel item relative */
    .carousel-item {
        position: relative;
    }

    /* Image size */
    .carousel-img {
        height: 600px;
        width: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .carousel-img.carousel-img-other {
        height: 300px !important;
    }

    /* Mobile image */
    @media (max-width: 768px) {
        .carousel-img {
            height: 260px;
        }
        .carousel-img.carousel-img-other {
            height: 200px !important;
        }
    }

    /*  Overlay */
    .overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        pointer-events: none;
    }

    /* Gradient Layer */
    .gradient-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        color: #fff;
        max-width: 700px;
        padding: 0 15px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        pointer-events: auto;
    }

    /* Title */
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        animation: fadeUp 1s ease forwards;
    }

    .hero-subtitle {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.6;
        opacity: 0.95;
    }

    /* Mobile Font */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 26px;
            /* padding: 0 10px; */
        }

        .hero-subtitle {
            font-size: 14px;
        }
    }

    /* Smooth Animation */
    .hero-title {
        animation: fadeUp 1s ease;
    }

    .hero-content {
        animation: fadeUp 1s ease;
    }


    @keyframes fadeUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Left aligned overlay style */
    .overlay-left {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 2;
        padding-left: 8%;
        padding-bottom: 70px;
        pointer-events: none;
    }

    /* Gradient overlay that darkens the left side for text readability */
    .dark-overlay-left {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-content-left {
        color: #fff;
        max-width: 650px;
        text-align: left;
        padding: 0 15px;
        animation: fadeUp 1s ease;
        pointer-events: auto;
    }

    /* Small label style */
    .hero-label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ffffff;
        opacity: 0.9;
        font-family: 'Karla', sans-serif;
    }

    /* Home Page Hero Title */
    .hero-title-home {
        font-size: 4rem;
        font-family: 'Fraunces', serif;
        font-weight: 300;
        line-height: 1.25;
        margin-bottom: 24px;
        color: #ffffff;
    }

    /* Home Page Hero Subtitle/Description */
    .hero-desc-home {
        font-size: 18px;
        font-family: 'Karla', sans-serif;
        font-weight: 300;
        line-height: 1.7;
        margin-bottom: 40px;
        opacity: 0.95;
    }

    /* Button styles */
    .hero-btn-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .hero-btn-primary {
        background-color: #ffffff;
        color: #000000;
        padding: 14px 35px;
        font-size: 14px;
        font-family: 'Karla', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        border-radius: 0px;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hero-btn-primary:hover {
        background-color: #f0f0f0;
        color: #000000;
    }

    .hero-btn-secondary {
        color: #ffffff;
        font-size: 14px;
        font-family: 'Karla', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: opacity 0.3s ease;
    }

    .hero-btn-secondary:hover {
        color: #ffffff;
        opacity: 0.8;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .hero-title-home {
            font-size: 3rem;
        }
        .hero-desc-home {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .overlay-left {
            padding-left: 5%;
            padding-right: 5%;
            align-items: flex-end;
            padding-bottom: 40px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
        }
        .hero-title-home {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .hero-desc-home {
            font-size: 13px;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .hero-label {
            font-size: 11px;
            margin-bottom: 10px;
        }
        .hero-btn-container {
            gap: 20px;
        }
        .hero-btn-primary {
            padding: 10px 22px;
            font-size: 12px;
        }
        .hero-btn-secondary {
            font-size: 12px;
        }
    }

