/* --- Root Variables for Professional Consistency --- */
:root {
    --primary-blue: #0A66C2;      /* Brand Main Blue */
    --primary-dark: #084a94;      /* Hover Blue */
    --navy-dark: #0F172A;         /* Hero/Footer Background */
    --whatsapp-green: #25D366;    /* Conversion Green */
    --white: #FFFFFF;
    --light-gray: #F8FAFC;        /* Subtle Background */
    --text-main: #1E293B;         /* Soft Dark Text */
    --transition: all 0.3s ease;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Modern Corporate Look */
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

/* --- Navbar Styling --- */
.navbar {
    width: 100%;
    background-color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05); /* Very light professional shadow */
    border-bottom: 1px solid #edf2f7;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 48px; /* Standard corporate logo height */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 50px; /* Perfect spacing for readability */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Navigation Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- CTA Buttons Group --- */
.nav-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 6px; /* Slightly rounded for modern feel */
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

/* Call Button (Primary) */
.btn-call {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1.5px solid var(--primary-blue);
}

.btn-call:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
    transform: translateY(-1px);
}

/* WhatsApp Button (Ghost Style for Balance) */
.btn-whatsapp {
    background-color: var(--white);
    color: var(--whatsapp-green);
    border: 1.5px solid var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green);
    color: var(--white);
    transform: translateY(-1px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .nav-links {
        gap: 30px;
    }
}

@media (max-width: 850px) {
    .nav-links {
        display: none; /* Mobile pe hum burger menu use karte hain, filhal clean rakha hai */
    }
    
    .nav-container {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .btn span {
        display: none; /* Mobile par sirf icons dikhenge */
    }
    .btn {
        padding: 10px 14px;
    }
    .logo img {
        height: 40px;
    }
}
/* Navigation Links Styling - Spacing Increased */
.nav-links {
    display: flex;
    gap: 60px; /* Pehle 35px tha, ab 60px kar diya hai taki zyada gap dikhe */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500; /* Thoda clean dikhne ke liye weight kam kiya hai */
    font-size: 16px;  /* Readability ke liye size thoda badhaya hai */
    transition: 0.3s ease;
    letter-spacing: 0.5px; /* Premium look ke liye letters mein halka gap */
}

.nav-links a:hover {
    color: #007bff;
    transform: translateY(-2px); /* Hover par halka sa lift up effect */
}

























/* --- HERO SECTION STYLING --- */
.hero {
    background-color: var(--navy-dark); /* Dark Background #0F172A */
    padding: 100px 0 140px 0;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Content Side */
.hero-content {
    flex: 1;
}

.badge {
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(10, 102, 194, 0.3);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--white);
    margin-top: 20px;
    font-weight: 700;
}

.text-blue {
    color: var(--primary-blue); /* #0A66C2 */
}

.hero p {
    font-size: 18px;
    color: #cbd5e1; /* Light gray text for readability on dark */
    margin: 25px 0 40px 0;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Trust Stats */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust .stars {
    color: #fbbf24; /* Gold Stars */
    font-size: 14px;
}

.hero-trust span {
    color: #94a3b8;
    font-size: 14px;
}

/* Right Image Side */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Optional: filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); */
}

/* Floating Elements for Premium Look */
.floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--whatsapp-green);
    font-size: 24px;
}

.floating-card span {
    font-weight: 700;
    color: var(--navy-dark);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 32px;
    }

    .floating-card {
        display: none;
    }
}
/* --- Hero Buttons Styling --- */
.hero-btns {
    display: flex;
    gap: 20px; /* Buttons ke beech ka gap */
    margin-top: 30px;
    align-items: center;
}

/* Button Base Styles */
.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px; /* Professional corporate rounded corners */
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Large Button for Hero Section */
.btn-lg {
    padding: 16px 35px;
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* Primary Blue Button (#0A66C2) */
.btn-primary {
    background-color: #0A66C2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}

.btn-primary:hover {
    background-color: #084a94; /* Slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

/* WhatsApp Green Button (#25D366) */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1eb954; /* Subtle dark green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Icon Animation on Hover (Primary Button) */
.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px); /* Arrow move effect */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column; /* Mobile par buttons stack honge */
        gap: 15px;
    }
    
    .btn-lg {
        width: 100%; /* Full width buttons on mobile */
        justify-content: center;
    }
}




























/* --- TRUST STRIP STATIC --- */
.trust-strip {
    background-color: #F8FAFC;
    padding: 60px 0;
    text-align: center;
}

.trust-header {
    margin-bottom: 45px;
}

.trust-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.trust-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #0F172A;
    font-weight: 700;
    font-size: 18px;
}

.trust-features i {
    color: #0A66C2; /* NexivaGen Blue */
}

.divider {
    color: #cbd5e1;
    margin: 0 5px;
}

/* Logo Row Styling - No Animation */
.logo-row {
    display: flex;
    justify-content: center; /* Logos ko center mein rakhega */
    align-items: center;
    gap: 60px; /* Logos ke beech ka space */
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; /* Mobile par automatic niche shift honge */
}

.client-logo {
    height: 35px; /* Standard height for all logos */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* Hover par halka sa zoom effect */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trust-features {
        font-size: 14px;
        gap: 10px;
    }
    
    .logo-row {
        gap: 30px; /* Mobile par gap kam kar diya */
        padding: 0 20px;
    }
    
    .client-logo {
        height: 25px; /* Mobile par logos thode chote */
    }
}
























/* --- PROBLEM SECTION STYLING --- */
.problem-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
}

.problem-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sub-title Green Styling */
.text-success {
    color: #22C55E !important; /* Professional Green */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.problem-content {
    flex: 1.1;
}

.problem-content h2 {
    font-size: 42px;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.problem-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Problem List */
.problem-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.problem-list li {
    font-size: 16px;
    color: #1E293B;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-list li i {
    color: #EF4444; /* Alert Red for Problems */
    font-size: 18px;
}

/* Lead Growth Highlight Box */
.lead-growth-box {
    display: flex;
    gap: 20px;
    border-top: 1px solid #E2E8F0;
    padding-top: 30px;
}

.growth-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8FAFC;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
    border: 1px solid #E2E8F0;
}

.growth-item i {
    color: #0A66C2; /* NexivaGen Blue */
}

/* --- IMAGE SECTION STYLING --- */
.problem-image {
    flex: 0.9;
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/* Floating UI Element (The Professional Detail) */
.floating-card-ui {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #ffffff;
    width: 180px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
}

.ui-header {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E2E8F0;
}

.ui-body p {
    font-size: 12px !important;
    margin: 0 !important;
    color: #64748B;
}

.ui-body h3 {
    color: #22C55E; /* Match the Green Subtitle */
    margin: 5px 0;
    font-size: 24px;
}

.progress-bar {
    height: 6px;
    width: 100%;
    background: #F1F5F9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 75%;
    height: 100%;
    background: #22C55E;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .problem-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .problem-list li {
        justify-content: center;
    }
    .lead-growth-box {
        flex-direction: column;
        align-items: center;
    }
    .floating-card-ui {
        display: none; /* Hide on small screens for clean look */
    }
}
/* --- PROBLEM SECTION UNIQUE STYLING --- */
.problem-section {
    padding: 120px 0;
    /* Unique Gradient Background */
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%); 
    position: relative;
    overflow: hidden;
}

/* Background Glowing Element (Unique Touch) */
.problem-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 102, 194, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.problem-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; /* Content ko glow ke upar rakhne ke liye */
}

/* Sub-title Green Styling */
.text-success {
    color: #22C55E !important; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1); /* Light green glass effect */
    border-radius: 4px;
}

/* Card-like feel for the Lead Growth Box */
.lead-growth-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #cbd5e1;
}

.growth-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff; /* White card on gradient background */
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    color: #0F172A;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); /* Soft shadow */
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Image Wrapper with Glassmorphism Border */
.image-wrapper {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.main-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}




















/* --- SOLUTION SECTION UPDATED --- */
.solution-section {
    padding: 120px 0;
    /* White to Soft Green Gradient */
    background: linear-gradient(180deg, #ffffff 0%, #f0fff4 100%); 
    position: relative;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    color: #0F172A;
    font-weight: 800;
    margin-top: 15px;
}

.section-header .sub-title {
    color: #22C55E; /* Theme Green */
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.solution-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Solution Card Styling */
.solution-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect: Background Change + Shadow */
.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.15);
    border-color: #22C55E;
}

