/* =============================================
   HOME.CSS — Vividhity Ventures (Redesigned)
   ============================================= */

:root {
    --blue-dark: #0f1f6e;
    --blue-mid: #1565c0;
    --blue-bright: #2979ff;
    --blue-light: #e8eaf6;
    --blue-bg: #f0f4ff;
    --teal: #00bfa5;
    --teal-light: #e0f7f4;
    --text-dark: #0b1640;
    --text-gray: #5a6a85;
    --text-light: #8a9ab5;
    --white: #ffffff;
    --card-shadow: 0 4px 24px rgba(25, 55, 130, 0.10);
    --radius: 14px;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2), transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-left.visible,
.reveal-right.visible {
    transform: none;
    opacity: 1;
}

.d1 {
    transition-delay: 0.05s;
}

.d2 {
    transition-delay: 0.15s;
}

.d3 {
    transition-delay: 0.25s;
}

.d4 {
    transition-delay: 0.35s;
}

.d5 {
    transition-delay: 0.45s;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(25, 55, 130, 0.07);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(25, 55, 130, 0.06);
    transition: background 0.3s;
}

.navbar .logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 2px;
    transition: width 0.25s;
}

.nav-links a:hover {
    color: var(--blue-bright);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact {
    font-size: 14px;
    color: var(--text-gray);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: linear-gradient(160deg, #d0dcff 0%, #eef2ff 50%, #f5f7ff 100%);
    padding: 60px 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.12), transparent 70%);
    top: -150px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.10), transparent 70%);
    bottom: 60px;
    left: -80px;
    animation: blobFloat 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.hero-pill {
    display: none;
}

@keyframes pillPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-pill .pill-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 191, 165, 0);
    }
}

.hero-left {
    padding-bottom: 32px;
    padding-top: 12px;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-family: var(--font-head);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.13;
    color: var(--text-dark);
    margin-bottom: 22px;
    animation: fadeUp 0.8s 0.1s both;
}

.hero-left h1 .highlight {
    color: #085394;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-left p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 420px;
    margin-bottom: 36px;
    line-height: 1.78;
    animation: fadeUp 0.8s 0.22s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.34s both;
}

.btn-primary {
    background: #085394;
    color: white;
    padding: 14px 28px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(5, 27, 142, 0.25);
}

.btn-primary:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 31, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: #085394;
    padding: 14px 26px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border: 1.5px solid #c0cae9;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    animation: fadeUp 0.9s 0.2s both;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 0;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 40px rgba(25, 55, 130, 0.14);
}

.hero-float-badge {
    position: absolute;
    background: white;
    border: 1px solid #e0e6f5;
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(25, 55, 130, 0.13);
    white-space: nowrap;
    z-index: 5;
    animation: badgeFloat 4s ease-in-out infinite alternate;
}

.hero-float-badge:nth-child(2) {
    animation-delay: 1s;
}

.hero-float-badge:nth-child(4) {
    animation-delay: 2s;
}

@keyframes badgeFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-7px);
    }
}

.hero-float-badge .badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.badge-green {
    background: #d4f5e9;
}

.badge-blue {
    background: #dbeafe;
}

.badge-orange {
    background: #fff3e0;
}

.badge-top-left {
    top: 10px;
    left: -10px;
}

.badge-mid-right {
    right: -10px;
    top: 42%;
    transform: translateY(-50%);
}

.badge-bottom {
    bottom: 20px;
    left: 20px;
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
    background: transparent;
    padding: 16px 0 32px;
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    border-top: none;
    grid-column: 1 / -1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
    padding: 60px 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #085394;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 520px;
    margin: 0 auto 52px;
    line-height: 1.75;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products-section {
    background: white;
}

.products-header {
    margin-bottom: 40px;
}

/* Top row: OUR PRODUCTS label (left) + subtitle (right) */
.products-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 0;
}

.products-header-top .section-label {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

/* Title sits directly below, no extra spacing */
.products-header>.section-title {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.15;
}

.section-subtitle-left {
    font-size: 13px;
    color: var(--text-gray);
    max-width: 320px;
    line-height: 1.5;
    text-align: right;
    flex-shrink: 1;
    margin: 0;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    border: 1.5px solid #e8eaf6;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(25, 55, 130, 0.14);
    transform: translateY(-6px);
    border-color: #c5cfe8;
}

.product-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.product-card:hover .product-card-img {
    transform: scale(1.03);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.green-bg {
    background: #e8f8f2;
}

.blue-bg {
    background: #dbeafe;
}

.yellow-bg {
    background: #fef9e7;
}

.product-card-body {
    padding: 22px;
}

.product-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #085394;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.product-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.p-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f0f4ff;
    color: var(--text-gray);
    border: 1px solid #e0e6f5;
}

.product-link {
    font-size: 14px;
    font-weight: 700;
    color: #085394;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.product-link:hover {
    gap: 12px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
    background: var(--blue-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bright), var(--teal));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(25, 55, 130, 0.14);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
    background: #dce6ff;
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* =============================================
   PROCESS + WHY
   ============================================= */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 90px 60px;
    background: white;
    max-width: 100%;
}

