/* --- NAVIGATION HOVER & MOBILE --- */
.nav-links li a {
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Professional underline hover effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1C62AA;
    transition: width 0.3s ease;
}


.nav-links li a:hover::after {
    width: 100%;
}

/* Mobile Toggle Styling */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
}

/* --- PRECISE HOME PAGE NAV CLONE --- */
.navbar {
    width: 100%;
    background: #ffffff !important;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 12px 0 !important; /* Adjusted for better vertical centering */
    border-bottom: 1px solid #f1f5f9;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px; /* Standard spacing for engineering firms */
    align-items: center;
    margin: 0;
}

/* THE NAV LINKS */
.nav-links li a {
    text-decoration: none !important;
    color: #0f172a !important; /* Dark Slate to match Home Page */
    font-weight: 600 !important;
    font-size: 15px !important;
    position: relative;
    padding: 4px 0; /* Tight padding to keep underline close */
    display: inline-block;
}

/* THE UNDERLINE (Corrected Alignment) */
/* EXACT UNDERLINE MATCH */
.nav-links li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px; /* Adjusted to stay exactly under the word */
    left: 0;
    background-color: #1C62AA; /* Exact Home Page Blue */
    transition: width 0.3s ease;
}

.nav-links li a:not(.nav-cta):hover::after {
    width: 100%;
}

/* THE CONTACT BUTTON (Exact Home Page Match) */
/* EXACT CONTACT BUTTON MATCH */
.nav-cta {
    background-color: #1C62AA !important; /* The precise Blue from your Home Page */
    color: #ffffff !important;
    padding: 8px 22px !important; /* Adjusted for that sleek horizontal look */
    border-radius: 4px !important; /* Sharper edges matching home page */
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.nav-cta:hover {
    background-color: #154d8a !important; /* Slightly darker shade on hover */
    transform: translateY(-1px); /* Subtle lift effect */
    box-shadow: 0 4px 8px rgba(28, 98, 170, 0.2);
}

/* DROPDOWN FIXES */
.dropdown-item {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 210px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 0;
    border: 1px solid #e2e8f0;
}

.dropdown-item:hover .dropdown-content {
    display: block;
}

.dropdown-content li a::after {
    display: none !important; /* No underline inside dropdown */
}

.dropdown-content a {
    padding: 10px 20px !important;
    color: #475569 !important;
    font-weight: 500 !important;
}

.dropdown-content a:hover {
    background: #f8fafc !important;
    color: #1C62AA !important;
}

/* PUSH CONTENT DOWN */
body {
    padding-top: 75px !important;
}


/* footer start */

/* --- FINAL FOOTER: ARCHITECTURAL STYLE --- */
.main-footer {
    position: relative;
    padding: 80px 0 40px;
    background-color: #f8fafc; /* Very light grey to distinguish from white sections */
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}

.main-footer .blueprint-grid {
    opacity: 0.2; /* Minimal grid for the footer */
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.brand-vision {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 25px;
}

.credential-row {
    display: flex;
    gap: 10px;
}

.cert-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 2px;
    color: var(--trust-blue);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nav-col h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--dark);
}

.nav-col ul { list-style: none; }

.nav-col li { margin-bottom: 12px; }

