﻿:root {
    /* White & Blue Color Theme */
    --primary-color: #0056b3; /* Corporate Blue */
    --secondary-color: #003d82; /* Deep Blue */
    --wa-color: #25D366; /* Official WhatsApp Green */
    --accent-light: #e6f2ff; /* Very Light Blue tint */
    --bg-white: #ffffff;
    --bg-offwhite: #f8fbff;
    --text-dark: #111827;
    --text-main: #374151;
    --text-light: #6b7280;
    --card-radius: 12px;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    background-color: var(--bg-white);
    padding-top: 76px;
}

/* Adjust bottom padding on mobile so the footer isn't hidden by the sticky bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.08);
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.navbar-brand {
    color: var(--text-dark) !important;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(230, 242, 255, 0.85)), url('/assets/images/photo-1518770660439-4636190af475.jpg?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

        .hero h1 span {
            color: var(--primary-color);
        }

    .hero p {
        font-size: 1.2rem;
        color: var(--text-main);
        margin-bottom: 2.5rem;
        max-width: 600px;
        font-weight: 500;
    }

/* Buttons */
.btn-custom {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

    .btn-custom:hover {
        background: var(--secondary-color);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    }

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

    .btn-outline-custom:hover {
        background: var(--primary-color);
        color: #fff;
    }

/* --- SECTION HEADERS --- */
.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* --- SERVICES CARDS --- */
.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--primary-color);
        transition: var(--transition);
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
        border-color: transparent;
    }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover h4, .service-card:hover p {
            color: #fff;
        }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: #fff;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
    margin: 0;
}

/* --- PRODUCTS SECTION --- */
#products {
    background-color: var(--bg-offwhite);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
        border-color: var(--primary-color);
    }

.product-img-wrapper {
    overflow: hidden;
    height: 220px;
    background: #e2e8f0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px 20px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-product {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .btn-product:hover {
        background: var(--primary-color);
        color: #fff;
    }

/* --- WHY CHOOSE US --- */
.features-section {
    background-color: var(--accent-light);
    color: var(--text-main);
    padding: 100px 0;
    border-top: 1px solid rgba(0, 86, 179, 0.1);
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

    .feature-box i {
        font-size: 2.5rem;
        color: var(--primary-color);
        background: var(--bg-white);
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.1);
    }

    .feature-box h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .feature-box p {
        color: var(--text-main);
        font-size: 0.95rem;
    }

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white;
    }

/* --- FOOTER --- */
footer {
    background-color: #001a33;
    color: #a9cce3;
    padding: 60px 0 20px;
    border-top: 4px solid var(--primary-color);
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

    .footer-logo span {
        color: #66b2ff;
    }

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #a9cce3;
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }

.social-icons a {
    color: #001a33;
    background: #a9cce3;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

    .social-icons a:hover {
        background: #ffffff;
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* --- MOBILE STICKY ACTION BAR --- */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

    .mobile-action-bar a {
        flex: 1;
        text-align: center;
        padding: 16px 0;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        letter-spacing: 0.5px;
    }

.btn-call-mobile {
    background-color: var(--primary-color);
}

    .btn-call-mobile:active {
        background-color: var(--secondary-color);
    }

.btn-wa-mobile {
    background-color: var(--wa-color);
}

    .btn-wa-mobile:active {
        background-color: #1DA851;
    }

/* --- EXACT SAME HEADER BANNER --- */
.page-header {
    /* Office/Teamwork background image */
    background: linear-gradient(to right, rgba(0, 86, 179, 0.85), rgba(0, 61, 130, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .page-header h1 {
        font-size: 3.5rem;
        color: #ffffff;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .page-header p {
        font-size: 1.15rem;
        color: #e6f2ff;
        max-width: 700px;
        margin: 0 auto;
        font-weight: 500;
    }

/* --- MISSION SECTION --- */
.mission-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0, 86, 179, 0.05);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.mission-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* --- WHY US FEATURE CARDS --- */
.feature-grid {
    padding: 60px 0;
    background: var(--bg-offwhite);
}

.why-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.08);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-color);
        transition: var(--transition);
        z-index: -1;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
        border-color: var(--primary-color);
    }

        .why-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

.why-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    background: #e6f2ff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* --- STATS BANNER --- */
.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e6f2ff;
}

/* --- SOLUTIONS ALTERNATING LAYOUT --- */
.solution-row {
    padding: 80px 0;
}

    .solution-row.bg-light-blue {
        background-color: var(--bg-offwhite);
        border-top: 1px solid rgba(0, 86, 179, 0.05);
        border-bottom: 1px solid rgba(0, 86, 179, 0.05);
    }

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

    .solution-content h2 i {
        color: var(--primary-color);
        font-size: 2.5rem;
    }

.solution-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .solution-features li {
        font-size: 1rem;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--text-dark);
        font-weight: 500;
    }

    .solution-features i {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin-top: 2px;
    }

.solution-img-wrapper {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

    .solution-img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .solution-img-wrapper:hover img {
        transform: scale(1.03);
    }

/* Buttons */
.btn-custom {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

    .btn-custom:hover {
        background: var(--secondary-color);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    }
/* --- CONTACT INFO CARDS --- */
.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--card-radius);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
        border-color: var(--primary-color);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    color: var(--primary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--primary-color);
    color: #fff;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-card p, .info-card a {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
}

    .info-card a:hover {
        color: var(--primary-color);
    }

/* --- FORM & MAP SECTION --- */
.contact-wrapper {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.contact-form-box {
    padding: 50px;
}

.form-control {
    background-color: var(--bg-offwhite);
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

    .form-control:focus {
        background-color: #fff;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    }

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.btn-custom {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

    .btn-custom:hover {
        background: var(--secondary-color);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    }

.map-box {
    height: 100%;
    min-height: 400px;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }