:root {
    --primary-blue: #003366;
    --accent-green: #a8d5ba;
    --light-gray: #f4f7f6;
    --text-dark: #333;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== RESPONSIVE NAVBAR ===== */
/* 
.navbar {
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 54px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.6rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #002244;
} */


/* ===== NAVBAR ===== */
.navbar {
padding: 1rem 8%;
display: flex;
align-items: center;
justify-content: space-between;
background: #fff;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo {
height: 56px;
}

/* Hide checkbox */
.nav-toggle {
display: none;
}

/* Desktop menu */
.nav-links {
list-style: none;
display: flex;
gap: 1.6rem;
}

.nav-links a {
text-decoration: none;
color: var(--primary-blue);
font-weight: 600;
white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-toggle span {
width: 26px;
height: 3px;
background: var(--primary-blue);
margin: 4px 0;
border-radius: 2px;
}

/* Mobile */
@media (max-width: 900px) {
.menu-toggle {
display: flex;
}

.nav-links {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
flex-direction: column;
align-items: center;
gap: 1.2rem;
padding: 20px 0;
display: none;
box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Show menu when checkbox is checked */
.nav-toggle:checked + .menu-toggle + .nav-links {
display: flex;
}
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 26px;
    background: var(--primary-blue);
    margin: 4px 0;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 22px 0;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .nav-links.active {
        display: flex;
    }
}


.hero {
    background: linear-gradient(135deg, #003366, #002244);
    color: var(--white);
    min-height: calc(100svh - 88px);
    padding: clamp(72px, 9vh, 110px) 8%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 48px;
}

.hero-copy {
    text-align: left;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease forwards;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeUp 1s ease forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.hero-secondary {
    color: #dce9f7;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-secondary:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
    min-height: 420px;
    perspective: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stack {
    position: relative;
    width: min(100%, 420px);
    height: 360px;
    transform-style: preserve-3d;
    animation: heroFloat 9s ease-in-out infinite;
}

.hero-panel {
    position: absolute;
    inset: auto 0 0 auto;
    width: 100%;
    border-radius: 28px;
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1.25;
    margin-top: 10px;
}

.hero-panel-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.hero-panel-back {
    top: 12px;
    left: 28px;
    width: 78%;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.20), rgba(255, 255, 255, 0.08));
    transform: translateZ(-80px) rotateX(10deg) rotateY(-16deg);
}

.hero-panel-mid {
    top: 74px;
    right: 12px;
    width: 82%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(130, 184, 255, 0.10));
    transform: translateZ(-20px) rotateX(8deg) rotateY(12deg);
}

.hero-panel-front {
    bottom: 8px;
    left: 0;
    width: 88%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.08));
    transform: translateZ(32px) rotateX(-2deg) rotateY(-8deg);
}

.hero-metrics {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #eef6ff;
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.9;
}

.hero-orb-one {
    width: 180px;
    height: 180px;
    top: 16px;
    left: 18px;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.50), rgba(168, 213, 186, 0.04));
    animation: orbPulse 7s ease-in-out infinite;
}

.hero-orb-two {
    width: 140px;
    height: 140px;
    right: 12px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(120, 176, 255, 0.34), rgba(120, 176, 255, 0.04));
    animation: orbPulse 8s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0);
    }
    50% {
        transform: rotateY(4deg) rotateX(-2deg) translateY(-10px);
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08) translateY(-8px);
        opacity: 1;
    }
}

.proof-strip {
    min-height: 100svh;
    padding: clamp(60px, 8vh, 90px) 8%;
    background: #f4f7f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.proof-strip-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.proof-grid {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 24px;
}

.proof-strip-heading h2 {
    color: var(--primary-blue);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.proof-strip-heading p {
    color: #56606b;
    font-size: 1rem;
    line-height: 1.65;
}

.proof-item {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 16px;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 51, 102, 0.16);
}

.proof-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 0;
}

.proof-item h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 6px;
}

.proof-item p {
    color: #56606b;
    font-size: 0.92rem;
    line-height: 1.55;
}

