/* ============================================================
   IBMATE — Main Stylesheet
   Color Theme: Blue #1e3a8a / #2563eb  |  White  |  Light Gray
   Font: Poppins
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --primary:        #1e3a8a;
    --primary-mid:    #1d4ed8;
    --primary-light:  #2563eb;
    --accent:         #60a5fa;
    --accent-warm:    #f59e0b;
    --white:          #ffffff;
    --pale:           #f0f5ff;
    --border:         #dde3ee;
    --text:           #1e293b;
    --text-muted:     #64748b;
    --green:          #22c55e;

    --shadow-sm:  0 2px 12px rgba(30,58,138,0.08);
    --shadow-md:  0 6px 28px rgba(30,58,138,0.13);
    --shadow-lg:  0 12px 48px rgba(30,58,138,0.18);
    --radius-sm:  10px;
    --radius-md:  16px;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --trans:      all 0.3s var(--ease);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 15px;
    overflow-x: clip;           /* clip at html level without affecting scrollbar width */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

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

/* ── Section Utilities ──────────────────────────────────── */
.section-pad { padding: 90px 0; }
.bg-pale     { background-color: var(--pale); }
.text-hi        { color: var(--primary-light); }
.text-accent-hi { color: var(--accent); }
.text-white-75  { color: rgba(255,255,255,.78); }
.req            { color: #ef4444; }

.section-eyebrow {
    display: inline-block;
    background: var(--pale);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.light-eye {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 14px;
}

.heading-bar {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 100px;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

.body-text {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-solid {
    background: var(--primary-light);
    color: #fff;
    border: 2px solid var(--primary-light);
    padding: 11px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: inherit;
}
.btn-solid:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,.28);
}

.btn-line {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: inherit;
}
.btn-line:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero buttons */
.btn-hero-primary {
    background: var(--primary-light);
    color: #fff;
    border: 2px solid var(--primary-light);
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-hero-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.2);
}

.btn-hero-outline {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.55);
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.22);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#mainNav {
    background: var(--primary);
    padding: 12px 0;
    transition: padding .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: 0 2px 16px rgba(30,58,138,.2);
    z-index: 1050;
    width: 100%;
}
#mainNav.scrolled {
    padding: 7px 0;
    background: rgba(30,58,138,.98);
    box-shadow: 0 4px 32px rgba(30,58,138,.35);
    backdrop-filter: blur(12px);
}

.navbar-brand .brand-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}
.brand-accent { color: var(--accent); }

#mainNav .nav-link {
    color: rgba(255,255,255,.82) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 13px !important;
    border-radius: 8px;
    transition: var(--trans);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}

.nav-call-btn {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 7px 16px !important;
}
.nav-call-btn:hover {
    background: #fff !important;
    color: var(--primary) !important;
}

/* Hamburger toggler — white icon + white border */
#mainNav .navbar-toggler {
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 8px;
    padding: 5px 10px;
    outline: none;
    box-shadow: none;
}
#mainNav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
}

/* Mobile nav menu */
@media (max-width: 991.98px) {
    #navbarNav {
        background: var(--primary);
        padding: 12px 0 16px;
        border-top: 1px solid rgba(255,255,255,.1);
        margin-top: 8px;
    }
    #mainNav .nav-link { padding: 10px 16px !important; }
    .nav-call-btn { margin: 8px 16px 0; }
}

/* ── HERO SLIDER ─────────────────────────────────────────── */
.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;             /* dynamic viewport height for mobile browsers */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30,58,138,.88) 0%,
        rgba(29,78,216,.72) 50%,
        rgba(96,165,250,.45) 100%
    );
    z-index: 1;
}

/* Absolute fill + flex centers content regardless of Bootstrap carousel display:block */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 16px 60px;      /* top accounts for sticky navbar height */
}

.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 100px;
    padding: 6px 22px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.slide-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.slide-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.slide-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Carousel indicators & controls */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    opacity: .5;
    transition: var(--trans);
}
.carousel-indicators .active {
    background: #fff;
    opacity: 1;
    transform: scale(1.3);
}
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    opacity: .75;
    z-index: 3;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-img-wrap {
    position: relative;
    padding-bottom: 24px;
    padding-right: 24px;
}
.about-photo {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.about-stat-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-light);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 8px 28px rgba(37,99,235,.4);
    min-width: 118px;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.stat-label { font-size: 0.72rem; font-weight: 500; opacity: .9; }

.about-floating-card {
    position: absolute;
    top: 28px;
    left: -16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-floating-card i      { font-size: 1.4rem; color: var(--accent-warm); }
.about-floating-card strong { display: block; font-size: 1rem; font-weight: 700; color: var(--primary); line-height: 1; }
.about-floating-card small  { font-size: 0.72rem; color: var(--text-muted); }

.about-highlight {
    background: var(--pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.84rem;
    color: var(--text);
    transition: var(--trans);
    cursor: default;
}
.about-highlight:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.about-highlight i { color: var(--primary-light); font-size: 1rem; width: 18px; flex-shrink: 0; }
.about-highlight:hover i { color: var(--accent); }

/* ── SERVICES ────────────────────────────────────────────── */
.cat-block { margin-bottom: 52px; }
.cat-block:last-child { margin-bottom: 0; }

.cat-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.cat-label i { color: var(--primary-light); }

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.svc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}
.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}
.svc-card:hover .svc-img { transform: scale(1.06); }

.svc-img-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: rgba(30,58,138,.75);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
.svc-img-badge i { font-size: 1.2rem; color: rgba(255,255,255,.85); }

.svc-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.svc-desc  { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 12px; }

.svc-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    flex: 1;
}
.svc-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.svc-list li i { color: var(--green); font-size: 0.82rem; flex-shrink: 0; margin-top: 3px; }

.svc-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-svc-call,
.btn-svc-enq {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--trans);
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    border: 1px solid;
}
.btn-svc-call {
    background: var(--pale);
    color: var(--primary);
    border-color: var(--border);
}
.btn-svc-call:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.btn-svc-enq {
    background: var(--primary-light);
    color: #fff;
    border-color: var(--primary-light);
}
.btn-svc-enq:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}
.why-bg::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    top: -160px;
    right: -80px;
    pointer-events: none;
}
.why-bg::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

.why-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--trans);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    height: 100%;
}
.why-card:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.38);
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--trans);
    border: 1px solid rgba(255,255,255,.2);
}
.why-icon i { font-size: 1.8rem; color: var(--accent); transition: var(--trans); }
.why-card:hover .why-icon { background: var(--accent); border-color: var(--accent); }
.why-card:hover .why-icon i { color: var(--primary); }
.why-card h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.why-card p  { font-size: 0.85rem; color: rgba(255,255,255,.76); line-height: 1.65; margin: 0; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-info-stack { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: var(--trans);
}
.contact-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }

.citem-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.citem-icon i { color: #fff; font-size: 0.95rem; }

.citem-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.citem-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.citem-text a,
.citem-text span {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}
.citem-text a:hover { color: var(--primary-light); }

/* Large map fills the right column */
.map-box-large {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    min-height: 440px;
    height: 100%;
}
.map-box-large iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-bg {
    background: #f0f5ff;
    position: relative;
    overflow: hidden;
}
.testi-bg::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37,99,235,.05);
    top: -160px;
    left: -120px;
    pointer-events: none;
}
.testi-bg::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(37,99,235,.05);
    bottom: -120px;
    right: -80px;
    pointer-events: none;
}

