/* ─────────────────────────────────────────
   GOOGLE FONTS
───────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Ramabhadra&family=Poppins:wght@400;500&family=Public+Sans:wght@400&display=swap");


/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

button:focus-visible {
    outline: 2px solid #4a90e2 !important;
}

img {
    display: block;
}


/* ─────────────────────────────────────────
   TOKENS (CSS VARIABLES)
───────────────────────────────────────── */
:root {
    --cyan: #08dffa;
    --cyan-alt: #08e3fb;
    --navy: #093a58;
    --teal-dk: #104c69;
    --teal-lt: #106776;
    --white: #ffffff;
    --black: #000000;

    --grad-btn: linear-gradient(180deg, #08e3fb 0%, #0698d9 100%);
    --grad-hero: linear-gradient(158deg, rgba(22, 25, 30, 1) 4%, rgba(6, 151, 217, 0) 100%);

    --font-head: "Ramabhadra", Helvetica, sans-serif;
    --font-body: "Poppins", Helvetica, sans-serif;
    --font-copy: "Public Sans", Helvetica, sans-serif;
	
	 /* Animation timing */
    --typewriter-duration: 3.8s;
}


/* ─────────────────────────────────────────
   GLOBAL
───────────────────────────────────────── */
body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}


/* ─────────────────────────────────────────
   UTILITY BUTTONS
───────────────────────────────────────── */
.btn-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9);
    background-size: 300% 100%;
    animation: waterFlow 4s linear infinite;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    padding: 18px 30px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cyan:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(8, 223, 250, 0.35);
    color: var(--white);
}

@keyframes waterFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--white);
    border-radius: 5px;
    padding: 12px 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}


/* ─────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--cyan);
    font-weight: 400;
}

.section-label img {
    width: 36px;
    height: 1px;
    margin-top: 2px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.1;
    margin: 0;
}

.section-title--white {
    color: var(--white);
}


/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.site-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/* ============================================================
   MOBILE DRAWER & HAMBURGER
   ============================================================ */

/* 1. HAMBURGER BUTTON */
.bb-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    cursor: pointer;
    gap: 6px;
    padding: 0;
    z-index: 1001;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bb-hamburger:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.bb-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                width 0.3s ease;
}

/* Animation when Open */
.bb-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bb-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.bb-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* 2. BACKDROP */
.bb-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9, 58, 88, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.bb-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}


/* 3. DRAWER PANEL */
.bb-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--white);
    z-index: 1050;
    transform: translateX(105%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.15);
}

.bb-drawer.is-open {
    transform: translateX(0);
}

/* Drawer Header */
.bb-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid var(--cyan);
}

.bb-drawer-logo img {
    height: 45px;
    width: auto;
}

.bb-drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.bb-drawer-close:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(8, 223, 250, 0.05);
}

