﻿
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f7f9fb;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

:root {
    --blue-main: #1f5c8d;
    --green-accent: #8cc63f;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 14px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 34px;
    height: auto;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--blue-main);
    letter-spacing: 0.03em;
    line-height: 1.1;
    white-space: nowrap;
}

    .logo-text span {
        color: var(--green-accent);
    }

.logo-slogan {
    font-size: 11px;
    color: #6b7280;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    font-weight: 600;
    color: #334155;
}

    nav a:hover {
        color: var(--green-accent);
    }

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-main);
    color: #fff;
}

    .btn-primary:hover {
        background: #174364;
    }

.btn-outline {
    border: 1px solid var(--blue-main);
    color: var(--blue-main);
    background: #fff;
}

    .btn-outline:hover {
        background: var(--blue-main);
        color: #fff;
    }

/* MOBILE MENU */
.mobile-menu-button {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--blue-main);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 14px 20px;
    border-top: 1px solid #eee;
}

    .mobile-menu a {
        padding: 10px 0;
        font-size: 15px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

/* HERO (NEW STYLE LIKE YOUR SCREENSHOT) */
.hero {
    position: relative;
    padding: 52px 0 40px;
    overflow: hidden;
    background: radial-gradient(1200px 500px at 50% 0%, rgba(140,198,63,.25), transparent 60%), radial-gradient(900px 450px at 20% 10%, rgba(31,92,141,.18), transparent 60%), linear-gradient(180deg, #ffffff, #f7f9fb);
}

.hero-waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 260px;
    z-index: 0;
    opacity: .95;
}

    .hero-waves svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 18px;
}

.hero-parent-logo {
    width: 90px;
    margin: 0 auto 12px;
    filter: drop-shadow(0 12px 25px rgba(0,0,0,0.10));
}

.hero-title {
    margin: 0 0 6px;
    font-size: 44px;
    color: #0f172a;
    letter-spacing: .02em;
}

.hero-sub {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #475569;
    font-size: 14px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #334155;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-accent);
    box-shadow: 0 0 0 5px rgba(140,198,63,.18);
}

.hero-cards-wrap {
    position: relative;
    z-index: 3;
    margin-top: 26px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hero-card {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 45px rgba(15,23,42,.10);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .hero-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 60px rgba(15,23,42,.14);
    }

.company-logo {
    width: 160px;
    margin: 0 auto 8px;
}

.mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-main);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(31,92,141,.08);
    border: 1px solid rgba(31,92,141,.12);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

    .mini-tag .t-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--blue-main);
        box-shadow: 0 0 0 5px rgba(31,92,141,.12);
    }

.hero-card h3 {
    margin: 6px 0 8px;
    color: #0f172a;
    font-size: 18px;
}

.hero-card p {
    margin: 0 auto 14px;
    font-size: 13px;
    color: #64748b;
    max-width: 320px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
    border: 1px solid rgba(31,92,141,.20);
    color: var(--blue-main);
    cursor: pointer;
    transition: all .2s ease;
}

    .learn-btn:hover {
        background: rgba(31,92,141,.08);
    }

    .learn-btn .arrow {
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(140,198,63,.18);
        border: 1px solid rgba(140,198,63,.30);
        font-weight: 800;
    }

.hero-footer-note {
    margin-top: 16px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* SECTION GENERIC (YOUR STYLE) */
.section {
    padding: 60px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

    .section-head h2 {
        margin: 0 0 10px;
        color: var(--blue-main);
    }

    .section-head p {
        margin: 0 auto;
        max-width: 760px;
        color: #555;
        font-size: 14px;
    }

.section-subhead {
    margin-top: 50px;
    margin-bottom: 16px;
    color: var(--blue-main);
}

/* ABOUT SLIDER (REUSED) */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-top: 0;
    color: var(--blue-main);
}

.about-text p {
    font-size: 14px;
    color: #444;
}

.about-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    background: #000;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

    .about-slide img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .about-slide.active {
        position: relative;
        opacity: 1;
    }

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

    .slide-nav.prev {
        left: 10px;
    }

    .slide-nav.next {
        right: 10px;
    }

.slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

    .slide-dot.active {
        background: var(--green-accent);
    }

/* SERVICES (YOUR STYLE) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.05);
    border-top: 4px solid var(--green-accent);
}

    .service-card h3, .service-card h4 {
        margin-top: 0;
        margin-bottom: 8px;
        color: var(--blue-main);
    }

    .service-card p {
        margin: 0 0 8px;
        font-size: 14px;
    }

    .service-card ul {
        margin: 8px 0 0;
        padding-left: 18px;
        font-size: 14px;
    }

        .service-card ul li {
            margin: 4px 0;
        }

/* PROJECTS / GALLERY (WITH CATEGORY TABS) */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 16px;
}

