:root {
    --primary: #0d4d8b;
    --primary-dark: #0b3d70;
    --accent: #d4a93f;
    --accent-soft: #f8f2df;
    --text: #1e293b;
    --muted: #5f6c7b;
    --white: #ffffff;
    --bg: #f5f7fb;
    --card: #ffffff;
    --shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 77, 139, 0.08);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
}

.logo p {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(13, 77, 139, 0.2);
}

.menu-toggle {
    display: none;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

.call-float,
.whatsapp-float {
    background: #25d366;
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
}

.call-float {
    background: var(--primary);
    box-shadow: 0 14px 28px rgba(13, 77, 139, 0.3);
}

.home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 680px;
    background: linear-gradient(rgba(11, 19, 31, 0.58), rgba(11, 19, 31, 0.62)), url("../images/download(18).jpg") center/cover no-repeat;
    padding: 60px 20px;
}

.hero-content {
    max-width: 820px;
    text-align: center;
    color: var(--white);
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 169, 63, 0.2);
    border: 1px solid rgba(212, 169, 63, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.home h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.home p {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #c9961f);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(212, 169, 63, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.main,
.services,
.contact {
    padding: 78px 0;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading span {
    display: inline-block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.main .section-heading h2,
.services .section-heading h2,
.contact .section-heading h2 {
    position: relative;
    padding-bottom: 12px;
}

.main .section-heading h2::after,
.services .section-heading h2::after,
.contact .section-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.log1 {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.out {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.out p {
    margin-bottom: 18px;
    font-size: 1.04rem;
    color: var(--muted);
}

.out h2 {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    color: var(--primary-dark);
    line-height: 1.5;
    margin-top: 20px;
}

.abolog1 {
    display: grid;
    gap: 18px;
}

.abolog1 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.box {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card .logo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 0.96rem;
}

.site-footer {
    background: #191d25;
    color: rgba(255, 255, 255, 0.78);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.site-footer h6 {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.page-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.banner-about {
    background: linear-gradient(rgba(8, 26, 46, 0.55), rgba(8, 26, 46, 0.55)), url("../images/about3.jpg") center/cover no-repeat;
}

.banner-services {
    background: linear-gradient(rgba(8, 26, 46, 0.52), rgba(8, 26, 46, 0.52)), url("../images/service.jpg") center/cover no-repeat;
}

.banner-contact {
    background: linear-gradient(rgba(8, 26, 46, 0.5), rgba(8, 26, 46, 0.5)), url("../images/contact.jpg") center/cover no-repeat;
}

.clients .photo {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 18px;
}

.clients .card {
    padding: 12px;
}

.clients .card img {
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
}

.info-box {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 28px 24px;
}

.info-box h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.info-box p {
    color: var(--muted);
    margin-bottom: 10px;
}

.testimonials-section {
    overflow: hidden;
    padding: 78px 0;
    background: var(--accent-soft);
}

.testimonial-marquee {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: testimonial-scroll 28s linear infinite;
}

.testimonial-card {
    width: min(360px, 78vw);
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(13, 77, 139, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.testimonial-card p {
    color: var(--text);
    margin-bottom: 14px;
}

.testimonial-card strong {
    color: var(--primary);
    font-size: 0.9rem;
}

@keyframes testimonial-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.faq-section {
    padding: 78px 0;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.faq-list details {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.faq-list summary {
    color: var(--primary-dark);
    cursor: pointer;
    font-weight: 700;
}

.faq-list p {
    color: var(--muted);
    padding-top: 12px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 78px;
    padding: 38px 42px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 24px;
    color: var(--white);
}

.clients + .cta-band {
    margin-top: 36px;
}

.cta-band .eyebrow {
    margin-bottom: 10px;
}

.cta-band h2 {
    max-width: 650px;
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
}

.map-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 36px;
}

.map-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    background: var(--primary-dark);
    border-radius: 22px;
    color: var(--white);
}

.map-copy > span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.map-copy h2 {
    margin: 10px 0;
}

.map-copy p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
}

.map-frame {
    width: 100%;
    min-height: 330px;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
    .box {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .log1 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 18px 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        max-height: 320px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .home {
        min-height: 560px;
    }

    .box,
    .clients .photo,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        text-align: center;
    }

    .footer-links {
        justify-items: center;
    }

    .site-footer {
        padding: 48px 0 112px;
    }

    .floating-actions {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .call-float,
    .whatsapp-float {
        flex: 1;
        text-align: center;
    }

    .cta-band,
    .map-layout {
        grid-template-columns: 1fr;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 48px;
        padding: 28px 22px;
    }

    .cta-band .btn {
        width: 100%;
    }

    .map-frame {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: row;
        text-align: left;
    }

    .home {
        min-height: 500px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .out,
    .info-box,
    .card {
        padding: 18px 16px;
    }

    .testimonial-card {
        padding: 20px;
    }
}
