:root {
    --navy: #1B3E8C;
    --navy-dark: #0F2657;
    --red: #E53935;
    --ink: #1c2433;
    --muted: #6b7690;
    --bg-soft: #f6f8fc;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: var(--ink);
}

h1,
h2,
h3,
.headline-font {
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

.eyebrow {
    color: var(--red);
    font-weight: 700;
    letter-spacing: .08em;
    font-size: .78rem;
    text-transform: uppercase;
    margin-bottom: .6rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: .5rem;
}

.section-head {
    text-align: center;
    margin-bottom: 2.75rem;
}


/*================slider==============================================*/
.slider-section {
    width: 100%;
    overflow: hidden;
}

.main-slider {
    width: 100%;
}

.slider-item {
    width: 100%;
    position: relative;
}

.slider-media {
    display: block;
    width: 100%;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
}

/* Remove Slick's default spacing */
.main-slider .slick-slide {
    margin: 0;
}

.main-slider .slick-list {
    margin: 0;
}

/* ============ INTRO SCREEN (unchanged from your version) ============ */

#introScreen {
    position: fixed;
    inset: 0;
    background-color: #eef2fb;
    overflow: hidden;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#worldMapBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.16;
}

#worldMapBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#dotGrid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: radial-gradient(circle, #b9c8ea 1.4px, transparent 1.4px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 0%, black 55%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 55%, transparent 85%);
}

#introScreen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#introSvg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route-line {
    fill: none;
    stroke: var(--navy);
    stroke-width: 0.5;
    stroke-linecap: round;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    opacity: 0.4;
    vector-effect: non-scaling-stroke;
    animation: drawLine 1.3s ease forwards;
}

.route-flow {
    fill: none;
    stroke: var(--red);
    stroke-width: 0.6;
    stroke-linecap: round;
    stroke-dasharray: 3 5;
    opacity: 0;
    vector-effect: non-scaling-stroke;
    animation: flowDash 1.4s linear infinite, flowIn 0.4s ease forwards;
}

#lineTL,
#flowTL {
    animation-delay: 0.5s;
}

#lineTR,
#flowTR {
    animation-delay: 1.05s;
}

#lineBL,
#flowBL {
    animation-delay: 1.6s;
}

#lineBR,
#flowBR {
    animation-delay: 2.15s;
}

#flowTL {
    animation-delay: 1.8s, 0.5s;
}

#flowTR {
    animation-delay: 1.8s, 1.05s;
}

#flowBL {
    animation-delay: 1.8s, 1.6s;
}

#flowBR {
    animation-delay: 1.8s, 2.15s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes flowIn {
    to {
        opacity: 0.6;
    }
}

@keyframes flowDash {
    to {
        stroke-dashoffset: -16;
    }
}

.intro-center {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: centerPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes centerPop {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

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

.center-emblem {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    animation: pulseRing 1.6s ease-out infinite;
}

.center-emblem img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.center-emblem .fallback-icon {
    color: var(--navy);
    font-size: 2.1rem;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 62, 140, 0.35);
    }

    70% {
        box-shadow: 0 0 0 32px rgba(27, 62, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 62, 140, 0);
    }
}

.center-caption {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-dark);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 0.9s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.mover {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 6px 16px rgba(15, 38, 87, 0.25);
    left: 50%;
    top: 50%;
    z-index: 2;
    opacity: 0;
}

.mover-tl {
    animation: travelTL 1.3s ease forwards 0.5s;
}

.mover-tr {
    animation: travelTR 1.3s ease forwards 1.05s;
}

.mover-bl {
    animation: travelBL 1.3s ease forwards 1.6s;
}

.mover-br {
    animation: travelBR 1.3s ease forwards 2.15s;
}

@keyframes travelTL {
    0% {
        left: 50%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-135deg) scale(0.5);
    }

    12% {
        opacity: 1;
    }

    100% {
        left: 12%;
        top: 18%;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-135deg) scale(1);
    }
}

@keyframes travelTR {
    0% {
        left: 50%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-45deg) scale(0.5);
    }

    12% {
        opacity: 1;
    }

    100% {
        left: 88%;
        top: 18%;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
}

@keyframes travelBL {
    0% {
        left: 50%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(135deg) scale(0.5);
    }

    12% {
        opacity: 1;
    }

    100% {
        left: 12%;
        top: 82%;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(135deg) scale(1);
    }
}

@keyframes travelBR {
    0% {
        left: 50%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.5);
    }

    12% {
        opacity: 1;
    }

    100% {
        left: 88%;
        top: 82%;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

.corner-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid #dfe6f5;
    box-shadow: 0 10px 30px rgba(15, 38, 87, 0.12);
    border-radius: 999px;
    padding: 0.5rem 1.1rem 0.5rem 0.5rem;
    opacity: 0;
    z-index: 2;
    transform: scale(0.7);
}

