
/* ==========================================
   COMMON SECTION STYLING
========================================== */


/* ==========================================
   SECTION SUBTITLE
========================================== */

.section-subtitle-light {
    position: relative;
    display: inline-block;

    color: #007dfe;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Lines Before & After */

.section-subtitle-light::before,
.section-subtitle-light::after {
    content: "";

    display: inline-block;

    width: 35px;
    height: 1px;

    margin: 0 12px 4px;

    background: #007dfe;
}


/* ==========================================
   SECTION TITLE
========================================== */

.section-title-light {
    color: #071a2d !important;

    font-family: codec-pro;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.1;

    font-weight: 600;

    margin-bottom: 0;

    text-transform: uppercase;
}


/* Highlight */

.section-title-light span {
    color: #007dfe;
}


/* ==========================================
   SECTION DESCRIPTION
========================================== */

.section-description-light {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .section-title-light {
        font-size: 42px;
    }

    .section-description-light {
        font-size: 14px;
        line-height: 1.7;
    }

    .section-subtitle-light::before,
    .section-subtitle-light::after {
        width: 20px;
        margin-left: 7px;
        margin-right: 7px;
    }

}


@media (max-width: 575px) {

    .section-title-light {
        font-size: 36px;
    }

    .section-subtitle-light {
        font-size: 11px;
        letter-spacing: 2px;
    }

}


/* ==========================================
   SECTION SUBTITLE
========================================== */

.section-subtitle-dark {
    position: relative;
    display: inline-block;

    color: #007dfe;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Lines Before & After */

.section-subtitle-dark::before,
.section-subtitle-dark::after {
    content: "";

    display: inline-block;

    width: 35px;
    height: 1px;

    margin: 0 12px 4px;

    background: #007dfe;
}


/* ==========================================
   SECTION TITLE
========================================== */

.section-title-dark {
    color: #fff;

    font-family: codec-pro;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.1;

    font-weight: 600;

    margin-bottom: 0;

    text-transform: uppercase;
}


/* Highdark */

.section-title-dark span {
    color: #007dfe;
}


/* ==========================================
   SECTION DESCRIPTION
========================================== */

.section-description-dark {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    color: #9eafc2;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .section-title-dark {
        font-size: 42px;
    }

    .section-description-dark {
        font-size: 14px;
        line-height: 1.7;
    }

    .section-subtitle-dark::before,
    .section-subtitle-dark::after {
        width: 20px;
        margin-left: 7px;
        margin-right: 7px;
    }

}


@media (max-width: 575px) {

    .section-title-dark {
        font-size: 36px;
    }

    .section-subtitle-dark {
        font-size: 11px;
        letter-spacing: 2px;
    }

}




/* =========================================================
   BIG POOL FOUNTAIN
   WHY CHOOSE US SECTION
========================================================= */

.why-bpf-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 194, 255, 0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(98, 0, 255, 0.08), transparent 30%),
        #020b18;
}


/* Water Glow Background */

.why-bpf-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: 20%;
    border-radius: 50%;
    background: rgba(0, 194, 255, 0.08);
    filter: blur(100px);
    animation: bpfGlow 6s ease-in-out infinite alternate;
}

.why-bpf-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: 0;
    border-radius: 50%;
    background: rgba(102, 0, 255, 0.08);
    filter: blur(100px);
    animation: bpfGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes bpfGlow {
    from {
        transform: translateY(-30px);
        opacity: .5;
    }

    to {
        transform: translateY(30px);
        opacity: 1;
    }
}


/* Subtitle */

.why-bpf-subtitle {
    position: relative;
    display: inline-block;
    color: #007dfe;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.why-bpf-subtitle::before,
.why-bpf-subtitle::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1px;
    margin: 0 12px 4px;
    background: #007dfe;
}


/* Main Heading */

.why-bpf-title {
    color: #ffffff;
    font-family: codec-pro;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 500;
}