.nav-col a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-col a:hover {
    color: var(--trust-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom strong {
    color: var(--growth-green);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr; gap: 60px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .footer-nav { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}

/* footer end */

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
}

/* for contact page */

/* 1. Fix the Overlap */
.contact-page-wrapper {
    margin-top: 80px; /* This pushes the content below the fixed navbar */
}

/* 2. Professional Contact Card */
.contact-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-sidebar {
    background: #0f172a;
    color: white;
    padding: 40px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-logo-text { font-size: 1.5rem; margin-bottom: 5px; }
.sidebar-logo-text span { color: #1C62AA; }

.contact-main {
    padding: 40px;
    flex: 1;
}

/* 3. Grid for Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group { margin-bottom: 20px; }
.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
}

/* 4. Preferred Communication Method Design */
.method-section { margin-top: 10px; margin-bottom: 30px; }
.method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.m-card {
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.m-card.active {
    border-color: #1C62AA;
    background: #f0f7ff;
}

.m-card img { height: 20px; }

.prime-btn {
    background: #1C62AA;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-card { flex-direction: column; }
    .contact-sidebar { width: 100%; padding: 30px; }
    .form-grid { grid-template-columns: 1fr; }
}

/* contact page end */

/* for the blueprint */

/* ELIMINATE ALL TOP GAPS */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Add this at the very top of your pagestyle.css */
.blueprint-content-wrapper {
    margin-top: 0 !important;
    padding-top: 80 !important;
}

.hero-section {
    padding-top: 30 !important;
    margin-top: 50 !important;
}

/* This line removes the hidden gap caused by the heading */
h1 { margin-top: 0; 
padding-top: 10px;
}

/* HERO SECTION: Removed excess vertical padding */
.hero-section {
    padding: 20px 0; /* Tightened from 100px to 20px */
    background: #ffffff;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* TEXT STYLING & JUSTIFICATION */
.eyebrow {
    color: #1C62AA;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

h1 {
    font-size: 3.2rem;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 15px;
}

.blue-text { color: #1C62AA; }

.justified-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    text-align: justify; /* Justified text for a professional engineering look */
    margin-bottom: 25px;
}

/* IMAGE ALIGNMENT */
.hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    /* Remove any implicit bottom gaps */
    display: block; 
}

/* BUTTON STYLING */
.btn-primary {
    background: #1C62AA;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .justified-desc { text-align: center; }
    .hero-img { margin: 20px auto 0; }
}

/* service card  */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px 0;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: justify; /* Consistent professional look */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* --- Optimized Card Images for PC & Mobile --- */
.card-img-wrapper {
    background: #f8fafc;
    /* Remove the heavy padding so image can grow */
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden; /* Keeps image corners rounded if the card is rounded */
    height: 200px; /* Fixed container height for a uniform look across all cards */
}

.card-img-wrapper img {
    width: 100%;       /* Image takes full width of the card */
    height: 100%;      /* Image fills the 200px height */
    object-fit: cover; /* This is the secret: it crops the image to fit perfectly without stretching */
    transition: transform 0.5s ease;
}

/* Subtle zoom effect for a high-end engineering feel */
.service-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

/* Mobile Adjustment */
@media screen and (max-width: 600px) {
    .card-img-wrapper {
        height: 180px; /* Slightly shorter on mobile to keep the card compact */
    }
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.card-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}
/* service end */


/* --- MOBILE FIX FOR SERVICE CARDS --- */
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column for phones - NO SQUEEZING */
        gap: 20px;
        padding: 20px 15px;
    }

    .service-card {
        text-align: left; /* Justified text often looks broken on narrow mobile screens */
    }

    .card-img-wrapper img {
        height: 80px; /* Slightly smaller icons for mobile */
    }
}

/* zero section start */

.roadmap-header {
    text-align: center;
    margin-bottom: 40px;
}

.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step {
    background: #fff;
    padding: 30px 20px;
    border-top: 4px solid #1C62AA;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: justify;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.step h4 {
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .roadmap-steps { grid-template-columns: 1fr; }
}

/* zero end  */

/*  faq */

/* Centering the entire header block */
.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Absolute horizontal center */
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;    /* Space between title and cards */
    padding: 0 10px;        /* Prevents touching screen edges */
}

/* Precise Title Styling */
.faq-title {
    display: block;          /* Ensure it takes full width */
    width: 100%;             /* Occupy entire horizontal space */
    text-align: center;      /* Center the text inside that space */
    font-size: 1.6rem;       /* Reduced, professional size */
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 40px;     /* Prevents colliding with cards below */
    margin-top: 10px;        /* Adds a tiny bit of space from the top */
}

/* Optional: Add the themed underline bar using CSS only */
.faq-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #1C62AA;
    margin: 10px auto 0;     /* Centers the bar under the text */
    border-radius: 5px;
}

/* The Underline Bar */
.header-line {
    width: 50px;            /* Slightly smaller bar */
    height: 3px;
    background: #1C62AA;    /* Theme Blue */
    margin-top: 12px;       /* Gap between text and bar */
    border-radius: 10px;
}

.faq-accordion-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-btn:hover { background: #f8fafc; }

.faq-btn .icon {
    font-size: 1.2rem;
    color: #1C62AA;
    transition: transform 0.3s;
}

.faq-btn.active .icon { transform: rotate(45deg); } /* Turns + into x */

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fcfdfe;
}

.faq-panel p {
    padding: 0 20px 20px 20px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 900px) {
    .faq-accordion-container { grid-template-columns: 1fr; }
}

/* faq end */

/* blueprint end  */

/*  independence  */

/* TRUTH TABLE STYLING */
.truth-table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.truth-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: left;
}

.truth-table th {
    background: #0f172a;
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
}

.truth-table td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    line-height: 1.6;
}