/* Card Background Decoration on Hover */
.solution-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
    transition: 0.5s;
    z-index: -1;
}

.solution-card:hover::before {
    top: 0;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    font-weight: 900;
    color: rgba(34, 197, 94, 0.08);
}

.sol-icon {
    width: 70px;
    height: 70px;
    background: #22C55E; /* Green Icon Box */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 15px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.solution-card:hover .sol-icon {
    transform: rotateY(180deg);
    background: #0A66C2; /* Color switch on hover */
}

.solution-card h3 {
    font-size: 22px;
    color: #0F172A;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .solution-card {
        max-width: 100%;
    }
}
/* --- Global Section Gap Fix --- */
section {
    padding: 60px 0 !important; /* Pehle 100px-120px tha, ab 60px kar diya */
}

/* Specific adjustment for Hero Section (Hero ko thoda zyada space chahiye hota hai) */
.hero {
    padding: 80px 0 100px 0 !important;
}

/* Trust Strip compact look */
.trust-strip {
    padding: 40px 0 !important;
}































/* --- 6. SERVICES SECTION PREMIUM --- */
.services-section {
    padding: 60px 0; /* Compact gap */
    background: whitesmoke;
}

/* Centered Header */
.section-header.text-center {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Premium Green Pill */
.sub-title-pill {
    display: inline-block;
    background-color: #E8F9EE; /* Light Green */
    color: #22C55E; /* Theme Green */
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 17px;
    color: #64748B;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Card Design */
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #0A66C2; /* Theme Blue */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Icon Box */
.ser-icon {
    width: 60px;
    height: 60px;
    background: #F8FAFC;
    color: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 14px;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-card:hover .ser-icon {
    background: #0A66C2;
    color: #ffffff;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Fix */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 30px;
    }
}
















































/* --- 7. RESULTS SECTION STYLING --- */
.results-section {
    padding: 60px 0;
    background-color: #F8FAFC; /* Light background to separate from Services */
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Result Card */
.result-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1); /* Soft Green Shadow */
    border-color: #22C55E;
}

/* Large Numbers for Stats */
.res-value {
    font-size: 42px;
    font-weight: 900;
    color: #22C55E; /* Growth Green */
    margin-bottom: 15px;
    line-height: 1;
}

/* Icon Box for non-number benefits */
.res-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.result-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.result-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .res-value {
        font-size: 36px;
    }
}



















/* --- 8. PORTFOLIO SECTION PREMIUM --- */
.portfolio-section {
    padding: 60px 0;
    background: whitesmoke;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-item {
    background: #ffffff;
    transition: all 0.4s ease;
}

/* Image Container */
.portfolio-img {
    position: relative;
    border-radius: 20px; /* Rounded corners like modern UI */
    overflow: hidden;
    aspect-ratio: 4 / 3; /* Uniform size for all projects */
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Glassmorphism Hover Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 102, 194, 0.85); /* NexivaGen Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.view-project {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
}

.view-project:hover {
    background: #ffffff;
    color: #0A66C2;
}

/* Info Styling */
.portfolio-info {
    padding: 20px 5px;
}

.portfolio-info span {
    color: #22C55E; /* Theme Green */
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.portfolio-info h3 {
    font-size: 22px;
    color: #0F172A;
    font-weight: 800;
    margin: 0;
}

/* Hover Effects */
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 32px;
    }
}



























/* --- 9. TESTIMONIALS SECTION STYLING --- */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Card Design */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex: 1;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 102, 194, 0.08);
    border-color: #0A66C2;
}

/* Star Rating */
.stars {
    color: #FBBF24; /* Gold/Yellow Stars */
    margin-bottom: 20px;
    font-size: 14px;
}

.quote {
    font-size: 17px;
    color: #1E293B;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Client Profile Section */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.client-details span {
    font-size: 13px;
    color: #64748B;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 100%;
    }
}























/* --- 10. OFFER SECTION STYLING --- */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); /* Dark Professional Background */
    color: #ffffff;
    overflow: hidden;
}

.offer-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-content {
    flex: 1;
}

.offer-content h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.offer-content p {
    color: #94A3B8;
    font-size: 18px;
    margin-bottom: 30px;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #CBD5E1;
}

.offer-list li i {
    color: #22C55E; /* Theme Green */
    font-size: 20px;
}

