:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #cffafe;
    --teal: #06b6d4;
    --cyan: #22d3ee;
    --accent: #6366f1;
    --accent2: #8b5cf6;
    --sky: #e0f7ff;
    --white: #ffffff;
    --text: #0f2036;
    --muted: #4a6882;
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.9);
    --radius: 20px;
    --shadow: 0 8px 40px rgba(8, 145, 178, 0.13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #e8f6fb;
    color: var(--text);
    overflow-x: hidden;
}

/* ─── ANIMATED BG ─── */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(6, 182, 212, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 10%, rgba(99, 102, 241, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 90%, rgba(8, 145, 178, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 50%, #e8f6fb 0%, #dff2ff 50%, #eaf4fe 100%);
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: orbDrift linear infinite;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4, #0891b2);
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, #6366f1);
    top: 40%;
    right: -150px;
    animation-duration: 25s;
    animation-delay: -8s;
}

.orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #22d3ee, #0891b2);
    bottom: -80px;
    left: 30%;
    animation-duration: 18s;
    animation-delay: -5s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.03);
    }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(8, 145, 178, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

.wave-svg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

nav,
section,
footer,
.modal-overlay {
    position: relative;
    z-index: 10;
}

/* ─── NAVBAR ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(232, 246, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0 4px 30px rgba(8, 145, 178, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
}

.nav-logo .dot-ai {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.93rem;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ─── BUTTONS ─── */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.7rem;
    font-weight: 800;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 24px rgba(8, 145, 178, 0.35);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(8, 145, 178, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 2px solid rgba(8, 145, 178, 0.3);
    border-radius: 50px;
    padding: 0.63rem 1.7rem;
    font-weight: 800;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--text);
    color: white;
    border-color: var(--text);
    transform: translateY(-2px);
}

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ─── HERO ─── */
#home {
    min-height: 92vh;
    padding: 90px 5% 70px;
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(8, 145, 178, 0.1);
    animation: fadeUp 0.7s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero-text h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-text h1 .line-accent {
    color: var(--primary);
    display: block;
}

.hero-text h1 .line-sub {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--muted);
    display: block;
    margin-top: 0.4rem;
    letter-spacing: 0.02em;
}

.hero-text p {
    font-size: 1.08rem;
    color: var(--muted);
    margin-bottom: 2.2rem;
    font-weight: 600;
    max-width: 460px;
    line-height: 1.75;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.18), 0 0 0 1px rgba(6, 182, 212, 0.08) inset;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
    border-radius: 50%;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    border-radius: 50%;
}

/* ─── HERO CARD ICON + PILLS ─── */
.card-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.main-icon {
    font-size: 6rem;
    line-height: 1;
    filter: drop-shadow(0 10px 30px rgba(8, 145, 178, 0.35));
    animation: floatIcon 5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(2deg);
    }
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.floating-pill {
    position: static;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(6, 182, 212, 0.25);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.15);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: pillFloat 4s ease-in-out infinite;
}

.pill1 {
    animation-delay: 0s;
}

.pill2 {
    animation-delay: 1.5s;
}

.pill3 {
    animation-delay: 2.5s;
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ─── HERO STATS ─── */
.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.08);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
}

.stat-num {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    margin-top: 0.3rem;
}

/* ─── FLOATING CROSSES ─── */
.float-cross {
    position: fixed;
    font-size: 1.6rem;
    color: var(--primary);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.fc1 {
    top: 8%;
    left: 3%;
    animation: fcFloat 7s ease-in-out infinite;
}

.fc2 {
    top: 25%;
    right: 5%;
    animation: fcFloat 6s 2s ease-in-out infinite;
}

.fc3 {
    bottom: 20%;
    left: 8%;
    animation: fcFloat 8s 4s ease-in-out infinite;
}

.fc4 {
    bottom: 35%;
    right: 3%;
    animation: fcFloat 5s 1s ease-in-out infinite;
}

@keyframes fcFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-18px) rotate(20deg);
        opacity: 0.35;
    }
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 90px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 4px;
    margin: 0.8rem auto 1.5rem;
}

/* ─── ABOUT ─── */
#about {
    background: transparent;
}

.about-inner {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(8, 145, 178, 0.1);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 740px;
    margin: 0 auto;
}

.vm-card {
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: repeating-linear-gradient(45deg, white 0px, white 1px, transparent 1px, transparent 12px);
}

.vm-card.vision {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.35);
}

.vm-card.mission {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

.vm-label {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

/* ─── SOLUTION ─── */
#solution {
    background: transparent;
}

.steps-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(6, 182, 212, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.93rem;
    box-shadow: 0 4px 18px rgba(8, 145, 178, 0.12);
    margin-bottom: 3rem;
}

.steps-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.step-circle {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 10px 32px rgba(8, 145, 178, 0.32);
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.7);
}

.step-circle:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 18px 50px rgba(8, 145, 178, 0.4);
}

.step-item:nth-child(even) .step-circle {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}

.step-num {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.4;
    padding-top: 28px;
    flex-shrink: 0;
}

