* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* TOPBAR */

.topbar {
    background: #002d72;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
}

/* HEADER */
/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo img {
    height: 80px;
    width: auto;
}

/* DESKTOP MENU */

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: .3s;
}

nav ul li a:hover {
    color: #0057c2;
}

/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0057c2;
}

/* QUOTE BUTTON */

.quote-btn {
    background: #0057c2;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: .3s;
}

.quote-btn:hover {
    background: #002d72;
}

/* MOBILE MENU */

@media(max-width:991px) {

    .header-wrap {
        padding: 10px 0;
    }

    .logo img {
        height: 65px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 32px;
        color: #0057c2;
        z-index: 1101;
        cursor: pointer;
    }

    .quote-btn {
        display: none;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 1100;
        transition: all .4s ease;
        padding-top: 100px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .15);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex !important;
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
    }

    nav ul li {
        display: block !important;
        width: 100%;
        list-style: none;
    }

    nav ul li a {
        display: block !important;
        color: #222 !important;
        text-decoration: none;
        padding: 18px 25px;
        border-bottom: 1px solid #eee;
        font-size: 18px;
        font-weight: 600;
        background: #fff;
    }

    nav ul li a:hover {
        background: #f5f5f5;
    }
}

/* HERO */

.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #002d72, #0057c2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-left {
    color: #fff;
}

.badge {
    background: #fff;
    color: #0057c2;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-top: 35px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ffc107;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: #ffc107;
    color: #222;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-right img {
    width: 100%;
}

/* FEATURES */

.features {
    padding: 80px 0;
    background: #f5f8fd;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 15px;
    transition: .3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 45px;
    color: #0057c2;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

/* COMMON */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #002d72;
    position: relative;
}

.section-title h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: #0057c2;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #002d72;
}

.about-content ul {
    margin-top: 25px;
    margin-left: 10px;
}

.about-content li {
    margin-bottom: 12px;
}

/* BRANDS */

.brands {
    background: #f5f8fd;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 55px;
    align-items: center;
}

.brand-grid img {
    width: 100%;
    transition: .3s;
}

.brand-grid img:hover {
    filter: grayscale(100%);
}

/* SOLUTIONS */

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.solution-card {
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card i {
    font-size: 55px;
    color: #0057c2;
    margin-bottom: 20px;
}

/* WHY US */

.why-us {
    background: #002d72;
    color: #fff;
}

.why-us .section-title h2 {
    color: #fff;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.counter-grid h2 {
    font-size: 60px;
    color: #ffc107;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-grid h3 {
    color: #002c70
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

.contact textarea {
    min-height: 140px;
}

.contact button {
    background: #0057c2;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}

/* FOOTER */

footer {
    background: #00183d;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

footer h2 {
    margin-bottom: 10px;
}

/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
}

/* =========================
   ABOUT PAGE
========================= */

.page-banner {
    background: linear-gradient(135deg, #002d72, #0057c2);
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 20px;
    opacity: .9;
}

/* COMPANY PROFILE */

.about-page {
    padding: 100px 0;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.about-page h2 {
    color: #002d72;
    margin-bottom: 20px;
    font-size: 36px;
}

.about-page p {
    margin-bottom: 20px;
    color: #555;
}

/* STATS */

.company-stats {
    background: #002d72;
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    color: #ffc107;
    font-size: 60px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
}

/* PRODUCTS */

.service-section {
    padding: 100px 0;
}

.service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.service-columns ul {
    list-style: none;
}

.service-columns li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.service-columns li:before {
    content: "✓ ";
    color: #0057c2;
    font-weight: bold;
}

/* INDUSTRIES */

.industry-section {
    background: #f5f8fd;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.industry-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    font-weight: 600;
    transition: .3s;
}

.industry-card:hover {
    transform: translateY(-8px);
}

/* CLIENTS */

.clients-section {
    padding: 100px 0;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.client-grid div {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    font-weight: 600;
}

/* AMC */

.amc-section {
    background: #002d72;
    color: #fff;
    text-align: center;
}

.amc-section p {
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

.amc-section blockquote {
    font-size: 26px;
    font-style: italic;
    color: #ffc107;
    margin-top: 40px;
}

/* NETWORK */

.network-section {
    padding: 100px 0;
    text-align: center;
}

.network-section p {
    max-width: 900px;
    margin: 20px auto;
}

/* ENGINEERING */

.engineering-section {
    background: #f5f8fd;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.support-grid div {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    font-weight: 600;
}

/* AI */

.ai-section {
    background: #ffffff;
}

.ai-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* CLOSING */

.closing-section {
    background: linear-gradient(135deg, #002d72, #0057c2);
    color: #fff;
    text-align: center;
}

.closing-section h2 {
    margin-bottom: 20px;
    font-size: 40px;
}

.closing-section p {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-page .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-columns {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .client-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px) {

    .page-banner h1 {
        font-size: 34px;
    }

    .about-page h2 {
        font-size: 30px;
    }

    .stats-grid,
    .industry-grid,
    .client-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h2 {
        font-size: 42px;
    }

    .closing-section h2 {
        font-size: 30px;
    }

}

.brands-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.brand-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.brand-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 1px solid #edf2f7;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.brand-card img {
    width: 180px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-card h3 {
    color: #003b8e;
    margin-bottom: 10px;
    font-size: 22px;
}

.brand-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* CONTACT PAGE */

.contact-page {
    padding: 100px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-info-box h3,
.contact-form-box h3 {
    color: #002d72;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: #0057c2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

.contact-btn {
    background: #0057c2;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.contact-btn:hover {
    background: #002d72;
}

.map-section {
    margin-top: 0;
}

@media(max-width:991px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

}

.contactnavt {
    display: none;
}

@media(max-width:480px) {

    .contactnavt {
        display: inline;
    }

    .contact-info-box,
    .contact-form-box {
        background: #fff;
        padding: 5px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .contact-info-box h3,
    .contact-form-box h3 {
        color: #002d72;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        background: #0057c2;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }
}

.single-contact {
    display: flex;
    justify-content: center;
}

.contact-info {
    max-width: 100%;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-persons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.person {
    min-width: 220px;
}

.person h4 {
    margin-bottom: 10px;
    color: #0d6efd;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.contact-form-box select {
    color: #222;
}

.contact-form-box option {
    color: #222;
    font-family: 'Poppins', sans-serif;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

::placeholder {
    color: #555 !important;
    opacity: 1;
}

.contact-form-box select {
    width: 100%;
    height: 58px;
    padding: 0 15px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.contact-form-box select:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .15);
}