@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --navy: #0a1a2f;
    --navy-2: #0f2742;
    --gold: #f0c24b;
    --gold-2: #e6b400;
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #1f2937;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 56px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section h2 {
    font-size: 32px;
    margin-top: 8px;
    color: var(--navy);
}

.subhead {
    color: #5b6678;
    max-width: 700px;
    margin: 12px auto 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(240, 194, 75, 0.15);
    color: #8a6a16;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 13px;
}

.muted {
    color: #7a8496;
}

.card {
    background: var(--card);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(10, 26, 47, 0.08);
}

/* Header */
header {
    width: 100%;
    padding: 14px 5%;
    background: rgba(10, 26, 47, 0.85);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

header img {
    height: 40px;
    max-height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    transform: scale(1);   /* Smaller logo */
    transform-origin: center; /* Keep zoom centered */
}


.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.4px;
}

.tagline {
    font-size: 12px;
    color: #d7e4ff;
}

nav ul {
    display: flex;
    gap: 26px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: 0.2s ease;
}

nav ul li a:hover {
    border-color: var(--gold);
}

.call-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    padding: 6px 12px;
    border-radius: 10px;
    color: #1a1200;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 10px 25px rgba(240, 194, 75, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(240, 194, 75, 0.45);
}

/* Hero Slider */
.hero {
    margin-top: 78px;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
    background: #0c1423;
    padding-bottom: 20px; /* Added bottom gap */
}


.slider {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(240, 194, 75, 0.28), transparent 35%), linear-gradient(135deg, rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.9));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    color: white;
    text-align: left;
    max-width: 780px;
}

.hero h1 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin: 12px 0 14px;
    text-transform: capitalize;
}

.lead {
    font-size: 18px;
    color: #e8edf7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.btn-primary, .btn-outline {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1c1300;
    box-shadow: 0 12px 25px rgba(240, 194, 75, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(240, 194, 75, 0.12);
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    color: #f5f7fb;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-meta {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    color: #485369;
}

.about-meta i {
    color: var(--gold-2);
    margin-right: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stat-box {
    background: linear-gradient(160deg, var(--navy), var(--navy-2));
    color: white;
    padding: 22px;
    text-align: left;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(10, 26, 47, 0.25);
}

.stat-box h3 {
    font-size: 34px;
    margin-bottom: 6px;
}

/* Services */
.services {
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.02), rgba(10, 26, 47, 0.05));
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--card);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(10, 26, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 194, 75, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(10, 26, 47, 0.12);
}

.service-card:hover::after {
    opacity: 1;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: rgba(240, 194, 75, 0.18);
    border-radius: 12px;
    color: var(--gold-2);
    margin-bottom: 12px;
}

.service-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
}

.service-card p {
    color: #56627a;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(10, 26, 47, 0.08);
    background: var(--card);
    border: 1px solid #e5e7eb;
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-info {
    padding: 14px 16px 18px;
}

.project-info span {
    font-weight: 700;
    color: var(--navy);
}

.project-info p {
    color: #5f6b82;
    margin-top: 6px;
    font-size: 14px;
}

.center-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 32px auto 0;
    padding: 12px 50px;
    width: fit-content;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
    color: #0a2d14;
    border: 1px solid #20c95b;
    text-align: center;
}


/* Contact */
.contact {
    background: var(--card);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-box {
    text-align: center;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
    box-shadow: 0 12px 30px rgba(10, 26, 47, 0.06);
}

.contact-box i {
    font-size: 28px;
    color: var(--gold-2);
    margin-bottom: 8px;
}

.inline-link {
    display: inline-block;
    margin-top: 6px;
    color: var(--navy);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 40px 0 24px;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 60px;
    border-radius: 10px;
}

.social {
    display: flex;
    gap: 12px;
}

.social a {
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    transition: background 0.2s ease;
}

.social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.copyright {
    text-align: center;
    margin-top: 16px;
    color: #d9e5ff;
    font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: #25D366;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
    nav ul {
        display: none;
    }
    header {
        padding: 14px 18px;
    }
    header img {
        height: 62px;
        max-height: 62px;
    }
    .hero {
        min-height: 82vh;
    }
    .hero-text {
        padding-top: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    header img {
        height: 56px;
        max-height: 56px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .section {
        padding: 44px 0;
    }
    .hero-buttons {
        width: 100%;
    }
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }
}
