/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; 
    font-family: 'Poppins', sans-serif;
    /* background-color: #012b32; Pure page background */
}

/* --- Header Wrapper --- */
.site-header {
    width: 100%;
    min-height: 100vh;
    padding: 20px 40px;
    background-image: linear-gradient(rgba(5, 95, 122, 0.486), rgba(0, 0, 0, 0.5)), url('../images/header-Section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* --- White Navbar Container --- */
.header-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    position: relative;
}

/* --- Logo Styling --- */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
   
}

.logo-img {
    height: 45px;       
    width: auto; 
    object-fit: contain;       
}


/* --- Desktop Links --- */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #00b4d8;
}

.dropdown-icon {
    font-size: 10px;
}

/* --- Desktop Button Style --- */
.btn-get-in-touch {
    display: inline-flex;
    align-items: center;
    background-color: #00b4d8;
    color: white !important;
    text-decoration: none;
    padding: 6px 6px 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-get-in-touch:hover {
    background-color: #0096b4;
    transform: translateY(-2px);
}

.arrow-circle {
    background-color: white;
    color: #00b4d8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
    font-size: 12px;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #014751;
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
}

/* --- Hero Section --- */
.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: auto auto;
    padding: 60px 24px;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-content h1 span {
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0f2f1;
    margin-bottom: 40px;
}

.btn-hero-demo {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: #014751;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-demo:hover {
    background-color: #014751;
    color: #ffffff;
}

/* --- 📱 RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .site-header {
        padding: 15px 15px;
    }

    .header-container {
        border-radius: 50px; 
        padding: 12px 24px;
    }

    .btn-get-in-touch,
    .desktop-only-btn {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        padding: 30px 24px;
        display: none;
        z-index: 1000;
        width: 100%;
    }

    .nav-menu.active {
        display: block; 
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }

    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    .nav-menu ul li a {
        justify-content: center;
        padding: 5px 0;
        font-size: 18px;
        color: #014751;
        font-weight: 700;
    }

    .hero-container {
        padding-top: 30px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-hero-demo {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
}

/* --- Industries / Solutions Section Styles --- */
.solutions-section {
    width: 100%;
    background-color: #ffffff; 
    padding: 80px 24px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solutions-container {
    max-width: 900px; 
    width: 100%;
    margin: 0 auto;
}

.solutions-title {
    font-size: 32px;
    font-weight: 500;
    color: #014751; 
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.solutions-subtitle {
    font-size: 16px;
    color: #4a5568; 
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 50px 20px; 
    }

    .solutions-title {
        font-size: 24px; 
        line-height: 1.4;
    }
    
    .solutions-title br {
        display: none; 
    }

    .solutions-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* --- 🟢 FIXED Pure Background Image ERP Box --- */
.custom-erp-box {
    max-width: 1500px;
    width: calc(100% - 80px);
    min-height: 550px;
    margin: 50px auto;
    
    /* 🟢 FIXED WITH OVERLAY: Pehle 60% solid black overlay aayega, phir image load hogi */
    background-image: linear-gradient(rgba(12, 78, 109, 0.459), rgba(0, 0, 0, 0.6)), url('../images/Gemini_Generated_Image_hoac2dhoac2dhoac.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 24px;
    padding: 80px 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* Inside Text Container */
.custom-erp-text-wrap {
    max-width: 550px;
    width: 100%;
    text-align: left;
}

.custom-erp-text-wrap h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.custom-erp-text-wrap p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    opacity: 0.95;
}

/* 📱 Mobile Responsive View */
@media (max-width: 768px) {
    .custom-erp-box {
        width: calc(100% - 30px);
        margin: 30px auto;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .custom-erp-text-wrap h2 {
        font-size: 24px;
    }
    
    .custom-erp-text-wrap p {
        font-size: 14px;
    }
}

/* --- 🟢 NEW TWO-COLUMN FEATURES CARDS SECTION --- */
.features-cards-section {
    width: 100%;
    max-width: 1500px;
    margin: 40px auto 80px auto;
    /* padding: 0 40px; */
    box-sizing: border-box;
}

.features-cards-container {
    width: 100%;
    display: flex;
    gap: 30px; /* Dono cards ke darmiyan ka gap */
    justify-content: space-between;
}

/* Base styling for both cards */
.feature-card {
    flex: 1; /* Dono cards barabar width ke honge */
    min-height: 500px;
    border-radius: 24px;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end; /* Text ko card ke bottom par set karne ke liye */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* 🔴 BACKGROUND IMAGES & OVERLAYS FOR CARDS */
/* ⚠️ Note: Agar images na aayen, toh folder se inka sahi naam verify kar ke yahan badaliyega */
/* --- 🟢 1. Parent Container (Yeh hamesha pehle aayega) --- */
.features-cards-container {
    width: 100%;
    display: flex;
    flex-direction: row; /* Desktop par side-by-side */
    gap: 30px; /* Dono cards ke darmiyan ka gap */
    justify-content: space-between;
    align-items: stretch; /* Taake dono cards ki height barabar rahe */
    box-sizing: border-box;
}

/* --- 🟢 2. Left Card: Strictly 60% Width --- */
.card-tax {
    width: calc(60% - 15px); /* Total 60% mein se gap ka aadha minus kiya */
    flex-shrink: 0; /* Browser ko iski width choti karne se rokne ke liye */
    min-height: 500px;
    border-radius: 24px;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('../images/Gemini_Generated_Image_ijezo1ijezo1ijez.png');
}

/* --- 🟢 3. Right Card: Strictly 40% Width --- */
.card-pos {
    width: calc(40% - 15px); /* Total 40% mein se gap ka aadha minus kiya */
    flex-shrink: 0; /* Browser ko iski width choti karne se rokne ke liye */
    min-height: 500px;
    border-radius: 24px;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('../images/Gemini_Generated_Image_889l4x889l4x889l.png');
}

/* --- 🟢 4. Card Inner Content Layout --- */
.feature-card-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.feature-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

/* --- 🟢 5. Premium Rounded Read More Button --- */
.btn-read-more {
    display: inline-block;
    background-color: #d8edf2; /* Light teal capsule background */
    color: #014751;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- 🟢 6. 📱 Mobile & Tablet Responsiveness --- */
@media (max-width: 992px) {
    /* Dono cards ko line ke bajaye upar-niche (stack) karne ke liye */
    .features-cards-container {
        flex-direction: column !important;
        gap: 24px; /* Mobile par dono cards ke darmiyan spacing */
    }
    
    /* Mobile par 60% aur 40% khatam kar ke full width karne ke liye */
    .card-tax, .card-pos {
        width: 100% !important; 
        min-height: 420px;
        padding: 40px 25px;
    }
    
    /* Section ki outer padding thodi kam ki taake mobile screen par jagah bache */
    .features-cards-section {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    /* Text size mobile ke liye perfect small kar diya */
    .feature-card-content h2 {
        font-size: 24px;
    }
}

/* --- 🇵🇰 FBR INTEGRATOR SECTION STYLES --- */
.fbr-section {
    width: 100%;
    max-width: 1650px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
    margin-top: 200px !important; /* 🟢 FIXED: Uper wale section se thoda zyada gap taake clear separation ho jaye */
}

.fbr-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 45px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start; /* Sub elements ko top se align rakhega */
    gap: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Premium light shadow effect */
}

/* Left Box Side Styles */
.fbr-logo-box {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-shrink: 0; /* Logo box ko shrink hone se rokega */
}

.fbr-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

/* Vertical separating line */
.fbr-divider {
    width: 2px;
    height: 120px;
    background-color: #e2e8f0; /* Light gray line */
}

/* Right Content Side Styles */
.fbr-content-box {
    flex: 1;
}

.fbr-content-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #013a44; /* Dark elegant teal green color */
    line-height: 1.25;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.fbr-content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568; /* Subtle gray for easy readability */
    font-family: 'Poppins', sans-serif;
}

.fbr-content-box p strong {
    color: #1a202c; /* Aqua Consulting Group name thoda bold aur prominent */
    font-weight: 600;
}

/* --- 📱 RESPONSIVE MEDIA QUERY --- */
@media (max-width: 992px) {
    .fbr-section {
        padding: 0 20px;
        margin: 40px auto;
    }

    .fbr-container {
        flex-direction: column; /* Mobile par logo upar aur text niche aayega */
        padding: 40px 30px;
        gap: 25px;
    }

    .fbr-logo-box {
        width: 100%;
        flex-direction: column;
        align-items: flex-start; /* Mobile par logo left align ho jaye */
        gap: 20px;
    }

    .fbr-img {
        width: 110px; /* Mobile screen ke mutabiq logo size scale down kiya */
    }

    /* Mobile view par khari line ko leti hui line (horizontal divider) mein badal diya */
    .fbr-divider {
        width: 100%;
        height: 1px;
    }

    .fbr-content-box h2 {
        font-size: 26px; /* Heading text size readable for mobile */
        margin-bottom: 15px;
    }

    .fbr-content-box p {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* ///////////////////////////////////////// */
/* --- 🌐 ABOUT / MISSION SECTION STYLES --- */
.mission-section {
    width: 100%;
    max-width: 1650px;
    margin: 80px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.mission-container {
    width: 100%;
    display: flex;
    align-items: center; /* Elements vertical center rahein ge */
    gap: 60px; /* Left and Right box spacing */
}

/* --- Left Visual Side Styling --- */
.mission-visual-box {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* ///////////////////////////////////////////////////// */

/* Tech line network icon logic behind the circle */
/* --- 🌐 CLEAN MISSION SECTION STYLES --- */
.mission-section {
    width: 100%;
    max-width: 1650px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
    margin-top: 
    200px !important; /* 🟢 FIXED: Uper wale section se thoda zyada gap taake clear separation ho jaye */
}

.mission-container {
    width: 100%;
    display: flex;
    align-items: stretch; /* 🟢 FIXED: Dono sections ki height hamesha har haal mein barabar rahegi */
    gap: 50px; /* Space between image and text */
}

/* --- Left Side (Simple Rectangle Image Box) --- */
.mission-image-box {
    width: 45%;
    flex-shrink: 0;
    display: flex; /* 🟢 Height stretch hone mein madad karega */
}

.mission-rect-img {
    width: 100%;
    height: 100%;        /* 🟢 FIXED: Ab yeh full automatic height pakrega text ke mutabiq */
    object-fit: cover;   /* 🟢 FIXED: Image ab kharab ya scale out nahi hogi, balkay box ko cover karegi */
    border-radius: 16px; 
}

/* --- Right Side (Content Area) --- */
.mission-content-box {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Text elements ko vertically perfectly block ke beech mein rakhega */
}

.mission-content-box h2 {
    font-size: 34px;
    font-weight: 600;
    color: #013a44; /* Theme teal green */
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.mission-content-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Points Layout (2 Columns) */
.mission-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.mission-points-grid li {
    font-size: 15px;
    font-weight: 500;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: #013a44;
    border-radius: 50%;
    display: inline-block;
}

/* --- 📱 RESPONSIVE DESIGN (FOR MOBILE & TABLETS) --- */
@media (max-width: 992px) {
    .mission-section {
        padding: 0 20px;
        margin: 40px auto;
    }

    .mission-container {
        flex-direction: column; /* Mobile par image upar, text niche */
        gap: 30px;
    }

    .mission-image-box, 
    .mission-content-box {
        width: 100%; /* Full width stack */
    }

    .mission-rect-img {
        height: 350px; /* Mobile par image ki height controlled rahegi */
        object-fit: cover;
    }

    .mission-content-box h2 {
        font-size: 24px;
        text-align: left;
    }

    .mission-content-box p {
        font-size: 14px;
    }

    .mission-points-grid {
        grid-template-columns: 1fr; /* Mobile par single column list */
        gap: 12px;
    }
}

/* ////////////////////////////////////////////////////////////////// */

/* --- 🛠️ SERVICES GRID (PERFECT ROW ALIGNMENT) --- */
.services-section {
    width: 100%;
    max-width: 1650px; /* 🟢 FIXED: Uper wale sections ke bilkul barabar matching width */
    margin: 80px auto;
    padding: 0 40px;   /* 🟢 FIXED: Same horizontal spacing jo baki layout mein hai */
    box-sizing: border-box;
    margin-top: 200px !important; /* 🟢 FIXED: Uper wale section se thoda zyada gap taake clear separation ho jaye */
}

/* Header Text Area */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    
}

.services-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: #013a44;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    width: 40%; /* Desktop width */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Heading ko center align karna zaroori hai */
}

.services-header p {
    font-size: 16px;
    color: #4a5568;
    font-family: 'Poppins', sans-serif;
}

/* Grid Wrapper - Aligns corners with upper elements */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🟢 EXACTLY 3 Columns in a single row */
    gap: 30px; /* Cards ke darmiyan consistent professional spacing */
    width: 100%;
    box-sizing: border-box;
}

/* Individual Service Card Style */
.service-card {
    background: #f7fafc; /* Ultra-light clean background jesa aapke ss mein tha */
    border-radius: 20px; /* Modern sleek corners */
    padding: 40px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect: Soft premium look */
.service-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(1, 58, 68, 0.05); /* Soft matching glow */
    border-color: #e2e8f0;
}

/* Icons Inside Card */
.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: #013a44; /* Dark Teal Theme Theme Color */
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

/* Bottom Circle Action Link Button */
.service-arrow {
    width: 32px;
    height: 32px;
    background-color: #e2e8f0;
    color: #013a44;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: auto; /* Push card elements cleanly, ensuring absolute bottom placement */
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    background-color: #013a44;
    color: #ffffff;
    transform: rotate(-45deg);
}

/* --- 📱 RESPONSIVE LAYOUT FOR MOBILE & TABLETS --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-header h3 {
        font-size: 30px;
        width: 70%; /* Tablet par thori width barha di */
    }
}

/* Mobile view (Fix) */
@media (max-width: 768px) {
    .services-header h3 {
        font-size: 24px;
        width: 90%; /* Mobile par width 90% kar di taake text puri jagah le */
        line-height: 1.4; /* Mobile par lines ke darmiyan space behtar karne ke liye */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 0 20px;
        margin: 50px auto;
    }
    
    .services-header h3 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Pure mobile device par dynamic 1 column vertical line stretch */
        gap: 20px;
    }
}

/* //////////////////////////////////////// */

/* --- 🌟 DISTINCT BENEFITS SECTION STYLES --- */
.benefits-section {
    width: 100%;
    max-width: 1650px; /* 🟢 FIXED: Baki sub sections ke sath perfect matching edge layout */
    margin: 100px auto;
    padding: 0 40px;
    margin-top: 200px !important; /* 🟢 FIXED: Uper wale section se thoda zyada gap taake clear separation ho jaye */
    box-sizing: border-box;
}

/* Header Text - Left Aligned Left Cornered */
.benefits-header {
    width: 100%;
    max-width: 600px; /* Text left side par content stack banaye rakhne ke liye */
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #013a44; /* Corporate Dark Teal Theme */
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* 4-Column Alignment Grid System */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🟢 Desktop par exact 4 clean text columns */
    gap: 40px; /* Columns ke darmiyan barabar spacing */
    width: 100%;
    box-sizing: border-box;
}

/* Individual Column Items (No box borders, purely clean layout) */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Clean Custom Outlined Svg Box */
.benefit-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-svg {
    width: 45px;
    height: 45px;
    color: #013a44; /* Soft dark dynamic color matching screenshot lines */
    stroke-width: 1.2; /* Outlined sleek premium appearance */
}

/* Titles inside columns */
.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Informational paragraphs description text */
.benefit-item p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a5568; /* Light professional gray reading color */
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* --- 📱 RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Medium laptops/tablets par automatic 2x2 grid framework */
        gap: 35px;
    }
    .benefits-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .benefits-header {
        margin-bottom: 40px;
    }

    .benefits-header h2 {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Pure mobile screens par straight single vertical row lines layout */
        gap: 30px;
    }
}

/* /////////////////////////////// */

/* --- 📊 BUILT FOR THE FUTURE STATS SECTION --- */
.stats-banner-section {
    width: 100%;
    background-color: #013a44; /* Exact Dark Teal Brand Background Color */
    padding: 90px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* Internal Inner Container Alignment with Page Max Width */
.stats-banner-container {
    width: 100%;
    max-width: 1650px; /* Baki sections ke corners ke sath automatic direct matching alignment */
    padding: 0 40px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.2fr 2fr; /* Left panel text chota, right panel grid bada */
    gap: 60px;
    align-items: center;
}

/* Left Panel Content Block styling */
.stats-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-left-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.stats-left-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #a0aec0; /* Soft bright gray readability tone text */
    margin: 0 0 30px 0;
    font-family: 'Poppins', sans-serif;
}

/* Solid Outline Rounded Rounded Action Pill Button */
.stats-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.stats-btn:hover {
    background-color: #ffffff;
    color: #013a44;
    border-color: #ffffff;
}

/* Right Side Core 2x2 Numeric Matrix Grid Component */
.stats-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Split horizontal block row columns pairs */
    row-gap: 50px;
    column-gap: 40px;
}

/* Metric Units Blocks spacing values */
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Big Hero Stat Data Labels Text */
.stat-number {
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: baseline;
}

/* Descriptive Lower Meta Labels */
.stat-label {
    font-size: 15px;
    color: #e2e8f0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* --- 📱 FLEXIBLE LAYOUT MEDIA BREAKPOINTS --- */
@media (max-width: 1024px) {
    .stats-banner-container {
        grid-template-columns: 1fr; /* Stack elements top-down on smaller displays */
        gap: 50px;
        text-align: left;
    }
    
    .stats-left-content h2 {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .stats-banner-section {
        padding: 60px 0;
    }

    .stats-banner-container {
        padding: 0 20px;
    }

    .stats-right-grid {
        grid-template-columns: 1fr; /* Mobile screens par pure vertical linear listings elements stack change */
        gap: 35px;
    }
    
    .stats-left-content h2 {
        font-size: 30px;
    }
}

/* //////////////////////////////////// */

/* --- 🏪 EXACT PREMIUM POS FEATURE BLOCK --- */

.process-header-section {
    width: 100%;
    background-color: #e3edf0; /* Exact soft light grayish-blue background color from SS */
    padding: 80px 20px; /* Generous vertical padding for that exact clean spacing look */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.process-header-container {
    width: 100%;
    max-width: 800px; /* Restricts text width to perfectly match the lines in your screenshot */
}

.process-header-container h2 {
    font-size: 48px; /* Big premium heading style */
    font-weight: 600;
    color: #013a44; /* Your signature dark teal brand color */
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.process-header-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #4a6b73; /* Smooth matching muted teal/gray tone for sub-heading */
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* --- 📱 RESPONSIVE ADJUSTMENT FOR MOBILE --- */
@media (max-width: 768px) {
    .process-header-section {
        padding: 50px 20px;
    }
    
    .process-header-container h2 {
        font-size: 32px;
    }
    
    .process-header-container p {
        font-size: 14px;
    }
}

/* /////////////////////////////////////////// */

/* --- 📑 CLEAN VERTICAL STRIP & CONTENT GRID STYLES --- */
.process-tabs-section {
    width: 100%;
    max-width: 1650px;
    margin: 40px auto 100px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.process-tabs-container {
    display: flex;
    width: 100%;
    min-height: 520px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(1, 58, 68, 0.04);
    overflow: hidden;
    border: 1px solid #edf2f4;
}

/* Base Tab Component Structure */
.process-tab {
    display: flex;
    flex-direction: row; /* Strip left par, Content right par */
    flex: 0 0 75px; /* Closed strip ki consistent width */
    width: 75px;
    overflow: hidden;
    border-right: 1px solid #edf2f4;
    background-color: #ffffff;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-tab:last-child {
    border-right: none;
}

/* 🟢 WHEN TAB IS ACTIVE */
.process-tab.active {
    flex: 1; /* Automatically stretches and claims remaining container width */
}

/* --- 🔄 LEFT VERTICAL STRIP HANDLER --- */
.tab-header {
    width: 75px;
    min-width: 75px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    background-color: #ffffff;
    z-index: 5;
}

.step-num {
    font-size: 13px;
    font-weight: 500;
    color: #718096;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

.tab-heading {
    writing-mode: vertical-rl;
    transform: rotate(180deg); /* 🟢 FIXED: Keeps text strictly vertical in both active & normal states */
    font-size: 17px;
    font-weight: 600;
    color: #013a44;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Active Strip States */
.process-tab.active .tab-header {
    cursor: default;
    border-right: 1px solid #f4f7f6;
}

.process-tab.active .step-num {
    color: #013a44;
}

/* --- 💻 RIGHT MAIN CONTENT VIEW PANEL --- */
.tab-body {
    flex: 1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: #ffffff;
    transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
}

.process-tab.active .tab-body {
    opacity: 1;
    visibility: visible;
}

/* Internal Inner 2-Column Split grid */
.tab-inner-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text content left, Image placeholder right */
    gap: 50px;
    padding: 60px; /* Clean internal breathing spacing */
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Left Side Column: Typography Details */
.tab-text-column {
    display: flex;
    flex-direction: column;
}

.tab-text-column h2 {
    font-size: 34px; /* Big premium title at the absolute top of the right panel */
    font-weight: 600;
    color: #013a44;
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.tab-text-column p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Right Side Column: Images Box */
.tab-image-column {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.tab-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 📱 MOBILE DEVICE COMPATIBILITY STACKS --- */
/* --- 📱 MOBILE & TABLET LAYOUT RESPONSIVE (FIXED BLANK SPACE) --- */
@media (max-width: 991px) {
    .process-tabs-section {
        padding: 0 20px;
        margin: 40px auto 60px auto;
    }

    .process-tabs-container {
        flex-direction: column; /* Stacks vertically top-to-bottom */
        min-height: auto;
        box-shadow: 0 10px 30px rgba(1, 58, 68, 0.05);
    }

    .process-tab {
        flex-direction: column;
        width: 100%;
        flex: initial;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #edf2f4;
        transition: background-color 0.3s ease;
    }

    .process-tab:last-child {
        border-bottom: none;
    }

    /* --- 🔄 MOBILE TAB HEADER ACCORDION BAR --- */
    .tab-header {
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        padding: 20px !important;
        flex-direction: row !important; /* Converts vertical layouts to standard horizontal rows */
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 12px;
        background-color: #f8fafc; /* Closed accordion headers get a clean subtle distinct light shade */
    }

    .process-tab.active .tab-header {
        background-color: #ffffff; /* Active accordion title retains clean crisp white backdrop */
        border-bottom: 1px solid #edf2f4;
    }

    .step-num {
        margin-bottom: 0 !important;
        font-size: 14px;
    }

    .tab-heading {
        writing-mode: horizontal-tb !important; /* Forces layout direction horizontal perfectly */
        transform: rotate(0deg) !important;
        font-size: 16px !important;
        white-space: normal !important;
        line-height: 1.4;
    }

    /* --- 💻 MOBILE TAB BODY CONTENT CONTROLLER (THE BLANK SPACE FIX) --- */
    .tab-body {
        display: none; /* 🚀 FIX: Completely hides and collapses the element layer if closed */
        width: 100%;
        opacity: 0;
        visibility: hidden;
        background-color: #ffffff;
        transition: opacity 0.3s ease;
    }

    /* Reveals content box smoothly only under the active element container */
    .process-tab.active .tab-body {
        display: block; /* 🚀 FIX: Allocates layout space instantly when parent tab becomes active */
        opacity: 1;
        visibility: visible;
    }

    /* Internal content container mobile optimizations */
    .tab-inner-content {
        grid-template-columns: 1fr !important; /* Forces layout stack in a single balanced column */
        padding: 25px 20px !important;
        gap: 25px !important;
    }

    .tab-text-column h2 {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .tab-text-column p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .tab-image-column {
        width: 100%;
        height: 240px !important; /* Perfectly proportional mobile card height scale */
        border-radius: 12px;
    }
}

/* //////////////////////////////////////////// */

/* --- 📝 MODERN CONTACT & INQUIRY FORM STYLES --- */
.contact-form-section {
    width: 100%;
    max-width: 1650px;
    margin: 60px auto 100px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Text left side, form right side */
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(1, 58, 68, 0.05);
    border: 1px solid #edf2f4;
    overflow: hidden;
}

/* Left Content Side */
.form-info-side {
    background-color: #013a44; /* Match corporate deep teal */
    padding: 60px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.form-info-side .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00b4d8; /* Accent light teal */
    font-weight: 600;
    margin-bottom: 15px;
}

.form-info-side h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.form-info-side p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 40px 0;
}

.info-meta-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    font-size: 20px;
}

.meta-item p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

/* Right Input Form Side */
.form-input-side {
    padding: 60px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for inputs */
    gap: 25px;
    margin-bottom: 35px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full-width {
    grid-column: span 2; /* Message text area claims full row width */
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: #013a44;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background-color: #f8fafc;
    color: #1e293b;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #013a44;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(1, 58, 68, 0.06);
}

/* Premium Form Submit Button styling */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #013a44;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(1, 58, 68, 0.15);
}

.form-submit-btn:hover {
    background-color: #00252c;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(1, 58, 68, 0.25);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* --- 📱 RESPONSIVE MOBILE CONSTRAINTS --- */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr; /* Stacks vertically on smaller viewport screens */
    }
    
    .form-info-side, .form-input-side {
        padding: 40px 25px;
    }
    
    .form-info-side h2 {
        font-size: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group.full-width {
        grid-column: span 1;
    }
}

/* /////////////////////////////////////////// */

.footer-section {
    background-color: #013a44;
    color: #ffffff;
    padding: 80px 40px 40px 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    /* Grid columns set kar diye hain, ab koi conflict nahi hoga */
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 40px;
    align-items: start;
}

/* --- LOGO SECTION FIX --- */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-img {
    /* Height ko barha kar 100px kar diya taake logo clear dikhe */
    height: 100px; 
    width: auto;
    display: block;
    /* Object-fit add kiya taake image distortion na ho */
    object-fit: contain; 
}

.brand-col p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px; 
}

/* --- LINKS SECTION --- */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #00b4d8;
}

/* --- SOCIAL LINKS --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.social-links a:hover {
    background: #00b4d8;
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    max-width: 1600px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-logo-img {
        height: 80px; /* Mobile par thoda chota */
    }
}

/* ///////////////////////////////////////////// */