.tab-btn {
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

    .tab-btn.active {
        background: var(--blue-main);
        color: #fff;
        border-color: var(--blue-main);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}

    .gallery-item img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-pagination {
    margin-top: 22px;
    text-align: center;
}

.page-btn {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

    .page-btn.active {
        background: var(--blue-main);
        color: #fff;
        border-color: var(--blue-main);
    }

    .page-btn.disabled {
        opacity: 0.5;
        cursor: default;
    }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
    }

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.why-list {
    padding-left: 20px;
    color: #444;
    font-size: 14px;
}

    .why-list li {
        margin-bottom: 6px;
    }

.tagline {
    font-weight: 600;
    margin-top: 20px;
    font-size: 14px;
    color: var(--blue-main);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.review-name {
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 6px;
}

.review-stars {
    color: #facc15;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-text {
    color: #374151;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

    .contact-card h3 {
        margin-top: 0;
        margin-bottom: 8px;
        color: var(--blue-main);
    }

    .contact-card p {
        font-size: 14px;
        margin-top: 0;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

input, select, textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    font-size: 13px;
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-info {
    font-size: 14px;
}

    .contact-info p {
        margin: 6px 0;
    }

/* FOOTER */
footer {
    background: #0f172a;
    color: #9ca3af;
    padding: 22px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer a {
    color: #e5e7eb;
}

/* WHATSAPP BUBBLE */
.whatsapp-bubble {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25D366;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 1000;
}

    .whatsapp-bubble:hover {
        filter: brightness(1.05);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-grid, .contact-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-nav {
        display: none !important;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-bubble {
        right: 12px;
        bottom: 12px;
        font-size: 12px;
    }
}

.award-badge {
    margin: 16px auto 10px;
    max-width: 520px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(15,23,42,.10);
    color: #0f172a;
    text-align: left;
}

    .award-badge:hover {
        transform: translateY(-2px);
        transition: .2s ease;
    }

.award-icon {
    font-size: 22px;
}

.award-text strong {
    font-size: 13px;
}

.award-text small {
    font-size: 12px;
    color: #475569;
}

@media (max-width: 600px) {
    .award-badge {
        max-width: 100%;
        padding: 10px 12px;
    }
}

.hero2 {
    position: relative;
    padding: 64px 0 34px;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 50% 0%, rgba(140,198,63,.20), transparent 55%), radial-gradient(900px 500px at 15% 20%, rgba(31,92,141,.18), transparent 60%), linear-gradient(180deg, #f7fbff 0%, #ffffff 55%, #f4f8fc 100%);
}

.hero2-inner {
    position: relative;
    z-index: 2;
}

.hero2-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .35;
    transform: translate3d(0,0,0);
    animation: floaty 10s ease-in-out infinite;
}

.orb1 {
    width: 320px;
    height: 320px;
    background: rgba(31,92,141,.35);
    left: -80px;
    top: 40px;
}

.orb2 {
    width: 420px;
    height: 420px;
    background: rgba(140,198,63,.35);
    right: -120px;
    top: -60px;
    animation-duration: 12s;
}

.orb3 {
    width: 260px;
    height: 260px;
    background: rgba(31,92,141,.20);
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    animation-duration: 14s;
}

@keyframes floaty {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.hero2-waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 190px;
}

    .hero2-waves path {
        fill: rgba(31,92,141,.10);
    }

.hero2-top {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 18px;
}

.hero2-logo {
    width: 64px;
    margin: 0 auto 10px;
}

.hero2-title {
    margin: 0;
    font-size: 44px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hero2-sub {
    margin: 10px auto 16px;
    max-width: 720px;
    color: #475569;
    font-size: 15px;
}

.award-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(148,163,184,.40);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.award-medal {
    font-size: 20px;
}

.award-lines {
    text-align: left;
    line-height: 1.2;
}

    .award-lines strong {
        font-size: 13px;
        color: #0f172a;
    }

    .award-lines small {
        display: block;
        font-size: 12px;
        color: #64748b;
    }

.award-cta {
    margin-left: 6px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(140,198,63,.18);
    border: 1px solid rgba(140,198,63,.35);
    color: #0f172a;
}

.hero2-stats {
    margin: 16px auto 16px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(148,163,184,.35);
    border-radius: 14px;
    padding: 10px 12px;
    min-width: 140px;
}

.stat-big {
    font-weight: 700;
    color: #0f172a;
}

.stat-small {
    font-size: 12px;
    color: #64748b;
}

.service-switch {
    margin: 10px auto 10px;
    display: inline-flex;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(148,163,184,.35);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.sw {
    border: none;
    background: transparent;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

    .sw.active {
        background: linear-gradient(120deg, rgba(31,92,141,.95), rgba(140,198,63,.95));
        color: #fff;
        box-shadow: 0 12px 26px rgba(15,23,42,.18);
    }

.service-preview {
    margin: 10px auto 0;
    max-width: 820px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(148,163,184,.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 50px rgba(15,23,42,.10);
}

.preview {
    display: none;
}

    .preview.active {
        display: block;
    }

.preview-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 16px;
}

.preview-text {
    color: #64748b;
    font-size: 13px;
    margin-top: 6px;
}

.preview-actions {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero2-cards {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.brand-card {
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

    .brand-card::before {
        content: "";
        position: absolute;
        inset: -40px -40px auto auto;
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, rgba(140,198,63,.25), transparent 60%);
    }

    .brand-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 70px rgba(15,23,42,.14);
    }

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .08em;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(31,92,141,.08);
    border: 1px solid rgba(31,92,141,.18);
    color: #1f5c8d;
}

.brand-logo {
    width: 140px;
    height: auto;
    margin: 14px auto 10px;
    display: block;
}

.brand-card h3 {
    margin: 6px 0 8px;
    color: #0f172a;
    text-align: center;
}

.brand-card p {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}

.brand-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    font-weight: 700;
    color: var(--blue-main);
}

@media (max-width: 992px) {
    .hero2-title {
        font-size: 34px;
    }

    .hero2-cards {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        width: 150px;
    }
}
/* HERO BANNER SLIDER */
.hero-banner {
    margin: 14px auto 0;
    max-width: 980px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(148,163,184,.35);
    background: rgba(255,255,255,.55);
    box-shadow: 0 22px 60px rgba(15,23,42,.12);
}

.hero-slide {
    display: none;
    min-height: 220px;
    position: relative;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}

    .hero-slide.active {
        display: block;
    }

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 360px at 30% 20%, rgba(255,255,255,.16), transparent 60%), linear-gradient(90deg, rgba(15,23,42,.70) 0%, rgba(15,23,42,.42) 45%, rgba(15,23,42,.18) 75%, rgba(15,23,42,.06) 100%);
}

/* subtle motion */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: -10%;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    opacity: .25;
    transform: scale(1.06);
    animation: bannerFloat 10s ease-in-out infinite;
    z-index: 0;
    display: none; /* keep off for performance; toggle to true if you like */
}

@keyframes bannerFloat {
    0%,100% {
        transform: scale(1.06) translateX(0);
    }

    50% {
        transform: scale(1.09) translateX(-10px);
    }
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 26px 26px 24px;
    max-width: 560px;
    color: #fff;
}

.hero-slide-kicker {
    display: inline-flex;
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(140,198,63,.22);
    border: 1px solid rgba(140,198,63,.45);
    margin-bottom: 10px;
}

.hero-slide-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.hero-slide-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

.hero-slide-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Badge overlay */
.hero-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
    color: #0f172a;
    box-shadow: 0 18px 40px rgba(15,23,42,.18);
}

.hero-badge-ico {
    font-size: 18px;
}

.hero-badge-txt {
    line-height: 1.15;
}

    .hero-badge-txt strong {
        font-size: 12px;
    }

    .hero-badge-txt small {
        display: block;
        font-size: 11px;
        color: #64748b;
        margin-top: 2px;
    }

.hero-badge-link {
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(140,198,63,.18);
    border: 1px solid rgba(140,198,63,.35);
}

/* slider controls */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(15,23,42,.35);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

    .hero-nav:hover {
        background: rgba(15,23,42,.50);
    }

    .hero-nav.prev {
        left: 12px;
    }

    .hero-nav.next {
        right: 12px;
    }

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    z-index: 5;
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.25);
}

    .hero-dot.active {
        background: rgba(140,198,63,.95);
    }

/* responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 250px;
    }

    .hero-slide-content {
        max-width: 100%;
        padding: 18px;
    }

    .hero-badge {
        left: 12px;
        right: 12px;
        top: 12px;
        justify-content: space-between;
    }
}


/* FULL WIDTH HERO SLIDER */
.hero-full {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #0b1220;
}

/* slider container */
.hero-full-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* each slide (background image) */
.hfs-slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .9s ease, transform 6.5s ease;
    filter: saturate(1.05) contrast(1.02);
}

    .hfs-slide.active {
        opacity: 1;
        transform: scale(1.14); /* cinematic slow zoom */
    }