.red-text { color: #dc2626; font-weight: 500; }
.green-text { color: #16a34a; font-weight: 600; }

/* VERTICAL STEPS STYLING */
.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-step {
    display: flex;
    gap: 25px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid #1C62AA;
}

.step-icon {
    font-size: 2rem;
    font-weight: 900;
    color: #cbd5e1;
    line-height: 1;
}

.step-info h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.step-info p {
    color: #475569;
    text-align: justify;
}

@media (max-width: 768px) {
    .trust-step { flex-direction: column; }
}

/* Center and fix the collision for the Process Title */
.trust-steps .section-title-centered {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;      /* Professional engineering scale */
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 50px;    /* Forces 50px of space so it CANNOT collide */
    margin-top: 20px;
}

/* Add the themed underline */
.trust-steps .section-title-centered::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #1C62AA;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* Ensure the steps container doesn't have negative margins */
.steps-vertical {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* independence end  */ 

/* agri page start */

/* Specific Agri-Energy Styles */
.section-title-left {
    font-size: 1.8rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #1C62AA;
    margin-top: 10px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.benefit-list li::before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    margin-right: 10px;
}

/* Fix for mobile image stacking */
@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* --- NEW ATTRACTIVE CTA STYLING --- */
.agri-cta-section {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background for the section */
}

.attractive-gradient {
    /* A rich, professional gradient from Deep Blue to a Tech Teal */
    background: linear-gradient(135deg, #1e293b 0%, #1C62AA 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 98, 170, 0.2);
}

/* Suble pattern overlay for extra detail */
.attractive-gradient::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.05;
}

.cta-card h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

.cta-card p {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Button Styling */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: #ffffff;
    color: #1C62AA;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cta-btns { flex-direction: column; }
    .cta-card h2 { font-size: 1.8rem; }
}

/* Removes the blue line and the extra gap */
.faq-header {
    text-align: center;
    margin-bottom: 25px; /* Reduced from 50px to 25px to close the gap */
    width: 100%;
}

.faq-title {
    font-size: 1.8rem;
    color: #0f172a;
    font-weight: 700;
    margin: 0; /* Removes any internal heading margins */
}

/* Ensure no "after" elements are creating hidden blue lines */
.faq-title::after {
    display: none !important;
}

.header-line {
    display: none !important; /* Forces the line to disappear if still in HTML */
}

/* our science  */

/* Styling for Science Page Sections */
.section-title-left {
    font-size: 2rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #1C62AA;
    margin-top: 10px;
}

/* Ensure images have a professional shadow and rounded corners */
.hero-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive fix for reversed grids on mobile */
@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    .section-title-left {
        text-align: center;
        font-size: 1.6rem;
    }
    .section-title-left::after {
        margin: 10px auto;
    }
}

/* engineers page  */

/* --- ENGINEER PAGE STYLING --- */
.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: #475569;
    line-height: 1.8;
    font-size: 1.1rem;
}

.engineer-profile-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px; /* Professional square-ish look */
    overflow: hidden;
    margin-bottom: 80px; /* Spacing between profiles */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.engineer-image {
    flex: 0 0 350px; /* Fixed width for profile image */
    background: #f1f5f9;
}

.engineer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.engineer-details {
    padding: 40px;
    flex: 1;
}

.eng-header {
    border-bottom: 2px solid #1C62AA;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.eng-name {
    font-size: 1.8rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
}

.eng-title {
    font-size: 1rem;
    color: #1C62AA;
    text-transform: uppercase;
    font-weight: 600;
}

.eng-bio {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 25px;
    line-height: 1.6;
}

.eng-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.meta-item h3 {
    font-size: 0.95rem;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-left: 3px solid #cbd5e1;
    padding-left: 10px;
}

.meta-item ul {
    list-style: none;
    padding: 0;
}

.meta-item li::before {
    content: "•";
    color: #1C62AA;
    font-weight: bold;
    margin-right: 8px;
}

.meta-item p, .meta-item li {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .engineer-profile-card {
        flex-direction: column;
    }
    .engineer-image {
        flex: 0 0 300px;
        width: 100%;
    }
    .eng-meta-grid {
        grid-template-columns: 1fr;
    }
    .engineer-details {
        padding: 25px;
    }
}

/* --- High-End Engineer Dossier Styles --- */
.discipline-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.discipline-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1C62AA;
    background: #f0f7ff;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 3px solid #1C62AA;
}