/* Nav Links with Stagger Animation */
.bb-drawer-nav {
    flex: 1;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.bb-drawer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.bb-drawer-nav li {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-drawer.is-open .bb-drawer-nav li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Delays (Dynamic for up to 10 items) */
.bb-drawer.is-open .bb-drawer-nav li:nth-child(1) { transition-delay: 0.1s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(2) { transition-delay: 0.16s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(3) { transition-delay: 0.22s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(4) { transition-delay: 0.28s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(5) { transition-delay: 0.34s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(6) { transition-delay: 0.40s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(7) { transition-delay: 0.46s; }
.bb-drawer.is-open .bb-drawer-nav li:nth-child(8) { transition-delay: 0.52s; }

.bb-drawer-nav a {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f8f8;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.bb-drawer-nav a:hover {
    color: var(--cyan);
    padding-left: 12px;
}

.bb-drawer-nav a i {
    font-size: 1.1rem;
    color: var(--cyan);
    opacity: 0.7;
    width: 24px;
    text-align: center;
}

/* Drawer Footer CTA */
.bb-drawer-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.bb-drawer .btn-cyan {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 18px;
    padding: 16px;
}

.bb-drawer.is-open .btn-cyan {
    transform: translateY(0);
    opacity: 1;
}

body.drawer-is-open {
    overflow: hidden;
}

.navbar-brand img {
    width: 180px;
}

.navbar .nav-link {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--white) !important;
    padding: 18px !important;
    font-weight: 400;
    white-space: nowrap;
}

.navbar .nav-link:hover {
    color: var(--cyan) !important;
}

/* Dropdown menus (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        padding: 10px;
        background: rgba(9, 58, 88, 0.88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        margin-top: 8px;
    }

    .navbar .dropdown-item {
        font-family: var(--font-body);
        color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        padding: 10px 12px;
        transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(8, 223, 250, 0.16);
        color: var(--white);
        transform: translateX(2px);
    }
}


/* ─────────────────────────────────────────
    BANNER
───────────────────────────────────────── */
.banner {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image only (flipped) */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/banner-img.webp") center/cover no-repeat;
    transform: scaleX(-1);
    transform-origin: center;
    z-index: -2;

}

/* Gradient overlay on top of image */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(123.29deg, #16191E 24.36%, rgba(6, 151, 217, 0.2) 81.44%);
    pointer-events: none;
    z-index: -1;
}

.banner-content {
    position: relative;
    padding-top: 200px;
    padding-bottom: 80px;
}

.banner-content .label {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--cyan);
    font-weight: 400;
    margin-bottom: 12px;
}

.banner-content h1 {
    font-family: var(--font-head);
    font-size: 50px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.4;
    max-width: 650px;
    margin-bottom: 20px;
}

.banner-content p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white);
    line-height: 2.2;
    max-width: 760px;
    margin-bottom: 32px;
}

.banner-content .cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
    position: relative;
}

.about-right-image {
    position: absolute;
    bottom: 56px;
    right: 3%;
    width: 271px;
    height: 271px;
    background-image: url("images/screw-tool.webp");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite 2s;



}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.about-body .section-label {
    margin-bottom: 10px;
}

.about-body .section-title {
    margin-bottom: 20px;
}

.about-body p {
    font-size: 16px;
    line-height: 2.2;
    /* color: var(--navy); */
    margin-bottom: 16px;
}

.about-body .more-link {
    color: var(--teal-lt);
    font-weight: 500;
}

.contact-badge-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-badge:hover {
    transform: translateX(5px);
}

.contact-badge .badge-icon {
    width: 65px;
    height: 65px;
    background-color: #0698D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 24px;
}

.contact-badge .badge-label {
    font-family: var(--font-head);
    font-size: 20px;
/*     font-weight: 700; */
    color: var(--navy);
    display: block;
    line-height: 1.2;
}

.contact-badge .badge-phone {
    font-family: var(--font-head);
    font-size: 20px;
/*     font-weight: 800; */
    color: var(--navy);
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.repair-icon {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    opacity: 0.15;
    pointer-events: none;
}


/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
    /* background: var(--white); */
    position: relative;
}

.services-right-image {
    position: absolute;
    top: 16%;
    right: 3%;
    width: 231px;
    height: 231px;
    background-image: url("images/our-services-right.webp");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite 2s;
}

.services .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-card {
/*     border-radius: 8px; */
    overflow: hidden;
    text-align: center;
    padding: 40px 24px 32px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 0.2px solid rgba(8, 227, 251, 0.8);
/*     border-radius: 8px; */
    opacity: 0;
    transform: scale(1.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(8, 227, 251, 0.15);
    border-color: rgba(8, 227, 251, 0.3);
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card--teal-lt {
    background: var(--teal-lt);
}

.service-card--teal-dk {
    background: var(--teal-dk);
}

.service-card .icon {
    width: 50px;
    height: 55px;
    margin: 0 auto 20px;
    /* tint PNG icons toward rgba(8, 227, 251, 1) */
    filter: brightness(0) saturate(100%) invert(84%) sepia(74%) saturate(7490%) hue-rotate(151deg) brightness(101%) contrast(101%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon {
    transform: scale(1.15) translateY(-5px);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 25px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--cyan);
}
.service-card p {
    font-size: 16px;
    color: var(--white);
    line-height: 2.2;
    margin-bottom: 20px;
}


/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-us {
    background: url("images/why-choose-us-bg.webp") center/cover no-repeat;
    position: relative;
}

.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 58, 88, 0.82);
    pointer-events: none;
}

.why-us .inner {
    position: relative;
}

.why-us .section-label {
    color: var(--white);
}

.why-us .section-label img {
    filter: brightness(0) invert(1);
}

.why-us .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.why-us>.container {
    position: relative;
}

.why-us p.lead-text {
    font-size: 16px;
    color: var(--white);
    line-height: 2.2;
    margin-bottom: 40px;
    max-width: 640px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.why-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.why-item h4 {
    font-family: var(--font-head);
    font-size: 25px;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 4px;
}

.why-item p {
    font-size: 16px;
    color: var(--white);
    line-height: 2.2;
    margin: 0;
}

.quote-panel {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(6, 152, 217, 0.72) 100%);
    backdrop-filter: blur(2px);
    border-radius: 4px;
    padding: 44px 36px;
}

.quote-panel h2 {
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 28px;
    text-align: center;
}

.quote-form-field {
    width: 100%;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 5px;
    padding: 10px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
}

.quote-form-field::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.quote-form-field:focus {
    border-color: var(--cyan);
}

textarea.quote-form-field {
    resize: vertical;
    min-height: 100px;
}


/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    min-height: 340px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    /* border-radius: 6px; */
    overflow: hidden;
    /* margin-bottom: 12px; */
    box-shadow: 0 4px 13px rgba(9, 58, 88, 0.2);
}

.faq-item--teal {
    background: var(--teal-lt);
}

.faq-item--navy {
    background: var(--navy);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.faq-question {
    padding-right: 12px;
}

.faq-item .plus {
    font-size: 22px;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item.is-open .plus {
    transform: rotate(90deg);
}

.faq-panel {
    width: 100%;
    padding: 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out, padding-bottom 0.25s ease-out;
}

.faq-panel p {
    margin: 0;
    padding-top: 4px;
    padding-bottom: 18px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.faq-item.is-open .faq-panel {
    padding-bottom: 18px;
    max-height: 260px;
}


/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
    position: relative;
}

.testimonials-swiper {
    padding: 8px 0 44px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.testimonials-swiper .swiper-slide .testimonial-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .swiper-slide .testimonial-card blockquote {
    flex: 1;
}

.testimonials-swiper .swiper-slide .testimonial-card footer {
    margin-top: auto;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-card {
    border: 1px solid var(--teal-lt);
    box-shadow: 0 0 10px var(--cyan-alt);
    border-radius: 5px;
    padding: 28px 30px 24px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(8, 223, 250, 0.25);
    z-index: 2;
}

.testimonial-card .testimonials-card-image-top {
    position: absolute;
    left: 82.2%;
    bottom: -11px;
    width: 86.8px;
    height: 86.8px;
    background-image: url(images/testimonials-card-img.webp);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    opacity: 43%;
    rotate: 45deg;
    animation: pulseGlowServices 4s ease-in-out infinite;

}

.testimonial-card .testimonials-card-image-bottom {
    position: absolute;
    left: 73.1%;
    bottom: 24px;
    width: 86.8px;
    height: 86.8px;
    background-image: url(images/testimonials-card-img.webp);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    opacity: 43%;
    rotate: 45deg;
    animation: pulseGlowServices 4s ease-in-out infinite;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    font-family: var(--font-body);
    margin: 0 0 24px;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
}

.testimonial-card footer img {
    width: 44px;
    height: 44px;
}

.testimonial-card .reviewer {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--navy);
    font-weight: 400;
}

.testimonial-card .stars {
    width: 79px;
    height: 18px;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0 !important;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(6, 151, 217, 0.35);
    opacity: 1;
    margin: 0 6px !important;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: rgba(8, 227, 251, 1);
    box-shadow: 0 0 0 6px rgba(8, 227, 251, 0.16);
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(9, 58, 88, 0.72);
    border: 1px solid rgba(8, 227, 251, 0.35);
    backdrop-filter: blur(6px);
    transition: transform 0.18s ease, background 0.18s ease;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    transform: translateY(-1px);
    background: rgba(9, 58, 88, 0.85);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 575.98px) {

    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: none;
    }
}


/* ─────────────────────────────────────────
   BLOG
───────────────────────────────────────── */
.blog {
    position: relative;
}

.blog-right-image {
    position: absolute;
    top: 28px;
    /* bottom: 56px; */
    left: 3%;
    width: 188px;
    height: 188px;
    background-image: url("images/screw-tool.webp");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite 2s;
}

.blog .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
    height: 365px;
    max-width: 390px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .thumb {
    transform: scale(1.05);
}

.blog-card .card-body {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: #0d6174; /* Deep teal match */
    padding: 20px 25px;
    z-index: 2;
}

.blog-card .card-label {
    background: transparent;
    padding: 0;
}

.blog-card .card-label h3 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}

.blog-card .card-label h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card .card-label span {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 12px;
}

.blog-card .card-meta {
    padding: 0;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--cyan);
    margin: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
    background: linear-gradient(rgba(16, 103, 118, 0.67) 0%, rgba(16, 103, 118, 1) 100%), url("images/footer-bg.webp") center/cover no-repeat;
    padding: 60px 0 0;
    position: relative;
}

.footer-logo {
    width: 120px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 16px;
    color: var(--cyan-alt);
    line-height: 1.7;
    max-width: 360px;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--cyan-alt);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li+li {
    margin-top: 14px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cyan-alt);
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.75;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--cyan-alt);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info li i {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social img {
    width: 32px;
    height: 32px;
}

.footer-bar {
    background: var(--black);
    text-align: center;
    padding: 9px 0;
    margin-top: 40px;
    font-family: var(--font-copy);
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.06em;
}


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 991.98px) {
    .banner {
        min-height: 600px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .repair-icon {
        display: none;
    }

    .quote-panel {
        margin-top: 48px;
    }
}

@media (max-width: 575.98px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 30px;
    }
}


/* ============================================
   Figma-safe scaling for 1400px desktop design
   (includes banner section)
   ============================================ */

/* 1) Base: on desktop, let .container match the 1400px Figma width */
@media (min-width: 992px) {

    body>header .container,
    body>section .container,
    body>footer .container {
        max-width: 1400px !important;
        width: 100% !important;
    }
}

/* 2) Scale ALL sections (including banner) when viewport < 1400px */
@media (min-width: 992px) and (max-width: 1400px) {

    body>header,
    body>section,
    body>footer {
        zoom: 0.88;
        transform-origin: top center;
    }
}

/* 3) Extra scaling for ~1366px / 125% zoom desktop */
@media (min-width: 992px) and (max-width: 1300px) {

    body>header,
    body>section,
    body>footer {
        zoom: 0.82;
    }
}

/* SCALING CLOSED */
/* ─────────────────────────────────────────
   INNER BANNER (ABOUT US & OTHER SUBPAGES)
───────────────────────────────────────── */
.inner-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-image: url('images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    padding-bottom: 64px;
    z-index: 1;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(123.29deg, #16191E 24.36%, rgba(6, 151, 217, 0.2) 81.44%);
    z-index: 0;
}

.inner-banner-content {
    position: relative;
    z-index: 1;
    padding-top: 140px;
}

.inner-banner-tag {
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.inner-banner-title {
    font-family: var(--font-head);
    font-size: 52px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.inner-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-breadcrumb a:hover {
    color: var(--white);
}

.inner-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-sep {
    color: var(--cyan);
    font-size: 10px;
}

@media (max-width: 768px) {
    .inner-banner {
        min-height: 320px;
        padding-bottom: 48px;
    }

    .inner-banner-title {
        font-size: 34px;
    }

    .inner-banner-content {
        padding-top: 120px;
    }
}

/* ─────────────────────────────────────────
   PROCESS SECTION (HOW WE WORK)
───────────────────────────────────────── */
.process-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background-color: #f8fbff;
}

.process-steps-row {
    position: relative;
    align-items: stretch !important;
}

/* ── Base card ── */
.process-step {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 44px 28px 36px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ── Shared pseudo for shimmer/sweep ── */
.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

/* ── All content above pseudo ── */
.process-step>* {
    position: relative;
    z-index: 1;
}

/* ── Shared gradient cards ── */
.process-step--1,
.process-step--2,
.process-step--3,
.process-step--4 {
    background: linear-gradient(160deg, var(--navy) 0%, var(--teal-dk) 50%, var(--teal-lt) 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(9, 58, 88, 0.25);
}

.process-step--1 .process-number,
.process-step--1 .process-title,
.process-step--1 .process-description,
.process-step--2 .process-number,
.process-step--2 .process-title,
.process-step--2 .process-description,
.process-step--3 .process-number,
.process-step--3 .process-title,
.process-step--3 .process-description,
.process-step--4 .process-number,
.process-step--4 .process-title,
.process-step--4 .process-description {
    color: var(--white) !important;
}

.process-step--1 .process-icon-wrap,
.process-step--2 .process-icon-wrap,
.process-step--3 .process-icon-wrap,
.process-step--4 .process-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: var(--cyan);
    transition: background 0.3s ease, transform 0.3s ease;
}

.process-step--1::before,
.process-step--2::before,
.process-step--3::before,
.process-step--4::before {
    background: radial-gradient(circle at center, rgba(8, 223, 250, 0.15) 0%, transparent 70%);
}

/* ─── Card 1 — lift hover ─── */
.process-step--1:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(9, 58, 88, 0.38);
}

.process-step--1:hover::before {
    opacity: 1;
}

.process-step--1:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* ─── Card 2 — glow pulse hover ─── */
.process-step--2:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 6px rgba(8, 223, 250, 0.3), 0 16px 48px rgba(9, 58, 88, 0.35);
}

.process-step--2:hover::before {
    opacity: 1;
}

.process-step--2:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

/* ─── Card 3 — icon spin hover ─── */
.process-step--3:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 56px rgba(9, 58, 88, 0.38);
}

.process-step--3:hover::before {
    opacity: 1;
}

.process-step--3:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: rotate(360deg);
}

/* ─── Card 4 — scale + glow ring hover ─── */
.process-step--4:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 0 0 5px rgba(8, 223, 250, 0.35), 0 20px 56px rgba(9, 58, 88, 0.38);
}

.process-step--4:hover::before {
    opacity: 1;
}

.process-step--4:hover .process-icon-wrap {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: scale(1.15);
}

/* ── Shared number / text ── */
.process-number {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.process-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.process-title {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}

.process-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}




/* ============================================
   SERVICES PAGE
   ============================================ */

/* Service card — unique border design */
.sp-service-card {
    position: relative;
    background: rgba(15, 13, 8, 0.85);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animated corner border - top-left and bottom-right gold accent */
.sp-card-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}

.sp-card-border::before,
.sp-card-border::after {
    content: '';
    position: absolute;
    transition: all 0.5s ease;
}

/* Top-left corner accent */
.sp-card-border::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold-accent);
    border-left: 2px solid var(--gold-accent);
    border-radius: 14px 0 0 0;
}