/* overlay to make text readable */
.hfs-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 25% 25%, rgba(0,0,0,.20), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 40%, rgba(0,0,0,.18) 75%, rgba(0,0,0,.10) 100%), linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.55) 100%);
}

/* content overlay */
.hero-full-content {
    position: relative;
    z-index: 3;
    padding: 84px 0 70px;
    max-width: 900px;
}

.hero-topmark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
}

.hero-mark-logo {
    width: 36px;
    height: auto;
}

.hero-mark-name {
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
}

.hero-mark-sub {
    font-size: 12px;
    color: rgba(255,255,255,.78);
}

.hero-full-title {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-full-lead {
    margin: 0 0 14px;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    max-width: 720px;
}

/* award badge */
.hero-award {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgb(11 76 122);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

    .hero-award .ico {
        font-size: 18px;
    }

    .hero-award .txt {
        line-height: 1.15;
    }

    .hero-award strong {
        font-size: 13px;
    }

    .hero-award small {
        display: block;
        font-size: 12px;
        color: rgba(255,255,255,.78);
        margin-top: 2px;
    }

    .hero-award .pill {
        margin-left: 6px;
        font-size: 12px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255 255 255);
        border: 1px solid rgba(140,198,63,.35);
        color: #1f5c8d;
    }

/* tabs */
.hero-tabs {
    margin-top: 18px;
    display: inline-flex;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
}

.hero-tab {
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    color: rgba(255,255,255,.86);
    background: transparent;
}

    .hero-tab.active {
        color: #0b1220;
        background: rgba(255,255,255,.90);
        box-shadow: 0 10px 28px rgba(0,0,0,.25);
    }

/* CTAs */
.hero-cta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* chips */
.hero-chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.86);
}

