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

:root {
    --bg-deep: #0a0e1a;
    --bg-mid: #111630;
    --accent: #c8e64a;
    --text-primary: #f0f0f5;
    --text-muted: #ffffff;
    --border-subtle: rgba(200, 230, 74, 0.5);
    --font-display: 'inter';
    --font-body: 'open sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: #feffff;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ── SITE HEADER ── */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    border-bottom: 0.2px solid #ffffff25;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 75px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 12px 0 6px;
}

.top-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

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

/* Logo text styles (for footer) */
.logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--accent);
}

.logo-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.contact-btn {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--accent);
    color: var(--bg-deep);
}

/* ── NAV LINKS ── */
.nav-bar {
    display: flex;
    justify-content: flex-end;
    gap: 36px;
    padding: 4px 0 10px;
}

.nav-bar a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-bar a:hover {
    color: var(--accent);
}

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

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 140px 48px 60px;
    overflow: hidden;
}

/* Abstract light-trail background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(9, 32, 128, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 40%, rgba(100, 80, 180, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 30% 50% at 70% 60%, rgba(200, 230, 74, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #07559e 0%, #07559e 50%, #07559e 100%);
    z-index: 0;
}

/* Animated light fibers */
.fiber {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: fiberGlow 6s ease-in-out infinite;
}

.fiber-1 {
    width: 2px;
    height: 320px;
    right: 28%;
    top: 5%;
    background: linear-gradient(180deg, transparent, rgba(100, 140, 255, 0.5), rgba(200, 230, 74, 0.3), transparent);
    transform: rotate(15deg);
    animation-delay: 0s;
}

.fiber-2 {
    width: 3px;
    height: 400px;
    right: 22%;
    top: -5%;
    background: linear-gradient(180deg, transparent, rgba(160, 100, 255, 0.4), rgba(80, 160, 255, 0.3), transparent);
    transform: rotate(8deg);
    animation-delay: 1.5s;
}

.fiber-3 {
    width: 2px;
    height: 280px;
    right: 18%;
    top: 15%;
    background: linear-gradient(180deg, transparent, rgba(200, 230, 74, 0.35), rgba(100, 200, 255, 0.2), transparent);
    transform: rotate(20deg);
    animation-delay: 3s;
}

.fiber-4 {
    width: 1.5px;
    height: 350px;
    right: 32%;
    top: 0%;
    background: linear-gradient(180deg, transparent, rgba(255, 180, 80, 0.3), rgba(200, 100, 255, 0.2), transparent);
    transform: rotate(12deg);
    animation-delay: 4s;
}

.fiber-5 {
    width: 2px;
    height: 260px;
    right: 15%;
    top: 20%;
    background: linear-gradient(180deg, transparent, rgba(80, 200, 200, 0.4), transparent);
    transform: rotate(25deg);
    animation-delay: 2s;
}

.fiber-6 {
    width: 120px;
    height: 120px;
    right: 20%;
    top: 30%;
    background: radial-gradient(circle, rgba(100, 120, 255, 0.08) 0%, transparent 70%);
    filter: blur(30px);
    animation: orbPulse 8s ease-in-out infinite;
    opacity: 0.6;
}

.fiber-7 {
    width: 80px;
    height: 80px;
    right: 28%;
    top: 50%;
    background: radial-gradient(circle, rgba(200, 230, 74, 0.06) 0%, transparent 70%);
    filter: blur(25px);
    animation: orbPulse 10s ease-in-out infinite;
    animation-delay: 3s;
    opacity: 0.5;
}

