﻿/* ============================================
   GLOBAL / RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f8f9fb;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 36px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

    .navbar.scrolled {
        background-color: #0B2C6B;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

.navbar-logo img {
    height: 56px;
    width: auto;
    border-radius: 6px;
    background-color: #fff;
    padding: 4px 10px;
}

.navbar-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

    .navbar-links a {
        color: rgba(255,255,255,0.9);
        font-size: 16px;
        font-weight: 600;
        transition: color 0.2s ease, background-color 0.2s ease;
        padding: 10px 16px;
        border-radius: 6px;
    }

        .navbar-links a:hover {
            color: #fff;
            background-color: rgba(255,255,255,0.08);
        }

        .navbar-links a.active {
            background-color: rgba(255,255,255,0.15);
            color: #fff;
        }

.navbar-toggle {
    display: none;
    color: #fff;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #0B2C6B;
    color: rgba(255,255,255,0.7);
    padding: 50px 36px 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 1300px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-brand {
    flex: 1.4;
}

.footer-logo {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

    .footer-logo span {
        color: #FF7A00;
    }

.footer-tagline {
    color: #FF7A00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 14px;
    line-height: 24px;
    max-width: 320px;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: background-color 0.2s ease;
}

    .social-icon:hover {
        background-color: #FF7A00;
    }

.footer-heading {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 16px;
        font-size: 15px;
        font-weight: 600;
    }

        .footer-col ul li a:hover {
            color: #FF7A00;
        }

.footer-contact {
    flex: 1.3;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: rgba(255,122,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

    .footer-map iframe {
        display: block;
    }

.footer-bottom {
    text-align: center;
    font-size: 13px;
    padding: 24px 0;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   HERO SECTION (Home Page)
   ============================================ */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('images/Homeimg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 44, 107, 0.60);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 68px 36px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255,122,0,0.15);
    border: 1px solid rgba(255,122,0,0.4);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 24px;
}

.hero-badge-text {
    color: #FF7A00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-size: 68px;
}

    .hero-heading .highlight {
        color: #FF7A00;
    }

.hero-subheading {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    line-height: 28px;
    margin-bottom: 36px;
    width: 55%;
}

.btn-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.btn-primary {
    background-color: #FF7A00;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    display: inline-block;
}

    .btn-primary:hover {
        background-color: #e66e00;
    }

.btn-outline {
    padding: 16px 32px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: #fff;
    }

/* ============================================
   ABOUT PAGE - HERO
   ============================================ */