/* arrows */
.hfs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(0,0,0,.30);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

    .hfs-nav:hover {
        background: rgba(0,0,0,.45);
    }

    .hfs-nav.prev {
        left: 14px;
    }

    .hfs-nav.next {
        right: 14px;
    }

/* dots */
.hfs-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 4;
    display: flex;
    gap: 7px;
}

.hfs-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.40);
    border: 1px solid rgba(255,255,255,.22);
    cursor: pointer;
}

    .hfs-dot.active {
        background: rgba(140,198,63,.95);
    }

/* bottom fade into next section */
.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    z-index: 5;
    background: linear-gradient(180deg, rgba(247,249,251,0) 0%, rgba(247,249,251,1) 85%);
}

/* responsive */
@media (max-width: 992px) {
    .hero-full {
        min-height: 76vh;
    }

    .hero-full-title {
        font-size: 34px;
    }

    .hero-full-content {
        padding: 74px 0 60px;
    }
}

@media (max-width: 600px) {
    .hero-full-title {
        font-size: 28px;
    }

    .hfs-nav {
        display: none;
    }
    /* hide arrows on small */
    .hero-award {
        border-radius: 16px;
    }
}

/* ===== HERO STATIC (like screenshot) ===== */
.hero-static {
    padding: 64px 0 44px;
    background: #ffffff;
}

.hero-static-wrap {
    text-align: center;
}

.hero-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-brand-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.hero-static-title {
    font-size: 40px;
    line-height: 1.1;
    margin: 10px 0 8px;
    font-weight: 700;
    letter-spacing: .2px;
    color: #1b1b1b;
}

.hero-static-sub {
    margin: 0 auto 28px;
    color: #6b7280;
    font-size: 15px;
    max-width: 720px;
}

.hero-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
}

.hero-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.04);
}

.hero-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

    .hero-card-logo img {
        width: 120px;
        height: 70px;
        object-fit: contain;
    }

.hero-card-title {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
    margin-bottom: 6px;
}

.hero-card-desc {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 14px;
}

.hero-card-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0b4c7a; /* قريب من الأزرق بالصورة */
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

/* responsive */
@media (max-width: 980px) {
    .hero-service-cards {
        grid-template-columns: 1fr;
    }

    .hero-static-title {
        font-size: 34px;
    }
}