.client-logos {
    padding: 54px 8%;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-logos-header {
    max-width: 620px;
    margin: 0 auto 24px;
}

.client-logos-label {
    color: #6a7480;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.client-logos-header h2 {
    color: var(--primary-blue);
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.18;
    margin-bottom: 10px;
}

.client-logos-header p {
    color: #56606b;
    font-size: 0.98rem;
    line-height: 1.65;
}

.client-logo-grid {
    width: min(100%, 820px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.client-logo-card {
    min-height: 84px;
    background: #fff;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 51, 102, 0.16);
}

.client-logo-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.96;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo-card:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.client-logo-text span {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.94rem;
    line-height: 1.35;
}

/* New About */

.home-about {
    min-height: 100svh;
    padding: clamp(70px, 9vh, 100px) 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(168, 213, 186, 0.18), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(118, 176, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbfe 0%, #edf3f9 100%);
}

.home-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
    pointer-events: none;
}

.home-about::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    right: -110px;
    bottom: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.10), rgba(0, 51, 102, 0.01) 70%);
    pointer-events: none;
}

.home-about-content::before {
    content: '';
    position: absolute;
    top: 26px;
    right: 22px;
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at top left, rgba(118, 176, 255, 0.20), transparent 55%);
    border: 1px solid rgba(0, 51, 102, 0.06);
    transform: rotate(10deg);
    opacity: 0.9;
    pointer-events: none;
    animation: aboutFloatShape 9s ease-in-out infinite;
}

.home-about-content::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 120px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.95), rgba(168, 213, 186, 0.35));
    box-shadow:
        34px -22px 0 4px rgba(118, 176, 255, 0.16),
        82px -6px 0 1px rgba(0, 51, 102, 0.10);
    opacity: 0.9;
    pointer-events: none;
    animation: aboutFloatDots 8s ease-in-out infinite;
}

.home-about-content {
    max-width: 1180px;
    margin: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 56px;
    align-items: center;
    min-height: calc(100svh - 180px);
}

.home-about-copy {
    text-align: left;
    max-width: 760px;
    padding-right: 10px;
}

.about-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-subheading {
    color: #56606b;
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-about h2 {
    position: relative;
}

.home-about h2::after {
    content: '';
    display: block;
    width: 92px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-blue), #5d8fc6, var(--accent-green));
    box-shadow: 0 0 20px rgba(93, 143, 198, 0.16);
}

.about-points {
    margin-top: 28px;
    display: grid;
    gap: 22px;
}

.about-point {
    position: relative;
    padding: 24px 28px 24px 34px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(248, 252, 255, 0.72));
    border: 1px solid rgba(0, 51, 102, 0.07);
    box-shadow:
        0 18px 36px rgba(18, 48, 84, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-point:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 44px rgba(18, 48, 84, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.98) inset;
    border-color: rgba(0, 51, 102, 0.11);
}

.about-point::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 14px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-blue), #5d8fc6, var(--accent-green));
    box-shadow: 0 0 18px rgba(93, 143, 198, 0.18);
}

.about-point::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 58%),
        radial-gradient(circle at top right, rgba(118, 176, 255, 0.08), transparent 34%);
    pointer-events: none;
}

.about-point strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.08rem;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.about-point span {
    display: block;
    color: #5a6470;
    line-height: 1.8;
    font-size: 0.99rem;
}

.about-side {
    display: grid;
    gap: 24px;
    align-content: start;
    padding-top: 12px;
}

.about-side-intro {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.10);
}

.about-side-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-side-intro p {
    margin: 0;
    color: #56606b;
    line-height: 1.8;
}

.about-side-list {
    display: grid;
    gap: 20px;
    position: relative;
}

.about-side-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 0;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
    border-radius: 16px;
}

.about-side-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.44);
    padding-left: 10px;
}

