/* ================= BASIC RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #0b2a55;
}

a {
    text-decoration: none;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: white;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);

    position: relative;
    z-index: 10;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 16px;
    color: #082c61;
}

.logo-text span {
    font-size: 9px;
    color: #555;
}


/* NAVIGATION */

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    color: #172b4d;
    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #0b5ed7;
}


/* QUOTE BUTTON */

.quote-btn {
    background: #ff8a00;
    color: white;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: bold;

    transition: 0.3s;
}

.quote-btn:hover {
    background: #e67800;
}


/* ================= HERO ================= */

.hero {
    min-height: 620px;

    display: flex;
    align-items: center;

    padding: 70px 7%;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(3, 34, 75, 0.92) 0%,
            rgba(3, 34, 75, 0.65) 45%,
            rgba(3, 34, 75, 0.15) 100%
        ),
        url("../images/hero.png");

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


/* HERO TEXT */

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

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;

    color: #ff9d19;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;

    text-transform: uppercase;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #ff9d19;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;

    max-width: 550px;

    margin-bottom: 35px;
}


/* ================= HERO BUTTONS ================= */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    padding: 14px 24px;

    border-radius: 5px;

    font-weight: bold;

    transition: 0.3s;
}

.primary-btn {
    background: #0969e8;
    color: white;
}

.primary-btn:hover {
    background: #0756bd;
}

.secondary-btn {
    border: 1px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: #082c61;
}


/* ================= FEATURES ================= */

.features {
    background: #062d63;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    padding: 25px 5%;
}

.feature {
    text-align: center;

    padding: 5px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.3);

    color: white;
}

.feature:last-child {
    border-right: none;
}

.feature h3 {
    font-size: 14px;

    margin-bottom: 8px;
}

.feature p {
    font-size: 11px;

    color: #d9e5f5;

    line-height: 1.4;
}
/* =====================================================
   SOLUTIONS PAGE
   ===================================================== */


/* ================= PAGE HERO ================= */

.page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px 7%;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 82, 0.95),
            rgba(4, 38, 82, 0.60),
            rgba(4, 38, 82, 0.20)
        ),
        url("../images/hero.png");

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


.page-hero-content {
    max-width: 750px;

    color: white;
}


.page-hero-content > p:first-child {
    color: #ff9418;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.page-hero h1 {
    font-size: 52px;

    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 25px;
}


.page-hero h1 span {
    color: #ff9418;
}


.page-hero-description {
    max-width: 620px;

    font-size: 17px;

    line-height: 1.7;

    color: #e5edf7;
}



/* ================= SOLUTIONS INTRO ================= */

.solutions-intro {

    max-width: 900px;

    margin: 0 auto;

    padding: 90px 30px 60px;

    text-align: center;
}


.section-label {

    color: #0969e8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.solutions-intro h2 {

    color: #082c61;

    font-size: 40px;

    margin-bottom: 20px;
}


.solutions-intro > p:last-child {

    color: #626f80;

    font-size: 16px;

    line-height: 1.8;

}



/* ================= SOLUTIONS SECTION ================= */

.solutions {

    max-width: 1200px;

    margin: auto;

    padding: 20px 5% 100px;
}


.section-title {

    text-align: center;

    color: #082c61;

    font-size: 38px;

    margin-bottom: 60px;
}



/* ================= SOLUTION CARD ================= */

.solution-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 450px;

    margin-bottom: 60px;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(8, 44, 97, 0.10);
}


.solution-card.reverse {

    direction: rtl;
}


.solution-card.reverse .solution-content {

    direction: ltr;
}



/* ================= SOLUTION IMAGE ================= */

.solution-image {

    min-height: 450px;

    overflow: hidden;
}


.solution-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.solution-card:hover .solution-image img {

    transform: scale(1.05);
}



/* ================= SOLUTION CONTENT ================= */

.solution-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}


.solution-number {

    color: #ff9418;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.solution-content h2 {

    color: #082c61;

    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 18px;
}


.solution-content > p:not(.solution-number) {

    color: #687789;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
}


.solution-content h3 {

    color: #082c61;

    font-size: 16px;

    margin-bottom: 12px;
}



/* ================= LIST ================= */

.solution-content ul {

    list-style: none;

    margin-bottom: 25px;
}


.solution-content li {

    color: #526173;

    font-size: 14px;

    margin-bottom: 9px;

    padding-left: 20px;

    position: relative;
}