.process-steps {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid #eef0f8;
    transition: background 0.2s;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-number {
    width: 38px;
    height: 38px;
    background: #085394;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.step-content h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.65;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1.5px solid #e8edf5;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
    border-color: #c8d7f8;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(25, 55, 130, 0.10);
}

.why-icon-wrap {
    width: 42px;
    height: 42px;
    background: #eef2fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--blue-dark);
}

.why-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-section {
    background: #f8faff;
    padding: 72px 60px 80px;
    border-top: 1px solid #e8edf5;
    border-bottom: 1px solid #e8edf5;
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.06), transparent 70%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.partners-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.partners-heading-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.partners-label {
    margin-bottom: 0;
    text-align: center;
    opacity: 1;
}

.partners-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.partners-title span {
    color: #085394;
}

.partners-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 460px;
    line-height: 1.75;
}

/* Marquee wrapper */
.partners-track-wrap {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    padding: 8px 0 16px;
}

.partners-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    animation: partnersScroll 22s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Individual logo cards */
.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 28px 44px;
    background: #ffffff;
    border: 1.5px solid #e8edf7;
    border-radius: 16px;
    min-width: 210px;
    text-decoration: none;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 12px rgba(25, 55, 130, 0.06);
}

.partner-logo-item:hover {
    border-color: #b8ccf0;
    box-shadow: 0 10px 36px rgba(25, 55, 130, 0.12);
    transform: translateY(-5px);
}

.partner-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    filter: none;
    transition: transform 0.3s;
}

.partner-logo-item:hover .partner-logo {
    transform: scale(1.05);
}

/* Partner name label */
.partner-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-light);
    text-transform: uppercase;
    transition: color 0.3s;
}

.partner-logo-item:hover .partner-name {
    color: #085394;
}

/* Stats bar below marquee */
.partners-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 52px;
    background: #ffffff;
    border: 1.5px solid #e8edf7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(25, 55, 130, 0.06);
    width: fit-content;
}

.partners-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 48px;
    position: relative;
}

.partners-stat+.partners-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e8edf7;
}

.partners-stat-val {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: #085394;
    line-height: 1;
}

.partners-stat-lbl {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* =============================================
   CONTACT CONNECT SECTION
   ============================================= */
.contact-connect-section {
    background: white;
    padding: 80px 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.contact-info .section-label {
    margin-bottom: 6px;
}

.contact-title {
    margin-bottom: 12px;
    line-height: 1.15;
}

.contact-connect-sub {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 100%;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f4f7ff;
    border: 1.5px solid #e2e8f5;
    border-radius: 12px;
    padding: 14px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-item-row:hover {
    border-color: #b8ccf0;
    box-shadow: 0 4px 16px rgba(8, 83, 148, 0.08);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #085394;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(8, 83, 148, 0.10);
    transition: background 0.2s;
}

.contact-item-row:hover .contact-item-icon {
    background: #dce6ff;
}

.contact-item-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* RIGHT: Form */
.contact-form-wrap {
    background: #085394;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 12px 48px rgba(8, 83, 148, 0.30);
}

.contact-form-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    color: #3a4a6b;
    background: #e8ecf4;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a9ab5;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #dde3f0;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.20);
}

/* Phone row with country code */
.form-phone-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: stretch;
}

.phone-code {
    padding: 13px 10px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    color: #3a4a6b;
    background: #e8ecf4;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    width: 90px;
    transition: background 0.2s;
}

.phone-code:focus {
    background: #dde3f0;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.20);
}

.form-phone-group input {
    flex: 1;
}

/* Submit button */
.contact-submit-btn {
    background: #ffffff;
    color: #085394;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
    width: fit-content;
    margin-top: 4px;
}

.contact-submit-btn:hover {
    background: #e8ecf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.22);
}

.contact-submit {
    width: fit-content;
    padding: 13px 36px;
    font-size: 15px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #085394;
    color: white;
    padding: 60px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul a:hover {
    color: white;
    padding-left: 4px;
}

.footer-col .contact-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.55;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 24px 0;
        min-height: auto;
    }

    .hero-left {
        padding-bottom: 0;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-float-badge {
        display: none;
    }

    .section,
    .two-col-section,
    .cta-band-wrap,
    .contact-connect-section,
    .footer,
    .stats-section,
    .navbar {
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 14px 24px;
    }

    .two-col-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(25, 55, 130, 0.1);
    list-style: none;
    padding: 8px 0;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}