﻿body {
}

/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
    color: #222;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* =========================================
   TOPBAR
========================================= */

.topbar {
    width: 100%;
    background: #071c4d;
    color: #fff;
    padding: 10px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    font-size: 13px;
}

    .topbar span {
        cursor: pointer;
    }

/* =========================================
   HEADER
========================================= */

header {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

    header.scrolled {
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 65px;
        transition: 0.3s ease;
    }

header.scrolled .logo img {
    height: 55px;
}

/* =========================================
   NAVIGATION
========================================= */

.main-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

    .main-menu li {
        position: relative;
    }

        .main-menu li a {
            padding: 14px 16px;
            display: block;
            color: #222;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s;
        }

            .main-menu li a:hover {
                color: #0b3c88;
            }

/* =========================================
   BUTTON
========================================= */

.quote-btn {
    background: #0b3c88;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    font-weight: 500;
}

    .quote-btn:hover {
        background: #072b64;
        transform: translateY(-2px);
    }

/* =========================================
   SUBMENU
========================================= */

.submenu {
    position: absolute;
    top: 58px;
    left: 0;
    background: #1e2430;
    min-width: 240px;
    border-radius: 12px;
    padding: 15px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    z-index: 999;
    animation: fadeDown .3s ease;
}

    .submenu.show {
        display: flex;
    }

    .submenu a {
        color: #fff !important;
        padding: 10px;
        border-radius: 6px;
        transition: 0.3s;
    }

        .submenu a:hover {
            background: #0b3c88;
        }

/* =========================================
   MEGA MENU
========================================= */

.mega-submenu {
    width: 760px;
    flex-direction: row;
    gap: 25px;
}

.submenu-column {
    width: 30%;
}

    .submenu-column h4 {
        color: #00c6ff;
        margin-bottom: 15px;
    }

.submenu-image {
    width: 40%;
}

    .submenu-image img {
        border-radius: 10px;
    }

/* =========================================
   HERO SECTION
========================================= */

.hero {
    height: 650px;
    background: url('/Images/banner1.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.55);
    }

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 90px;
    color: #fff;
    max-width: 700px;
    animation: fadeUp 1s ease;
}

    .hero-content p {
        color: #7cff00;
        margin-bottom: 12px;
        font-size: 18px;
        font-weight: 500;
    }

    .hero-content h1 {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

        .hero-content h1 span {
            color: #00c6ff;
        }

    .hero-content .hero-text {
        line-height: 1.8;
        font-size: 16px;
        color: #ddd;
        margin-bottom: 30px;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

    .hero-btn.primary {
        background: #0b3c88;
        color: #fff;
    }

    .hero-btn.secondary {
        border: 2px solid #fff;
        color: #fff;
    }

    .hero-btn:hover {
        transform: translateY(-4px);
    }

/* =========================================
   STATS
========================================= */

.stats {
    width: 90%;
    margin: -70px auto 70px;
    background: linear-gradient(90deg,#061847,#0b3c88);
    border-radius: 18px;
    padding: 40px 25px;
    display: flex;
    justify-content: space-around;
    color: #fff;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat {
    text-align: center;
}

    .stat h2 {
        font-size: 54px;
        font-weight: 700;
    }

    .stat p {
        margin-top: 8px;
        font-size: 15px;
    }

/* =========================================
   ABOUT SECTION
========================================= */

.section {
    padding: 80px 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 42px;
        color: #111;
        margin-bottom: 10px;
    }

    .section-title p {
        color: #666;
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #071c4d;
}

.about-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.about-list {
    margin-top: 25px;
}

    .about-list li {
        list-style: none;
        margin-bottom: 14px;
        color: #333;
    }

    .about-list i {
        color: #0b3c88;
        margin-right: 10px;
    }

/* =========================================
   SERVICES
========================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: #0b3c88;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #111;
}

.service-card p {
    line-height: 1.8;
    color: #666;
}

/* =========================================
   CLIENTS
========================================= */

.clients {
    background: #fff;
    padding: 70px 30px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    margin-top: 40px;
}

.client-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

    .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .client-card img {
        max-height: 70px;
    }

/* =========================================
   FOOTER
========================================= */

footer {
    background: #0a0a0a;
    color: #fff;
    padding: 70px 60px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    width: 33%;
}

    .footer-col h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .footer-col p {
        color: #ccc;
        line-height: 1.8;
    }

    .footer-col a {
        display: block;
        color: #ccc;
        margin-bottom: 12px;
        transition: 0.3s;
    }

        .footer-col a:hover {
            color: #00c6ff;
        }

/* =========================================
   SOCIAL ICONS
========================================= */

.social {
    margin-top: 20px;
}

    .social i {
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        margin-right: 10px;
        transition: 0.3s;
        cursor: pointer;
    }

.fa-facebook-f {
    background: #1877f2;
}

.fa-instagram {
    background: #e4405f;
}

.fa-twitter {
    background: #1da1f2;
}

.fa-linkedin-in {
    background: #0077b5;
}

.social i:hover {
    transform: translateY(-6px);
}

/* =========================================
   COPYRIGHT
========================================= */

.copy {
    border-top: 1px solid #222;
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    color: #aaa;
    font-size: 14px;
}

/* =========================================
   FLOATING
========================================= */

.chat-box {
    position: fixed;
    bottom: 25px;
    right: 95px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-size: 13px;
    z-index: 999;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    z-index: 999;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1024px) {

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .hero-content h1 {
        font-size: 56px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .topbar {
        padding: 10px;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    header {
        flex-direction: column;
        padding: 15px;
    }

    .main-menu {
        flex-direction: column;
        width: 100%;
    }

        .main-menu li {
            width: 100%;
        }

            .main-menu li a {
                border-bottom: 1px solid #eee;
            }

    .submenu {
        position: relative;
        width: 100%;
        top: 0;
    }

    .mega-submenu {
        width: 100%;
        flex-direction: column;
    }

    .submenu-column,
    .submenu-image {
        width: 100%;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero {
        height: 500px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
    }

        .hero-content h1 {
            font-size: 42px;
        }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .chat-box {
        display: none;
    }

    /* RESPONSIVE */

    @media(max-width:992px) {

        .about-section {
            flex-direction: column;
        }

        .about-image,
        .about-content {
            width: 100%;
        }

        .service-grid {
            grid-template-columns: 1fr;
        }
    }

    /* =========================
   ANIMATION
========================= */

    @keyframes fadeDown {

        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* =========================
   REQUEST FREE QUOTE RESPONSIVE
========================= */

    .quote-page {
        padding: 50px 20px;
    }

    .quote-container {
        flex-direction: column;
    }

    .quote-left,
    .quote-form-box {
        width: 100%;
    }

        .quote-left h1 {
            font-size: 38px;
        }

    .quote-features {
        grid-template-columns: 1fr;
    }

    .quote-form-box {
        padding: 25px;
    }

    .about-section {
        padding: 20px 90px 80px;
    }

    .about-container {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .about-image {
        flex: 1;
    }

        .about-image img {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.15);
        }

    .about-content {
        flex: 1;
    }

        .about-content h2 {
            font-size: 42px;
            color: #0b3c88;
            margin-bottom: 25px;
        }

        .about-content p {
            line-height: 1.9;
            font-size: 16px;
            color: #555;
            margin-bottom: 22px;
        }

    .highlight-box {
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        margin-top: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border-left: 5px solid #0b3c88;
    }

        .highlight-box i {
            color: #0b3c88;
            margin-right: 10px;
        }
}