/* --- AUDIT FORM STYLING --- */
.offer-form-container {
    flex: 0.8;
}

.audit-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.audit-form h3 {
    color: #0F172A;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #0A66C2;
    outline: none;
    background: #ffffff;
}

.btn-submit {
    width: 100%;
    background: #22C55E; /* Growth Green */
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #64748B;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .offer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .offer-list li {
        justify-content: center;
    }
    .offer-content h2 {
        font-size: 32px;
    }
}































/* --- 11. LEAD FORM SECTION STYLING --- */
.lead-form-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.lead-form-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-info {
    flex: 1;
}

.lead-info h2 {
    font-size: 44px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lead-info p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 30px;
}

/* Urgency Line Styling */
.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFBEB; /* Soft Amber/Yellow */
    color: #B45309; /* Dark Amber */
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 1px dashed #F59E0B;
}

.contact-mini-info {
    margin-top: 30px;
    color: #0A66C2;
    font-weight: 600;
}

/* Form Styling */
.lead-form-box {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(10, 102, 194, 0.1);
    border: 1px solid #f1f5f9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0A66C2;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.05);
}

/* Blue Action Button */
.btn-primary-blue {
    width: 100%;
    background-color: #0A66C2; /* NexivaGen Blue */
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary-blue:hover {
    background-color: #08529d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 102, 194, 0.2);
}

.privacy-text {
    text-align: center;
    font-size: 12px;
    color: #94A3B8;
    margin-top: 20px;
}

/* Responsive Support */
@media (max-width: 992px) {
    .lead-form-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
}




























/* --- 12. FAQ SECTION STYLING --- */
.faq-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    font-size: 14px;
    color: #0A66C2;
    transition: transform 0.3s ease;
}

/* Toggle Logic Classes (Manage via JS) */
.faq-item.active {
    border-color: #0A66C2;
    box-shadow: 0 10px 25px rgba(10, 102, 194, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ef4444; /* Changes to 'X' look */
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 300px; /* Adjust based on content */
}

.faq-answer p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}
















/* --- 13. FINAL CTA SECTION STYLING --- */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); /* Dark Theme for high impact */
    color: #ffffff;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 35px;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* --- Form Box Styling --- */
.cta-form-box {
    flex: 1;
}

.final-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.final-form h3 {
    color: #0F172A;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.final-form .form-group {
    margin-bottom: 15px;
}

.final-form input, 
.final-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    font-size: 14px;
}

/* Primary Blue Action Button */
.btn-submit-blue {
    width: 100%;
    background: #0A66C2;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-blue:hover {
    background: #08529d;
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3);
}

.limited-tag {
    text-align: center;
    color: #EF4444; /* Urgent Red */
    font-size: 13px;
    font-weight: 700;
    margin-top: 15px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
}









/* Logo container styling */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Image size control */
.logo img {
    width: auto; /* Aspect ratio maintain karne ke liye */
    height: 60px; /* Height ko 60px se 80px tak badha sakte hain aapki pasand ke hisaab se */
    max-width: 250px; /* Width ko control karne ke liye */
    object-fit: contain;
    transition: transform 0.3s ease; /* Hover effect ke liye */
}

/* Hover karne par halka sa zoom effect (Optional) */
.logo img:hover {
    transform: scale(1.05);
}

/* Mobile screens ke liye adjustment */
@media (max-width: 768px) {
    .logo img {
        height: 50px; /* Mobile par thoda chhota rakha hai taaki header kharab na ho */
        max-width: 180px;
    }
}
.logo {
    display: flex;
    align-items: center;
    height: 100%; /* Navbar ki height ke barabar */
}

.logo img {
    /* Height ko navbar se thoda bada rakha hai */
    height: 85px !important; 
    width: auto;
    
    /* Yeh property navbar ko bada hone se rokegi */
    margin-top: -10px; 
    margin-bottom: -10px;
    
    /* Image ki quality maintain karne ke liye */
    object-fit: contain;
    
    /* Smooth transition */
    transition: all 0.3s ease;
}

/* Agar logo thoda overlap kare toh niche wala layer handle karne ke liye */
.logo a {
    z-index: 999;
    position: relative;
}

