﻿:root {
    --primary: #032B5B;
    --secondary: #0A4E9B;
    --gold: #D4AF37;
    --gold-light: #F6C64B;
    --white: #ffffff;
    --bg: #F4F8FC;
    --text: #0F172A;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* TOP BAR */

.topbar {
    background: #032B5B;
    color: #fff;
    padding: 8px 0;
}

.social-link {
    color: #F6C64B;
    margin-left: 12px;
    font-size: 18px;
}

/* NAVBAR */

.glid-navbar {
    background: linear-gradient(90deg,#032B5B,#0A4E9B);
}

.site-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .logo-box h3 {
        color: #fff;
        font-weight: 800;
        margin: 0;
    }

    .logo-box p {
        color: #F6C64B;
        margin: 0;
        font-size: 12px;
    }

.nav-link {
    color: white !important;
    font-weight: 600;
    margin-left: 18px;
}

    .nav-link:hover,
    .nav-link.active {
        color: #F6C64B !important;
    }

.quote-btn {
    background: linear-gradient(45deg,#D4AF37,#F6C64B);
    color: #032B5B;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

/* FOOTER */

.footer {
    background: #02152F;
    color: white;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
}

.footer h4,
.footer h5 {
    color: #F6C64B;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 8px 0;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #F6C64B;
        }

.copyright {
    text-align: center;
    color: #B8C4D6;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.hero-section {
    padding: 90px 0;
    background: linear-gradient(135deg,#032B5B,#0A4E9B);
    color: white;
}

.hero-tag {
    background: #F6C64B;
    color: #032B5B;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 20px 0;
}

    .hero-section h1 span {
        color: #F6C64B;
    }

.hero-img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-10px);
    }
}

.btn-gold {
    background: #D4AF37;
    color: #032B5B;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline {
    border: 2px solid #F6C64B;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
}

.service-box {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(3,43,91,.08);
}

    .service-box:hover {
        transform: translateY(-8px);
        border-bottom: 4px solid #D4AF37;
    }

    .service-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 16px;
    }

.why-box {
    background: #032B5B;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

    .why-box i {
        font-size: 42px;
        color: #F6C64B;
        margin-bottom: 15px;
    }

.counter-home {
    padding: 80px 0;
    background: linear-gradient(90deg,#032B5B,#0A4E9B);
    color: white;
}

    .counter-home h2 {
        color: #F6C64B;
        font-size: 48px;
    }

.gallery-thumb {
    width: 100%;
    border-radius: 18px;
    height: 240px;
    object-fit: cover;
}

.cta-home {
    background: #032B5B;
    color: white;
    padding: 60px 0;
}
/*==============================
 ABOUT PAGE
==============================*/

.about-hero {
    background: url('../Images/about-banner.png') center center/cover;
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
}

    .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(3,43,91,.85),rgba(10,78,155,.70));
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.section-subtitle {
    color: #D4AF37;
    font-weight: 700;
}

.section-title {
    color: #032B5B;
    font-size: 28px;
    font-weight: 800;
}

.about-mini {
    background: #F8FAFC;
    border-left: 4px solid #D4AF37;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

    .about-mini i {
        color: #D4AF37;
        margin-right: 8px;
    }

.mission-bg {
    background: #EEF4FB;
}

.mission-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(3,43,91,.08);
}

    .mission-card i {
        color: #D4AF37;
        font-size: 50px;
        margin-bottom: 20px;
    }

.why-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(3,43,91,.08);
    transition: .3s;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

    .why-card i {
        font-size: 45px;
        color: #D4AF37;
        margin-bottom: 15px;
    }

.timeline-bg {
    background: #032B5B;
    color: white;
}

.timeline {
    border-left: 4px solid #D4AF37;
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 35px;
    position: relative;
}

    .timeline-item::before {
        content: '';
        width: 18px;
        height: 18px;
        background: #D4AF37;
        border-radius: 50%;
        position: absolute;
        left: -41px;
        top: 8px;
    }

    .timeline-item h4 {
        color: #F6C64B;
    }

.director-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #D4AF37;
}

.gold-text {
    color: #D4AF37;
}

.industry-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(3,43,91,.08);
}

    .industry-card i {
        font-size: 42px;
        color: #D4AF37;
        margin-bottom: 15px;
    }
/*==============================
 SERVICES PAGE
==============================*/

.services-hero {
    background: url('../Images/services-banner.png') center/cover;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
}

    .services-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(3,43,91,.85),rgba(10,78,155,.75));
    }

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(3,43,91,.10);
    transition: .35s;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

.service-body {
    padding: 25px;
}

    .service-body i {
        color: #D4AF37;
        font-size: 40px;
        margin-bottom: 15px;
    }

    .service-body h4 {
        color: #032B5B;
        font-weight: 700;
    }