.why-bpf-title span {
    color: #007dfe;
    position: relative;
}


/* Description */

.why-bpf-description {
    color: #9eafc2;
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* Feature Card */

.bpf-feature-card {
    position: relative;
    min-height: 300px;
    padding: 38px 32px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;

    animation: bpfCardReveal .8s ease both;
}


/* Card Reveal */

@keyframes bpfCardReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hover */

.bpf-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 200, 255, .55);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45),
        0 0 30px rgba(0, 200, 255, .08);
}


/* Animated Border */

.bpf-feature-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(0, 200, 255, .12);

    filter: blur(25px);

    transition: .5s ease;
}

.bpf-feature-card:hover::before {
    width: 180px;
    height: 180px;
}


/* Number */

.bpf-number {
    position: absolute;
    right: 25px;
    top: 20px;

    font-size: 50px;
    font-weight: 700;

    color: rgba(255,255,255,.035);

    line-height: 1;
    transition: .5s ease;
}

.bpf-feature-card:hover .bpf-number {
    color: rgba(0, 200, 255, .12);
}


/* Icon */

.bpf-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 50%;

    color: #007dfe;

    font-size: 26px;

    border: 1px solid rgba(0, 200, 255, .4);

    background: rgba(0, 200, 255, .06);

    box-shadow:
        0 0 25px rgba(0, 200, 255, .08);

    transition: .5s ease;
}

.bpf-feature-card:hover .bpf-icon {
    color: #ffffff;

    background: #007dfe;

    transform: rotateY(180deg);

    box-shadow:
        0 0 30px rgba(0, 200, 255, .45);
}


/* Heading */

.bpf-content h3 {
    color: #ffffff;

    font-size: 22px;
    font-weight: 600;

    margin-bottom: 14px;

    transition: .4s ease;
}

.bpf-feature-card:hover .bpf-content h3 {
    color: #007dfe;
}


/* Text */

.bpf-content p {
    color: #91a4b8;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 0;

    max-width: 330px;
}


/* Arrow */

.bpf-arrow {
    position: absolute;

    right: 28px;
    bottom: 25px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.12);

    transition: .4s ease;
}

