/* =========================================================
   A1 Enterprises - Custom Stylesheet
   Water Tank Cleaning & Drainage Cleaning
   Theme: #2d2b97 (Blue) & #04a352 (Green)
========================================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --brand-blue: #2d2b97;
    --brand-blue-dark: #21207a;
    --brand-green: #04a352;
    --brand-green-dark: #038544;
    --dark: #14142b;
    --body: #5a5a72;
    --heading: #1a1a3d;
    --light-bg: #f4f6fb;
    --white: #ffffff;
    --border: #e6e8f0;
    --shadow-sm: 0 6px 18px rgba(45, 43, 151, .08);
    --shadow-md: 0 14px 40px rgba(45, 43, 151, .12);
    --shadow-lg: 0 24px 60px rgba(45, 43, 151, .18);
    --radius: 16px;
    --radius-sm: 10px;
    --trans: all .35s cubic-bezier(.25, .8, .25, 1);
    --ff-body: 'Plus Jakarta Sans', sans-serif;
    --ff-head: 'Sora', sans-serif;
}

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

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--ff-body);
    color: var(--body);
    font-size: 16px;
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    color: var(--heading);
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration: none; transition: var(--trans); }
img { max-width: 100%; height: auto; }
ul { margin: 0; }

section { position: relative; }

.section-padding { padding: 100px 0; }

/* ---------- SECTION HEADINGS ---------- */
.section-head { margin-bottom: 50px; }
.section-head.text-center { max-width: 640px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
    display: inline-block;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    background: rgba(4, 163, 82, .1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.section-eyebrow.light { color: #7dffbd; background: rgba(255, 255, 255, .12); }

.section-title {
    font-size: 2.4rem;
    color: var(--heading);
    margin-bottom: 14px;
    font-weight: 800;
}
.section-sub { font-size: 1.05rem; color: var(--body); margin-bottom: 0; }
.text-white-75 { color: rgba(255, 255, 255, .8) !important; }

/* ---------- BUTTONS ---------- */
.btn {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--trans);
    letter-spacing: .3px;
}
.btn-brand-green {
    background: var(--brand-green);
    color: var(--white);
    border-color: var(--brand-green);
}
.btn-brand-green:hover {
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(4, 163, 82, .35);
}
.btn-brand-blue {
    background: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
}
.btn-brand-blue:hover {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(45, 43, 151, .35);
}
.btn-outline-light:hover { transform: translateY(-3px); }

/* ---------- TOP BAR ---------- */
.topbar {
    background: var(--brand-blue);
    color: rgba(255, 255, 255, .85);
    font-size: .88rem;
    padding: 10px 0;
}
.topbar-info { display: flex; flex-wrap: wrap; gap: 26px; }
.topbar-info li i { color: var(--brand-green); margin-right: 6px; }
.topbar-info a { color: rgba(255, 255, 255, .85); }
.topbar-info a:hover { color: var(--white); }
.topbar-social a {
    color: rgba(255, 255, 255, .85);
    margin-left: 10px;
    font-size: 1rem;
    display: inline-flex;
    width: 30px; height: 30px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}
.topbar-social a:hover { background: var(--brand-green); color: var(--white); transform: translateY(-2px); }

/* ---------- HEADER / NAVBAR ---------- */
.main-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--trans);
}
.navbar { padding: 15px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; }
.brand-text {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
}
.brand-text strong { color: var(--brand-green); }
.navbar-nav .nav-link {
    font-family: var(--ff-body);
    font-weight: 600;
    color: var(--heading);
    padding: 8px 16px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px;
    width: 0; height: 2px;
    background: var(--brand-green);
    transition: var(--trans);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 22px; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--brand-blue); }

/* ---------- HERO CAROUSEL ---------- */
.hero-slide {
    background-size: cover;
    background-position: center;
    min-height: 640px;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 43, .62);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content { padding: 60px 0; text-align: left; }