/* Bottom-right corner accent */
.sp-card-border::after {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold-accent);
    border-right: 2px solid var(--gold-accent);
    border-radius: 0 0 14px 0;
}

/* On hover — expand corner accents to full border */
.sp-service-card:hover .sp-card-border::before {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border-top: 2px solid rgba(193, 157, 96, 0.5);
    border-left: 2px solid rgba(193, 157, 96, 0.5);
    border-right: 2px solid rgba(193, 157, 96, 0.5);
    border-bottom: 2px solid rgba(193, 157, 96, 0.5);
}

.sp-service-card:hover .sp-card-border::after {
    width: 0;
    height: 0;
}

.sp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(193, 157, 96, 0.1);
}

/* Image */
.sp-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sp-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-service-card:hover .sp-service-image img {
    transform: scale(1.06);
}

/* Content */
.sp-service-content {
    padding: 28px 24px 32px;
}

.sp-service-title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.sp-service-desc {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
}

.sp-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-accent);
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-service-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sp-service-btn:hover {
    color: var(--gold-light);
}

.sp-service-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .services-page-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .services-page-section {
        padding: 50px 15px;
    }

    .sp-service-image {
        height: 180px;
    }
}

/* ─────────────────────────────────────────
   SERVICES PAGE (NEW)
───────────────────────────────────────── */
.services-page-section {
    position: relative;
    padding: 80px 0;
    background-color: #f8fbff;
}