.solution-content li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #0969e8;

    font-weight: bold;
}



/* ================= SOLUTION BUTTON ================= */

.solution-btn {

    display: inline-block;

    width: fit-content;

    padding: 12px 20px;

    background: #0969e8;

    color: white;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}


.solution-btn:hover {

    background: #074fae;

    transform: translateY(-2px);
}



/* ================= FINAL CTA ================= */

.solutions-cta {

    text-align: center;

    padding: 90px 30px;

    background: #062d63;

    color: white;
}


.solutions-cta h2 {

    font-size: 38px;

    margin-bottom: 15px;
}


.solutions-cta p {

    color: #dbe7f5;

    font-size: 16px;

    margin-bottom: 30px;
}



/* ================= FOOTER ================= */

footer {

    padding: 25px;

    text-align: center;

    background: #041f45;

    color: #b9c9dc;

    font-size: 13px;
}



/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {

    .navbar nav {

        gap: 15px;

    }


    .solution-card {

        grid-template-columns: 1fr;

    }


    .solution-card.reverse {

        direction: ltr;

    }


    .solution-image {

        min-height: 320px;

    }


    .page-hero h1 {

        font-size: 42px;

    }

}


@media (max-width: 700px) {

    .navbar {

        height: auto;

        padding: 15px 5%;

        flex-wrap: wrap;

        gap: 15px;

    }


    .navbar nav {

        order: 3;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

    }


    .quote-btn {

        display: none;

    }


    .page-hero {

        min-height: 400px;

        padding: 60px 6%;

    }


    .page-hero h1 {

        font-size: 34px;

    }


    .solutions-intro h2 {

        font-size: 30px;

    }


    .section-title {

        font-size: 30px;

    }


    .solution-content {

        padding: 35px 25px;

    }


    .solution-content h2 {

        font-size: 27px;

    }


    .features {

        grid-template-columns: 1fr;

    }


    .feature {

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.2);

        padding: 15px;

    }

}
/* =====================================================
   ABOUT US PAGE
   ===================================================== */


/* ================= ABOUT HERO ================= */

.about-hero {
    min-height: 450px;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 82, 0.95),
            rgba(4, 38, 82, 0.60),
            rgba(4, 38, 82, 0.20)
        ),
        url("../images/hero.png");

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



/* ================= ABOUT INTRO ================= */

.about-intro {
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 5%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* ABOUT IMAGE */

.about-image {
    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(8, 44, 97, 0.15);
}


.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}


.about-image:hover img {
    transform: scale(1.05);
}



/* ABOUT CONTENT */

.about-content {
    max-width: 560px;
}


.about-content h2 {
    color: #082c61;

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 25px;
}


.about-content p:not(.section-label) {
    color: #647386;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 18px;
}



/* ================= MISSION ================= */

.mission-section {
    background: #f4f7fb;

    padding: 100px 7%;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 80px;

    align-items: center;
}


.mission-content {
    max-width: 600px;
}


.mission-content h2 {
    color: #082c61;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 25px;
}


.mission-content > p:last-child {
    color: #647386;

    font-size: 16px;

    line-height: 1.8;
}



/* MISSION POINTS */

