/* =========================================
   1. "WHOLE" RESET & GLOBAL VARIABLES
   ========================================= */
:root {
    /* --- Colors --- */
    --bg-body: #f4f7fa;
    --bg-white: #ffffff;
    --bg-accent-light: #e0f2fe;
    
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-light: #f1f5f9;
    
    --accent: #003366;       /* Deep Navy */
    --accent-bright: #0ea5e9; /* Sky Blue */
    
    /* --- Footer Colors --- */
    --footer-bg: #001a33; 
    --footer-text-grey: #a1a1a1;
    --footer-phone-green: #a3bd4f;
    
    /* --- Fonts --- */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* --- Effects --- */
    --shadow-card: 0 10px 30px -5px rgba(0, 51, 102, 0.08);
    --shadow-hover: 0 20px 40px -5px rgba(0, 51, 102, 0.15);
}

/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Image Reset */
img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul { list-style: none; }
a { text-decoration: none; }

/* Accessibility: Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 15px 20px;
    background-color: #ff5200; /* Your orange accent color */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-bottom-right-radius: 5px;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    left: 0;
    top: 0;
    outline: 3px solid #002c5f; /* Your blue color */
}

/* =========================================
   2. NAVIGATION
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

/* Scrolled State */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 5%;
}

nav.nav-hidden { transform: translateY(-100%); }

.logo img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
}
nav.scrolled .logo img {
    height: 45px;
    filter: brightness(0); /* Turn logo black on white bg */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a { 
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav.scrolled .nav-links li a { color: var(--text-dark); }
.nav-links li a:hover { color: var(--accent-bright); }

/* Buttons */
.cta-btn {
    border: 2px solid var(--accent-bright);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: white;
    cursor: pointer;
    background: transparent;
}
nav.scrolled .cta-btn { color: var(--accent); border-color: var(--accent); }
.cta-btn:hover { background: var(--accent-bright); color: white; border-color: var(--accent-bright); }

/* --- BURGER MENU (Mobile) --- */
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}
nav.scrolled .burger div { background-color: var(--text-dark); }

/* =========================================
   3. HERO SECTION
   ========================================= */
header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

/* Background Slideshow */
.slideshow-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.slide {
    position: absolute; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }

/* Dark Overlay */
.slideshow-container::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.3), rgba(0, 15, 30, 0.8));
    z-index: 1;
}

/* Seamless Fade */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, transparent 0%, var(--bg-body) 100%);
    z-index: 3;
    pointer-events: none; 
}

.hero-content { z-index: 4; padding: 0 20px; max-width: 1200px; }

/* COMPANY NAME BADGE - Solid & Visible */
.hero-badge {
    display: inline-block;
    background-color: var(--accent); /* Solid Navy Blue */
    color: #ffffff; /* Crisp White Text */
    padding: 12px 30px; 
    border-radius: 50px;
    font-size: 0.9rem; 
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem; 
    text-transform: uppercase;
    font-family: var(--font-head);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4); /* Strong Shadow for pop */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle Border */
}

