/* ============================================
   AChERLABs Website - Main Stylesheet
   THEME: SOFT LIGHT (Professional & Clean)
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. ROOT & GLOBAL SETTINGS
   2. REUSABLE COMPONENTS
   3. PAGE: HOME
   4. PAGE: ABOUT
   5. PAGE: Labs
   6. PAGE: CONTACT
   7. FORMS & DOWNLOAD STYLES
   8. ANIMATIONS & KEYFRAMES
   9. RESPONSIVE STYLES
   ============================================ */

/* ============================================
   1. ROOT & GLOBAL SETTINGS
   ============================================ */

@font-face {
    font-family: 'nasalization';
    src: url('fonts/Nasalization-Regular.woff2') format('woff2'),
         url('fonts/Nasalization-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optimized loading ke liye */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.italic-text {
    font-style: italic;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

p {
    text-align: justify;
    white-space: normal;
    word-wrap: break-word;
    word-break: keep-all;
    hyphens: none; /* Hyphen (-) ko disable kar deta hai */
}
/* Add this rule for smooth scrolling effect */
html {
    scroll-behavior: smooth;
}

/* Rest of your existing code... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ... */
/* ============================================
   2. REUSABLE COMPONENTS
   ============================================ */

/* A. Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(12px);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-section:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'nasalization', sans-serif;
    text-transform: none !important;
    font-variant: normal !important;
    font-size: 24px;
    font-weight: bold;
    color: #960c0c;
}

.logo-tagline {
    font-size: 7.5px;
    color: #777777;
    letter-spacing: 2px;
    font-family: "Segoe UI Semibold", "Segoe UI", sans-serif;
    font-weight: 600; /* Semibold effect ke liye ye bhi add karna achha rehta hai */
    text-align: center;
    width: 100%; /* Ye isliye taaki element puri width le le aur text center ho sake */
    display: block; /* Agar ye span tag hai to ye zaroori hai */
}

.nav-links {
    display: flex;
    gap: 4px;
    transition: all 0.3s ease;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: #000000;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.05);
}

.nav-btn.active {
    background: #960c0c;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0f172a;
}

/* B. Buttons */
.btn-primary {
    padding: 16px 32px;
    border-radius: 50px;
    background: linear-gradient(to right, #960c0c);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.1);
}

/* C. Footer */
footer {
    background: #000000; /* Background color black kar diya */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Border thoda light kiya black ke liye */
    padding: 48px 16px;
    color: #777777; /* Default text color grey kar diya */
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo-section {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #777777; /* Description text grey */
    font-size: 14px;
}

.footer-col h4 {
    color: #ffffff; /* Headings white rakhi hain taaki dikhe */
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #777777; /* Links ko grey kiya as per request */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff; /* Hover karne par white ho jayenge */
}

..footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Responsive Fix: Mobile par Center karega */
@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center; /* Mobile par center aa jayega */
        text-align: center;
        width: 100%;
    }
}
.footer-bottom p {
    color: #777777; /* Copyright text grey */
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #777777; /* Footer bottom links grey */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* Hover par white */
}

/* Footer Logo Name Styling */
.footer-brand .logo-name {
    font-size: 20px;
    color: #ffffff; /* White color */
    font-weight: bold; /* Optional: Name thoda bold karne ke liye */
}

/* --- Footer Quick Links --- */
.footer-quick-links {
    margin-bottom: 24px;
}

.footer-quick-links h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* --- Base Style (Default) --- */
/* Ye style sab jagah apply hogi jahan bhi tm-icon class lagegi */
.tm-icon {
    font-size: 0.5em;       /* Default Size */
    vertical-align: super;
    margin-left: 2px;
    font-weight: normal;
}

/* --- Header Logo TM Style --- */
.logo-section .tm-icon {
    font-size: 0.2em;                        /* Size header ke liye */
    font-family: Arial, Helvetica, sans-serif !important; /* Ye 'nasalization' font ko override karega */
    color: #960c0c;                          /* Header ke hisaab se Red color */
    vertical-align: super;
    margin-left: 2px;
}

/* --- Base Style (Default) --- */
.tm-icon {
    font-size: 0.5em;       
    vertical-align: super;
    margin-left: 2px;
    font-weight: normal;
    /* Default font bhi set kar dete hain safety ke liye */
    font-family: Arial, Helvetica, sans-serif; 
}

/* --- Specific Style for Footer --- */
.footer-brand .tm-icon {
    font-size: 0.3em;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* D. Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 40px;
    border: 1px solid #e2e8f0;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    position: relative;
    color: #0f172a;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #94a3b8;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #0f172a;
}

.modal-btn {
    background: linear-gradient(to right, #960c0c);
    color: #fff;
    padding: 16px 32px;
    border: none;
    width: 100%;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   3. PAGE: HOME
   ============================================ */

/* A. Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    position: relative;
    width: 100%;
}

/* Slider Area */
.hero-bg-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: 80px;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.hero-bg-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-bg-slider .slide.active {
    opacity: 1;
}

/* --- Overlay (30% Dark) --- */
.hero-bg-slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 30% Transparency */
    z-index: 1;
}

/* --- Text Styling (Left Bottom, Italic, Single Line) --- */
.slide-text {
    position: absolute;
    bottom: 50px; /* Image ke niche se 50px upar */
    left: 0; /* Left side se start hoga */
    z-index: 2;
    
    /* Text Design */
    color: #ffffff;
    font-size: 1.5rem; 
    font-weight: narrow;
    font-style: italic; /* Italic kiya */
    width: 50%; /* Image ki 50% width */
    
    /* Single Line ke liye (Text line nahi todega) */
    white-space: nowrap; 
    
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 40px;
    
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: left; /* Text left side se align hoga */
}

/* Ab humne left/right classes ka logic change kar diya hai 
   taaki sab left side par aajayein */
.slide-text.text-left,
.slide-text.text-right {
    left: 0;
    right: auto;
    text-align: left;
}

/* Active slide mein text dikhayi dega */
.hero-bg-slider .slide.active .slide-text {
    opacity: 1;
}

/* Responsive Settings */
@media (max-width: 768px) {
    .slide-text {
        font-size: 1.2rem; /* Mobile par size kam */
        width: 70%; /* Mobile par thoda width badha liya */
        padding: 0 20px;
        bottom: 30px;
        white-space: normal; /* Mobile par agar text lamba hai to wrap ho sake */
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Hero Bottom Layout */
.hero-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 50px;
    background: #f8fafc;
    flex-wrap: wrap;
}

.hero-left-col {
    flex: 1.5;
    min-width: 300px;
    order: 1;
}

.hero-content {
    text-align: left;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
    margin-right: 8px;
}

.badge-text {
    font-size: 14px;
    color: #000000;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #0f172a;
}

/* Welcome to ka gray color */
.hero h1 .welcome-text {
    color: #777777;
    -webkit-text-fill-color: #777777;
    font-size: 0.8em;
}

/* AChERLABs ka red gradient */
.hero h1 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
}

.hero h1 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #777777;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Right Side: Image Box */
.hero-right-col {
    flex: 1.5;
    min-width: 300px;
    order: 2;
    position: relative;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #f8fafc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-bg-slider {
        height: 400px;
    }
    .hero-bottom-wrapper {
        flex-direction: column;
        padding: 40px 16px;
    }
    .hero-left-col {
        order: 1;
    }
    .hero-right-col {
        order: 2;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

/* B. Industries Section */
.industries {
    padding: 80px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #777777;
    margin-bottom: 16px;
}

.section-title h2 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: #000000;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.industries-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.industry-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Desktop Reverse Layout */
.industry-row.reverse {
    flex-direction: row-reverse;
}

.industry-content {
    flex: 1;
    min-width: 300px;
}

.industry-content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #777777;
    margin-bottom: 16px;
}

.industry-content h3 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-content p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.industry-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(to right, #960c0c);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.industry-image {
    flex: 1.2;
    min-width: 300px;
    position: relative;
    /* FIX: Number badge ka cut na ho isliye */
    overflow: visible; 
}

/* --- DESKTOP IMAGE FIX (Auto Height - No Crop) --- */
.industry-image img {
    width: 100%;
    
    /* YE LINE PURI IMAGE DIKHAYEGI - CUT NAHI HOGI */
    height: auto; 
    max-height: 500px; /* Maximum height limit (optional) */
    
    object-fit: contain; /* Puri image fit hogi */
    object-position: center;
    background-color: #f1f5f9; /* Khali jagah ka background */
    
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

/* Hover Effect: Image aage aayegi */
.industry-row:hover .industry-image img {
    transform: scale(1.03);
    z-index: 20; /* Hover par number ke upar image */
}

/* NUMBER STYLING */
.industry-num {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #960c0c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10; /* Number normally upar rahega */
}

/* --- RESPONSIVE STYLES (Mobile View) --- */
@media (max-width: 768px) {
    .industry-row, 
    .industry-row.reverse {
        flex-direction: column !important;
        text-align: center;
    }

    .industry-content {
        min-width: 100%;
    }

    .industry-image {
        min-width: 100%;
        width: 100%;
    }

    /* Mobile ke liye bhi auto height */
    .industry-image img {
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    /* Mobile mein number center */
    .industry-num {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .industry-content h3 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    .industry-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* C. Features Section */
.features {
    padding: 80px 16px;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #960c0c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    color: #000000;
}

/* ============================================
   4. PAGE: ABOUT
   ============================================ */

/* Main Heading */
.section-title h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #777777;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title h1 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page {
    background: #f8fafc;
    min-height: 100vh;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 16px;
    position: relative;
    overflow-x: hidden;
}

/* --- TOP GRID --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #777777;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content h1 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* --- BADGES STYLE (Wapas add kiya) --- */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
}

.badge.green { background: rgba(34, 197, 94, 0.1); color: #15803d; }
.badge.blue { background: rgba(59, 130, 246, 0.1); color: #1d4ed8; }
.badge.purple { background: rgba(139, 92, 246, 0.1); color: #6d28d9; }

.badge-dot-sm { width: 8px; height: 8px; border-radius: 50%; }
.badge.green .badge-dot-sm { background: #15803d; }
.badge.blue .badge-dot-sm { background: #1d4ed8; }
.badge.purple .badge-dot-sm { background: #6d28d9; }

/* --- IMAGE STYLE --- */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, transparent, rgba(248, 250, 252, 0.8));
    border-radius: 24px;
}

/* Mission Card */
.mission-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(150, 12, 12, 0.9);
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.mission-card h4 { margin: 0 0 5px 0; font-size: 1.2rem; }
.mission-card p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* --- BOTTOM FULL WIDTH SECTION --- */
.bottom-full-section {
    margin-top: 40px;
}

.full-width-line {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 30px;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

/* Flex Wrapper */
.competency-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Competency Box */
.competency-box {
    background: rgba(150, 12, 12, 0.9);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}
.competency-box h4 { margin: 0; font-size: 1.1rem; line-height: 1.4; }

/* List */
.competency-list-full {
    flex: 1;
}

.competency-list-full ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.competency-list-full ul li {
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    white-space: nowrap;
}

.competency-list-full ul li::before {
    content: '•';
    color: #960c0c;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-badges {
        justify-content: center !important; /* Mobile par center */
    }

    .full-width-line {
        width: 100%;
        left: 0;
    }
    
    .competency-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .competency-box {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .competency-list-full ul li {
        white-space: normal;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 300px;
    }
}

/* ============================================
   Core Values Section (Updated)
   ============================================ */

.core-values-section {
    padding: 60px 20px;
    border-top: 1px solid #e2e8f0;
}

.cv-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cv-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    /* color: #960c0c; ← Ye line hata do kyunki ab alag-alag colors hain */
}

/* Our Core ka gray color */
.cv-header h2 .cv-gray {
    color: #777777;
}

/* Values ka red color */
.cv-header h2 .cv-red {
    color: #960c0c;
}

.cv-header p {
    text-align: center;
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
}

/* Desktop View: 4 Columns (Default) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.value-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.1s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.value-card.purple { border-top: 6px solid #8b5cf6; }
.value-card.blue { border-top: 6px solid #3b82f6; }
.value-card.green { border-top: 6px solid #22c55e; }
.value-card.orange { border-top: 6px solid #f97316; }

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(0,0,0,0.03);
    border-radius: 50%;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.6;
}

/* --- RESPONSIVE CODE (Yahan update kiya gaya hai) --- */

/* Tablet View (Jab screen 1024px se chhoti ho) */
/* Yahan par 2 columns banenge */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Mobile View (Jab screen 768px se chhoti ho) */
/* Yahan par 1 column banega */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; /* Sirf 1 column (Ek ke neeche ek) */
    }

    .core-values-section {
        padding: 40px 15px;
    }

    .cv-header h2 {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 15px;
    }
}

/* Why Choose */
.mission-card {
    position: absolute;
    bottom: -100px;
    left: -24px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, #000000);
    max-width: 280px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card h4 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

..why-choose {
    margin-top: 5px;
}

/* "Why Choose" text ka color */
.why-choose .section-title {
    color: #777777;
}

/* "AChERLABs" text ka gradient hata kar color lagane ke liye */
.why-choose .section-title span.gradient {
    background: none;
    -webkit-text-fill-color: #960c0c;
    color: #960c0c;
} {
    margin-top: 5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.why-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.why-card:hover .icon-box {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-card p {
    color: #000000;
    font-size: 14px;
}

.icon-cyan {
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
}

.icon-purple {
    background: linear-gradient(to bottom right, #8b5cf6, #7c3aed);
}

.icon-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.icon-orange {
    background: linear-gradient(to bottom right, #f97316, #d97706);
}

/* CTA Section */
.cta-about-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
    margin-top: 10px;
}

.cta-box {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 16px;
}

.cta-box p {
    text-align: center; 
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white-bg {
    display: inline-block;
    padding: 14px 32px;
    background: #960c0c; /* Button Color Red kar diya */
    color: #fff; /* Text White hai */
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #960c0c; /* Border bhi Red kar diya */
}

.btn-white-bg:hover {
    background: #7a0a0a; /* Hover karne par thoda dark red hoga */
    border-color: #7a0a0a; /* Hover par border bhi dark red */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ============================================
   5. PAGE: Labs
   ============================================ */

.Labs-page {
    background: #f8fafc;
    min-height: 100vh;
}

.Labs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* A. PipingLab Hero Section */
.pipingleb-section {
    position: relative;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 40px;
    background: transparent;
    border: none;
}

.pipingleb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.03), transparent, rgba(139, 92, 246, 0.03));
    z-index: 1;
    pointer-events: none;
}

.pipingleb-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pipingleb-glow .glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.pipingleb-glow .glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.pipingleb-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px;
}

.pipingleb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(to right, #960c0c);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.pipingleb-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.pipingleb-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #960c0c;
    margin-bottom: 24px;
}

.pipingleb-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pipingleb-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.pipingleb-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.pipingleb-stats {
    position: absolute;
    bottom: -20px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 16px;
    z-index: 20;
}

.pipingleb-stat {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pipingleb-stat .value {
    font-size: 20px;
    font-weight: bold;
}

.pipingleb-stat .value.cyan {
    color: #0891b2;
}

.pipingleb-stat .value.purple {
    color: #7c3aed;
}

.pipingleb-stat .value.orange {
    color: #ea580c;
}

.pipingleb-stat .label {
    font-size: 12px;
    color: #000000;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
    .pipingleb-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* ============================================
   EXPLORE PAGE - Full CSS (Hero + All Sections)
   ============================================ */

/* ========================================
   A. PipingLab Hero Section
   ======================================== */
.pipingleb-section {
    position: relative;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 80px;
    margin-top: 100px;
    background: transparent;
    border: none;
}

.pipingleb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.03), transparent, rgba(139, 92, 246, 0.03));
    z-index: 1;
    pointer-events: none;
}

.pipingleb-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pipingleb-glow .glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.pipingleb-glow .glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.pipingleb-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px;
}

.pipingleb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(to right, #960c0c);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.pipingleb-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.pipingleb-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #960c0c;
    margin-bottom: 24px;
}

.pipingleb-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pipingleb-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pipingleb-image img {
    width: 100%;
    height: auto;
}

.pipingleb-stats {
    position: relative;
    margin-top: -40px;
    margin-bottom: 20px;
    justify-content: center;
    width: 100%;
    background: #f8fafc;
    padding-top: 10px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.pipingleb-stat {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pipingleb-stat .value {
    font-size: 20px;
    font-weight: bold;
}

.pipingleb-stat .value.cyan {
    color: #0891b2;
}

.pipingleb-stat .value.purple {
    color: #7c3aed;
}

.pipingleb-stat .value.orange {
    color: #ea580c;
}

.pipingleb-stat .label {
    font-size: 12px;
    color: #000000;
}

/* ========================================
   B. Capabilities Section
   ======================================== */
.capabilities-clean-section {
    padding: 10px 20px;
    background-color: #ffffff;
    position: relative;
}

.cap-header {
    text-align: center;
    margin-bottom: 80px;
}

.cap-header h2 {
    font-size: 3rem;
    color: #777777;
    font-weight: 800;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.cap-item {
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.cap-item:hover {
    transform: translateX(10px);
}

.cap-num {
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: #960c0c0f;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.cap-content {
    position: relative;
    z-index: 1;
}

.cap-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.cap-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.cap-desc {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cap-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #960c0c, transparent);
    border-radius: 5px;
}

/* ========================================
   C. Timeline Section
   ======================================== */
.journey-section {
    padding: 100px 20px;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #777777;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #960c0c);
    opacity: 0.2;
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.step-content {
    width: 45%;
    text-align: right;
    padding-right: 30px;
}

.step-content.right {
    text-align: left;
    padding-left: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #960c0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #960c0c;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.step-title {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-desc {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   D. Split Security Section
   ======================================== */
.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.split-left {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.split-right {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.big-text {
    font-size: 3rem;
    font-weight: 800;
    color: #777777;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-text {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
}

.feature-inline {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.feature-inline:last-child {
    border-bottom: none;
}

.inline-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    color: #960c0c;
}

.inline-info h4 {
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.inline-info p {
    color: #000000;
    font-size: 0.9rem;
}

/* ========================================
   E. Tags Section
   ======================================== */
.tags-container {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tag-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 50px;
    color: #334155;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: #eff6ff;
    border-color: #960c0c;
    color: #960c0c;
}

.tag-pill span {
    color: #960c0c;
    font-weight: bold;
}

/* ========================================
   F. Features Grid
   ======================================== */
.features-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0f172a;
    text-align: center;
    margin-bottom: 10px;
}

.features-section h2 span.gradient {
    background: linear-gradient(to right, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Labs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.Labs-feature {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.Labs-feature:hover {
    border-color: #960c0c;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.Labs-feature .num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(to bottom right, #960c0c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.Labs-feature:hover .num {
    transform: scale(1.1);
}

.Labs-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.Labs-feature p {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   G. CTA Section
   ======================================== */
.cta-section {
    text-align: center;
    padding: 48px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 16px;
}

.cta-section p {
    color: #000000;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .pipingleb-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* ============================================
   6. PAGE: CONTACT (Tawk.to Panel Style)
   ============================================ */

.contact-page {
    background: #f8fafc;
    min-height: 100vh;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-image-box {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.contact-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Tawk.to Main Panel Style (Form Only) --- */
.contact-form {
    padding: 0;
    border-radius: 16px;
    background: #ffffff;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12); 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 700px;
}

/* Header Section (Sirf Form ke title par lagega) */
.contact-form > h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(to right, #960c0c);
    margin: 0;
    padding: 20px 24px;
}

/* Form Body */
.contact-form form {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #960c0c;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(150, 12, 12, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-form .btn-primary {
    margin-top: 8px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

#responseMessage {
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    color: #22c55e;
}

/* Right Side Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card,
.social-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 0;
}

.info-card h2,
.social-card h2 {
    font-size: 24px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #960c0c;
}

.info-item .label {
    font-size: 14px;
    color: #000000;
}

.info-item .value {
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
}

/* Social Links Container */
.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center; /* Ye line buttons ko center mein laayegi */
    margin-top: 15px; /* Tagline se thoda gap (optional) */
}

.social-btn {
    /* flex: 1; */ /* Isko comment karne se buttons compact ho jayengi, auto width lenge */
    display: inline-flex; /* Icon aur text ko ek line mein rakhne ke liye */
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    gap: 8px; /* Icon aur text ke beech gap */
    
    padding: 10px 20px; /* Thoda comfortable padding */
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease; /* All properties transition */
    text-decoration: none; /* Agar a tag use kar rahe ho to underline hatane ke liye */
}

/* Default Hover (Light grey) */
.social-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px); /* Thoda sa upar aane ka effect */
}

/* --- Specific Styles for LinkedIn Button --- */
.social-btn.linkedin:hover {
    background: #0077b5; /* LinkedIn Blue */
    border-color: #0077b5;
    color: #fff;
}

/* --- Specific Styles for YouTube Button --- */
.social-btn.youtube:hover {
    background: #FF0000; /* YouTube Red */
    border-color: #FF0000;
    color: #fff;
}

/* Icon styling (SVGs ke liye) */
.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor; /* Ye color parent (button) ke color ko follow karega */
}

/* ============================================
   7. FORMS & DOWNLOAD STYLES
   ============================================ */

#downloadForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#downloadForm input,
#downloadForm select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#downloadForm input::placeholder {
    color: #94a3b8;
}

#downloadForm input:focus,
#downloadForm select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    width: 50%;
}

/* Form Container - Scroll ke liye */
.download-form-container {
    max-height: 85vh; /* Screen ki 85% height legi */
    overflow-y: auto; /* Agar form bada hua toh scroll enable hoga */
    -webkit-overflow-scrolling: touch; /* iPhone par smooth scroll ke liye */
    
    /* Center karne ke liye (Optional) */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* ============================================
   8. ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* ============================================
   9. RESPONSIVE STYLES (Mobile View)
   ============================================ */

@media (max-width: 768px) {
    /* Navbar Mobile Logic */
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        display: none;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.show {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        color: #0f172a;
    }

    /* Button Center Fix */
    .btn, .btn-primary, .btn-secondary, .nav-btn, .industry-btn, .modal-btn, button {
        text-align: center !important;
        justify-content: center !important;
        display: inline-flex;
        align-items: center;
    }

    /* Hero Adjustments */
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* Grid Stacking for all sections */
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .Labs-features-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ============================================
       FIX: INDUSTRIES SECTION (IMAGE UPAR, TEXT NICHE)
       ============================================ */
    /* HTML mein Image pehle aata hai, isliye 'column' use karenge */
    .industry-row, 
    .industry-row.reverse {
        flex-direction: column !important; 
        text-align: center;
    }
    
    /* Number (01, 02) ko center karein */
    .industry-num {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Content Heading Size */
    .industry-content h3 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    /* Specific Layout Fixes */
    .pipingleb-content {
        grid-template-columns: 1fr;
        padding: 32px 16px;
    }
    .about-image img {
        height: 300px;
    }
    .mission-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
        max-width: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    /* Modal Mobile Fix */
    .modal-content {
        margin: 20% auto;
        padding: 25px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-row input {
        width: 100%;
    }

    /* Timeline Mobile Fix */
    .timeline::before {
        left: 20px;
    }
    .step-number {
        left: 20px;
        transform: translateX(-50%);
    }
    .step-content {
        width: 100%;
        padding-left: 60px !important;
        text-align: left !important;
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    /* Quick Links Mobile Fix */
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   ClampLogic Page - Extra Styles
   (software.css ke end mein paste karo)
   ======================================== */

/* Gradient text shared */
.gradient-text {
    background: linear-gradient(90deg, #960c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features section background fix */
.features-section {
    background: #ffffff;
}

/* Footer background (agar dark hai toh) */
footer {
    background: #0f172a;
    padding: 60px 20px 30px 20px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

footer h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

/* Total value highlight */
.features-section,
.capabilities-clean-section,
.split-section,
.journey-section,
.tags-container {
    position: relative;
}

/* ============================================
   ARMOR PAGE - Premium Styling Updates
   ============================================ */

/* Hero Text Styling for Pain vs Solution */
.armor-text-block p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
}

.armor-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.armor-pain-point {
    background: #ffffff;
    border-left: 4px solid #960c0c;
    padding: 15px 20px;
    border-radius: 0 8px 8px 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.armor-solution-point {
    background: #ffffff;
    border-left: 4px solid #000000;
    padding: 15px 20px;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.armor-subtitle {
    font-size: 1.1rem; 
    color: #777777; 
    margin-bottom: 25px; 
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Case Studies (Danger Zone) Styling */
.armor-danger-zone {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-top: 2px solid rgba(150, 12, 12, 0.1);
}

.danger-icon-bg {
    background: #fff1f2;
    color: #960c0c;
}

/* Advantage Features Styling */
.armor-adv-feature {
    padding-top: 18px;
    border-top: 1px dashed #e2e8f0;
}

/* Features Grid - 2 Column Layout */
.armor-grid-2col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

/* Feature Cards Premium Look */
.armor-feature-card {
    background: #ffffff;
    border-left: 4px solid #960c0c;
    border-top: none !important;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 24px;
    border-radius: 0 12px 12px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.armor-feature-card .num {
    background: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 4px !important;
}

/* Modal Premium Look */
.armor-modal {
    border: 1px solid #e2e8f0;
    padding-top: 0 !important;
    overflow: hidden;
}

.armor-modal-header {
    background: #0f172a;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-family: 'nasalization', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 0 -40px 20px -40px;
}

/* Responsive Fix for ARMOR Grid */
@media (max-width: 768px) {
    .armor-grid-2col {
        grid-template-columns: 1fr !important;
    }
}