.bpf-feature-card:hover .bpf-arrow {
    color: #020b18;
    background: #007dfe;
    border-color: #007dfe;

    transform: translate(4px, -4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .bpf-feature-card {
        min-height: 280px;
    }

}


@media (max-width: 767px) {

    .why-bpf-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .why-bpf-title {
        font-size: 42px;
    }

    .why-bpf-subtitle::before,
    .why-bpf-subtitle::after {
        width: 20px;
        margin: 0 7px 4px;
    }

    .bpf-feature-card {
        min-height: 260px;
        padding: 30px 25px;
    }

}


@media (max-width: 575px) {

    .why-bpf-title {
        font-size: 36px;
    }

    .why-bpf-description {
        font-size: 14px;
    }

    .bpf-feature-card {
        border-radius: 18px;
    }

}


/* ─── Banner Wrapper ─── */
        .banner-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            /* full viewport height */
            background: url('../images/slider/slider-01.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            overflow: hidden;
            font-family: 'Inter Tight';
        }

        /* ─── Overlay (left side) ─── */
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(10, 10, 30, 0.92) 0%,
                    rgba(10, 10, 30, 0.70) 50%,
                    rgba(10, 10, 30, 0.20) 85%,
                    transparent 100%);
            z-index: 1;
        }

        /* ─── Content Container ─── */
        .banner-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 2rem 0;
        }

        /* ─── Left-side text block ─── */
        .banner-text {
            max-width: 820px;
            padding: 2rem 1.5rem;
            border-radius: 0 20px 20px 0;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-left: 5px solid #0092ff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            animation: slideInLeft 1s ease-out forwards;
            opacity: 0;
            transform: translateX(-60px);
        }

        /* ─── Animations ─── */
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-60px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulseGlow {
            0%,
            100% {
                text-shadow: 0 0 8px rgba(243, 156, 18, 0.3);
            }
            50% {
                text-shadow: 0 0 25px rgba(243, 156, 18, 0.7);
            }
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes shine {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        /* ─── Individual elements with staggered animation ─── */
        .banner-text .badge-animated {
            display: inline-block;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            background: rgba(0, 146, 255, 0.2);
            color: #0092ff;
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            border: 1px solid rgba(0, 146, 255, 0.2);
            backdrop-filter: blur(4px);
            letter-spacing: 0.5px;
            font-family: 'Inter Tight';
        }

        .banner-text h1 {
            animation: fadeInUp 0.8s ease-out 0.4s both;
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            font-weight: 800;
            line-height: 1.15;
            color: #fff;
            font-family: codec-pro;
            text-transform: uppercase;
        }

        .banner-text h1 .highlight {
            color: #007dfe;
            /* animation: pulseGlow 2.5s ease-in-out infinite; */
            display: inline-block;
        }

        .banner-text .lead {
            animation: fadeInUp 0.8s ease-out 0.6s both;
            color: rgba(255, 255, 255, 0.85);
            font-size: clamp(1rem, 1.4vw, 1.25rem);
            line-height: 1.7;
            /* max-width: 500px; */
        }

        .banner-text .btn-group-custom {
            animation: fadeInUp 0.8s ease-out 0.8s both;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .banner-text .btn-primary-custom {
            /* background: linear-gradient(135deg, #f39c12, #e67e22); */
            background-color: #007dfe;
            border: none;
            padding: 0.75rem 2.2rem;
            font-weight: 600;
            border-radius: 8px;
            color: #fff;
            transition: all 0.3s ease;
            /* box-shadow: 0 8px 25px rgba(243, 156, 18, 0.35); */
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .banner-text .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.02);
            /* box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
            background: linear-gradient(135deg, #f1c40f, #f39c12); */
            color: #fff;
            background-color: #0092ff;
        }

        .banner-text .btn-outline-custom {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 0.75rem 2.2rem;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(4px);
        }

        .banner-text .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            transform: translateY(-3px);
            color: #fff;
        }

        /* ─── Floating stats / decoration ─── */
        .floating-stats {
            animation: float 3.5s ease-in-out infinite;
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.8rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            flex-wrap: wrap;
        }

        .floating-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .floating-stats .stat-item i {
            color: #f39c12;
            font-size: 1.3rem;
        }

        .floating-stats .stat-item strong {
            color: #fff;
            font-size: 1.1rem;
        }

        /* ─── Responsive tweaks ─── */
        @media (max-width: 768px) {
            .banner-text {
                max-width: 100%;
                border-radius: 16px;
                border-left: 4px solid #f39c12;
                padding: 1.8rem 1.2rem;
                margin: 0 0.5rem;
                background: rgba(10, 10, 30, 0.75);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
            }

            .banner-text .btn-group-custom {
                flex-direction: column;
                width: 100%;
            }

            .banner-text .btn-group-custom .btn {
                width: 100%;
                justify-content: center;
            }

            .floating-stats {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .banner-wrapper {
                min-height: 100vh;
                background-position: 70% center;
            }

            .banner-overlay {
                background: linear-gradient(135deg,
                        rgba(10, 10, 30, 0.95) 0%,
                        rgba(10, 10, 30, 0.80) 60%,
                        rgba(10, 10, 30, 0.40) 100%);
            }
        }

        @media (max-width: 480px) {
            .banner-text h1 {
                font-size: 2rem;
            }
            .banner-text .lead {
                font-size: 0.95rem;
            }
        }

        /* ─── scroll indicator (optional) ─── */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.8rem;
            animation: float 2.5s ease-in-out infinite;
            cursor: default;
        }

        @media (max-width: 768px) {
            .scroll-indicator {
                display: none;
            }
        }