.hero-content h1 { 
    font-family: var(--font-head); 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 1.5rem; 
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.text-gradient { 
    background: linear-gradient(90deg, #fff, var(--accent-bright)); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #e2e8f0; }

.hero-btns { display: flex; gap: 20px; justify-content: center; }

/* GLASSY BUTTONS */
.glass-btn {
    background: rgba(255, 255, 255, 0.1); /* Transparent White */
    backdrop-filter: blur(10px); /* Frosted Glass Effect */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Semi-transparent border */
    color: white; 
    padding: 1rem 2.5rem; 
    font-size: 1rem; cursor: pointer;
    border-radius: 50px; transition: all 0.3s; font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
}
.glass-btn:hover { 
    background: rgba(255, 255, 255, 0.3); /* Lighter on hover */
    transform: translateY(-3px); 
    border-color: #fff;
}
.glass-btn.secondary { 
    background: rgba(0, 51, 102, 0.6); /* Darker glass for secondary */
    border-color: rgba(255, 255, 255, 0.3);
}
.glass-btn.secondary:hover { 
    background: var(--accent); /* Solid color on hover */
    border-color: var(--accent);
}

/* =========================================
   4. SECTIONS & LAYOUTS
   ========================================= */

/* --- Glass Overlay Modals --- */
.glass-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.glass-overlay.visible { opacity: 1; pointer-events: all; }

.glass-modal {
    background: white; color: var(--text-dark);
    border-radius: 20px; padding: 3rem; width: 85%; max-width: 900px;
    position: relative; transform: scale(0.9); transition: transform 0.3s ease;
    max-height: 90vh; overflow-y: auto; 
}
.glass-overlay.visible .glass-modal { transform: scale(1); }
.close-btn { position: absolute; top: 20px; right: 30px; font-size: 2rem; cursor: pointer; }

.glass-grid-modal { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass-item-modal { text-align: center; padding: 1.5rem; background: var(--bg-body); border-radius: 10px; }
.glass-item-modal i { font-size: 2.5rem; color: var(--accent-bright); margin-bottom: 1rem; }

/* Capabilities Grid */
.capabilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.cap-item {
    background: var(--bg-body); color: var(--text-dark);
    padding: 1rem; border-radius: 8px; border-left: 3px solid var(--accent);
    display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.cap-item i { color: var(--accent); }

/* --- Why Us (Grid Layout) --- */
.why-section {
    padding: 6rem 5%; 
    background-color: var(--bg-body); 
    overflow: hidden; 
}

.why-split-container {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Left Column Styling */
.why-left {
    position: relative;
    border-right: 1px solid rgba(0, 51, 102, 0.2); 
    padding-right: 4rem; 
}

.why-left h2 {
    font-family: var(--font-head);
    font-size: 3rem; 
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.underline-left {
    width: 100px;
    height: 5px;
    background: var(--accent-bright);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.highlight-subtitle { 
    font-family: var(--font-head);
    color: var(--text-dark); 
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900; 
    letter-spacing: -0.5px;
}

.why-right { padding-left: 1rem; }
.why-right p { 
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1.15rem;
    border-left: none; 
    padding-left: 0;
}

/* --- Marquee (Scrollable) --- */
.marquee-wrapper { 
    width: 100%; 
    /* The magic properties for free scroll */
    overflow-x: auto; 
    white-space: nowrap; 
    padding-bottom: 30px;
    
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    
    /* Smooth iOS scrolling */
    -webkit-overflow-scrolling: touch;
    
    /* Indicate it's draggable/scrollable */
    cursor: grab;
}

.marquee-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.marquee-track { 
    display: inline-flex; 
    gap: 30px;
    padding: 0 15px;
}

.pro-card {
    width: 350px; height: 280px;
    /* Important: prevent cards from squishing */
    flex-shrink: 0; 
    background: var(--bg-white); border-radius: 12px; padding: 2rem;
    display: inline-flex; 
    flex-direction: column; 
    white-space: normal; 
    box-shadow: var(--shadow-card);
    border-bottom: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    vertical-align: top;
}
.pro-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.icon-circle { 
    width: 60px; height: 60px; background: var(--bg-accent-light); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: var(--accent); font-size: 1.8rem; margin-bottom: 1.5rem;
}
.pro-card h3 { font-family: var(--font-head); margin-bottom: 1rem; color: var(--text-dark); }

/* --- Services --- */
.services-section { background-color: var(--bg-body); padding: 4rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--text-dark); }
.underline { width: 60px; height: 4px; background: var(--accent-bright); margin: 10px auto; }

.service-row {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; padding-bottom: 2rem;
    opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out;
}
.service-row.visible { opacity: 1; transform: translateY(0); }
.service-row.reverse { flex-direction: row-reverse; }

.service-visual { 
    width: 55%; height: 400px; position: relative; border-radius: 10px; overflow: hidden; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); z-index: 1; 
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-row:hover .service-visual img { transform: scale(1.05); }

.visual-badge {
    position: absolute; top: 20px; left: 20px; background: var(--accent-bright);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    z-index: 3; box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}

.card-panel {
    width: 45%; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(15px);
    padding: 3rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); z-index: 2; margin-left: -5%;
}
.service-row.reverse .card-panel { margin-left: 0; margin-right: -5%; }
.card-panel h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 0.8rem; color: var(--accent); }
.service-link { color: var(--accent-bright); font-weight: 800; display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 0.9rem; }
.service-link:hover { gap: 15px; color: var(--accent); }

/* --- About & Stats --- */
.about-section { 
    padding: 6rem 5%; 
    background: var(--bg-accent-light); 
}

.about-container { 
    display: flex; 
    gap: 4rem; 
    max-width: 1200px; 
    align-items: center; 
    margin: 0 auto; 
}

.about-content { flex: 1; }

.about-content h2 { 
    font-family: var(--font-head); 
    font-size: 2.5rem; 
    color: var(--text-dark); 
    margin-bottom: 1rem; 
}

.about-content .highlight-subtitle {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-intro {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.af-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.af-icon {
    min-width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-bright);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.af-text h4 {
    color: var(--text-dark);
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.af-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.accent-btn { 
    background: var(--accent); color: white; padding: 0.8rem 2rem; 
    border-radius: 50px; border: none; cursor: pointer; transition: 0.3s; margin-top: 1rem; 
}
.accent-btn:hover { background: var(--accent-bright); transform: translateY(-2px); }

/* --- About Image Layering --- */
.about-image {
    flex: 1;
    position: relative;
    min-height: 500px; 
    display: flex;
    align-items: center;
}

.image-wrapper-layered {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 1;
}

.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: auto;
    border-radius: 15px;
    border: 8px solid var(--bg-white); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 2; 
}

.experience-badge {
    position: absolute;
    top: 50%; 
    left: -30px; 
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 5px 10px 20px rgba(0,0,0,0.2);
    z-index: 3; 
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-weight: 500;
    line-height: 1.2;
}

.stats-reveal {
    background: url('https://images.unsplash.com/photo-1590496793907-4d66e2994b4d?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    background-attachment: fixed; padding: 6rem 5%; position: relative; text-align: center;
}
.stats-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 51, 102, 0.7); }
.stats-container { position: relative; z-index: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: 5rem; }
.stat-item .counter { font-size: 4rem; font-weight: 900; color: white; }
.stat-item .plus { font-size: 4rem; color: var(--accent-bright); }
.stat-item p { color: #cbd5e1; font-size: 1.2rem; text-transform: uppercase; }

/* =========================================
   5. BLOG SECTION CSS (NEW)
   ========================================= */
.blog-section {
    padding: 6rem 5%;
    background-color: var(--bg-body);
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Structure */
.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Image Area */
.blog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

/* Floating Date Badge */
.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Content Area */
.blog-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Data (Author & Comments) */
.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--accent-bright);
}

/* Typography */
.blog-content h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
    font-family: var(--font-head);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--accent-bright);
}

.blog-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Footer Link */
.blog-footer {
    margin-top: auto;
}

.read-more-btn {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--accent-bright);
}


/* =========================================
   6. CONTACT & FOOTER
   ========================================= */

/* --- Contact Section --- */
.contact-section { padding: 6rem 5%; background: var(--bg-white); }
.contact-container { display: flex; justify-content: space-between; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.contact-info { flex: 1; }
.info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 2rem; }
.icon-box { 
    width: 60px; height: 60px; background: var(--bg-accent-light); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; color: var(--accent); 
}

/* Animations */
@keyframes phone-ring {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}
@keyframes location-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.icon-phone i { animation: phone-ring 2s infinite ease-in-out; }
.icon-location i { animation: location-bounce 1.5s infinite ease-in-out; }

.contact-form {
    flex: 1; display: flex; flex-direction: column; gap: 1.5rem;
    background: white; padding: 2.5rem; border-radius: 12px;
    box-shadow: var(--shadow-card); border: 1px solid #e2e8f0;
}
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 1rem; background: #f8fafc; border: 1px solid #cbd5e1;
    border-radius: 8px; font-family: var(--font-body); width: 100%;
}
.submit-btn {
    width: auto; margin-top: 1rem; padding: 0.8rem 3rem;
    border-radius: 50px; background: var(--accent); color: white;
    border: none; cursor: pointer; align-self: flex-start;
    display: flex; align-items: center; gap: 10px; transition: all 0.3s;
}

/* --- Footer --- */
#main-footer { background-color: var(--footer-bg); color: var(--text-light); padding: 5rem 5% 0; }
.footer-top { max-width: 1200px; margin: 0 auto; padding-bottom: 4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { 
    display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; 
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: white; 
}
.footer-list li { margin-bottom: 0.8rem; }
.footer-list a { color: var(--text-light); transition: 0.3s; }
.footer-list a:hover { color: var(--accent-bright); }

/* Newsletter Form Styles */
.footer-newsletter-form { display: flex; margin-top: 1rem; }
.footer-newsletter-form input {
    padding: 0.8rem; border-radius: 5px 0 0 5px; border: none; outline: none; width: 100%; font-family: var(--font-body);
}
.footer-newsletter-form button {
    padding: 0 1rem; background-color: var(--accent-bright); border: none; border-radius: 0 5px 5px 0; color: white; cursor: pointer; transition: background 0.3s;
}
.footer-newsletter-form button:hover { background-color: white; color: var(--accent-bright); }

.footer-bottom { 
    max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; 
    display: flex; justify-content: center; align-items: center; color: var(--footer-text-grey); 
}

/* =========================================
   7. RESPONSIVE / MOBILE CSS
   ========================================= */
@media screen and (max-width: 900px) {
    /* Navbar Mobile Styles */
    .burger { 
        display: block; 
        z-index: 1001; 
        position: relative;
        margin-right: 10px;
    }
    
    .nav-links {
        position: absolute;
        right: 0px; top: 0px; height: 100vh;
        background-color: var(--bg-white);
        display: flex; flex-direction: column;
        align-items: center; justify-content: flex-start; /* Changed from center to flex-start */
        padding-top: 100px; /* Push content down from top to avoid logo overlap */
        width: 45%; /* Increased from 30% to 45% */
        transform: translateX(100%); transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        gap: 0.5rem; /* Add consistent gap between items */
    }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { margin: 0; } /* Remove individual margins, use gap instead */
    .nav-links li a { 
        color: var(--text-dark); 
        font-size: 0.95rem; 
        padding: 0.6rem 1.2rem; /* Add padding to links for better touch targets */
        display: block;
    }

    /* Burger Animation */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: var(--text-dark); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: var(--text-dark); }

    /* Hero Mobile Adjustments */
    .hero-content h1 { font-size: 2.2rem; }
    
    /* Hero Buttons - Increased Size for Mobile (2x larger) */
    .glass-btn {
        padding: 1.2rem 2rem; /* Increased 2x */
        font-size: 1rem; /* Increased 2x */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    .hero-btns { 
        flex-direction: column; 
        gap: 15px; /* Reduced gap */
        align-items: center; /* Center the buttons */
    }

    /* Why Us Mobile */
    .why-split-container { grid-template-columns: 1fr; gap: 2rem; }
    .why-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding-right: 0; padding-bottom: 2rem; }
    .why-left h2 { font-size: 2.5rem; }
    .highlight-subtitle { font-size: 1.8rem; }
    .why-right { padding-left: 0; }

    /* About Us Mobile */
    .about-container { flex-direction: column; }
    .about-image { width: 100%; min-height: 400px; margin-top: 3rem; }
    .img-back { width: 90%; }
    .img-front { width: 70%; }
    .experience-badge { left: 0; top: auto; bottom: -20px; transform: none; padding: 1rem 1.5rem; }
    
    /* Service/Contact Adjustments */
    .service-row, .service-row.reverse { flex-direction: column; }
    .service-visual { width: 100%; height: 250px; }
    .card-panel { width: 90%; margin: -40px 0 0 0 !important; padding: 2rem; }
    
    .contact-container { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* BLOG MOBILE ADJUSTMENTS */
    .blog-container {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        padding: 0 1rem;
    }
    .blog-img-box {
        height: 200px; /* Slightly smaller image on mobile */
    }
}

@media screen and (max-width: 600px) {
    /* Extra Small Screens */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
    
    /* Hero buttons on very small screens */
    .glass-btn {
        padding: 1rem 1.6rem; /* Increased 2x */
        font-size: 0.9rem; /* Increased */
        width: auto; /* Changed from 100% to auto - no longer full width */
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.75rem; /* Slightly smaller badge on mobile */
        padding: 10px 20px;
    }
    
    /* Ensure menu links are even more compact on very small screens */
    .nav-links {
        width: 50%; /* Increased from 40% to 50% */
        gap: 0.3rem; /* Even tighter gap */
        padding-top: 80px; /* Slightly less padding on small screens */
    }
    
    .nav-links li a { 
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* =========================================
   ARTICLE PAGE STYLES (New Page)
   ========================================= */

/* Header specifically for Article Page */
.article-header {
    background: var(--bg-accent-light);
    padding: 8rem 5% 4rem; /* Top padding clears the fixed navbar */
    text-align: center;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-category {
    background: var(--accent-bright);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-meta-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-body);
    font-size: 0.9rem;
}

/* Layout: Main Content + Sidebar */
.article-wrapper {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2 parts content, 1 part sidebar */
    gap: 4rem;
}

.main-article-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.article-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.article-text h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: var(--accent) !important;
}

blockquote {
    border-left: 5px solid var(--accent-bright);
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-body);
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0 10px 10px 0;
}

.article-list li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Sidebar Styles */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    border: 1px solid #eee;
}

.sidebar-widget h4 {
    font-family: var(--font-head);
    color: var(--accent);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-bright);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.sidebar-links li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sidebar-links a {
    color: var(--text-body);
    font-weight: 500;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: var(--accent-bright);
}

/* Comments */
.comments-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
}

.comment-body h5 {
    color: var(--text-dark);
    font-weight: 700;
}

.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: var(--font-body);
}

/* Mobile for Article */
@media screen and (max-width: 900px) {
    .article-wrapper {
        grid-template-columns: 1fr; /* Stack sidebar below content */
        gap: 2rem;
    }
    .article-header h1 {
        font-size: 1.8rem;
    }
}