/* Override section heading colour for light bg */
.testi-bg .section-heading { color: var(--text); }
.testi-bg .section-sub     { color: var(--text-muted); }
.testi-bg .section-eyebrow { background: #fff; color: var(--primary); }

.testi-carousel {
    position: relative;
    padding: 0 0 10px;
}

/* Card */
.testi-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px 28px;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}
.testi-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Quote icon */
.testi-quote {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.testi-quote i { font-size: 0.95rem; color: #fff; }

/* Review text */
.testi-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
    flex: 1;
}

/* Stars */
.testi-stars { margin-bottom: 20px; }
.testi-stars i { color: #f59e0b; font-size: 0.85rem; margin-right: 2px; }

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.testi-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.testi-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Prev / Next arrows */
.testi-prev,
.testi-next {
    position: static;
    width: auto;
    opacity: 1;
}
.testi-prev { left: auto; }
.testi-next { right: auto; }

.testi-arrow {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
    box-shadow: var(--shadow-sm);
}
.testi-arrow i { font-size: 0.85rem; color: var(--primary); }

.testi-prev:hover .testi-arrow,
.testi-next:hover .testi-arrow {
    background: var(--primary-light);
    border-color: var(--primary-light);
}
.testi-prev:hover .testi-arrow i,
.testi-next:hover .testi-arrow i { color: #fff; }

/* Position arrows absolutely on sides */
.testi-carousel { position: relative; }
#testiCarousel .carousel-control-prev {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}
#testiCarousel .carousel-control-next {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--trans);
    border: none;
    display: inline-block;
}
.testi-dot.active,
.testi-dot:hover {
    background: var(--primary-light);
    transform: scale(1.3);
}

/* ── COPYRIGHT BAR ───────────────────────────────────────── */
.copyright-bar {
    background: var(--primary);
    padding: 16px 0;
    text-align: center;
}
.copyright-bar p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* ── FLOATING CALL BUTTON (bottom-right) ────────────────── */
.float-call-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1040;
    width: 58px;
    height: 58px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(34,197,94,.45);
    transition: var(--trans);
    text-decoration: none;
}
.float-call-btn i {
    font-size: 1.35rem;
    color: #fff;
    position: relative;
    z-index: 2;
    animation: phoneWiggle 2.5s ease-in-out infinite;
}
.float-call-btn:hover {
    background: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(34,197,94,.55);
}

/* Tooltip label */
.float-call-tooltip {
    position: absolute;
    right: 66px;
    background: var(--text);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    transform: translateX(6px);
}
.float-call-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right: none;
    border-left-color: var(--text);
}
.float-call-btn:hover .float-call-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Ripple rings */
.float-call-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    animation: callRipple 2s ease-out infinite;
    z-index: 1;
}
.float-call-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    animation: callRipple 2s ease-out .6s infinite;
    z-index: 1;
}

@keyframes callRipple {
    0%   { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.9); opacity: 0; }
}
@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0deg); }
    10%       { transform: rotate(-18deg); }
    20%       { transform: rotate(18deg); }
    30%       { transform: rotate(-12deg); }
    40%       { transform: rotate(12deg); }
    50%       { transform: rotate(0deg); }
}

/* ── FIXED ENQUIRY BUTTON ────────────────────────────────── */
.fixed-enq-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
}

.btn-fixed-enq {
    position: relative;             /* needed for ::after pulse ring */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: #fff;
    border: none;
    padding: 18px 10px;
    border-radius: 14px 0 0 14px;
    cursor: pointer;
    box-shadow: -4px 0 20px rgba(37,99,235,.3);
    transition: var(--trans);
    font-family: inherit;
    outline: none;
    overflow: hidden;               /* clip pulse ring on right edge */
}
.btn-fixed-enq:hover {
    background: var(--primary);
    box-shadow: -6px 0 26px rgba(37,99,235,.42);
}
.btn-fixed-enq:focus { outline: none; }
.btn-fixed-enq i { font-size: 1.1rem; color: #fff; }

.fixed-enq-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #fff;
    text-transform: uppercase;
}

.btn-fixed-enq::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: 0; bottom: -4px;
    border-radius: 16px 0 0 16px;
    border: 2px solid rgba(96,165,250,.5);
    border-right: none;
    animation: pulsRing 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulsRing {
    0%, 100% { opacity: .6; }
    50%       { opacity: 0; }
}