.professional-profile {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.profile-left {
    flex: 0 0 350px;
}

.eng-dossier-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 20px 20px 0px #f1f5f9; /* Modern offset shadow */
}

.profile-right {
    flex: 1;
}

.profile-identity h2 {
    font-size: 2.2rem;
    margin: 0;
    color: #0f172a;
    font-weight: 900;
}

.profile-identity h3 {
    font-size: 1rem;
    color: #1C62AA;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

.authority-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #334155;
    padding: 20px;
    background: #f8fafc;
    border-left: 4px solid #1C62AA;
    margin: 30px 0;
}

.profile-technical-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.spec-box h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 15px;
}

.spec-box ul {
    list-style: none;
    padding: 0;
}

.spec-box li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 8px;
}

.spec-box li::before {
    content: "→";
    color: #1C62AA;
    margin-right: 8px;
}

/* Principles Banner */
.principles-banner-new {
    background: #0f172a;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.principles-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.p-item {
    font-weight: 600;
    font-size: 1rem;
}

.p-item span {
    color: #1C62AA;
    margin-right: 10px;
    font-family: serif;
    font-size: 1.2rem;
}

/* Mobile Fix */
@media (max-width: 992px) {
    .professional-profile {
        flex-direction: column;
    }
    .profile-left {
        width: 100%;
        flex: none;
    }
    .profile-technical-specs {
        grid-template-columns: 1fr;
    }
}

/* consulting services page start */

/* --- Services Hero Section --- */
.services-hero-section {
    padding: 80px 0;
    background: #ffffff;
}

.main-service-title {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.sub-positioning {
    font-size: 1.15rem;
    color: #1C62AA;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-btns-row {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-outline {
    padding: 14px 28px;
    border: 2px solid #1C62AA;
    color: #1C62AA;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}

/* Offset Image Border Effect */
.image-accent-border {
    position: relative;
    display: inline-block;
}

.image-accent-border::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    z-index: -1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .main-service-title {
        font-size: 2rem;
    }
    .cta-btns-row {
        flex-direction: column;
    }
    .hero-text-box {
        text-align: center;
    }
    .image-accent-border::before {
        display: none;
    }
}

/* --- PREMIUM SERVICE CARDS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.service-card-premium {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #16a34a; /* Green Accent Highlight */
}

