/* =========================================
   1. CSS VARIABLES & THEMES
   ========================================= */
:root {
    --bg-body: #ffffff;
    --bg-footer: #f9fafb;
    --bg-nav: rgba(255, 253, 253, 0.95);
    --bg-card: #f3f4f6;
    --bg-card-hover: #ffffff;
    
    --text-main: #111827;
    --text-muted: #4b5563;
    
    --border-color: rgba(0, 0, 0, 0.1);
    --input-bg: #ffffff;
    --input-border: #d1d5db;
    
    /* Brand Colors */
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --accent: #d946ef;
    --gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 40%, #8b5cf6 70%, #d946ef 100%);
}

/* =========================================
   2. BASE STYLES & TYPOGRAPHY
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

/* =========================================
   3. LAYOUTS & GRIDS
   ========================================= */
section { padding: 70px 8%; }

.section-title { 
    text-align: center; font-size: 2.8rem; margin-bottom: 1rem; color: var(--text-main); 
}
.section-subtitle {
    text-align: center; color: var(--primary); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700; margin-bottom: 3rem;
}

/* Standard Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }

/* Industry Specific Grid  */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 10px;
    align-items: stretch;
}

/* Grids visionmission, contact, leadership*/
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 2rem; }
.hub-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.leadership-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 3rem; }

/* =========================================
   4. NAVIGATION BAR (CORRECTED)
   ========================================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-nav); backdrop-filter: blur(12px);
    z-index: 1000; border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-logo { display: flex; align-items: center; text-decoration: none; }
.company-logo { height: 40px; width: auto; filter: none; }
.nav-items { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
    color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.9rem;
    transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--gradient); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-links a.active-link { color: var(--primary) !important; font-weight: 700; }
.nav-links a.active-link::after { width: 100%; background: var(--gradient); }

/* --- CONTACT BUTTON  --- */
/* Base Style (Normal State) */
.contact-btn, .contact-btn:visited { 
    border: 2px solid var(--primary); 
    padding: 8px 25px; 
    border-radius: 50px;
    color: var(--primary); /* Removed !important here to allow hover change */
    transition: all 0.3s ease;
    font-weight: 600; 
    text-decoration: none !important; 
    background: transparent;
}
.contact-btn::after { display: none !important; }

/* Hover, Focus & Active (Tap) States */
.contact-btn:hover, 
.contact-btn:focus, 
.contact-btn:active {
    background: var(--primary); 
    color: #ffffff !important; /* Forces White text */
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); 
    transform: translateY(-2px);
    border-color: var(--primary);
}
/* --- Mobile Hamburger Icon --- */
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--text-main); margin-right: 20px; }

/* Breadcrumbs */
.breadcrumb-container {
    width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 80px 20px 0 20px; position: relative; z-index: 10;
}
.breadcrumb { display: flex; align-items: center; list-style: none; padding: 10px 0; }
.breadcrumb li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; }
.breadcrumb li + li::before {
    content: "\f054"; font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 0.7rem; margin: 0 10px; color: var(--text-muted); opacity: 0.5;
}
.breadcrumb li a { text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.breadcrumb li a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb li:last-child { color: var(--primary); font-weight: 600; pointer-events: none; }

/* =========================================
   5. BUTTONS & ANIMATIONS
   ========================================= */
.btn {
    display: inline-block; padding: 20px 40px;
    background: var(--gradient); color: white;
    text-decoration: none; border-radius: 25px;
    font-weight: 600; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5); }

.btn-outline {
    background: transparent; border: 2px solid #8b5cf6;
    margin-left: 15px; box-shadow: none; color: #ffffff;
}
.btn-outline:hover { background: rgba(139, 92, 246, 0.15); border-color: #d946ef; }

/* View All News & Projects Button Style */
.view-all-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 20px;
    transition: 0.3s;
    color: var(--primary) !important; border-color: var(--primary) !important;
}
.view-all-btn:hover {
    background: var(--primary); color: white !important;
    transform: translateY(-3px); box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}
.view-all-btn:hover i { transform: translateX(5px); }

/* Entry Animation (FadeInUp) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-entry-anim {
    opacity: 0; animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.5s; 
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(-45deg, #00c6ff, #0072ff, #8b5cf6, #d946ef);
    background-size: 300%; background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: gradientAnim 4s ease infinite; 
}
@keyframes gradientAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================================
   6. HERO SECTIONS
   ========================================= */