/* ── ENQUIRY MODAL ───────────────────────────────────────── */
.enq-modal-content {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(30,58,138,.22);
}
.enq-modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 22px 26px 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.enq-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.enq-modal-sub { font-size: 0.82rem; color: rgba(255,255,255,.75); margin: 0; }
.enq-modal-body { padding: 22px 26px 28px; }

.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }

.c-input {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--trans);
    width: 100%;
}
.c-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
    outline: none;
}
.c-input::placeholder { color: #9ca3af; }
.c-input.is-invalid   { border-color: #ef4444; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal.delay-1  { transition-delay: .1s; }
.reveal.delay-2  { transition-delay: .2s; }
.reveal.delay-3  { transition-delay: .3s; }

/* ── HERO ENTRANCE ANIMATION ─────────────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.carousel-item.active .slide-badge,
.carousel-item.active .slide-title,
.carousel-item.active .slide-desc,
.carousel-item.active .slide-btns {
    animation: fadeSlideUp .7s var(--ease) both;
}
.carousel-item.active .slide-badge { animation-delay: .1s; }
.carousel-item.active .slide-title { animation-delay: .25s; }
.carousel-item.active .slide-desc  { animation-delay: .4s; }
.carousel-item.active .slide-btns  { animation-delay: .55s; }

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */

/* Large desktop */
@media (max-width: 1199.98px) {
    .section-heading { font-size: 2rem; }
    .slide-title     { font-size: 2.7rem; }
}

/* Testimonial arrows — pull in when no room outside */
@media (max-width: 1200px) {
    #testiCarousel .carousel-control-prev { left: -10px; }
    #testiCarousel .carousel-control-next { right: -10px; }
}

/* Tablet landscape */
@media (max-width: 991.98px) {
    .section-pad     { padding: 70px 0; }
    .section-heading { font-size: 1.85rem; }
    .slide-title     { font-size: 2.1rem; }
    .about-floating-card { display: none; }
    .about-img-wrap  { padding-bottom: 18px; padding-right: 18px; }
}

/* Tablet portrait */
@media (max-width: 767.98px) {
    .section-pad     { padding: 56px 0; }
    .section-heading { font-size: 1.65rem; }
    .slide-title     { font-size: 1.8rem; }
    .slide-desc      { font-size: 0.975rem; }

    /* Hero: use dvh so mobile address bar doesn't cut content */
    .hero-slide  { min-height: 100dvh; min-height: 100vh; }
    .hero-content{ padding: 80px 16px 50px; }

    /* About: no decorative padding since badge is hidden at md */
    .about-img-wrap  { padding-bottom: 0; padding-right: 0; }
    .about-photo     { height: 300px; }
    .about-stat-badge{ display: none; }

    .svc-img-wrap    { height: 190px; }

    /* Map: fixed height on mobile */
    .map-box-large,
    .map-box-large iframe { min-height: 320px; height: 320px; }
}

/* Mobile */
@media (max-width: 767.98px) {
    #testiCarousel .carousel-control-prev,
    #testiCarousel .carousel-control-next {
        position: static;
        transform: none;
        display: inline-flex;
    }
    .testi-dots { margin-top: 20px; }
    .testi-card { padding: 24px 20px 20px; }
    .testi-text { font-size: 0.84rem; }
}

@media (max-width: 575.98px) {
    .section-pad  { padding: 48px 0; }
    .slide-title  { font-size: 1.5rem; }
    .slide-desc   { font-size: 0.925rem; }
    .slide-btns   { flex-direction: column; align-items: center; }
    .btn-hero-primary,
    .btn-hero-outline { width: 100%; max-width: 260px; justify-content: center; }

    .section-heading { font-size: 1.5rem; }

    .svc-img-wrap  { height: 180px; }
    .svc-actions   { flex-direction: row; }

    /* Fixed enquiry button — smaller on mobile */
    .btn-fixed-enq { padding: 14px 8px; }
    .fixed-enq-label { font-size: 0.65rem; }
    .btn-fixed-enq i { font-size: 1rem; }

    .map-box-large,
    .map-box-large iframe { min-height: 260px; height: 260px; }
}