.services-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/why-choose-us-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.services-screw-image {
    position: absolute;
    top: -50px;
    right: 5%;
    width: 250px;
    height: 250px;
    background-image: url('images/screw-tool.webp');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    animation: toolSpin 18s linear infinite;
    opacity: 0.8;
}

@keyframes toolSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-tag {
    font-family: var(--font-head);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.services-page-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--navy);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.services-grid {
    margin-top: 40px;
}

.sp-service-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--teal-lt);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.06);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    display: flex;
    flex-direction: column;
}

/* Water Wave Hover Effect */
.water-wave-layer {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 100%, rgba(8, 223, 250, 0.1) 0%, rgba(9, 58, 88, 0.05) 50%, transparent 100%);
    border-radius: 40%;
    transform: translateX(-25%);
    transition: top 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    animation: slowSpin 8s linear infinite;
}

@keyframes slowSpin {
    from {
        transform: translateX(-25%) rotate(0deg);
    }

    to {
        transform: translateX(-25%) rotate(360deg);
    }
}

.sp-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(9, 58, 88, 0.15);
}

.sp-service-card:hover .water-wave-layer {
    top: 20%;
}

.sp-service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 2;
}

.sp-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sp-service-card:hover .sp-service-image img {
    transform: scale(1.08) translateY(-4px);
}

.sp-service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.sp-service-title {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.sp-service-card:hover .sp-service-title {
    color: var(--cyan);
}

.sp-service-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
    flex: 1;
}

.sp-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--teal-lt);
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}

.sp-service-btn:hover {
    color: var(--cyan);
}

.sp-service-btn i {
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sp-service-card:hover .sp-service-btn i {
    transform: translateX(8px);
}



/* ============================================
   BLOG TEMPLATES STYLING
   ============================================ */

.blog-detail-section,
.blog-list-section {
    padding: 80px 0 100px;
    background: #f8fbff;
}

/* ── Blog List Grid ────────────────────────── */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767.98px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
}

.blog-list-item {
    background: var(--white);
    border: 1.5px solid var(--teal-lt);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(9, 58, 88, 0.04);
}

.blog-list-item:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(9, 58, 88, 0.12);
}

.blog-list-thumb {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-list-item:hover .blog-list-thumb img {
    transform: scale(1.06) translateY(-4px);
}

.blog-list-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-list-content h3 {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-list-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-content h3 a:hover {
    color: var(--cyan);
}

.blog-list-excerpt {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(9, 58, 88, 0.75);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-list-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--teal-lt);
    font-weight: 500;
    font-family: var(--font-body);
    margin-top: auto;
}

.blog-list-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-list-meta i {
    color: var(--cyan);
}

/* ── Pagination ─────────────────────────────── */
.blog-list-wrapper .pagination {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blog-list-wrapper .pagination .page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(9, 58, 88, 0.12);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-head);
    font-size: 15px;
}