/* Home Hero */
.hero {
    height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 5%; position: relative;
    background:  url('./images/bg_home.png'); 
    background-size: cover; background-position: center; background-attachment: fixed; 
}
.hero-content h1 {
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem;
    color: #ffffff; text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.hero-content p {
    font-size: 1.25rem; color: #e5e7eb; max-width: 650px; margin: 0 auto 2.5rem;
}

/* Newsroom Hero */
.news-hero {
    padding: 30px 5% 60px;
    background: linear-gradient(to right, #f9fafb, #ffffff);
    text-align: center;
}
.hero-text h1 { font-size: 3.5rem; color: var(--text-main); margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.news-label {
    color: var(--primary); font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 15px;
}

/* About Page Hero - Clean */
.about-page-section { 
    padding-top: 150px; 
    padding-bottom: 50px; 
    text-align: center;
    background: var(--bg-body); /* Removed Image */
    width: 100%;
}

.about-page-section h1, 
.about-page-section h4 {
    color: var(--text-main); /* Changed White to Dark */
    text-shadow: none;
}

.about-lead {
    font-size: 1.15rem; 
    color: var(--text-muted);
    line-height: 1.8;
    margin: 1.5rem auto 0; 
    max-width: 800px; 
}
/* =========================================
   7. CARDS STYLES (All Types)
   ========================================= */
/* Common Card Base */
.service-card, .project-card, .testi-card, .industry-card, .update-card, .asset-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 15px; transition: 0.4s; position: relative; overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.service-card:hover, .project-card:hover, .testi-card:hover, .industry-card:hover, .update-card:hover, .asset-card:hover {
    background: var(--bg-card-hover); transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Service Card */
.service-card { padding: 3rem 2rem; }
.service-icon {
    width: 60px; height: 60px; background: rgba(59, 130, 246, 0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #3b82f6; margin-bottom: 1.5rem; transition: 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient); color: white; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.4rem; color: var(--text-main); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
a.service-card { text-decoration: none; display: block; color: inherit; }
a.service-card:hover h3 { color: var(--primary); }

/* Project Card */
.project-card { padding: 0; border: none; background: white; }
.project-img-wrapper { height: 220px; width: 100%; overflow: hidden; position: relative; }
.project-img-wrapper::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.project-img-real { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img-real { transform: scale(1.1); }
.project-content { padding: 1.5rem; position: relative; z-index: 2; }
.project-content h3 { color: var(--text-main); margin-bottom: 0.5rem;}
.project-tags span {
    font-size: 0.75rem; background: rgba(59, 130, 246, 0.1); color: #3b82f6;
    padding: 4px 10px; border-radius: 20px; margin-right: 5px; font-weight: 600;
}

/* Industry Card */
.industry-card { 
    padding: 2rem; text-align: center; display: flex; flex-direction: column; justify-content: flex-start; height: 100%;
    background: #ffffff;
}
.industry-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; transition: 0.3s; }
.industry-card:hover .industry-icon { color: var(--secondary); transform: scale(1.1); }
.industry-card h3 { font-size: 1.2rem; color: var(--text-main); margin-bottom: 5px; }
.industry-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Update/News Card (Home & Newsroom) */
.update-card {
    padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; background: #ffffff;
}
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.update-badge { font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 1px; }
.hiring { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.news { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.event { background: rgba(217, 70, 239, 0.1); color: #d946ef; }
.update-date { font-size: 0.85rem; color: var(--text-muted); }
.update-card h3 { font-size: 1.3rem; color: var(--text-main); margin-bottom: 0.8rem; line-height: 1.4; }
.update-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.read-more {
    font-size: 0.9rem; font-weight: 600; color: var(--primary); text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px; transition: 0.3s;
}
.read-more:hover { gap: 10px; color: var(--secondary); }

/* Testimonial Card */
.testi-card { padding: 3rem 2rem; text-align: left; background: #ffffff; }
.testi-quote { font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.testi-card p { color: var(--text-main); font-style: italic; }
.client-info { display: flex; align-items: center; gap: 10px; margin-top: 1.5rem; }
.client-info img {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    margin-right: 15px; border: 2px solid var(--primary);
}

/* Vision/Mission Card */
.vm-card {
    background: #ffffff; border: 1px solid #e5e7eb;
    padding: 3rem 2rem; border-radius: 15px; text-align: center; transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.vm-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.vm-icon { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; }

/* Leader Card */
.leader-card {
    text-align: center; background: #ffffff; padding: 30px 20px; border-radius: 20px;
    border: 1px solid #e5e7eb; transition: 0.3s; flex: 0 1 320px; min-width: 280px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.leader-img-wrapper {
    width: 220px; height: 280px; margin: 0 auto 20px auto;
    border-radius: 15px; overflow: hidden; border: 3px solid rgba(0, 0, 0, 0.05);
    background: #f3f4f6; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.leader-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.leader-card:hover .leader-img-wrapper img { transform: scale(1.1); }
.leader-card:hover { border-color: var(--primary); transform: translateY(-5px); }

/* Glass Card (Team Round Photos) */
.glass-card {
    background: #ffffff; border: 1px solid #e5e7eb;
    padding: 2rem; border-radius: 15px; text-align: center; transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.glass-card img {
    width: 160px !important; height: 160px !important; border-radius: 50%;
    object-fit: cover; margin-bottom: 20px; border: 3px solid var(--primary);
    padding: 4px; background: white;
}
.glass-card:hover { border-color: var(--primary); transform: translateY(-5px); }

/* Contact Hub Card */
.hub-card {
    border: 1px solid rgba(88, 84, 84, 0.15); border-radius: 8px;
    padding: 40px 40px; text-align: center; text-decoration: none;
    transition: all 0.3s ease; background: #f9fafb; display: flex;
    flex-direction: column; align-items: center; justify-content: center; min-height: 250px;
}
.hub-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; }
.hub-card h3 { color: var(--text-main); font-size: 1.25rem; font-weight: 500; }
.hub-card:hover { border-color: var(--primary); background: #ffffff; transform: translateY(-5px); }

/* Asset Card (Newsroom) */
.asset-card { padding: 30px 20px; text-align: center; background: #ffffff; }
.asset-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.asset-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.asset-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.asset-link {
    text-decoration: none; color: var(--text-main); font-weight: 600;
    border: 1px solid var(--border-color); padding: 8px 20px; border-radius: 30px;
    font-size: 0.9rem; transition: 0.3s;
}
.asset-link:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Featured News Card (Big) */
.featured-card {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
    background: #ffffff; border-radius: 20px; border: 1px solid var(--border-color);
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); align-items: center;
}
.featured-img { height: 100%; min-height: 400px; background: #e5e7eb; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-content { padding: 40px; }
.featured-content h2 { font-size: 2.2rem; margin: 15px 0 20px; color: var(--text-main); line-height: 1.3; }
.featured-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; }

/* =========================================
   8. SPECIFIC SECTIONS (HOME/GENERAL)
   ========================================= */
/* Stats Section */
.stat-item {
    text-align: center; padding: 2rem; border-radius: 15px;
    background: #ffffff; border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.stat-number {
    font-size: 3.5rem; font-weight: 800;
    background: var(--gradient); background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem; display: block;
}
.stat-label { font-size: 1.1rem; color: var(--text-main); font-weight: 600; }
.stat-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 5px;}

/* Process Steps */
.process-step {
    background: var(--bg-card); padding: 2rem; border-radius: 15px;
    border: 1px solid var(--border-color); width: 220px; position: relative;
    transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.process-step:hover { transform: translateY(-5px); border-color: var(--primary); background: #ffffff; }
.step-icon {
    width: 50px; height: 50px; background: var(--gradient); color: white;
    font-size: 1.5rem; font-weight: bold; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.process-arrow { display: flex; align-items: center; color: var(--text-muted); font-size: 1.5rem; }

/* CTA Section */
#contact-cta {
    background-color: #1a1a1a; padding: 120px 20px; text-align: center;
    display: flex; align-items: center; justify-content: center; color: white;
}
.cta-content h2 {
    font-size: 3.5rem; font-weight: 400; margin-bottom: 25px;
    font-family: 'Poppins', sans-serif; color: #ffffff;
}
.cta-content p {
    font-size: 1.1rem; color: #cccccc; max-width: 700px; margin: 0 auto 40px; line-height: 1.6;
}
.cta-btn {
    display: inline-block; padding: 12px 45px;
    border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 50px;
    color: white; text-decoration: none; font-size: 1rem;
    transition: all 0.3s ease; background: transparent;
}
.cta-btn:hover {
    border-color: #ffffff; background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px);
}

/* =========================================
   9. PAGE SPECIFIC: CONTACT & FORMS
   ========================================= */
#inquiry-form {
    padding: 80px 10%; background-color: #f3f4f6; border-top: 1px solid var(--border-color);
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.form-box {
    background: #ffffff; padding: 40px; border-radius: 12px;
    border: 1px solid #e5e7eb; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.form-box input, .form-box textarea {
    width: 100%; padding: 16px; margin-bottom: 20px;
    background: #f9fafb; border: 1px solid #d1d5db;
    color: #111827; border-radius: 6px; font-size: 0.95rem; transition: 0.3s;
}
.form-box input:focus, .form-box textarea:focus {
    background: #ffffff; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none;
}
.form-box button {
    padding: 16px; font-size: 1rem; font-weight: 600; margin-top: 10px; width: 100%;
    background: var(--primary); border: none; color: white;
    border-radius: 6px; cursor: pointer; transition: 0.3s;
}
.form-box button:hover {
    background: var(--secondary); transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.contact-hub { padding: 150px 10% 80px; background-color: var(--bg-body); min-height: 80vh; }
.hub-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px; flex-wrap: wrap; gap: 30px;
}
.hub-header h1 { font-size: 3.5rem; color: var(--text-main); font-weight: 500; line-height: 1.1; max-width: 500px; }
.hub-header p { color: var(--text-muted); max-width: 450px; font-size: 1.1rem; line-height: 1.6; }

/* Media Contact Simple Box (Newsroom) */
.media-contact { text-align: center; padding: 80px 5%; }
.contact-box-clean {
    max-width: 600px; margin: 0 auto; padding: 40px;
    background: #ffffff; border: 1px solid var(--border-color); border-radius: 20px;
}
.contact-box-clean h3 { font-size: 1.8rem; margin-bottom: 15px; }
.email-link {
    display: inline-block; margin-top: 20px; font-size: 1.5rem; font-weight: 700;
    color: var(--primary); text-decoration: none;
}
.email-link:hover { text-decoration: underline; }

/* =========================================
   10. PAGE SPECIFIC: NEWSROOM
   ========================================= */
.featured-news-section { padding: 0 8% 60px; }
.media-kit-section { background-color: var(--bg-card); border-top: 1px solid var(--border-color); }
.media-header { text-align: center; margin-bottom: 50px; }
.media-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

/* =========================================
   PROJECTS PAGE SPECIFIC STYLES
   ========================================= */

/* 1. Projects Hero Section */
.projects-hero {
    padding: 160px 5% 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-footer), var(--bg-body));
}
.hero-lead {
    font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto;
}

/* 2. Filter Buttons */
.filter-section {
    padding: 20px 5% 60px; display: flex; justify-content: center;
}
.filter-container {
    display: flex; flex-wrap: wrap; gap: 15px; justify-content: center;
    background: var(--bg-card); padding: 10px; border-radius: 50px;
    border: 1px solid var(--border-color);
}
.filter-btn {
    padding: 10px 25px; border: none; background: transparent;
    color: var(--text-muted); font-weight: 600; border-radius: 30px;
    cursor: pointer; transition: 0.3s; font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient); color: white; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}



/* Image Area with Overlay Effect */
.pro-img-box {
    height: 240px; width: 100%; position: relative; overflow: hidden;
}
.pro-img-box img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
}
.project-card-pro:hover .pro-img-box img { transform: scale(1.1); }

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.7); /* Dark overlay */
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s ease;
}
.project-card-pro:hover .overlay { opacity: 1; }

.view-btn {
    padding: 12px 30px; background: white; color: var(--text-main);
    border-radius: 30px; text-decoration: none; font-weight: 600;
    transform: translateY(20px); transition: 0.3s;
}
.project-card-pro:hover .view-btn { transform: translateY(0); }
.view-btn:hover { background: var(--primary); color: white; }

/* 3. Professional Project Card Design */
.projects-grid-section {
    padding-top: 20px;
}

/* Card Base */
.project-card-pro {
    max-width: 400px;       /* 👈 Width कमी केली */
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.project-card-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
/* Content Area */
.pro-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

/* Tags */
.project-tags { margin-bottom: 15px; display: flex; flex-wrap: wrap; gap: 8px; }
.project-tags span {
    font-size: 0.75rem; background: rgba(59, 130, 246, 0.08);
    color: var(--primary); padding: 5px 12px; border-radius: 20px; font-weight: 600;
}

.pro-content h3 {
    font-size: 1.4rem; margin-bottom: 10px; color: var(--text-main);
}
.pro-content p {
    color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1;
}

/* Mobile Responsive for Filters */
@media (max-width: 768px) {
    .filter-container { border-radius: 15px; }
    .filter-btn { padding: 8px 15px; font-size: 0.9rem; flex: 1 1 auto; text-align: center; }
}

/* =========================================
   11. FOOTER
   ========================================= */
.mega-footer {
    margin-top: 50px; background-color: #f9fafb; color: var(--text-main);
    border-top: 1px solid var(--border-color); padding-top: 4rem; font-size: 0.95rem;
}
.footer-top { padding: 0 5% 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }

.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: none; }
.footer-col h4 { color: var(--text-main); font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 700; letter-spacing: 0.5px; }
.footer-col p { color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: var(--text-muted); text-decoration: none; transition: 0.3s; font-weight: 500;
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-socials { display: flex; gap: 15px; margin-top: 1.5rem; }
.footer-socials a {
    width: 40px; height: 40px; background: #ffffff; border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    color: var(--text-main); transition: 0.3s; text-decoration: none;
}
.footer-socials a:hover {
    background: var(--primary); color: white; transform: translateY(-3px); border-color: transparent;
}

.footer-bottom {
    background: #f3f4f6; padding: 1.5rem 5%; display: flex;
    justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border-color); flex-wrap: wrap; gap: 15px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.footer-legal a { color: var(--text-muted); margin-left: 20px; text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.footer-legal a:hover { color: var(--primary); }

/* =========================================
   12. MOBILE RESPONSIVE STYLES
   ========================================= */
@media (max-width: 768px) {
    
    /* --- 1. GLOBAL NAVBAR FIX (इथेच ठेवा) --- */
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff; /* Solid White Color */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.4s ease-in-out;
        border-top: 1px solid var(--border-color);
        z-index: 9999; /* हे महत्वाचे */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }
    /* --- 2. EXISTING LAYOUT FIXES --- */

    /* Layout Typography */
    .hero-content h1 { font-size: 2.5rem; }
    
    /* Grid Collapsing */
    .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 2rem; }
    .process-arrow { display: none; }
    
    /* Footer & Form */
    #inquiry-form { padding: 60px 5%; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .form-box { padding: 25px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { margin-top: 10px; }
    
    /* Pages */
    .vm-grid { grid-template-columns: 1fr; }
    .leadership-grid { gap: 30px; }
    .contact-hub { padding: 120px 5% 50px; }
    .hub-header { flex-direction: column; align-items: flex-start; }
    
    /* CTA */
    .cta-content h2 { font-size: 2.2rem; }
    #contact-cta { padding: 80px 20px; }
}

/* =========================================
   13. CASE STUDY PAGE SPECIFIC STYLES
   ========================================= */

/* Header Area */
.case-header {
    padding: 140px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}
.case-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.case-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Image Container */
.case-hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
}
.case-hero-image img {
    width: 100%;
    display: block;
}

/* Metrics Section */
.case-metrics-section {
    padding: 40px 8%;
    margin-top: -40px; /* Pulls it up slightly */
    position: relative;
    z-index: 2;
}
.metric-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.metric-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.metric-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}
.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Challenge List */
.case-list {
    list-style: none;
    margin-top: 10px;
}
.case-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Tech Stack Grid */
.tech-stack-container {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}
.tech-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}
.tech-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
}
.tech-item i {
    font-size: 1.8rem;
    color: var(--text-main);
}
.tech-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Timeline */
.timeline-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 30px;
}
/* Vertical Line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--input-border);
}
.timeline-row {
    position: relative;
    margin-bottom: 50px;
}
.timeline-row:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.timeline-content p {
    color: var(--text-muted);
}

/* Mobile Adjustments for Case Study */
@media (max-width: 768px) {
    .case-header { padding-top: 120px; }
    .case-header h1 { font-size: 2.2rem; }
    .case-metrics-section { margin-top: 0; }
}