.corner-badge .badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.corner-badge span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--navy-dark);
    white-space: nowrap;
}

.corner-tl {
    top: 18%;
    left: 12%;
    animation: badgePop 0.4s ease forwards 1.75s;
}

.corner-tr {
    top: 18%;
    right: 12%;
    animation: badgePop 0.4s ease forwards 2.3s;
}

.corner-bl {
    bottom: 18%;
    left: 12%;
    animation: badgePop 0.4s ease forwards 2.85s;
}

.corner-br {
    bottom: 18%;
    right: 12%;
    animation: badgePop 0.4s ease forwards 3.4s;
}

.corner-tl,
.corner-bl {
    transform-origin: left center;
}

.corner-tr,
.corner-br {
    transform-origin: right center;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.08);
    }

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

@media (max-width: 767px) {
    .corner-badge span {
        display: none;
    }

    .corner-badge {
        padding: 0.45rem;
    }

    .corner-tl,
    .corner-tr {
        top: 14%;
    }

    .corner-bl,
    .corner-br {
        bottom: 14%;
    }
}

@media (prefers-reduced-motion: reduce) {

    #introScreen,
    #welcomeScreen {
        display: none;
    }
}

#welcomeScreen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.75s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease 0s;
}

#welcomeScreen.expand {
    clip-path: circle(150% at 50% 50%);
}

#welcomeScreen.hide {
    opacity: 0;
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.85);
}

#welcomeScreen.expand .welcome-content {
    animation: welcomeIn 0.6s ease forwards 0.35s;
}

@keyframes welcomeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.welcome-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.welcome-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.welcome-content p {
    color: #c7d3ee;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* ============ TOPBAR ============ */

.topbar {
    background: var(--navy-dark);
    color: #cdd8f2;
    font-size: .82rem;
    padding: .5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.topbar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.topbar-left a {
    color: #cdd8f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.topbar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.topbar-right span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.topbar-right .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .topbar {
        font-size: .72rem;
    }

    .topbar-left {
        gap: .8rem;
    }

    .topbar-right {
        gap: .8rem;
    }
}

/* ============ HEADER ============ */

.site-header {
    background: #fff;
    padding: .1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 14px rgba(15, 38, 87, 0.06);
    position: sticky;
    top: 0;
    z-index: 500;
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}

.brand-emblem {
    width: 100px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.brand-text-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy-dark);
    line-height: 1.1;
    .gur{
        font-size: 27px;
    }
}

.brand-text-sub {
    font-size: .62rem;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .86rem;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.main-nav a.active {
    color: var(--navy);
}

.main-nav a:hover {
    color: var(--navy);
}

.btn-getquote {
    background: var(--red);
    color: #fff !important;
    padding: .65rem 1.3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: .84rem;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
}

@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, .12);
        transition: right .35s ease;
        gap: 1.4rem;
        z-index: 600;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }
}

/* ============ HERO ============ */

.hero {
    min-height: 92vh;
    background: linear-gradient(120deg, #0F2657 0%, #1B3E8C 55%, #2b52ab 100%);
    display: flex;
    align-items: center;
    padding: 4rem 5vw 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-inner {
    color: #fff;
    opacity: 0;
    transform: translateY(24px);
}

.hero-inner.reveal {
    animation: heroReveal 0.8s ease forwards;
}

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

.hero-eyebrow {
    color: #9fb4e8;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero h1 .accent {
    color: #ff6b63;
}

.hero p.lead {
    color: #d7deef;
    font-size: 1.02rem;
    margin: 1rem 0 1.4rem;
    max-width: 480px;
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.7rem;
}

.hero-checklist div {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .9rem;
    color: #eef2fc;
    font-weight: 500;
}

.hero-checklist i {
    color: #4ade80;
    font-size: 1.05rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-quote {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hero-visual {
    position: relative;
}

.route-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .6rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    z-index: 3;
}

.route-flag {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.route-badge i.bi-arrow-right {
    color: #ff6b63;
}

.route-label {
    font-size: .68rem;
    color: #cdd8f2;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: .2rem;
    text-align: center;
}

.hero-ship-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    margin-top: 1.5rem;
}

.hero-ship-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ============ FEATURE STRIP ============ */

.feature-strip {
    background: #fff;
    box-shadow: 0 10px 40px rgba(15, 38, 87, .08);
    max-width: 1140px;
    margin: -3.4rem auto 0;
    position: relative;
    z-index: 10;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    padding: 1.6rem 1rem;
}

.feature-strip .fitem {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem 1rem;
    justify-content: center;
    text-align: left;
}

.feature-strip .fitem i {
    font-size: 1.5rem;
    color: var(--navy);
    flex-shrink: 0;
}

.feature-strip .fitem span {
    font-weight: 700;
    font-size: .78rem;
    color: var(--navy-dark);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .01em;
}

@media (max-width: 767px) {
    .feature-strip {
        margin-top: 1.5rem;
        border-radius: 0;
    }
}

/* ============ ABOUT ============ */

.about-section {
    padding: 6.5rem 0 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}

.about-section p.desc {
    color: var(--muted);
    margin: 1rem 0 1.4rem;
    line-height: 1.7;
    max-width: 480px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.8rem;
}

.about-checklist div {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .92rem;
    font-weight: 500;
}

.about-checklist i {
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    padding: .85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(15, 38, 87, .14);
}

.about-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        order: -1;
    }
}

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

.services-section {
    background: var(--bg-soft);
    padding: 5.5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.7rem;
    text-align: left;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 38, 87, .12);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(27, 62, 140, .08);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: .55rem;
}