.mission-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.mission-point {
    background: white;

    padding: 30px;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(8, 44, 97, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.mission-point:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(8, 44, 97, 0.12);
}


.mission-point span {
    display: block;

    color: #ff9418;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.mission-point h3 {
    color: #082c61;

    font-size: 20px;

    margin-bottom: 10px;
}


.mission-point p {
    color: #6b7888;

    font-size: 14px;

    line-height: 1.6;
}



/* ================= WHY US ================= */

.why-us {
    max-width: 1200px;

    margin: auto;

    padding: 100px 5%;
}


.why-header {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}


.why-header h2 {
    color: #082c61;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 18px;
}


.why-header > p:last-child {
    color: #687789;

    font-size: 16px;

    line-height: 1.7;
}



/* WHY CARDS */

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.why-card {
    padding: 35px;

    background: white;

    border: 1px solid #e7edf4;

    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.why-card:hover {
    transform: translateY(-7px);

    border-color: #d4e2f4;

    box-shadow:
        0 18px 40px rgba(8, 44, 97, 0.10);
}


.why-icon {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 10px;

    background: #eef5ff;

    color: #0969e8;

    font-size: 13px;

    font-weight: 800;
}


.why-card h3 {
    color: #082c61;

    font-size: 20px;

    margin-bottom: 12px;
}


.why-card p {
    color: #6b7888;

    font-size: 14px;

    line-height: 1.7;
}



/* ================= STRENGTHS ================= */

.strengths {
    background: #062d63;

    padding: 55px 7%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.strength {
    text-align: center;

    color: white;

    padding: 10px 25px;

    border-right:
        1px solid rgba(255,255,255,0.2);
}


.strength:last-child {
    border-right: none;
}


.strength strong {
    display: block;

    font-size: 22px;

    margin-bottom: 7px;
}


.strength span {
    color: #cbd9e9;

    font-size: 13px;
}



/* ================= ABOUT CTA ================= */

.about-hero + .about-intro {
    background: white;
}



/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {

    .about-intro {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-content {
        max-width: 100%;
    }


    .mission-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .strengths {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }


    .strength {
        border-right: none;
    }

}


@media (max-width: 600px) {

    .about-hero {
        min-height: 400px;
    }


    .about-content h2 {
        font-size: 32px;
    }


    .mission-content h2 {
        font-size: 32px;
    }


    .mission-points {
        grid-template-columns: 1fr;
    }


    .why-header h2 {
        font-size: 32px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .strengths {
        grid-template-columns: 1fr;
    }


    .about-image {
        height: 350px;
    }

}
/* =====================================================
   INDUSTRIES PAGE
   ===================================================== */


/* ================= INDUSTRIES HERO ================= */

.industries-hero {
    min-height: 450px;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 82, 0.95),
            rgba(4, 38, 82, 0.60),
            rgba(4, 38, 82, 0.20)
        ),
        url("../images/hero.png");

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



/* ================= INDUSTRIES INTRO ================= */

.industries-intro {
    max-width: 850px;

    margin: 0 auto;

    padding: 95px 30px 65px;

    text-align: center;
}


.industries-intro h2 {
    color: #082c61;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.industries-intro > p:last-child {
    color: #687789;

    font-size: 16px;

    line-height: 1.8;
}



/* ================= INDUSTRY SECTION ================= */

.industry-section {
    max-width: 1200px;

    margin: 0 auto;

    padding: 20px 5% 100px;
}


.industry-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}



/* ================= INDUSTRY CARD ================= */

.industry-card {
    position: relative;

    padding: 42px;

    min-height: 290px;

    background: white;

    border: 1px solid #e5ebf3;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.industry-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: #ff9418;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.industry-card:hover {
    transform: translateY(-7px);

    border-color: #d3e1f2;

    box-shadow:
        0 20px 45px rgba(8, 44, 97, 0.12);
}


.industry-card:hover::after {
    transform: scaleX(1);
}



/* ================= INDUSTRY NUMBER ================= */

.industry-number {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 10px;

    background: #eef5ff;

    color: #0969e8;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}



/* ================= INDUSTRY CONTENT ================= */

.industry-card h3 {
    color: #082c61;

    font-size: 23px;

    line-height: 1.25;

    margin-bottom: 15px;
}


.industry-card p {
    color: #687789;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 22px;
}


.industry-card a {
    color: #0969e8;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}


.industry-card a:hover {
    color: #ff9418;

    padding-left: 5px;
}



/* ================= PROJECT SUPPORT ================= */

.industry-support {
    padding: 90px 7%;

    background: #f4f7fb;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.industry-support-content {
    max-width: 600px;
}


.industry-support-content h2 {
    color: #082c61;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.industry-support-content > p:not(.section-label) {
    color: #687789;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
}



/* ================= SUPPORT POINTS ================= */

.industry-support-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.industry-support-points > div {
    background: white;

    padding: 30px;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(8, 44, 97, 0.07);

    border: 1px solid #e7edf4;
}


.industry-support-points strong {
    display: block;

    color: #082c61;

    font-size: 21px;

    margin-bottom: 6px;
}


.industry-support-points span {
    color: #748195;

    font-size: 13px;
}



/* ================= INDUSTRIES CTA ================= */

.industry-support + .solutions-cta {
    background: #062d63;
}



/* =====================================================
   INDUSTRIES RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }


    .industry-support {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .industries-intro h2 {
        font-size: 36px;
    }


    .industry-support-content h2 {
        font-size: 35px;
    }

}


@media (max-width: 600px) {

    .industries-hero {
        min-height: 400px;
    }


    .industries-intro {
        padding: 70px 25px 50px;
    }


    .industries-intro h2 {
        font-size: 30px;
    }


    .industry-section {
        padding-left: 5%;
        padding-right: 5%;
    }


    .industry-card {
        padding: 30px;

        min-height: auto;
    }


    .industry-card h3 {
        font-size: 21px;
    }


    .industry-support {
        padding: 70px 6%;
    }


    .industry-support-content h2 {
        font-size: 30px;
    }


    .industry-support-points {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   CONTACT PAGE
   ===================================================== */


/* ================= CONTACT HERO ================= */

.contact-hero {
    min-height: 430px;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 82, 0.95),
            rgba(4, 38, 82, 0.60),
            rgba(4, 38, 82, 0.20)
        ),
        url("../images/hero.png");

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


/* ================= CONTACT SECTION ================= */

.contact-section {
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 5%;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}


/* ================= CONTACT INFORMATION ================= */

.contact-info {
    padding-top: 15px;
}


.contact-info h2 {
    color: #082c61;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.contact-intro {
    color: #687789;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 40px;

    max-width: 500px;
}


/* ================= CONTACT ITEMS ================= */

.contact-item {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #e6ebf2;
}


.contact-item:first-of-type {
    border-top: 1px solid #e6ebf2;
}


.contact-icon {
    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #eef5ff;

    color: #0969e8;

    font-size: 20px;
}


.contact-item h3 {
    color: #082c61;

    font-size: 16px;

    margin-bottom: 5px;
}


.contact-item p {
    color: #687789;

    font-size: 14px;
}



/* ================= QUOTE FORM ================= */

.quote-form {
    background: white;

    padding: 45px;

    border-radius: 18px;

    border: 1px solid #e4eaf2;

    box-shadow:
        0 20px 55px rgba(8, 44, 97, 0.10);
}


.form-header {
    margin-bottom: 30px;
}


.form-header h2 {
    color: #082c61;

    font-size: 30px;

    line-height: 1.25;

    margin-bottom: 10px;
}


.form-header > p:last-child {
    color: #687789;

    font-size: 14px;

    line-height: 1.6;
}



/* ================= FORM ================= */

form {
    width: 100%;
}


.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 20px;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group label {
    color: #263c58;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d9e1eb;

    border-radius: 7px;

    background: #fafbfd;

    color: #263c58;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #0969e8;

    background: white;

    box-shadow:
        0 0 0 3px rgba(9, 105, 232, 0.10);
}


.form-group textarea {
    resize: vertical;

    min-height: 130px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa7b7;
}



/* ================= SUBMIT BUTTON ================= */

.form-submit {
    width: 100%;

    border: none;

    padding: 15px 20px;

    border-radius: 6px;

    background: #0969e8;

    color: white;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.form-submit:hover {
    background: #0758c5;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(9, 105, 232, 0.25);
}



/* ================= SERVICE AREA ================= */

.service-area {
    padding: 75px 7%;

    background: #f4f7fb;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.service-area-content {
    max-width: 650px;
}


.service-area-content h2 {
    color: #082c61;

    font-size: 36px;

    line-height: 1.2;

    margin-bottom: 15px;
}


.service-area-content > p:last-child {
    color: #687789;

    font-size: 15px;

    line-height: 1.7;
}


.service-badge {
    min-width: 220px;

    padding: 30px;

    border-radius: 15px;

    background: #082c61;

    text-align: center;

    color: white;

    box-shadow:
        0 15px 35px rgba(8, 44, 97, 0.15);
}


.service-badge strong {
    display: block;

    font-size: 25px;

    margin-bottom: 7px;
}


.service-badge span {
    color: #d4e2f2;

    font-size: 12px;

    letter-spacing: 1.5px;
}



/* ================= CONTACT CTA ================= */

.contact-hero + .contact-section {
    background: white;
}



/* =====================================================
   CONTACT RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {

    .contact-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .contact-info {
        max-width: 700px;
    }


    .service-area {
        flex-direction: column;

        align-items: flex-start;
    }


    .service-badge {
        width: 100%;

        max-width: 300px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        min-height: 400px;
    }


    .contact-section {
        padding: 70px 6%;
    }


    .contact-info h2 {
        font-size: 32px;
    }


    .quote-form {
        padding: 30px 22px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-header h2 {
        font-size: 26px;
    }


    .service-area {
        padding: 65px 6%;
    }


    .service-area-content h2 {
        font-size: 30px;
    }

}
/* =====================================================
   ADMIN PAGE
   ===================================================== */

.admin-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}


.admin-header {
    margin-bottom: 40px;
}


.admin-header h1 {
    color: #082c61;
    font-size: 42px;
    margin: 10px 0 12px;
}


.admin-header p:last-child {
    color: #687789;
    font-size: 15px;
}


/* ================= ENQUIRY TABLE ================= */

.enquiry-table-container {
    width: 100%;
    overflow-x: auto;

    background: white;

    border: 1px solid #e3e9f1;

    border-radius: 14px;

    box-shadow:
        0 15px 40px rgba(8, 44, 97, 0.08);
}


.enquiry-table {
    width: 100%;
    min-width: 1100px;

    border-collapse: collapse;

    text-align: left;
}


.enquiry-table th {
    padding: 17px 16px;

    background: #082c61;

    color: white;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


.enquiry-table td {
    padding: 16px;

    border-bottom: 1px solid #e8edf3;

    color: #4c5d70;

    font-size: 13px;

    vertical-align: top;
}


.enquiry-table tbody tr:hover {
    background: #f6f9fc;
}


.enquiry-table tbody tr:last-child td {
    border-bottom: none;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .admin-section {
        padding: 60px 5%;
    }


    .admin-header h1 {
        font-size: 32px;
    }

}
/* =====================================================
   ADMIN LOGIN PAGE
   ===================================================== */

.login-section {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;

    background: #f4f7fb;
}


.login-card {
    width: 100%;
    max-width: 450px;

    background: white;

    padding: 50px 45px;

    border-radius: 15px;

    box-shadow:
        0 15px 45px rgba(8, 44, 97, 0.12);

    text-align: center;
}


.login-logo {
    width: 90px;
    height: auto;

    margin-bottom: 25px;
}


.login-card h1 {
    color: #082c61;

    font-size: 32px;

    margin: 10px 0;
}


.login-description {
    color: #687789;

    margin-bottom: 30px;
}


.login-card form {
    text-align: left;
}


.login-card .form-group {
    margin-bottom: 20px;
}


.login-card label {
    display: block;

    color: #082c61;

    font-weight: 600;

    margin-bottom: 8px;
}


.login-card input {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d9e1ea;

    border-radius: 6px;

    font-size: 15px;

    box-sizing: border-box;

    outline: none;
}


.login-card input:focus {
    border-color: #082c61;

    box-shadow:
        0 0 0 3px rgba(8, 44, 97, 0.08);
}


.login-card .form-submit {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 6px;

    background: #082c61;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    margin-top: 10px;
}


.login-card .form-submit:hover {
    background: #0d3d80;
}


.login-error {
    background: #fff0f0;

    color: #c62828;

    padding: 12px;

    border-radius: 6px;

    margin: 20px 0;

    font-size: 14px;
}


/* ================= MOBILE ================= */

@media (max-width: 500px) {

    .login-card {
        padding: 40px 25px;
    }


    .login-card h1 {
        font-size: 28px;
    }

}/* =====================================================
   ADMIN LOGIN PAGE
   ===================================================== */

.login-section {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;

    background: #f4f7fb;
}


.login-card {
    width: 100%;
    max-width: 450px;

    background: white;

    padding: 50px 45px;

    border-radius: 15px;

    box-shadow:
        0 15px 45px rgba(8, 44, 97, 0.12);

    text-align: center;
}


.login-logo {
    width: 90px;
    height: auto;

    margin-bottom: 25px;
}


.login-card h1 {
    color: #082c61;

    font-size: 32px;

    margin: 10px 0;
}


.login-description {
    color: #687789;

    margin-bottom: 30px;
}


.login-card form {
    text-align: left;
}


.login-card .form-group {
    margin-bottom: 20px;
}


.login-card label {
    display: block;

    color: #082c61;

    font-weight: 600;

    margin-bottom: 8px;
}


.login-card input {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #d9e1ea;

    border-radius: 6px;

    font-size: 15px;

    box-sizing: border-box;

    outline: none;
}


.login-card input:focus {
    border-color: #082c61;

    box-shadow:
        0 0 0 3px rgba(8, 44, 97, 0.08);
}


.login-card .form-submit {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 6px;

    background: #082c61;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    margin-top: 10px;
}


.login-card .form-submit:hover {
    background: #0d3d80;
}


.login-error {
    background: #fff0f0;

    color: #c62828;

    padding: 12px;

    border-radius: 6px;

    margin: 20px 0;

    font-size: 14px;
}


/* ================= MOBILE ================= */

@media (max-width: 500px) {

    .login-card {
        padding: 40px 25px;
    }


    .login-card h1 {
        font-size: 28px;
    }

}
/* =====================================================
   UPDATED ADMIN DASHBOARD
   ===================================================== */

.admin-navbar {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 5%;

    background: #ffffff;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);

    position: relative;
    z-index: 10;
}


.admin-nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}


.admin-home-btn,
.logout-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}


.admin-home-btn {
    background: #eef3f9;

    color: #082c61;

    border: 1px solid #dce5ef;
}


.admin-home-btn:hover {
    background: #e1eaf4;

    color: #082c61;
}


.logout-btn {
    background: #d93636;

    color: white;
}


.logout-btn:hover {
    background: #b92828;

    color: white;
}


/* ================= ADMIN SECTION ================= */

.admin-section {
    max-width: 1450px;

    margin: 0 auto;

    padding: 70px 5%;

    min-height: calc(100vh - 150px);
}


.admin-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}


.admin-header h1 {
    color: #082c61;

    font-size: 42px;

    margin: 10px 0 12px;
}


.admin-header p:last-child {
    color: #687789;

    font-size: 15px;

    line-height: 1.6;
}


/* ================= ENQUIRY COUNT ================= */

.enquiry-count {
    min-width: 170px;

    padding: 22px 25px;

    background: #082c61;

    border-radius: 12px;

    text-align: center;

    color: white;

    box-shadow: 0 12px 30px rgba(8, 44, 97, 0.18);
}


.enquiry-count span {
    display: block;

    font-size: 12px;

    color: #c8d8eb;

    margin-bottom: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.enquiry-count strong {
    display: block;

    font-size: 32px;

    color: #ff9418;
}


/* ================= ENQUIRY TABLE ================= */

.enquiry-table-container {
    width: 100%;

    overflow-x: auto;

    background: white;

    border: 1px solid #e3e9f1;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(8, 44, 97, 0.08);
}


.enquiry-table {
    width: 100%;

    min-width: 1150px;

    border-collapse: collapse;

    text-align: left;
}


.enquiry-table th {
    padding: 17px 16px;

    background: #082c61;

    color: white;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}


.enquiry-table td {
    padding: 17px 16px;

    border-bottom: 1px solid #e8edf3;

    color: #4c5d70;

    font-size: 13px;

    line-height: 1.5;

    vertical-align: top;
}


.enquiry-table tbody tr {
    transition: 0.2s;
}


.enquiry-table tbody tr:hover {
    background: #f6f9fc;
}


.enquiry-table tbody tr:last-child td {
    border-bottom: none;
}


/* ================= TABLE DETAILS ================= */

.enquiry-id {
    color: #0969e8;

    font-weight: 700;

    white-space: nowrap;
}


.phone-link,
.email-link {
    color: #0969e8;

    font-weight: 600;

    transition: 0.2s;
}


.phone-link:hover,
.email-link:hover {
    color: #074fae;

    text-decoration: underline;
}


.requirement-badge {
    display: inline-block;

    padding: 6px 10px;

    background: #eef5ff;

    color: #0969e8;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}


.message-cell {
    min-width: 220px;

    max-width: 320px;

    white-space: normal;

    color: #5c6b7c;
}


/* ================= EMPTY ENQUIRIES ================= */

.no-enquiries {
    text-align: center;

    padding: 80px 25px;

    background: white;
}


.no-enquiry-icon {
    font-size: 48px;

    margin-bottom: 20px;
}


.no-enquiries h2 {
    color: #082c61;

    font-size: 28px;

    margin-bottom: 12px;
}


.no-enquiries p {
    color: #687789;

    max-width: 450px;

    margin: 0 auto 30px;

    line-height: 1.6;
}


/* ================= ADMIN FOOTER ================= */

.admin-footer {
    margin-top: auto;
}


/* =====================================================
   FORM SUCCESS & ERROR MESSAGES
   ===================================================== */

.form-success {
    margin: 20px 0;

    padding: 18px 20px;

    background: #edf9f0;

    border: 1px solid #b8e1c0;

    border-left: 5px solid #2e9b4f;

    border-radius: 6px;

    color: #216d36;
}


.form-success strong {
    display: block;

    margin-bottom: 6px;

    font-size: 15px;
}


.form-success p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #3d7650;
}


.form-error {
    margin: 20px 0;

    padding: 15px 18px;

    background: #fff1f1;

    border: 1px solid #f0bcbc;

    border-left: 5px solid #d93636;

    border-radius: 6px;

    color: #b42323;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
   UPDATED ADMIN MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .admin-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .enquiry-count {
        width: 100%;

        max-width: 250px;
    }

}


@media (max-width: 700px) {

    .admin-navbar {
        padding: 15px 5%;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .admin-navbar .logo img {
        width: 45px;

        height: 45px;
    }


    .admin-nav-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .admin-home-btn,
    .logout-btn {
        width: 100%;
    }


    .admin-section {
        padding: 50px 5%;
    }


    .admin-header h1 {
        font-size: 32px;
    }


    .enquiry-count {
        max-width: 100%;
    }


    .no-enquiries {
        padding: 60px 20px;
    }

}
/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }

    /* Header */
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        align-items: center;
    }

    /* Logo section */
    .logo {
        text-align: center;
    }

    /* Navigation */
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* Hero section */
    .hero {
        min-height: auto;
        padding: 80px 25px;
    }

    /* Small heading */
    .hero-tag {
        font-size: 14px;
        letter-spacing: 3px;
    }

    /* Main hero heading */
    .hero h1 {
        font-size: 48px;
        line-height: 1.15;
        word-break: normal;
    }

    /* Description */
    .hero p {
        font-size: 17px;
        line-height: 1.6;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

}
/* =========================================
   MOBILE RESPONSIVE DESIGN
========================================= */

@media screen and (max-width: 768px) {

    /* Prevent horizontal scrolling */
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* ================= NAVBAR ================= */

    .navbar {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
        align-items: center;
    }


    /* Logo */

    .logo {
        justify-content: center;
        width: 100%;
    }


    .logo img {
        width: 65px;
        height: auto;
    }


    .logo-text h2 {
        font-size: 22px;
    }


    .logo-text span {
        font-size: 13px;
    }


    /* Navigation */

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        width: 100%;
    }


    nav a {
        font-size: 16px;
    }


    /* Hide top quote button on mobile */

    .quote-btn {
        display: none;
    }



    /* ================= HERO ================= */

    .hero {
        width: 100%;
        min-height: auto;
        padding: 70px 25px;
        box-sizing: border-box;
    }


    .hero-content {
        width: 100%;
        max-width: 100%;
    }


    .small-title {
        font-size: 13px;
        letter-spacing: 2px;
        line-height: 1.5;
    }


    .hero h1 {
        font-size: 48px;
        line-height: 1.1;
        word-wrap: break-word;
    }


    .hero h1 br {
        display: none;
    }


    .hero-description {
        font-size: 17px;
        line-height: 1.6;
        max-width: 100%;
    }



    /* ================= HERO BUTTONS ================= */

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }



    /* ================= FEATURES ================= */

    .features {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }


    .feature {
        width: 100%;
        box-sizing: border-box;
    }

}
/* =========================================
   MOBILE NAVBAR IMPROVEMENT
========================================= */

@media screen and (max-width: 768px) {

    .navbar {
        padding: 18px 20px;
        flex-direction: column;
        align-items: center;
        gap: 18px;

        background: linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f6fa 100%
        );

        border-bottom: 1px solid #e2e7ee;
    }


    /* LOGO SECTION */

    .logo {
        justify-content: center;
        align-items: center;
        gap: 14px;
        width: 100%;
    }


    .logo img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        flex-shrink: 0;
    }


    .logo-text h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 5px;
        white-space: nowrap;
    }


    .logo-text span {
        font-size: 11px;
        line-height: 1.4;
    }


    /* NAVIGATION */

    .navbar nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        flex-wrap: wrap;

        gap: 12px 22px;
    }


    .navbar nav a {
        font-size: 17px;
        padding: 5px 0;
    }


    /* HIDE QUOTE BUTTON ON MOBILE */

    .quote-btn {
        display: none;
    }

}