.blog-list-wrapper .pagination .page-numbers.current,
.blog-list-wrapper .pagination .page-numbers:hover {
    background: var(--grad-btn);
    color: var(--white);
    border-color: transparent;
}

.blog-list-wrapper .pagination .page-numbers.prev,
.blog-list-wrapper .pagination .page-numbers.next {
    width: auto;
    padding: 0 20px;
}

/* ── Sidebar ─────────────────────────────────── */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(9, 58, 88, 0.1);
}

.sidebar-widget-title {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--navy);
    font-weight: 400;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(9, 58, 88, 0.06);
    position: relative;
}

.sidebar-widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

/* Search */
.sidebar-widget .search-form .form-control {
    background: rgba(9, 58, 88, 0.03);
    border: 1.5px solid rgba(9, 58, 88, 0.12);
    border-radius: 8px 0 0 8px;
    color: var(--navy);
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
    box-shadow: none;
}

.sidebar-widget .search-form .form-control::placeholder {
    color: rgba(9, 58, 88, 0.5);
}

.sidebar-widget .search-form .form-control:focus {
    border-color: var(--cyan);
    background: var(--white);
}

.sidebar-widget .search-form .btn-warning {
    background: var(--navy);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    transition: background 0.3s ease;
}

.sidebar-widget .search-form .btn-warning:hover {
    background: var(--teal-dk);
}

/* Latest posts */
.sidebar-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(9, 58, 88, 0.08);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb a {
    display: block;
    height: 100%;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sidebar-post-item:hover .sidebar-post-thumb img {
    transform: scale(1.08);
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-post-info h5 {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.4;
}

.sidebar-post-info h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-info h5 a:hover {
    color: var(--cyan);
}

.sidebar-post-date {
    font-size: 13px;
    color: var(--teal-lt);
    font-family: var(--font-body);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dk) 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sidebar-cta::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

.sidebar-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sidebar-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(8, 223, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--cyan);
    margin: 0 auto 10px;
}

.sidebar-cta-inner h4 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.sidebar-cta-inner p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 14px;
    line-height: 1.6;
}

.btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9);
    background-size: 300% 100%;
    animation: waterFlow 4s linear infinite;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.btn-sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 223, 250, 0.35);
    color: var(--white);
}

/* ── Single post content ─────────────────────── */
.blog-detail-wrapper {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 40px 42px;
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.05);
}

.single-service-featured {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1.5px solid var(--teal-lt);
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.05);
}

.single-service-featured img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 767.98px) {
    .single-service-featured img {
        height: 280px;
    }
}

.single-service-featured:hover img {
    transform: scale(1.03);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(9, 58, 88, 0.06);
    margin-bottom: 28px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--teal-lt) !important;
    font-weight: 500;
    font-family: var(--font-body);
}

.blog-meta i {
    color: var(--cyan) !important;
}

/* Post body typography */
.single-service-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: var(--navy);
    opacity: 0.9;
}

.single-service-body h1,
.single-service-body h2,
.single-service-body h3,
.single-service-body h4 {
    font-family: var(--font-head);
    font-weight: 400;
    color: var(--navy);
    margin: 36px 0 16px;
}

.single-service-body h2 {
    font-size: 32px;
    padding-left: 18px;
    border-left: 4px solid var(--cyan);
}

.single-service-body h3 {
    font-size: 26px;
}

.single-service-body h4 {
    font-size: 20px;
    color: var(--teal-dk);
}

.single-service-body p {
    margin-bottom: 20px;
}

.single-service-body ul,
.single-service-body ol {
    padding-left: 20px;
    margin-bottom: 24px;
    color: var(--navy);
}

.single-service-body li {
    margin-bottom: 10px;
}

.single-service-body a {
    color: var(--teal-lt);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-service-body a:hover {
    color: var(--cyan);
}

.single-service-body img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    box-shadow: 0 15px 35px rgba(9, 58, 88, 0.1);
}

.single-service-body blockquote {
    margin: 32px 0;
    padding: 24px 30px;
    background: rgba(8, 223, 250, 0.06);
    border-left: 4px solid var(--cyan);
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
}

/* ── Post navigation ─────────────────────────── */
.post-navigation {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 2px solid rgba(9, 58, 88, 0.06) !important;
}

.nav-card {
    background: var(--white);
    border: 1px solid rgba(9, 58, 88, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    height: 100%;
}

.nav-card a {
    text-decoration: none;
    display: block;
}

.nav-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 223, 250, 0.3);
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.08);
    background: var(--white);
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.nav-title {
    font-family: var(--font-head);
    color: var(--navy);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-title {
    color: var(--cyan);
}

.next-nav-card {
    text-align: right;
}

.next-nav-card .nav-label {
    justify-content: flex-end;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {

    .blog-detail-section,
    .blog-list-section {
        padding: 60px 0;
    }

    .blog-detail-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-wrapper {
        padding: 24px 20px;
    }

    .blog-meta {
        gap: 12px;
    }

    .next-nav-card {
        text-align: left;
    }

    .next-nav-card .nav-label {
        justify-content: flex-start;
    }
}


/* ============================================
   Testimonials Page
   ============================================ */
.testimonials-page-section {
    background-color: #f8fbff;
}

.testimonials-page-section .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.testimonials-page-section .testimonial-card blockquote {
    flex-grow: 1;
}

.testimonials-page-section .testimonial-card footer {
    margin-top: auto;
}

/* ============================================
   CTA Banner (Used on Services & Testimonials)
   ============================================ */
.services-cta-banner {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background-color: #f8fbff;
}

.services-cta-inner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dk) 100%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(9, 58, 88, 0.15);
    position: relative;
    overflow: hidden;
}