.service-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: .9rem;
}

.service-card a {
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ WHY CHOOSE ============ */

.why-section {
    background: linear-gradient(120deg, var(--navy-dark), var(--navy) 80%);
    color: #fff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}

.why-section .section-title,
.why-section .eyebrow {
    color: #fff;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.why-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 600;
    font-size: .88rem;
}

.why-item.highlight {
    background: #fff;
    color: var(--navy-dark);
    grid-column: span 2;
}

.why-item .why-ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.why-item.highlight .why-ic {
    background: var(--navy);
}

.why-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.why-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-img-wrap {
        order: -1;
    }
}

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

    .why-item.highlight {
        grid-column: span 1;
    }
}

/* ============ PROCESS ============ */

.process-section {
    padding: 5.5rem 0;
}

.process-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.process-step {
    flex: 1 1 150px;
    text-align: center;
    min-width: 140px;
    position: relative;
}

.process-step .pic {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto .9rem;
    border: 2px solid #e4eaf6;
}

.process-step p {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
}

.process-arrow {
    color: var(--red);
    font-size: 1.3rem;
    align-self: center;
    margin-top: 22px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .process-arrow {
        display: none;
    }

    .process-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 1 1 30%;
    }
}

/* ============ WHAT WE IMPORT ============ */

.import-section {
    background: var(--bg-soft);
    padding: 5.5rem 0;
}

.import-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.import-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.import-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.import-card:hover img {
    transform: scale(1.08);
}

.import-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .7rem .8rem .6rem;
    background: linear-gradient(to top, rgba(15, 38, 87, .85), transparent);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
}

@media (max-width: 900px) {
    .import-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .import-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ TESTIMONIALS ============ */

.testimonial-section {
    padding: 5.5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #edf0f7;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: .85rem;
    margin-bottom: .8rem;
}

.testimonial-card p.quote {
    font-size: .9rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 1.3rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.testimonial-person .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.testimonial-person span {
    font-weight: 700;
    font-size: .84rem;
    color: var(--navy-dark);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 2rem;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7dced;
}

.testimonial-dots span.active {
    background: var(--red);
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* ============ FOOTER WAVE (matched to footer bg for seamless blend) ============ */

.footer-wave {
    position: relative;
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-wave path {
    fill: var(--navy-dark);   /* ye overlay ke top stop se match hoga, seam gayab ho jayega */
}

@media (max-width: 767px) {
    .footer-wave svg {
        height: 36px;
    }
}

/* ============ FOOTER ============ */

.site-footer {
    position: relative;
    isolation: isolate;
    color: #cdd8f2;
    padding: 4.5rem 0 0;

    /* background-color: var(--navy-dark); */
    background-image: url('../img/bg-f1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay: top pe solid (wave se seamless match), beech mein halka (image dikhe), niche thoda dark (text readable) */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        var(--navy-dark) 0%,
        rgba(15, 38, 87, 0.55) 100%,
        rgba(15, 38, 87, 0.65) 5%,
        rgba(8, 18, 42, 0.82) 100%
    );
}

.site-footer > .footer-grid,
.site-footer > .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid h4 {
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.footer-grid p,
.footer-grid a {
    color: #b6c2e3;
    font-size: .86rem;
    text-decoration: none;
    line-height: 1.9;
    display: block;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-emblem {
    background: #fff;
    color: var(--navy);
}

.footer-brand span {
    color: #fff;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    padding: .65rem .8rem;
    color: #fff;
    font-size: .82rem;
    margin-bottom: .7rem;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #90a0c9;
}

.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}

.footer-form button {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: .75rem;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: .03em;
    font-size: .82rem;
}

.footer-social {
    display: flex;
    gap: .7rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.4rem 0;
    font-size: .78rem;
    color: #90a0c9;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
/* ============ FLOATING BUTTONS ============ */

.float-actions {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    z-index: 400;
}

.float-actions a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.float-actions .whatsapp {
    background: #25D366;
}

.float-actions .messenger {
    background: #0084FF;
}