.step-label {
    font-weight: 800;
    font-size: 0.86rem;
    color: var(--text);
    max-width: 110px;
    line-height: 1.4;
}

/* ─── SERVICES ─── */
#services {
    background: transparent;
}

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

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(8, 145, 178, 0.2);
}

.service-header {
    padding: 1.1rem 1.5rem;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 12px);
}

.service-card:nth-child(1) .service-header {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.service-card:nth-child(2) .service-header {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}

.service-card:nth-child(3) .service-header {
    background: linear-gradient(135deg, #059669, #10b981);
}

.service-card:nth-child(4) .service-header {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.service-card:nth-child(5) .service-header {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.service-body {
    padding: 1.3rem 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(8, 145, 178, 0.07);
}

.service-item:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ─── WHY CHOOSE ─── */
#why {
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(8, 145, 178, 0.2);
}

.why-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 28px rgba(8, 145, 178, 0.3);
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: rotate(5deg) scale(1.1);
}

.why-card h3 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-weight: 600;
    line-height: 1.6;
}

.cta-wrap {
    text-align: center;
    margin-top: 1rem;
}

/* ─── CONTACT ─── */
#contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.08);
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.3);
}

.contact-item-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-item-text span {
    color: var(--muted);
    font-weight: 600;
    display: block;
    font-size: 0.8rem;
}

/* ─── FORMS ─── */
.contact-form {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: 0 10px 50px rgba(8, 145, 178, 0.12);
}

.contact-form h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--text);
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 2px solid rgba(8, 145, 178, 0.12);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 30, 50, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1.5px solid rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(8, 145, 178, 0.25);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(8, 145, 178, 0.08);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
}

.modal-box h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.modal-box>p {
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1.8rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
    background: linear-gradient(160deg, #071e2e 0%, #0a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 5% 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-top: 1rem;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: white;
    margin-bottom: 1.3rem;
}

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

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.87rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    position: relative;
    z-index: 1;
}

.dev-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
    font-size: 0.84rem;
}

.dev-credit a {
    color: var(--cyan);
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.2s;
}

.dev-credit a:hover {
    opacity: 0.75;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-logo {
    color: var(--cyan);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* ─── SUCCESS MESSAGE ─── */
.success-msg {
    display: none;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 1rem;
    text-align: center;
}

/* ─── MISC ─── */
.mandatory {
    color: red;
    font-weight: 700;
}

.contact-icon-img {
    width: 30px;
    height: 30px;
}

.solution-icon,
.why-choose-icon {
    height: 50px;
    width: 50px;
}

.hero-icon {
    height: 25px;
    width: 25px;
}

.hero-main-img {
    width: 120px;
}

.nav-logo-img,
.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s, transform 0.65s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e8f6fb;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

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

/* ── Tablet ── */
@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

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

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-badge {
        display: inline-flex;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .step-arrow {
        display: none;
    }

    .steps-track {
        gap: 1.5rem;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 140px;
        min-width: unset;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* ── Mobile ── */
@media (max-width: 700px) {
    nav {
        padding: 0 4%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(232, 246, 251, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        z-index: 998;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-btns {
        display: none;
    }

    /* Hero */
    #home {
        padding: 60px 4% 50px;
        min-height: auto;
    }

    .hero-inner {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-card {
        padding: 1.6rem 1.2rem;
        max-width: 100%;
    }

    .card-icon-wrap {
        margin-bottom: 1.2rem;
        gap: 0.8rem;
    }

    .main-icon {
        font-size: 4.5rem;
    }

    .hero-main-img {
        width: 90px;
    }

    .pills-row {
        gap: 0.4rem;
    }

    .floating-pill {
        font-size: 0.72rem;
        padding: 0.3rem 0.7rem;
    }

    .hero-icon {
        height: 20px;
        width: 20px;
    }

    .card-stats {
        gap: 0.6rem;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-lbl {
        font-size: 0.65rem;
    }

    .stat-box {
        padding: 0.8rem 0.5rem;
    }

    /* About */
    .about-inner {
        padding: 1.8rem 1.2rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Solution */
    .steps-track {
        gap: 1rem;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 calc(33% - 0.7rem);
        min-width: 85px;
    }

    .step-circle {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }

    .solution-icon {
        height: 38px;
        width: 38px;
    }

    .step-label {
        font-size: 0.76rem;
        max-width: 90px;
    }

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

    /* Why */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .why-choose-icon {
        height: 38px;
        width: 38px;
    }

    /* Contact */
    .contact-form {
        padding: 1.6rem 1.2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Modal */
    .modal-box {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
        max-height: 95vh;
    }

    /* Sections */
    section {
        padding: 60px 4%;
    }
}

/* ── Small Mobile ── */
@media (max-width: 400px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .card-stats {
        gap: 0.4rem;
    }

    .stat-box {
        padding: 0.7rem 0.4rem;
    }

    .floating-pill {
        font-size: 0.68rem;
        padding: 0.28rem 0.6rem;
    }

    .pills-row {
        gap: 0.3rem;
    }
}