.card-image-box {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .card-image-box img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-list li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: "•";
    color: #16a34a; /* Green bullet points for Agri/Growth feel */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-cta {
    margin-top: auto;
    text-decoration: none;
    color: #1C62AA;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.card-cta:hover {
    color: #16a34a;
}

/* --- MOBILE STACKING --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}


/* --- DETAILED SERVICES LAYOUT --- */
.detail-row {
    padding: 100px 0;
    border-bottom: 1px solid #f1f5f9;
}

.alt-bg {
    background-color: #fcfdfe;
}

.split-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.reverse-layout {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.detail-image {
    flex: 1;
}

.detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-tag {
    color: #1C62AA;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.detail-heading {
    font-size: 2.2rem;
    color: #0f172a;
    margin: 10px 0 20px;
}

.detail-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.detail-sub-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.sub-item h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.check-list li::before {
    content: "→";
    color: #16a34a;
    position: absolute;
    left: 0;
}

.target-text {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .split-grid, .reverse-layout {
        flex-direction: column;
        text-align: center;
    }
    .detail-sub-grid {
        grid-template-columns: 1fr;
    }
    .check-list li {
        padding-left: 0;
    }
    .check-list li::before {
        display: none;
    }
}

/* --- ENGINEERING PROCESS FLOW --- */
.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
}

.process-flow-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative; /* Necessary for the connecting line */
}