/* Abstract ambient glows in background */
.services-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8, 223, 250, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(17, 182, 168, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.services-cta-title {
    font-family: var(--font-head);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
}

.services-cta-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.services-cta-btn-main {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9);
    background-size: 300% 100%;
    animation: waterFlow 4s linear infinite;
    color: var(--white);
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.services-cta-btn-main i {
    transition: transform 0.3s ease;
}

.services-cta-btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(8, 223, 250, 0.35);
    color: var(--white);
}

.services-cta-btn-main:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .services-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .services-cta-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .services-cta-title {
        font-size: 28px;
    }
}

/* ============================================
   Contact Us Page
   ============================================ */

/* Contact Info Cards */
.contact-info-cards .c-info-card {
    background: var(--white);
    border: 1.5px solid var(--teal-lt);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.06);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}


.contact-info-cards .c-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(9, 58, 88, 0.12);
    border-color: transparent;
}

.contact-info-cards .c-info-card:hover .water-wave-layer {
    top: 0%;
}

.c-info-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(8, 223, 250, 0.15);
    color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: background 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-info-cards .c-info-card:hover .c-info-icon {
    background: var(--cyan);
    color: var(--white);
    transform: scale(1.1);
}

.c-info-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.contact-info-cards .c-info-card:hover .c-info-title {
    color: #000000;
}

.c-info-desc {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.contact-info-cards .c-info-card:hover .c-info-desc {
    color: #000000;
}

.c-info-desc a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.c-info-desc a:hover {
    color: var(--cyan);
}

/* Contact Form Wrapper */
.c-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(9, 58, 88, 0.08);
    border: 1px solid rgba(9, 58, 88, 0.05);
}

.c-form-title {
    font-family: var(--font-head);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 30px;
}

.c-input-group {
    position: relative;
}

.c-input-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--teal-lt);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.c-textarea-group i {
    top: 24px;
    transform: none;
}

.c-form-control {
    width: 100%;
    background: #f8fbff;
    border: 1px solid rgba(9, 58, 88, 0.1);
    border-radius: 12px;
    padding: 16px 20px 16px 50px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.c-form-control::placeholder {
    color: rgba(9, 58, 88, 0.6);
}

.c-form-control:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(8, 223, 250, 0.1);
    background: var(--white);
}

.c-form-control:focus+i,
.c-input-group:focus-within i {
    color: var(--cyan);
}

.c-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2305284B' opacity='0.5' d='M10.293 3.293a1 1 0 0 1 1.414 1.414l-5 5a1 1 0 0 1-1.414 0l-5-5a1 1 0 1 1 1.414-1.414L6 7.586l4.293-4.293z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.c-submit-btn {
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-head);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9);
    background-size: 300% 100%;
    animation: waterFlow 4s linear infinite;
    color: var(--white);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 223, 250, 0.35);
    color: var(--white);
}