/* Mobile par layout na bigde isliye adjustment */
@media (max-width: 768px) {
    .logo img {
        height: 60px !important;
        margin-top: 0;
        margin-bottom: 0;
    }
}


.logo {
    position: relative;
    /* Is container ko width dena zaroori hai taaki logo overlap na kare links ko */
    width: 250px; 
    height: 60px; /* Navbar ki original height */
}

.logo a {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); /* Logo ko vertically center karne ke liye */
    display: block;
    z-index: 1000;
}

.logo img {
    /* Yaha se aap size control kar sakte hain */
    height: 120px !important; /* Kafi bada size */
    width: auto;
    
    /* Drop shadow taaki bade logo premium lage */
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.2));
    
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover karne par halka sa glow */
.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 6px 15px rgba(50, 205, 50, 0.4));
}

/* Mobile par handle karna zaroori hai warna screen bhar jayegi */
@media (max-width: 768px) {
    .logo {
        width: 150px;
    }
    .logo img {
        height: 70px !important;
    }
}
































/* --- 13. FINAL NAVY BLUE FOOTER --- */
.nexiva-footer-final {
    background: rgba(2, 6, 23, 0.98); /* Deep Navy Blue */
    backdrop-filter: blur(12px); /* Background Blur */
    -webkit-backdrop-filter: blur(12px);
    padding: 70px 0 30px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
}

/* Company Name Section */
.footer-logo-text {
    font-size: 36px; /* Bada font size */
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-logo-text span { color: #32CD32; } /* Lime Green */

.footer-tagline {
    font-size: 18px; /* Letter size bada */
    color: #94A3B8;
    max-width: 400px;
    line-height: 1.6;
}

/* Social Media Section */
.social-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #0A66C2; /* LinkedIn Blue */
    transform: translateY(-5px);
    border-color: #32CD32;
}

/* Contact Section Alignment */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #32CD32; /* Lime Green Line */
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px; /* Bada letter size */
    color: #ffffff;
    text-decoration: none;
}

.contact-item i {
    color: #32CD32;
    font-size: 18px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: #64748B;
    font-size: 15px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .footer-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer-tagline { margin: 0 auto; }
    .social-wrapper { justify-content: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .contact-item { justify-content: center; }
}
.footer-layout {
    display: flex;
    justify-content: space-around; /* space-between ki jagah around use karein */
    max-width: 1100px; /* Width limit karein taaki content bikhre nahi */
    margin: 0 auto 50px; /* Center alignment */
}

.footer-logo-text {
    font-size: 42px; /* Thoda aur bold aur bada */
    letter-spacing: -1px;
}

.contact-item {
    font-size: 18px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.contact-item:hover {
    color: #32CD32; /* Hover par lime green highlight */
}

/* Social Buttons ko thoda jaan phoonkiye */
.social-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(50, 205, 50, 0.3); /* Halka green border */
    color: #32CD32;
}

.social-btn:hover {
    background: #32CD32;
    color: #020617;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #32CD32; /* Lime Green Border */
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icons ko white aur bada dikhane ke liye */
.social-btn i {
    color: #ffffff !important; 
    font-size: 22px !important;
    display: block !important;
    line-height: 1;
}

/* Hover effect */
.social-btn:hover {
    background: #32CD32;
}

.social-btn:hover i {
    color: #020617 !important; /* Dark blue on hover */
}
.footer-title::after {
    display: none !important;
}







/* Audit Modal Custom Styling */
.audit-modal-content {
    background: #020617; /* Navy Blue */
    border: 1px solid rgba(50, 205, 50, 0.3); /* Halka Lime Green border */
    border-radius: 20px;
    padding: 20px;
    color: #ffffff;
}

.audit-modal-content .modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #32CD32; /* Lime Green */
}

/* Custom Inputs */
.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 12px;
}

.custom-input:focus {
    border-color: #32CD32 !important;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.2) !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #94a3b8;
}

/* Submit Button */
.btn-audit-submit {
    background: #32CD32;
    border: none;
    color: #020617;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-audit-submit:hover {
    background: #ffffff;
    transform: translateY(-3px);
}
/* Force hide modal on page load */
#auditModal:not(.show) {
    display: none !important;
}

/* Modal open hone par ye style handle karega */
.modal-backdrop {
    z-index: 1040 !important;
}
#auditModal {
    z-index: 1050 !important;
}