.about-hero {
    background-color: #071d47;
    padding: 100px 36px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-hero-badge {
    background-color: rgba(255,122,0,0.15);
    border: 1px solid rgba(255,122,0,0.4);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-hero-badge-text {
    color: #FF7A00;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

    .about-hero-title .highlight {
        color: #FF7A00;
    }

.about-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    line-height: 26px;
    max-width: 500px;
}

/* ============================================
   GENERIC SECTIONS
   ============================================ */
.section {
    padding: 60px 36px;
}

    .section.bg-white {
        background-color: #fff;
    }

    .section.bg-gray {
        background-color: #f8f9fb;
    }

.two-col {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

    .two-col > div {
        flex: 1;
    }

.section-label {
    font-size: 11px;
    font-weight: 600;
    color: #FF7A00;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.orange-line {
    width: 40px;
    height: 3px;
    background-color: #FF7A00;
    border-radius: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #0B2C6B;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 15px;
    color: #555;
    line-height: 26px;
}

.text-center {
    text-align: center;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background-color: #0B2C6B;
    border-radius: 12px;
    padding: 32px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.highlight-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 24px;
}

/* ============================================
   VALUES GRID / CARDS
   ============================================ */
.grid {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 0.5px solid #e8eaf0;
    width: 30%;
    flex: 1 1 280px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0B2C6B;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    color: #666;
    line-height: 20px;
}

/* ============================================
   TEAM / MEMBER CARDS
   ============================================ */
.member-card {
    background-color: #f8f9fb;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    border: 0.5px solid #e8eaf0;
    flex: 1;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background-color: #0B2C6B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.avatar-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.member-name {
    font-size: 15px;
    font-weight: 600;
    color: #0B2C6B;
    margin-bottom: 4px;
}

.member-role {
    font-size: 12px;
    color: #FF7A00;
    font-weight: 500;
    margin-bottom: 8px;
}

.member-desc {
    font-size: 12px;
    color: #888;
    line-height: 18px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background-color: #0B2C6B;
    padding: 60px 36px;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-bottom: 32px;
}

.cta-btn {
    background-color: #FF7A00;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    display: inline-block;
}

    .cta-btn:hover {
        background-color: #e66e00;
    }

/* ============================================
   SERVICES PAGE - HERO (with background image)
   ============================================ */
.services-hero {
    position: relative;
    background-color: #071d47;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .services-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(7, 29, 71, 0.65);
    }

.services-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 36px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   STATS (Our Promise box)
   ============================================ */
.stat-row {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #FF7A00;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.15);
}

/* ============================================
   SERVICE CARDS WITH TAGS
   ============================================ */
.service-card .card-desc {
    margin-bottom: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background-color: rgba(11,44,107,0.07);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    color: #0B2C6B;
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS - PROCESS STEPS
   ============================================ */
.process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    margin-bottom: 32px;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #0B2C6B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    font-size: 16px;
    font-weight: 800;
    color: #FF7A00;
}

.connector {
    position: absolute;
    top: 27px;
    left: 70%;
    right: -30%;
    height: 2px;
    background-color: rgba(11,44,107,0.15);
    z-index: 0;
}

.process-title {
    font-size: 14px;
    font-weight: 700;
    color: #0B2C6B;
    text-align: center;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 12px;
    color: #777;
    text-align: center;
    line-height: 18px;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.industry-chip {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 0.5px solid #e8eaf0;
    min-width: 110px;
}

.industry-icon {
    font-size: 22px;
}

.industry-label {
    font-size: 12px;
    font-weight: 600;
    color: #0B2C6B;
}

/* ============================================
   CONTACT PAGE - INFO CARDS
   ============================================ */
.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    border: 0.5px solid #e8eaf0;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: #FF7A00;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-value {
    font-size: 15px;
    font-weight: 700;
    color: #0B2C6B;
    margin-bottom: 4px;
}

.info-sub {
    font-size: 12px;
    color: #999;
}

/* ============================================
   CONTACT FORM + SIDEBAR
   ============================================ */
.contact-two-col {
    align-items: flex-start;
}

.contact-form-col {
    flex: 1.6;
}

.contact-sidebar-col {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .input-row .input-group {
        flex: 1;
        min-width: 220px;
    }

.input-group {
    margin-bottom: 18px;
}

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #0B2C6B;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    border: 1px solid #e0e4ef;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #222;
    background-color: #fafbfd;
    font-family: inherit;
}

    .form-input:focus {
        outline: none;
        border-color: #FF7A00;
    }

.text-area {
    min-height: 100px;
    resize: vertical;
}

/* CHIPS (radio buttons) */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    border: 1px solid #dde1ed;
    border-radius: 6px;
    padding: 7px 12px;
    background-color: #f8f9fb;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

    .chip input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .chip:has(input:checked) {
        background-color: #0B2C6B;
        border-color: #0B2C6B;
        color: #fff;
    }

/* SUBMIT BUTTON */
.submit-btn {
    background-color: #FF7A00;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    margin-top: 4px;
}

    .submit-btn:hover {
        background-color: #e66e00;
    }

/* SIDEBAR CARDS */
.side-card {
    background-color: #0B2C6B;
    border-radius: 12px;
    padding: 28px;
}

.side-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.side-card-item {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 26px;
}

.side-card-orange {
    background-color: rgba(255,122,0,0.08);
    border: 1px solid rgba(255,122,0,0.25);
    border-radius: 12px;
    padding: 24px;
}

.side-card-orange-title {
    font-size: 15px;
    font-weight: 700;
    color: #0B2C6B;
    margin-bottom: 10px;
}

.side-card-orange-desc {
    font-size: 13px;
    color: #555;
    line-height: 20px;
    margin-bottom: 16px;
}

.call-btn {
    background-color: #FF7A00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

    .call-btn:hover {
        background-color: #e66e00;
        color: #fff;
    }

.form-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #1e7e34;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 24px;
}


@media (max-width: 768px) {

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        background-color: #0B2C6B;
        padding: 16px;
        border-radius: 8px;
        gap: 8px;
        align-items: stretch;
    }

        .navbar-links.open {
            display: flex;
        }

        .navbar-links a {
            text-align: center;
        }

    .navbar-toggle {
        display: block;
    }

    .hero-heading {
        font-size: 38px;
    }

    .hero-subheading {
        width: 100%;
    }

    .btn-row {
        flex-direction: column;
    }

    .about-hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .two-col {
        flex-direction: column;
    }

    .section-title {
        font-size: 26px;
    }

    .grid {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
    }

    .process-row {
        flex-direction: column;
        align-items: center;
    }

    .connector {
        display: none;
    }

    .services-hero-overlay {
        padding: 80px 24px 50px;
    }

    .contact-two-col {
        flex-direction: column;
    }
}