@keyframes fiberGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes orbPulse {

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes heroFloat {

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

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero .subtitle {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid var(--accent);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    color: var(--bg-deep);
}

.cta-btn:hover::before {
    transform: scaleX(1);
}

/* ── REVIEW BADGES ── */
.reviews {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    align-items: center;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.review-icon.trustpilot {
    color: #00b67a;
}

.review-icon.google {
    font-size: 1.4rem;
}

.review-info .rating {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.stars {
    display: inline-flex;
    gap: 2px;
    margin-left: 6px;
}

.stars span {
    color: #fbbf24;
    font-size: 0.8rem;
}

.review-info .count {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* ── ENTRANCE ANIMATIONS ── */
.hero h1,
.hero .subtitle,
.cta-btn,
.reviews {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    animation-delay: 0.15s;
}

.hero .subtitle {
    animation-delay: 0.35s;
}

.cta-btn {
    animation-delay: 0.55s;
}

.reviews {
    animation-delay: 0.75s;
}

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

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 20;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 0;
    }

    .header-logo img {
        height: 65px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .top-contact {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .header-right {
        position: static;
        width: 100%;
    }

    .nav-bar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid #e8eaf0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

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

    .nav-bar a {
        padding: 14px 16px;
        border-bottom: 1px solid #f0f2f5;
        font-size: 0.9rem;
        color: #1a1a2e;
    }

    .nav-bar a:last-child {
        border-bottom: none;
    }

    .nav-bar a::after {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
        flex-direction: column;
        gap: 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .reviews {
        flex-direction: column;
        gap: 20px;
    }

    .help-section {
        padding: 60px 20px;
    }

    .help-section h2 {
        font-size: 1.6rem;
    }

    .help-section p {
        font-size: 0.9rem;
    }
}

/* ── SERVICES INTRO ── */
.services-intro {
    background: #07559e;
    padding: 80px 48px 120px;
}

@media (max-width: 768px) {
    .services-intro {
        padding: 80px 20px 40px;
    }
}

/* ── SERVICES GRID ── */
.services-section {
    background: transparent;
    padding: 0 48px 80px;
    margin-top: -90px;
    position: relative;
    z-index: 2;
}

.services-section h2 {
    font-family: 'inter';
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.services-header a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.services-header a:hover {
    color: var(--accent);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #f0f1f6;
    border: solid 0.5px #07559e1c;
    padding: 40px 32px 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card img {
    display: block;
    margin: 0 auto 16px;
}



.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.service-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.7;
    color: #363434;
    margin-bottom: 28px;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(12, 78, 221, 0.1);
    border: 1.5px solid #2f5db3;
    color: #2f5db3;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    background: var(--accent);
    color: var(--bg-deep);
}

/* Carousel Nav Arrows */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #2f5db3;
    background: transparent;
    color: #2f5db3;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #2f5db3;
    color: #ffffff;
}

.carousel-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c5c8d4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #2f5db3;
    width: 24px;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

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

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

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 300px;
    padding: 0px 80px;
    overflow: hidden;
    margin-bottom: 50px;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/proj/5.jpg');
    background-size: cover;
}

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

.cta-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 10% 20%, rgba(255, 200, 100, 0.6), transparent),
        radial-gradient(2px 2px at 25% 70%, rgba(255, 200, 100, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 40% 15%, rgba(255, 220, 150, 0.5), transparent),
        radial-gradient(2px 2px at 55% 85%, rgba(255, 180, 80, 0.3), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(255, 200, 120, 0.4), transparent),
        radial-gradient(2px 2px at 85% 60%, rgba(255, 200, 100, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 15% 50%, rgba(200, 160, 255, 0.3), transparent),
        radial-gradient(1px 1px at 60% 30%, rgba(200, 180, 255, 0.3), transparent);
    animation: sparkle 4s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
    background: rgba(6, 96, 214, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(6, 96, 214, 0.15);
    padding: 30px 44px;
    margin: 30px 30px 30px;
}

.cta-banner-content h2 {
    font-family: 'Inter', serif;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.cta-banner-content p {
    font-family: 'open sans';
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    font-weight: 500;
}

.cta-banner-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-banner-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-banner-btn:hover {
    color: #1a1a2e;
}

.cta-banner-btn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 48px 20px;
        justify-content: center;
        min-height: 320px;
    }

    .cta-banner-content {
        max-width: 100%;
        padding: 36px 28px;
    }

    .cta-banner-content h2 {
        font-size: 1.5rem;
    }
}

/* ── HELP SECTION ── */
.help-section {
    background: #f0f1f6;
    padding: 80px 48px;
}

.help-section h2 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #1a1a2e;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.help-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.help-columns p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: #3a3a4a;
    margin-bottom: 20px;
}

.help-columns .tagline {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .help-section {
        padding: 60px 20px;
    }

    .help-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ── FEATURED PROJECTS ── */
.featured-projects {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    background: #feffff;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.accent-bar {
    width: 4px;
    height: 28px;
    background: #07559e;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #07559e;
}

.nav-arrows {
    display: flex;
    gap: 12px;
    margin-left: 24px;
}

.nav-arrows button {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #07559e;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s;
}

.nav-arrows button:hover {
    background: #07559e;
    color: #fff;
}

.carousel-viewport {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover .project-image img {
    transform: scale(1.03);
}

.img-placeholder {
    width: 100%;
    height: 100%;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f0f1f3;
}

.img-placeholder.img-1 {
    background: linear-gradient(135deg, #2a5c6e, #1a3a4a);
}

.img-placeholder.img-2 {
    background: linear-gradient(135deg, #3a4a6e, #1e2d4a);
}

.img-placeholder.img-3 {
    background: linear-gradient(135deg, #4a3a5e, #2a1e3a);
}

.project-text {
    padding-top: 8px;
}

.project-text .quote {
    font-family: 'inter';
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.4;
    color: #1e1e2f;
    margin-bottom: 28px;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.pagination {
    font-size: 0.88rem;
    color: #6b7280;
}

.pagination .current {
    font-weight: 700;
    color: #1e1e2f;
}

.see-all {
    font-size: 0.88rem;
    font-weight: 600;
    color: #07559e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s;
}

.see-all:hover {
    gap: 10px;
}

.see-all .arrow {
    font-size: 1rem;
}

.project-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 4px;
}

.project-location {
    font-size: 0.82rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-projects {
        margin: 40px auto;
    }
}

/* ── CLIENTS SECTION ── */
.clients-section {
    background: #f8f9fc;
    padding: 80px 48px 60px;
    overflow: hidden;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 85, 158, 0.15), transparent);
}

.clients-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.clients-accent-bar {
    width: 48px;
    height: 4px;
    background: #07559e;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.clients-section h2 {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.clients-subtitle {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clients grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual client logo card */
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 14px;
    background: transparent;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.client-logo img {
    max-width: 100%;
    height: auto;
}



.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7, 85, 158, 0.1);
    border-color: rgba(7, 85, 158, 0.2);
}

.client-logo:hover::before {
    transform: scaleX(1);
}

.client-icon {
    font-size: 1.1rem;
    color: var(--client-color, #07559e);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo:hover .client-icon {
    opacity: 1;
}

.client-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #2a2a3e;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* Apply individual colors via data attribute */
.client-logo[data-color="#07559e"] .client-icon {
    color: #07559e;
}

.client-logo[data-color="#1a6b3a"] .client-icon {
    color: #1a6b3a;
}

.client-logo[data-color="#6a4a2e"] .client-icon {
    color: #6a4a2e;
}

.client-logo[data-color="#4a3a5e"] .client-icon {
    color: #4a3a5e;
}

.client-logo[data-color="#2e6a5a"] .client-icon {
    color: #2e6a5a;
}

.client-logo[data-color="#3a4a6e"] .client-icon {
    color: #3a4a6e;
}

.client-logo[data-color="#7a3a4a"] .client-icon {
    color: #7a3a4a;
}

.client-logo[data-color="#5a6a3e"] .client-icon {
    color: #5a6a3e;
}

.client-logo[data-color="#4e3a7a"] .client-icon {
    color: #4e3a7a;
}

.client-logo[data-color="#2a5c6e"] .client-icon {
    color: #2a5c6e;
}

.client-logo[data-color="#5a3a6a"] .client-icon {
    color: #5a3a6a;
}

.client-logo[data-color="#3a7a4a"] .client-icon {
    color: #3a7a4a;
}

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

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .client-logo {
        padding: 14px 16px;
    }

    .client-name {
        font-size: 0.78rem;
    }
}

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

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
    background: #07559e;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 230, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.newsletter-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.newsletter-text p {
    font-family: 'open sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 520px;
}

.newsletter-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 16px;
    transition: border-color 0.3s;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent);
}

.newsletter-input-group svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: 'open sans', sans-serif;
    font-size: 0.88rem;
    color: #ffffff;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-btn {
    padding: 14px 28px;
    background: var(--accent);
    color: #0a0e1a;
    border: none;
    font-family: 'open sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #daf06a;
    transform: translateY(-1px);
}

.newsletter-disclaimer {
    font-family: 'open sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -8px;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 48px 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input-group {
        border-radius: 0;
    }

    .newsletter-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── FOOTER ── */
.site-footer {
    background: #07559e;
    color: #e0e0e8;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 48px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.footer-brand .logo span {
    color: var(--accent);
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-about {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    margin-top: 16px;
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #07559e;
    border-color: #07559e;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

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

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

.footer-col ul li a {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li svg {
    color: #bdc1c5;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 500;
}

.footer-contact li a:hover {
    color: var(--accent);
    padding-left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-family: 'open sans', sans-serif;
    font-size: 0.75rem;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: 'open sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 20px 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
    }
}

/* ── CONTACT PAGE ── */

/* Active nav link */
.nav-active {
    color: var(--accent) !important;
}

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 140px 48px 60px;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #07559e 0%, #07559e 50%, #064a87 100%);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.contact-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 2vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero-content p {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 64px 48px 80px;
    background: #f8f9fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-intro {
    font-family: 'open sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a5a6e;
    margin-bottom: 32px;
    font-weight: 500;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #07559e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.contact-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.contact-detail p {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    color: #5a5a6e;
    line-height: 1.6;
    font-weight: 500;
}

.contact-detail p a {
    color: #07559e;
    text-decoration: none;
    transition: color 0.25s;
}

.contact-detail p a:hover {
    color: #064a87;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 40px 36px;
}

.contact-form-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'open sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3a3a4a;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dde0e8;
    border-radius: 8px;
    font-family: 'open sans', sans-serif;
    font-size: 0.85rem;
    color: #1a1a2e;
    background: #fafbfd;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b4c0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #07559e;
    box-shadow: 0 0 0 3px rgba(7, 85, 158, 0.1);
    background: #ffffff;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact-submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 32px;
    background: #07559e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'open sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.contact-submit-btn:hover {
    background: #064a87;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 85, 158, 0.25);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 40px;
        min-height: 200px;
    }

    .contact-section {
        padding: 40px 20px 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── ABOUT PAGE ── */

/* About Section */
.about-section {
    padding: 64px 48px;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'open sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.75;
    color: #5a5a6e;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.12));
}

/* Mission, Vision, Values */
.mv-section {
    padding: 64px 48px;
    background: #f8f9fc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #07559e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
}

.mv-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.mv-card p {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #5a5a6e;
    font-weight: 500;
}

/* Why Choose Us */
.why-section {
    padding: 64px 48px;
    background: #ffffff;
}

.why-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
}

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

.why-card {
    padding: 28px 24px;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    transition: all 0.35s ease;
}

.why-card:hover {
    border-color: #07559e;
    box-shadow: 0 8px 24px rgba(7, 85, 158, 0.1);
}

.why-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(7, 85, 158, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.why-card p {
    font-family: 'open sans', sans-serif;
    font-size: 0.82rem;
    line-height: 1.65;
    color: #5a5a6e;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
    }

    .mv-section {
        padding: 40px 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-section {
        padding: 40px 20px;
    }

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

/* ── SERVICES PAGE ── */
.services-page {
    padding-top: 64px;
    padding-bottom: 80px;
}

.services-page .services-grid {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── CASE STUDIES PAGE ── */
.case-section {
    padding: 64px 48px 80px;
    background: #f0f2f5;
}

.case-filters {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 8px 22px;
    border: 1.5px solid #06f82628;
    background: #ffffff;
    font-family: 'open sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a5a6e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #07559e;
    color: #07559e;
}

.filter-btn.active {
    background: #07559e;
    border-color: #07559e;
    color: #ffffff;
}

@keyframes caseIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-tile {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.case-tile-wide {
    grid-column: span 1;
}

.case-tile img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.case-tile:hover img {
    transform: scale(1.03);
}

.case-overlay {
    display: none;
}

.case-tag {
    display: none;
    font-family: 'open sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f5c518;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.case-overlay h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

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

@media (max-width: 768px) {
    .case-section {
        padding: 40px 20px 60px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}