.about-side-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 51, 102, 0.10), rgba(118, 176, 255, 0.10));
    color: var(--primary-blue);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(18, 48, 84, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-side-item:hover .about-side-number {
    transform: scale(1.05);
    box-shadow: 0 14px 28px rgba(18, 48, 84, 0.12);
}

.about-side-item strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.06rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

.about-side-item p {
    margin: 0;
    color: #5a6470;
    line-height: 1.75;
}

@keyframes aboutFloatShape {
    0%, 100% {
        transform: rotate(10deg) translateY(0);
    }
    50% {
        transform: rotate(16deg) translateY(-10px);
    }
}

@keyframes aboutFloatDots {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.82;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.home-about h2 {
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-about p {
    color: #56606b;
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 760px;
}

.home-about .btn {
    margin-top: 26px;
}



.btn {
    background: var(--accent-green);
    color: var(--primary-blue);
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.services {
    position: relative;
    min-height: 100svh;
    padding: clamp(70px, 8vh, 100px) 8%;
    background:
        linear-gradient(120deg, rgba(246, 250, 252, 0.92), rgba(255, 255, 255, 0.82)),
        url('../assets/ourservices.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
    z-index: 0;
}

.services>* {
    position: relative;
    z-index: 1;
}

.services-header,
.projects-header,
.why-header,
.process-header,
.trusted-header {
    max-width: 880px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-kicker,
.why-kicker,
.process-kicker,
.trusted-kicker,
.proof-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-kicker::before,
.services-kicker::after,
.why-kicker::before,
.why-kicker::after,
.process-kicker::before,
.process-kicker::after,
.trusted-kicker::before,
.trusted-kicker::after,
.proof-kicker::before,
.proof-kicker::after {
    content: '';
    width: 34px;
    height: 1px;
    background: rgba(0, 51, 102, 0.28);
}

.services h2,
.why h2,
.process-section h2,
.trusted-section h2 {
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.services-header p,
.why-header p,
.process-header p,
.trusted-header p {
    color: #4f5b67;
    font-size: 1.06rem;
    line-height: 1.75;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.services-grid {
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-card-link {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.94));
    box-shadow: 0 18px 42px rgba(18, 48, 84, 0.07);
    overflow: hidden;
}

.service-card-link::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #7eb7d8, var(--accent-green));
    transform: scaleX(0.32);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-link:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: #eef5fb;
    color: var(--primary-blue);
    box-shadow: inset 0 0 0 1px rgba(0, 51, 102, 0.08);
}

.service-icon i {
    font-size: 1.45rem;
    margin: 0;
    color: inherit;
}

.service-count {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(0, 51, 102, 0.16);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.service-card-link h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.service-card-link p {
    color: #55606c;
    line-height: 1.68;
    flex-grow: 1;
}

.service-meta {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    color: #4f6b7c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
}

.service-card-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.service-card-link:hover .service-card-cta i {
    transform: translateX(4px);
}

.service-card-cta i {
    transition: transform 0.3s ease;
}

.services-note {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    color: #4e5e68;
    font-size: 0.98rem;
    line-height: 1.65;
    padding: 18px 22px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 32px rgba(18, 48, 84, 0.05);
}

.projects-section {
    min-height: 100svh;
    padding: clamp(70px, 8vh, 100px) 8%;
    background:
        linear-gradient(135deg, rgba(6, 28, 52, 0.96), rgba(0, 51, 102, 0.92)),
        radial-gradient(circle at 18% 16%, rgba(168, 213, 186, 0.18), transparent 30%),
        #062342;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.projects-header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.projects-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.projects-header h2 {
    color: #ffffff;
    font-size: 2.55rem;
    line-height: 1.18;
    margin-bottom: 16px;
}

.projects-header p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.projects-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 28px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), #8fc7e8, var(--primary-blue));
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 68px rgba(0, 0, 0, 0.24);
    border-color: rgba(168, 213, 186, 0.42);
}

.featured-project {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.project-icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 51, 102, 0.10), rgba(168, 213, 186, 0.28));
    color: var(--primary-blue);
    font-size: 1.55rem;
}

.project-type {
    display: inline-block;
    margin-bottom: 8px;
    color: #4f6b7c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.project-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.project-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4f5b67;
    font-size: 0.86rem;
    font-weight: 700;
}

.project-meta-row i {
    color: var(--primary-blue);
    font-size: 0.84rem;
}

.project-card p {
    color: #56606b;
    line-height: 1.68;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tags span {
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(168, 213, 186, 0.28);
    color: #163d63;
    font-size: 0.82rem;
    font-weight: 700;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
    padding-top: 4px;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* Why Choose Us */
.why {
    min-height: 100svh;
    padding: clamp(70px, 8vh, 90px) 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(168, 213, 186, 0.18), transparent 24%),
        radial-gradient(circle at 88% 22%, rgba(118, 176, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #f9fcff 0%, #f2f7fc 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.12;
    pointer-events: none;
}

.why-header {
    position: relative;
    z-index: 1;
}

.why-grid {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-item {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    padding: 28px 26px;
    border-radius: 22px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 18px 40px rgba(18, 48, 84, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(18, 48, 84, 0.10);
    border-color: rgba(0, 51, 102, 0.14);
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #5d8fc6, var(--accent-green));
}

.why-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(0, 51, 102, 0.08);
    font-size: 1.45rem;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.why-item h4 {
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 1.15rem;
}

.why-item p {
    color: #56606b;
    line-height: 1.7;
}

.process-section {
    min-height: 100svh;
    padding: clamp(70px, 8vh, 90px) 8%;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.08);
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.process-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.process-card p {
    color: #56606b;
    line-height: 1.7;
}


/* TRusted by business */


.trusted-section {
    min-height: 100svh;
    padding: clamp(70px, 8vh, 90px) 8%;
    background: linear-gradient(135deg, #f7fafc, #eef3f8);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trusted-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.trusted-card {
    background: #fff;
    padding: 38px 30px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.trusted-card i {
    font-size: 2.4rem;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.trusted-card h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trusted-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-stack {
    max-width: 1100px;
    margin: 34px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 51, 102, 0.12);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.tech-pill i {
    color: var(--primary-blue);
}

/* Mobile */
@media (max-width: 600px) {
    .proof-strip {
        padding: 20px 6%;
    }

    .client-logos {
        padding: 28px 6% 18px;
    }

    .trusted-section {
        padding: 70px 6%;
    }

    .trusted-section h2 {
        font-size: 2.2rem;
    }
}


.contact {
    padding: 80px 8%;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}


.contact-hero {
    position: relative;
    min-height: 100svh;
    padding: clamp(80px, 10vh, 140px) 8%;
    background: linear-gradient(135deg, #f7fafc, #eef3f8);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left,
            rgba(210, 228, 245, 0.8),
            transparent 65%);
    z-index: 0;
}

.contact-illustration {
    position: absolute;
    bottom: 40px;
    left: 46%;
    transform: translateX(-50%);
    width: 360px;
    z-index: 1;
}

.contact-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    z-index: 2;
}


/* Left text */
.contact-left {
    max-width: 560px;
    padding-top: 80px;
}

.contact-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-left h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.15;
}

.contact-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 36px;
}


.contact-details {
    display: grid;
    gap: 12px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
}

.contact-card {
    background: #fff;
    padding: 50px;
    width: 460px;
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.14);
    margin-top: 20px;
}

.contact-card h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form textarea {
    resize: none;
}

/* ===== LOADING SPINNER ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 22px;
    height: 22px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== TOAST MESSAGE ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    color: #003366;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left: 5px solid #4CAF50;
}

.toast.error {
    border-left: 5px solid #F44336;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 70px 6%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-stack {
        width: min(100%, 360px);
        height: 300px;
    }

    .hero-panel {
        padding: 22px;
    }

    .hero-panel strong {
        font-size: 1.28rem;
    }

    .services {
        background-size: contain;
        background-position: top center;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-kicker {
        font-size: 0.72rem;
    }

    .hero-stack {
        width: min(100%, 310px);
        height: 270px;
    }

    .home-about {
        padding: 70px 6%;
    }

    .home-about-content {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .home-about-content::before,
    .home-about-content::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-header h2 {
        font-size: 2.1rem;
    }

    .project-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

@media (max-width: 900px) {
    .contact-illustration {
        display: none;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-card {
        width: 100%;
    }
}

.site-footer {
    background: #0f2f57;
    color: #ffffff;
    padding: 60px 8% 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a8d5ba;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: #a8d5ba;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Back to top button */
.back-to-top {
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: #a8d5ba;
    color: #003366;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 600px) {
    .site-footer {
        padding: 40px 6% 25px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

/* ============================================================
ENHANCEMENTS: Floating Buttons, Contact, Fonts, Hero Trust,
Project Logos, Nav CTA, Footer Logo, Status badges
============================================================ */

/* Fonts: keeping original Inter/Arial as per site design */

/* ===== NAV CTA BUTTON ===== */
.nav-cta-link {
background: var(--primary-blue);
color: #fff !important;
padding: 8px 20px;
border-radius: 50px;
font-weight: 700 !important;
transition: background 0.25s ease, transform 0.25s ease !important;
}

.nav-cta-link:hover {
background: #002244 !important;
transform: translateY(-2px);
}

/* ===== HERO TRUST BAR ===== */
.hero-trust-bar {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-trust-bar span {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.88rem;
font-weight: 600;
color: rgba(255,255,255,0.82);
}

.hero-trust-bar .fa-circle-check {
color: var(--accent-green);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
position: fixed;
bottom: 28px;
right: 28px;
display: flex;
flex-direction: column;
gap: 14px;
z-index: 9999;
}

.float-btn {
width: 56px;
height: 56px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 6px 24px rgba(0,0,0,0.25);
transition: transform 0.25s ease, box-shadow 0.25s ease;
font-size: 1.45rem;
color: #fff;
position: relative;
}

.float-btn:hover {
transform: translateY(-4px) scale(1.08);
box-shadow: 0 12px 32px rgba(0,0,0,0.32);
}

.float-btn.whatsapp {
background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn.call {
background: linear-gradient(135deg, #003366, #005599);
}

.float-btn .float-tooltip {
position: absolute;
right: 68px;
background: #1a1a2e;
color: #fff;
padding: 6px 12px;
border-radius: 8px;
font-size: 0.78rem;
font-weight: 600;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
}

.float-btn:hover .float-tooltip {
opacity: 1;
}

/* ===== PROJECT LOGO AREA ===== */
.project-logo-area {
width: 62px;
height: 62px;
border-radius: 14px;
background: linear-gradient(135deg, rgba(0,51,102,0.06), rgba(168,213,186,0.12));
border: 1.5px solid rgba(0,51,102,0.12);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.project-logo-area img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 8px;
}

.project-logo-area .logo-placeholder {
font-size: 1.6rem;
color: rgba(0,51,102,0.35);
}

/* ===== PROJECT STATUS BADGES ===== */
.status-live {
color: #1a8a4a !important;
background: rgba(26,138,74,0.1);
padding: 3px 10px;
border-radius: 999px;
font-size: 0.82rem !important;
}

.status-maintained {
color: #1a5fa8 !important;
background: rgba(26,95,168,0.1);
padding: 3px 10px;
border-radius: 999px;
font-size: 0.82rem !important;
}

.status-progress {
color: #c47a00 !important;
background: rgba(196,122,0,0.1);
padding: 3px 10px;
border-radius: 999px;
font-size: 0.82rem !important;
}

/* ===== CONTACT LINKS ===== */
.contact-detail a {
color: var(--primary-blue);
text-decoration: none;
font-weight: 600;
transition: color 0.2s;
}

.contact-detail a:hover {
color: #005599;
text-decoration: underline;
}

.contact-phones {
display: flex;
flex-direction: column;
gap: 4px;
}

.contact-phones a {
color: var(--primary-blue);
text-decoration: none;
font-weight: 600;
font-size: 0.97rem;
transition: color 0.2s;
}

.contact-phones a:hover {
color: #005599;
text-decoration: underline;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
height: 44px;
margin-bottom: 14px;
display: block;
background: rgba(255, 255, 255, 0.92);
padding: 6px 12px;
border-radius: 10px;
object-fit: contain;
}

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

.footer-social a {
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.18);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 0.95rem;
text-decoration: none;
transition: background 0.25s, transform 0.25s;
}

.footer-social a:hover {
background: var(--accent-green);
color: var(--primary-blue);
transform: translateY(-3px);
}

.footer-contact a {
color: rgba(255,255,255,0.85);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}

.footer-contact a:hover {
color: var(--accent-green);
}

/* ===== MOBILE FLOATING BTNS ===== */
@media (max-width: 600px) {
.floating-btns {
bottom: 20px;
right: 16px;
}
.float-btn {
width: 50px;
height: 50px;
font-size: 1.25rem;
}
.float-btn .float-tooltip {
display: none;
}
.hero-trust-bar {
justify-content: center;
}
}

/* ===== CONTACT PHONE INPUT ===== */
.contact-form input[type="tel"] {
padding: 14px 16px;
border-radius: 10px;
border: 1px solid #ddd;
}