/* Benefits Check Icon */
.c-check-icon {
    width: 24px;
    height: 24px;
    background: var(--grad-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Map Section */
.contact-map-section {
    line-height: 0;
}

.c-map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(100%) contrast(1.1) brightness(1.05);
    transition: filter 0.5s ease;
}

.c-map-iframe:hover {
    filter: grayscale(0%) contrast(1) brightness(1);
}

@media (max-width: 767.98px) {
    .c-form-wrapper {
        padding: 30px 20px;
    }

    .c-map-iframe {
        height: 350px;
    }
}

/* ===========================
   Animations (Scroll Reveal & Typewriter)
   =========================== */

/* ── Reveal on Scroll (Desktop only) ── */
@media (min-width: 992px) {
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-left {
        transform: translateX(-30px);
    }

    .reveal-right {
        transform: translateX(30px);
    }

    .reveal-on-scroll.reveal-visible {
        opacity: 1;
        transform: translate(0);
    }
}

/* ── Typewriter effect for Headings (All screens) ── */
@keyframes typewriter-fade-reveal {
    0% {
        clip-path: inset(-50% 100% -50% -50%);
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    40% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        clip-path: inset(-50% -50% -50% -50%);
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

h2.typewriter,
.feature-title.typewriter,
.inner-banner-content h1.typewriter,
.banner-title.typewriter,
.service-card h3.typewriter,
.why-item h4.typewriter {
    opacity: 0;
}

h2.typewriter.typewriter-visible,
.feature-title.typewriter.typewriter-visible,
.inner-banner-content h1.typewriter.typewriter-visible,
.banner-title.typewriter.typewriter-visible,
.service-card h3.typewriter.typewriter-visible,
.why-item h4.typewriter.typewriter-visible {
    animation: typewriter-fade-reveal var(--typewriter-duration) cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    .reveal-on-scroll,
    h2.typewriter,
    .feature-title.typewriter,
    .inner-banner-content h1.typewriter,
    .banner-title.typewriter,
    .service-card h3.typewriter,
    .why-item h4.typewriter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        clip-path: none !important;
    }
}

/* ============================================
   QUOTE POPUP MODAL
   ============================================ */
.quote-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

.quote-popup {
    position: relative;
    width: 90%;
    max-width: 560px;
    background: rgba(5, 40, 75, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-popup-overlay.active .quote-popup {
    transform: translateY(0) scale(1);
}

.quote-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quote-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.quote-popup-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    margin: 0 0 10px;
    text-align: center;
}

.quote-popup-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 0 30px;
}

.quote-popup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-popup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-popup-field {
    display: flex;
    flex-direction: column;
}

.quote-popup-field label {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-popup-field input,
.quote-popup-field select,
.quote-popup-field textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.quote-popup-field input::placeholder,
.quote-popup-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quote-popup-field input:focus,
.quote-popup-field select:focus,
.quote-popup-field textarea:focus {
    border-bottom-color: var(--cyan);
}

.quote-popup-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2308e3fb' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    cursor: pointer;
}

.quote-popup-field select option {
    background: var(--navy);
    color: var(--white);
}

.quote-popup-field textarea {
    resize: none;
    min-height: 80px;
}

@media (max-width: 575.98px) {
    .quote-popup {
        padding: 32px 24px;
    }

    .quote-popup-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quote-popup-title {
        font-size: 24px;
    }
}

/* ============================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ============================================ */
@media (max-width: 991.98px) {

    /* Global Typography & Spacing */
    .section-title {
        font-size: 34px !important;
    }

    .banner-title {
        font-size: 42px !important;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Banner & Header */
    .banner-content {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .banner {
        min-height: 600px;
    }

    /* About Us */
    .about-img {
        height: 400px;
    }

    .about-right-image {
        display: none;
        /* Hide decorative floating items on smaller screens */
    }

    /* Why Choose Us & Quote Form */
    .why-us p.lead-text {
        margin-bottom: 24px;
    }

    .quote-panel {
        padding: 32px 24px;
        margin-top: 24px;
    }

    /* Services */
    .services-right-image {
        display: none;
    }
}

@media (max-width: 767.98px) {

    /* Global Typography */
    .section-title {
        font-size: 28px !important;
    }

    .banner-title {
        font-size: 34px !important;
    }

    /* Section Spacing */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Banner */
    .banner-content .cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .banner-content .cta-row .btn-cyan,
    .banner-content .cta-row .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    /* About Us */
    .about-img {
        height: 320px;
    }

    .contact-badge {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .contact-badge-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .contact-badge .badge-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .contact-badge .badge-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }

    .contact-badge .badge-label,
    .contact-badge .badge-phone {
        font-size: 18px;
        line-height: 1.2;
    }

    /* Why Us / Quote Form */
    .quote-form-field {
        font-size: 14px;
    }

    .quote-panel h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    /* Footer & Layouts */
    .c-info-card {
        padding: 24px !important;
    }

    .process-step {
        padding: 20px 16px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px 20px;
    }

    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: none;
        /* Hide navigation arrows on small mobile, rely on drag/pagination */
    }

    /* Services CTA */
    .services-cta-inner {
        padding: 30px 20px;
    }

    .services-cta-title {
        font-size: 24px;
    }
}


/* ============================================
   SINGLE SERVICE PAGE
   ============================================ */

.single-service-section {
    padding: 80px 0 100px;
    background: #f8fbff;
}

/* Featured image */
.single-service-section .single-service-featured {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 36px;
    border: 1.5px solid var(--teal-lt);
    box-shadow: 0 10px 30px rgba(9, 58, 88, 0.05);
}

.single-service-section .single-service-featured img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.single-service-section .single-service-featured:hover img {
    transform: scale(1.03);
}

/* Content body */
.single-service-section .single-service-body {
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    opacity: 0.9;
}

.single-service-section .single-service-body h2,
.single-service-section .single-service-body h3,
.single-service-section .single-service-body h4 {
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 400;
    margin: 28px 0 16px;
}

.single-service-section .single-service-body h2 {
    font-size: 32px;
    padding-left: 18px;
    border-left: 4px solid var(--cyan);
}

.single-service-section .single-service-body h3 {
    font-size: 26px;
    color: var(--navy);
}

.single-service-section .single-service-body h4 {
    font-size: 20px;
    color: var(--teal-dk);
}

.single-service-section .single-service-body p {
    margin-bottom: 20px;
}

.single-service-section .single-service-body ul,
.single-service-section .single-service-body ol {
    padding-left: 20px;
    margin-bottom: 24px;
}

.single-service-section .single-service-body li {
    margin-bottom: 10px;
}

.single-service-section .single-service-body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 15px 35px rgba(9, 58, 88, 0.1);
}

.single-service-section .single-service-body a {
    color: var(--teal-lt);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-service-section .single-service-body a:hover {
    color: var(--cyan);
}

.single-service-section .single-service-body blockquote {
    border-left: 4px solid var(--cyan);
    padding: 24px 30px;
    margin: 32px 0;
    background: rgba(8, 223, 250, 0.06);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--navy);
    font-size: 18px;
}

/* ---- Sidebar — scoped to service page ---- */
.single-service-section .service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Services list */
.sidebar-services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 10px;
}

.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 15px;
    text-decoration: none;
    border-radius: 12px;
    background: rgba(9, 58, 88, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Liquid flow animation on sidebar links */
.sidebar-services-list li a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 100%, rgba(8, 223, 250, 0.2) 0%, rgba(9, 58, 88, 0.05) 50%, transparent 100%);
    border-radius: 40%;
    transform: translateX(-25%);
    transition: top 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.sidebar-services-list li a i {
    font-size: 12px;
    color: var(--teal-lt);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.4s ease;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li.active a {
    background: transparent;
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(8, 223, 250, 0.15);
}

.sidebar-services-list li a:hover::before,
.sidebar-services-list li.active a::before {
    top: 0%;
    animation: slowSpin 6s linear infinite;
}

.sidebar-services-list li.active a {
    background: rgba(8, 223, 250, 0.1);
    border-left: 4px solid var(--cyan);
    border-radius: 0 12px 12px 0;
}

.sidebar-services-list li a:hover i,
.sidebar-services-list li.active a i {
    transform: translateX(4px);
    color: var(--cyan);
}

/* Why Choose Us features list */
.sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(9, 58, 88, 0.06);
}

.sidebar-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-features li i {
    color: var(--cyan);
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .single-service-section {
        padding: 60px 0;
    }

    .single-service-section .service-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .single-service-section {
        padding: 40px 0;
    }
}
/* Remove large horizontal padding on mobile/tablet for containers */
@media (max-width: 991.98px) {
    .container.px-5 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

/* Testimonial Stars Refinement */
.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars .fa-star {
    color: #319F43;
    font-size: 14px;
}

/* Testimonial Floating Decoration */
.testimonials-wrapper {
    position: relative;
}

.section-floating-star {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-24%, 80%);
    z-index: 1;
    pointer-events: none;
    max-width: 150px;
    font-size: 150px;
    color: rgba(6, 152, 217, 0.05); /* Very subtle cyan */
    animation: starFloat 6s ease-in-out infinite;
    transform-origin: center;
}

.testimonials-page-section .section-floating-star {
    right: 50px;
    top: 100px;
    color: rgba(49, 159, 67, 0.05); /* Subtle green for page */
}

@keyframes starFloat {
    0% {
        transform: translate(-24%, 80%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-24%, 68%) rotate(8deg) scale(1.06);
    }
    50% {
        transform: translate(-24%, 80%) rotate(0deg) scale(1);
    }
    75% {
        transform: translate(-24%, 92%) rotate(-8deg) scale(0.95);
    }
    100% {
        transform: translate(-24%, 80%) rotate(0deg) scale(1);
    }
}

/* Card Hover Star Animation */
.testimonial-card:hover .testimonial-stars i {
    animation: starPulse 0.5s ease-in-out infinite alternate;
}

.testimonial-card:hover .testimonial-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:hover .testimonial-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:hover .testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(49, 159, 67, 0));
    }
    to {
        transform: scale(1.2);
        filter: drop-shadow(0 0 5px rgba(49, 159, 67, 0.5));
    }
}