.btn-service {
    display: inline-block;
    margin-top: 15px;
    background: #032B5B;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-service:hover {
        background: #D4AF37;
        color: #032B5B;
    }
/*==============================
 GALLERY PAGE
==============================*/

.gallery-hero {
    background: url('../Images/gallery-banner.png') center/cover;
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
}

    .gallery-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(3,43,91,.85),rgba(10,78,155,.70));
    }

.gallery-filter button {
    border: none;
    background: #032B5B;
    color: #fff;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 30px;
    transition: .3s;
    font-weight: 600;
}

    .gallery-filter button:hover,
    .gallery-filter button.active {
        background: #D4AF37;
        color: #032B5B;
    }

.gallery-card {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 12px 28px rgba(3,43,91,.08);
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .4s;
    }

    .gallery-card:hover img {
        transform: scale(1.12);
    }

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,43,91,.75);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: .4s;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h5 {
    color: #F6C64B;
    font-size: 22px;
}

.overlay p {
    color: white;
}
/* CONTACT PAGE */

.contact-hero {
    background: url('../Images/contact-banner.png') center center/cover;
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(3,43,91,.88),rgba(10,78,155,.75));
    }

.contact-box {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(3,43,91,.08);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .contact-item i {
        color: #D4AF37;
        font-size: 28px;
        margin-top: 5px;
    }

.btn-submit {
    width: 100%;
    background: #032B5B;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
}

    .btn-submit:hover {
        background: #D4AF37;
        color: #032B5B;
    }

.btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 35px;
    text-decoration: none;
    margin-top: 25px;
    font-weight: 700;
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 20px;
}

.message-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

:root {
    --blue: #0B3C91;
    --gold: #D4AF37;
    --light: #F4F8FF;
}

body {
    background: #fff;
    font-family: 'Segoe UI',sans-serif;
}

/*================ HERO BANNER =================*/

.project-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background: url('../Images/project-banner.png') center center/cover no-repeat;
    border-radius: 0 0 45px 45px;
    overflow: hidden;
}

    .project-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(5,18,50,.82) 0%, rgba(11,60,145,.55) 45%, rgba(0,0,0,.15) 100%);
    }

.banner-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
}

    .banner-content h1 {
        font-size: 56px;
        margin: 0;
        font-weight: 800;
    }

    .banner-content span {
        color: #FFD24A;
    }

    .banner-content p {
        margin-top: 15px;
        font-size: 20px;
        max-width: 560px;
        line-height: 34px;
        color: #E8F1FF;
    }

.banner-btn {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(90deg,var(--gold),#FFD95A);
    color: #002B6F;
    padding: 15px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

/*============== SECTION TITLE =================*/

.section-title {
    text-align: center;
    margin: 20px auto 20px;
}

    .section-title h2 {
        color: var(--blue);
        font-size: 28px;
        font-weight: 800;
    }

    .section-title p {
        color: #666;
        font-size: 17px;
    }

/*============== PROJECT GRID =================*/

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .project-card:hover {
        transform: translateY(-10px);
    }

    .project-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.project-body {
    padding: 25px;
}

    .project-body h3 {
        color: var(--blue);
        margin-bottom: 12px;
    }

    .project-body p {
        color: #666;
        line-height: 28px;
        font-size: 15px;
    }

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.completed {
    background: #E8FFF0;
    color: #129C52;
}

.ongoing {
    background: #FFF8DF;
    color: #B97A00;
}

.upcoming {
    background: #EEF4FF;
    color: #2050C9;
}

/*============== STATS =================*/

.stats {
    margin-top: 70px;
    background: linear-gradient(90deg,#08295F,#0B3C91);
    padding: 60px 30px;
    border-radius: 30px;
    color: #fff;
}

.stat-box {
    text-align: center;
}

.stat-number {
    color: #FFD24A;
    font-size: 42px;
    font-weight: 800;
}

.stat-title {
    margin-top: 10px;
    font-size: 16px;
}

/*============= CTA =================*/

.cta {
    margin: 80px auto;
    background: linear-gradient(90deg,#0B3C91,#123F8A);
    color: #fff;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

    .cta h2 {
        font-size: 40px;
    }

    .cta p {
        color: #DDE7FF;
        margin: 20px auto;
        max-width: 700px;
    }

    .cta a {
        display: inline-block;
        padding: 16px 40px;
        border-radius: 40px;
        background: linear-gradient(90deg,#FFD24A,#C89218);
        color: #08295F;
        text-decoration: none;
        font-weight: 700;
    }

/*============= MOBILE =================*/

@media(max-width:768px) {

    .project-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .cta {
        padding: 35px 20px;
    }
}
