/* GLOBAL */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #1f2937;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* TOP BAR */
.top-bar {
    background: #0077cc;
    color: white;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAVBAR */
.main-navbar {
    background: white;
    padding: 8px 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
}

.brand-text span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: #1f2937;
    margin-left: 25px;
    transition: 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #0077cc;
}

.navbar-nav .nav-link.active {
    color: #0077cc;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #16a34a;
    left: 0;
    bottom: -10px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    background:
        url("../images/hero-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 40, 80, 0.88) 0%,
        rgba(0, 80, 140, 0.60) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #facc15;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn-quote {
    background: #16a34a;
    color: white;
    padding: 16px 34px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-quote:hover {
    background: #15803d;
    color: white;
    transform: translateY(-3px);
}

.btn-contact {
    background: white;
    color: #0077cc;
    padding: 16px 34px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-contact:hover {
    background: #facc15;
    color: black;
    transform: translateY(-3px);
}

/* FEATURE STRIP */
.feature-strip {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 25px;
    color: white;
    min-height: 150px;
}

.feature-icon {
    font-size: 2rem;
}

.feature-box h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-box p {
    margin: 0;
    font-size: 14px;
}

.feature-blue {
    background: #0077cc;
}

.feature-brown {
    background: #8b4513;
}

.feature-green {
    background: #16a34a;
}

.feature-yellow {
    background: #facc15;
    color: black;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 280px;   /* fixed uniform image height */
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* crop to fit */
    object-position: center;    /* keep center visible */
    display: block;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #0077cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
    margin-bottom: 25px;
    border: 6px solid white;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 18px;
}

.service-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.15rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* CTA */
.cta-section {
    position: relative;
    padding: 120px 0;
    background:
        url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* FOOTER */
.footer-section {
    background: #111827;
    color: white;
    padding: 90px 0 30px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    transition: 0.3s;
}

.footer-links a:hover {
    color: #facc15;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #0077cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #16a34a;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .navbar-brand img {
        height: 65px;
    }

    .feature-strip {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .service-icon {
        top: 200px;
    }
}
/* INTERNAL HERO */
.internal-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1920&q=80");

    background-size: cover;
    background-position: center;
}

.internal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 80, 0.75);
}

.internal-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.internal-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.internal-content p {
    font-size: 1.15rem;
    margin-top: 15px;
}

/* MISSION */
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.mission-card i {
    font-size: 3rem;
    color: #0077cc;
    margin-bottom: 20px;
}

/* WHY */
.why-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.why-card i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 20px;
}

/* CAPABILITY */
.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}
/* PROJECTS */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    height: 320px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.project-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-overlay h4 {
    font-size: 1.3rem;
    font-weight: 800;
}

/* PROCESS */
.process-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-card i {
    font-size: 2.8rem;
    color: #0077cc;
    margin-bottom: 20px;
}

.process-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}
/* EQUIPMENT */
.equipment-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.equipment-card:hover {
    transform: translateY(-8px);
}

.equipment-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.equipment-content {
    padding: 30px;
}

.equipment-content h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

/* SOFTWARE */
.software-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.software-card:hover {
    transform: translateY(-8px);
}

.software-card i {
    font-size: 2.8rem;
    color: #0077cc;
    margin-bottom: 20px;
}

.software-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}
/* QUOTE */
.quote-info-card {
    background: linear-gradient(135deg, #0077cc, #16a34a);
    color: white;
    padding: 40px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.quote-info-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.quote-info-card p {
    margin-bottom: 30px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

.quote-feature i {
    font-size: 1.2rem;
    color: #facc15;
}

.quote-form-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.quote-form-card label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: #1f2937;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
    border-color: #0077cc;
    box-shadow: 0 0 0 0.2rem rgba(0,119,204,0.15);
}

/* CONTACT */
.contact-info-card {
    background: linear-gradient(135deg, #0077cc, #16a34a);
    color: white;
    padding: 40px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.contact-info-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info-card p {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-form-card label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.contact-form-card .form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.contact-form-card .form-control:focus {
    border-color: #0077cc;
    box-shadow: 0 0 0 0.2rem rgba(0,119,204,0.15);
}

.map-section iframe {
    display: block;
}