/* ─────────────────────────────────────────
    MOBILE NAV REFINEMENT (Simple Dropdown)
───────────────────────────────────────── */
@media (max-width: 991.98px) {
    .site-header {
        position: absolute !important; /* Non-sticky */
        background: transparent;
        padding: 5px 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        width: 100%;
        margin-top: 0;
        padding: 112px 22px 24px;
        background: rgba(9, 58, 88, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-panel-close {
        position: absolute;
        top: 22px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.95);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
        transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
        z-index: 2;
        cursor: pointer;
    }

    .nav-panel-close:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(8, 223, 250, 0.22);
    }

    .nav-panel-close:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 3px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-nav {
        text-align: left;
    }

    .navbar .nav-link {
        font-size: 18px !important;
        padding: 14px 10px !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background 0.18s ease, color 0.18s ease;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus-visible {
        background: rgba(255, 255, 255, 0.06);
        color: var(--cyan) !important;
    }

    .navbar .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-toggler {
        padding: 0;
        margin-left: auto; /* Push to right */
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
        transition: transform 0.18s ease, background 0.18s ease;
    }

    .navbar-toggler:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.12);
    }

    .navbar-toggler:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 3px;
    }

    .hamburger-icon {
        width: 22px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
    }

    .hamburger-icon span {
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: 0.3s;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar-brand img {
        width: 140px !important;
        height: auto !important;
    }

    /* Dropdowns in mobile panel */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        padding: 6px 0 10px;
        margin: 0 0 6px;
        box-shadow: none !important;
    }

    .navbar .dropdown-item {
        font-family: var(--font-body);
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 14px;
        border-radius: 10px;
        margin-left: 10px;
        margin-right: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        color: var(--white);
        background: rgba(8, 223, 250, 0.14);
        border-color: rgba(8, 223, 250, 0.22);
    }
}


/* WP FORMS OVERIDE DESIGN */
/** 
 * WPForms Styling Overrides 
 * Mapping static styles to WPForms classes
 */
.quote-panel .wpforms-container {
    margin: 0;
}

.quote-panel .wpforms-form .wpforms-field {
    padding: 0;
    margin-bottom: 25px;
}

.quote-panel .wpforms-form .wpforms-field input,
.quote-panel .wpforms-form .wpforms-field textarea,
.quote-panel .wpforms-form .wpforms-field select {
    width: 100% !important;
    background: transparent !important;
    border: 1px solid var(--white) !important;
    border-radius: 5px !important;
    padding: 12px 14px !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
}

.quote-panel .wpforms-form .wpforms-field input:focus,
.quote-panel .wpforms-form .wpforms-field textarea:focus {
    border-color: var(--cyan) !important;
}

.quote-panel .wpforms-form .wpforms-field input::placeholder,
.quote-panel .wpforms-form .wpforms-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

.quote-panel .wpforms-submit-container {
    padding: 0 !important;
    margin-top: 10px !important;
}

.quote-panel .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9) !important;
    background-size: 300% 100% !important;
    animation: waterFlow 4s linear infinite !important;
    color: var(--white) !important;
    font-family: var(--font-head) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 18px 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: opacity 0.3s, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.quote-panel .wpforms-submit:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 25px rgba(8, 223, 250, 0.35) !important;
}

/* Hide labels to match the placeholder-only aesthetic of the static design */
.quote-panel .wpforms-field-label {
    display: none !important;
}

/* Fix for WPForms default spacing */
.quote-panel .wpforms-field-container {
    padding: 0 !important;
}

/* Fix for Phone Field Flag/Placeholder Clash */
.quote-panel .wpforms-form .wpforms-field-phone input,
.quote-panel .wpforms-form .iti input[type=tel] {
    padding-left: 52px !important;
}



.c-form-wrapper .wpforms-submit-container {
    padding: 0 !important;
    margin-top: 10px !important;
}

.c-form-wrapper .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: linear-gradient(90deg, #08e3fb, #0698d9, #08e3fb, #0698d9) !important;
    background-size: 300% 100% !important;
    animation: waterFlow 4s linear infinite !important;
    color: var(--white) !important;
    font-family: var(--font-head) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 18px 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: opacity 0.3s, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.c-form-wrapper .wpforms-submit:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 25px rgba(8, 223, 250, 0.35) !important;
}