.hero-eyebrow {
    display: inline-block;
    color: #7dffbd;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-left: 3px solid var(--brand-green);
    padding-left: 12px;
}
.hero-content h1 {
    color: var(--white);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--brand-green); }
.hero-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.carousel-indicators { margin-bottom: 30px; }
.carousel-indicators [data-bs-target] {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    opacity: 1;
}
.carousel-indicators .active { background: var(--brand-green); border-color: var(--brand-green); }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .8; }

/* ---------- HIGHLIGHT STRIP ---------- */
.highlight-strip {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.highlight-strip .row {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.highlight-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 34px;
    border-right: 1px solid var(--border);
    height: 100%;
}
.col-md-4:last-child .highlight-box { border-right: none; }
.highlight-box i {
    font-size: 2.4rem;
    color: var(--brand-green);
    background: rgba(4, 163, 82, .1);
    width: 62px; height: 62px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}
.highlight-box h3 { font-size: 1.15rem; margin-bottom: 2px; }
.highlight-box p { margin: 0; font-size: .92rem; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--white); }
.about-images { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.about-img-small {
    position: absolute;
    bottom: 0; right: 0;
    width: 45%;
    border-radius: var(--radius);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}
.about-exp-badge {
    position: absolute;
    top: 30px; left: -10px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-exp-badge .num { display: block; font-family: var(--ff-head); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-exp-badge .txt { font-size: .82rem; letter-spacing: .5px; }
.about-lead { font-size: 1.1rem; color: var(--heading); font-weight: 500; margin-bottom: 16px; }
.about-points { margin: 24px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.about-points li { font-weight: 600; color: var(--heading); }
.about-points li i { color: var(--brand-green); margin-right: 8px; }
.about-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.about-call { display: flex; align-items: center; gap: 12px; color: var(--body); }
.about-call i {
    font-size: 1.3rem;
    color: var(--brand-green);
    background: rgba(4, 163, 82, .1);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.about-call strong { display: block; color: var(--brand-blue); font-size: 1.1rem; }

/* ---------- SERVICES ---------- */
.services-section { background: var(--light-bg); }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    height: 100%;
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; overflow: hidden; /*height: 250px; */}
.service-img img { width: 100%; height: 100%; /*object-fit: cover; */transition: var(--trans); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
    position: absolute;
    bottom: -26px; left: 30px;
    width: 60px; height: 60px;
    background: var(--brand-green);
    color: var(--white);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-sm);
    border: 4px solid var(--white);
}
.service-body { padding: 40px 30px 32px; }
.service-name { font-size: 1.4rem; margin-bottom: 12px; }
.service-text { margin-bottom: 22px; font-size: .98rem; }
.btn-call-now {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    padding: 10px 26px;
    font-size: .9rem;
}
.btn-call-now i { margin-right: 6px; }
.btn-call-now:hover {
    background: var(--brand-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(45, 43, 151, .3);
}

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--brand-blue); }
.why-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    height: 100%;
    transition: var(--trans);
}
.why-card:hover { background: var(--white); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 74px; height: 74px;
    background: var(--brand-green);
    color: var(--white);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
    transition: var(--trans);
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.05); }
.why-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; transition: var(--trans); }
.why-card p { color: rgba(255, 255, 255, .78); margin: 0; font-size: .95rem; transition: var(--trans); }
.why-card:hover h3 { color: var(--brand-blue); }
.why-card:hover p { color: var(--body); }

/* ---------- COUNTER ---------- */
.counter-section {
    background: var(--dark);
    padding: 70px 0;
}
.counter-box { padding: 10px; }
.counter-num, .counter-plus {
    font-family: var(--ff-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
}
.counter-box p {
    color: rgba(255, 255, 255, .8);
    margin: 12px 0 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ---------- HOW IT WORKS ---------- */
.works-section { background: var(--light-bg); }
.works-row { position: relative; }
.work-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 26px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--trans);
    border: 1px solid var(--border);
}
.work-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.work-num {
    position: absolute;
    top: 18px; right: 22px;
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(45, 43, 151, .1);
}
.work-icon {
    width: 78px; height: 78px;
    background: rgba(45, 43, 151, .08);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
    transition: var(--trans);
}
.work-step:hover .work-icon { background: var(--brand-green); color: var(--white); }
.work-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.work-step p { margin: 0; font-size: .94rem; }