/* The Connecting Line */
.process-line {
    position: absolute;
    top: 35px; /* Aligns with the middle of the numbers */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #1C62AA;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 800;
    font-size: 1.2rem;
    border: 6px solid #ffffff; /* Creates space around the line */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

/* --- MOBILE LAYOUT (STACKED) --- */
@media (max-width: 1024px) {
    .process-flow-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-line {
        display: none; /* Hide line on mobile */
    }

    .step-number {
        margin-bottom: -35px; /* Overlaps card slightly for cool look */
        position: relative;
        z-index: 3;
    }

    .step-card {
        padding-top: 50px;
    }
}


/* --- COMPARISON SECTION STYLES --- */
.comparison-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.comp-card {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.installer-side {
    background-color: #fdf2f2; /* Light Red/Grey tone */
    border-color: #fecaca;
}

.engineering-side {
    background-color: #f0fdf4; /* Light Green tone */
    border-color: #bbf7d0;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.comp-header h3 {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 700;
}

.comp-list {
    list-style: none;
    padding: 0;
}

.comp-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    padding-left: 30px;
    position: relative;
}

.installer-side .comp-list li::before {
    content: "•";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.engineering-side .comp-list li::before {
    content: "•";
    color: #22c55e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- CONVERSION TRIGGER BOX --- */
.conversion-trigger-box {
    background: #0f172a;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    margin-bottom: 50px;
}

.highlight-statement {
    font-size: 2rem;
    margin-bottom: 10px;
}

.highlight-statement strong {
    color: #1C62AA;
}

.supporting-line {
    font-size: 1.1rem;
    color: #94a3b8;
}

.trigger-image img {
    max-width: 300px;
    border-radius: 10px;
}

/* --- IMPACT BENEFITS --- */
.impact-benefits {
    text-align: center;
}

.impact-benefits h4 {
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
}

.benefit-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.benefit-tags span {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1C62AA;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .conversion-trigger-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .highlight-statement {
        font-size: 1.6rem;
    }
}

/* --- PRICING & ENGAGEMENT MODELS --- */
.pricing-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.featured-card {
    border: 2px solid #1C62AA;
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1C62AA;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-header h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin: 10px 0;
}

.price-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.deliverables-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #1C62AA;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.deliverables-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.deliverables-box li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.deliverables-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.price-tag {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-bottom: 25px;
}

.range-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.price-cta {
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border: 1px solid #1C62AA;
    color: #1C62AA;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

.featured-cta {
    background: #1C62AA;
    color: white;
}

/* Cost Factors & Not Sure Box */
.cost-factors {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: center;
}

.factors-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.factor {
    font-size: 0.95rem;
    color: #475569;
}

.not-sure-box {
    text-align: center;
    padding: 60px;
    background: #0f172a;
    border-radius: 16px;
    color: white;
}

.not-sure-box h3 { font-size: 1.8rem; margin-bottom: 15px; }
.not-sure-box p { margin-bottom: 30px; color: #94a3b8; }

/* Mobile Layout */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .featured-card { transform: scale(1); margin: 20px 0; }
}


/* --- FINAL CONVERSION SECTION --- */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: #0f172a; /* Deep Institutional Blue */
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.cta-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Very subtle so text remains king */
    filter: grayscale(100%);
}

.content-relative {
    position: relative;
    z-index: 2;
}

.cta-content-card {
    max-width: 900px;
    margin: 0 auto;
}

.cta-main-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-subheading {
    font-size: 1.4rem;
    color: #38bdf8; /* Soft blue accent */
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-supporting-text {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 45px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-giant-green {
    background: #22c55e;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-giant-green:hover {
    transform: translateY(-3px);
    background: #16a34a;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-outline-white {
    padding: 20px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.trust-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.trust-item {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.trust-item span {
    color: #22c55e;
    margin-right: 10px;
    font-weight: bold;
}

.urgency-trigger {
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid #334155;
    padding-top: 25px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-main-heading { font-size: 2rem; }
    .cta-actions { flex-direction: column; }
    .trust-check-grid { grid-template-columns: 1fr; }
}

/* --- SECTION SPACING COMPRESSION --- */

/* 1. Reduce vertical padding on all main sections */
section, 
.compact-section, 
.detailed-services-area, 
.process-section, 
.comparison-section, 
.pricing-section {
    padding-top: 50px !important;    /* Cut from 100px to 50px */
    padding-bottom: 50px !important; /* Cut from 100px to 50px */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. Tighten the space between the Header and the First Section */
body {
    padding-top: 70px !important; /* Matches Navbar height exactly */
}

/* 3. Remove extra bottom margins from headings and intros */
.faq-header, 
.section-container h2, 
.process-intro {
    margin-bottom: 30px !important; /* Reduced from 60px */
}

/* 4. Tighten the grid spacing */
.services-grid, 
.comparison-grid, 
.pricing-grid {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    gap: 25px !important; /* Tighter gap between cards */
}

/* 5. Special Fix for the Detailed Rows (Z-Pattern) */
.detail-row {
    padding: 60px 0 !important; /* Tightens the stacked service sections */
    border-bottom: 1px solid #f1f5f9;
}

/* 6. Remove margin-top from the first section of any page */
section:first-of-type {
    padding-top: 40px !important;
}


/* audit request page start  */

/* --- AUDIT PAGE HERO STYLES --- */

.audit-page-wrapper {
    padding-top: 70px; /* Space for the fixed navbar */
}

.audit-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0 60px; /* Space for content */
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.audit-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.eyebrow-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #1C62AA;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.audit-hero h1 {
    font-size: 3.5rem;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subheading {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badge-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

/* CTA Button */
.btn-primary-large {
    display: inline-block;
    background-color: #1C62AA;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(28, 98, 170, 0.3);
}

.btn-primary-large:hover {
    background-color: #154d8a;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(28, 98, 170, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .audit-hero h1 { font-size: 2.5rem; }
    .trust-badge-container { gap: 15px; }
    .trust-badge { width: 100%; justify-content: center; }
}


/* --- LEAD QUALIFICATION SECTION --- */

.qualification-section {
    padding: 60px 0 !important; /* Tight spacing as requested */
    background-color: #ffffff;
}

.qualification-wrapper {
    text-align: center;
}

.qualify-title {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 10px !important;
    font-weight: 800;
}

.qualify-subtitle {
    color: #64748b;
    margin-bottom: 40px !important;
    font-size: 1.1rem;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.qual-card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.featured-qual {
    border: 2px solid #1C62AA;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(28, 98, 170, 0.1);
}

.qual-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.qual-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.qual-range {
    display: inline-block;
    color: #1C62AA;
    font-weight: 700;
    font-size: 1rem;
    background: #e0f2fe;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.qual-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.qualify-note {
    max-width: 700px;
    margin: 0 auto;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .qualification-grid {
        grid-template-columns: 1fr;
    }
}



/* --- AUDIT DELIVERABLES SECTION --- */

.deliverables-section {
    padding: 60px 0 !important;
    background-color: #fcfdfe; /* Very subtle blue-white tint */
}

.deliverables-header {
    text-align: center;
    margin-bottom: 40px !important;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.deliverable-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.deliverable-item:hover {
    transform: translateX(5px);
    border-color: #1C62AA;
}

.deliv-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.deliv-text h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

.deliv-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.full-width-deliv {
    grid-column: span 2;
    background: #f0fdf4; /* Highlighted in light green for importance */
    border-color: #bbf7d0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    .full-width-deliv {
        grid-column: span 1;
    }
}


/* --- DIFFERENTIATION SECTION --- */

.differentiation-section {
    padding: 60px 0 !important;
    background-color: #0f172a; /* Dark Navy for authority */
    color: #ffffff;
}

.diff-box {
    max-width: 900px;
    margin: 0 auto;
}

.text-white {
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.diff-intro {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 45px !important;
    line-height: 1.6;
    text-align: center;
}

.diff-intro strong {
    color: #38bdf8; /* Bright blue highlight */
}

.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.risk-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-icon {
    font-size: 1.2rem;
    color: #ef4444; /* Warning Red */
}

.risk-item h4 {
    color: #f8fafc;
    margin-bottom: 5px;
    font-size: 1.05rem;
    font-weight: 700;
}

.risk-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.diff-conclusion {
    text-align: center;
    padding: 25px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    border: 1px dashed #38bdf8;
}

.diff-conclusion p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .risk-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PRICING ANCHOR STYLES --- */

.pricing-anchor-section {
    padding: 60px 0 !important;
    background-color: #f8fafc;
}

.pricing-anchor-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-intro {
    color: #64748b;
    margin-bottom: 40px !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.anchor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.anchor-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.anchor-card h4 {
    font-size: 1rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.anchor-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.anchor-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Highlighted Card (Commercial) */
.highlighted-anchor {
    border: 2px solid #1C62AA;
    position: relative;
    box-shadow: 0 10px 20px rgba(28, 98, 170, 0.05);
}

.best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1C62AA;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.audit-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    background: #ffffff;
    padding: 15px;
    display: inline-block;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .anchor-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CLEAN PROCESS LIST (NO OVERLAP) --- */

.audit-process-section {
    padding: 60px 0 !important;
    background-color: #ffffff;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between cards */
}

.process-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* The Number Box */
.card-num {
    background: #ffffff;
    color: #1C62AA;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    flex-shrink: 0;
}

/* Highlighting the Blueprint Delivery */
.highlight-card {
    background: #f0f7ff; /* Light blue tint */
    border: 1.5px solid #1C62AA;
}

.highlight-card .card-num {
    background: #1C62AA;
    color: #ffffff;
    border-color: #1C62AA;
}

.card-body h4 {
    margin: 0 0 8px 0 !important;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}

.card-body p {
    margin: 0 !important;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .process-card {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- AUDIT FORM STYLING --- */

.audit-form-section {
    padding: 60px 20px !important;
    background-color: #ffffff;
}

.form-container-boxed {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.form-header-box { text-align: center; margin-bottom: 40px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label, .form-row label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
}

.form-group input, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus { border-color: #1C62AA; outline: none; }

.radio-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding: 10px 0;
}

.radio-label { font-weight: 500; color: #475569; cursor: pointer; }

/* DUAL BUTTONS STYLING */
.dual-submit-wrapper {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.submit-instruction { font-weight: 600; color: #64748b; margin-bottom: 15px; font-size: 0.9rem; }

.submit-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-submit {
    flex: 1;
    max-width: 250px;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.whatsapp-btn { background-color: #25D366; color: white; }
.email-btn { background-color: #1C62AA; color: white; }

.btn-icon { height: 20px; width: 20px; }

.whatsapp-btn:hover { background-color: #1ebe5d; transform: translateY(-2px); }
.email-btn:hover { background-color: #154d8a; transform: translateY(-2px); }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .submit-buttons { flex-direction: column; align-items: center; }
    .btn-submit { width: 100%; max-width: none; }
}

/* --- SECTION 8: AUDIT TRUST BAR --- */

.audit-trust-bar {
    padding: 30px 0 !important;
    background-color: #f1f5f9; /* Soft grey to transition to footer */
    border-top: 1px solid #e2e8f0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon {
    font-size: 1.4rem;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-text p {
    margin: 0 !important;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Fix for Mobile */
@media (max-width: 992px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .trust-bar-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .trust-item {
        justify-content: flex-start;
        padding-left: 20%;
    }
}

/* --- PRE-AUDIT CHECKLIST STYLES --- */

.pre-audit-checklist {
    padding: 40px 20px 20px !important;
    background-color: #ffffff;
}

.checklist-container {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-card {
    background: #fffcf0; /* Subtle warm gold tint for "Attention" */
    border: 1px solid #fef3c7;
    border-left: 5px solid #f59e0b; /* Professional Amber accent */
    padding: 30px;
    border-radius: 8px;
}

.checklist-title {
    font-size: 1.4rem;
    color: #92400e; /* Deep amber text */
    margin: 0 0 10px 0 !important;
    font-weight: 800;
}

.checklist-intro {
    font-size: 1rem;
    color: #b45309;
    margin-bottom: 20px !important;
}

.check-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list-items li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: #059669; /* Emerald Green for the checkmark */
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
}

.check-text {
    font-size: 1.05rem;
    color: #1e293b;
    line-height: 1.4;
}

.check-text strong {
    color: #0f172a;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .checklist-card {
        padding: 20px;
    }
    .check-text {
        font-size: 0.95rem;
    }
}


/* mobile nav logic new 220326 */

@media (max-width: 992px) {
    /* The default state: Hidden and moved off-screen or faded */
    .nav-links {
        display: none !important; /* Force hide by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    /* The "Open" state */
    .nav-links.active {
        display: flex !important; /* Show when active class is present */
    }
}

/* Hide toggle button on Desktop */
#mobile-toggle-btn {
    display: none;
}

@media (max-width: 992px) {
    #mobile-toggle-btn {
        display: block !important;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    /* Top, Middle, Bottom bars */
    #mobile-toggle-btn::before,
    #mobile-toggle-btn::after,
    #mobile-toggle-btn span {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1e293b;
        border-radius: 3px;
        transition: 0.3s;
    }

    #mobile-toggle-btn::before { top: 0; }
    #mobile-toggle-btn span { top: 8.5px; }
    #mobile-toggle-btn::after { bottom: 0; }

    /* Hide the text links by default on mobile */
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        border-bottom: 2px solid #1C62AA;
    }

    .nav-links.active {
        display: flex !important;
    }
}

@media (max-width: 992px) {
    /* When the JS adds 'active', this forces it to show */
    #nav-list.active {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}



/*  svg icons new  */