/* ---------- BOOK YOUR SERVICE ---------- */
.book-section { padding: 100px 0; background: var(--light-bg); }
.book-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.book-info {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    min-height: 400px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
}
.book-info-overlay { position: absolute; inset: 0; background: rgba(45, 43, 151, .88); }
.book-info-content { position: relative; z-index: 2; }
.book-info-content h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.book-info-content p { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }
.book-contact li { color: rgba(255, 255, 255, .9); margin-bottom: 14px; font-weight: 500; }
.book-contact li i { color: #7dffbd; margin-right: 10px; }
.book-form { padding: 50px 44px; }
.form-label { font-weight: 600; color: var(--heading); font-size: .9rem; margin-bottom: 6px; }
.book-form .form-control, .book-form .form-select,
.contact-form-box .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .95rem;
    background: var(--light-bg);
    transition: var(--trans);
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 .2rem rgba(4, 163, 82, .12);
    background: var(--white);
}
.form-success { color: var(--brand-green); font-weight: 600; margin: 0; }
.form-success i { margin-right: 6px; }

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--white); }
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--trans);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 43, 151, .55);
    opacity: 0;
    transition: var(--trans);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    width: 52px; height: 52px;
    background: var(--white);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    z-index: 2;
    transition: var(--trans);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- TESTIMONIALS (AUTO SCROLL) ---------- */
.testimonial-section { background: var(--light-bg); overflow: hidden; }
.testimonial-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-track {
    display: flex;
    gap: 28px;
    width: max-content;
    will-change: transform;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 30px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.testi-stars { color: #ffb300; margin-bottom: 16px; font-size: 1rem; }
.testi-card p { color: var(--body); font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testi-author h4 { font-size: 1.05rem; margin: 0; }
.testi-author span { font-size: .85rem; color: var(--brand-green); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); }
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--heading);
    padding: 20px 24px;
    background: var(--white);
}
.accordion-button:not(.collapsed) {
    color: var(--brand-blue);
    background: rgba(45, 43, 151, .05);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--border); }
.accordion-button::after {
    background-image: none;
    content: "\F64D";
    font-family: "bootstrap-icons";
    font-size: 1rem;
    transform: none;
    width: auto; height: auto;
    color: var(--brand-green);
}
.accordion-button:not(.collapsed)::after { content: "\F63B"; transform: none; }
.accordion-body { padding: 4px 24px 22px; color: var(--body); }

/* ---------- CLIENTS (AUTO SCROLL) ---------- */
.clients-section { padding: 60px 0; background: var(--light-bg); overflow: hidden; }
.clients-title {
    text-align: center;
    font-family: var(--ff-head);
    font-weight: 700;
    color: var(--heading);
    font-size: 1.1rem;
    margin-bottom: 34px;
}
.clients-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.clients-track { display: flex; align-items: center; gap: 70px; width: max-content; will-change: transform; }
.client-logo { flex-shrink: 0; }
.client-logo img {
    /*height: 60px;*/
    width: 180px;
	border-radius:10px;
	border:1px solid;
    object-fit: contain;
   /* filter: grayscale(100%);
    opacity: .55;*/
    transition: var(--trans);
}
.client-logo img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--light-bg); }
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--trans);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-icon {
    width: 66px; height: 66px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 20px;
}
.contact-info-card:hover .contact-icon { background: var(--brand-green); }
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-info-card p { margin: 0; font-size: .96rem; }
.contact-info-card a { color: var(--body); }
.contact-info-card a:hover { color: var(--brand-green); }

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-form-box h3 { font-size: 1.5rem; margin-bottom: 24px; }
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 420px;
    border: 1px solid var(--border);
}
.contact-map iframe { display: block; height: 100%; min-height: 420px; }

/* ---------- FOOTER ---------- */
.main-footer { background: var(--dark); color: rgba(255, 255, 255, .7); padding-top: 80px; }
.footer-brand {
    font-family: var(--ff-head);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 18px;
}
.footer-brand strong { color: var(--brand-green); }
.footer-widget p { font-size: .95rem; margin-bottom: 20px; }
.footer-widget h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-widget h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px; background: var(--brand-green); border-radius: 3px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, .7); }
.footer-links a:hover { color: var(--brand-green); padding-left: 6px; }
.footer-contact li { margin-bottom: 14px; font-size: .94rem; display: flex; gap: 10px; }
.footer-contact li i { color: var(--brand-green); margin-top: 4px; }
.footer-contact a { color: rgba(255, 255, 255, .7); }
.footer-contact a:hover { color: var(--brand-green); }
.footer-social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 1.05rem;
}
.footer-social a:hover { background: var(--brand-green); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 60px;
    padding: 22px 0;
    text-align: center;
    font-size: .9rem;
}

/* ---------- FLOATING ICONS ---------- */
.float-btn {
    position: fixed;
    bottom: 26px;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.float-whatsapp { left: 26px; background: #25d366; }
.float-call { right: 26px; background: var(--brand-blue); }
.float-btn:hover { color: var(--white); transform: scale(1.1); }
.float-whatsapp::before, .float-call::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
}
.float-whatsapp::before { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: pulse-ring 2s infinite; }
.float-call::before { box-shadow: 0 0 0 0 rgba(45, 43, 151, .6); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 96px; right: 26px;
    width: 46px; height: 46px;
    background: var(--brand-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--brand-green-dark); transform: translateY(-3px); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199.98px) {
    .hero-content h1 { font-size: 2.9rem; }
    .section-title { font-size: 2.1rem; }
}

@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    .book-section { padding: 70px 0; }
    .navbar-collapse {
        background: var(--white);
        margin-top: 14px;
        padding: 16px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
    }
    .navbar-nav .nav-link::after { display: none; }
    .btn.btn-brand-green.ms-lg-3 { margin-top: 10px; display: inline-block; }
    .hero-slide { min-height: 540px; }
    .hero-content h1 { font-size: 2.5rem; }
    .highlight-box { border-right: none; border-bottom: 1px solid var(--border); }
    .col-md-4:last-child .highlight-box { border-bottom: none; }
    .about-images { margin-bottom: 20px; max-width: 520px; }
    .counter-num, .counter-plus { font-size: 2.4rem; }
    .book-info { min-height: 300px; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-vntr{
		justify-content:center!important
	}
    body { font-size: 15px; }
    .section-padding { padding: 56px 0; }
    .book-section { padding: 56px 0; }
    .section-head { margin-bottom: 36px; }
    .section-title { font-size: 1.7rem; }
    .hero-content { padding: 40px 0; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-slide { min-height: 480px; }
    .hero-btns .btn { padding: 11px 22px; font-size: .88rem; }
    .highlight-strip { margin-top: -40px; }
    .about-points { grid-template-columns: 1fr; }
    .about-cta { gap: 16px; }
    .about-img-small { width: 42%; }
    .book-form, .book-info { padding: 34px 24px; }
    .service-body { padding: 40px 24px 28px; }
    .testi-card { width: 300px; padding: 28px 24px; }
    .counter-num, .counter-plus { font-size: 2rem; }
    .counter-box p { font-size: .88rem; }
    .float-btn { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; }
    .float-whatsapp { left: 18px; }
    .float-call { right: 18px; }
    .back-to-top { bottom: 82px; right: 18px; }
    .gallery-item img { height: 150px; }
}

@media (max-width: 575.98px) {
    .section-title { font-size: 1.55rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .about-cta { flex-direction: column; align-items: flex-start; }
}
@media(max-width:374px)
{
	.brand-text {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
}
}