:root {
    --primary-orange: #E89B5E; 
    --primary-navy: #0F172A;   
    --text-body: #475569;      
    --bg-light: #F8FAFC;       
    --white: #FFFFFF;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; }

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: var(--bg-light); 
    margin: 0; 
    padding: 0; 
    color: var(--primary-navy); 
    line-height: 1.6;
    display: flex; flex-direction: column; min-height: 100vh;
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 40px; background: var(--white);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo { 
    font-size: 24px; font-weight: 800; color: #333; text-decoration: none; 
    display: flex; align-items: center; gap: 10px; 
}
.logo span { color: #000080; }

.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-orange); }

/* --- HERO SECTION (Original) --- */
.hero { text-align: center; padding: 60px 20px 40px; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary-navy); margin-bottom: 15px; }
.hero p { font-size: 1.1rem; color: var(--text-body); line-height: 1.6; }

/* --- SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 20px 20px 60px; }
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary-navy); margin-bottom: 10px; font-weight: 800; }
.section-subtitle { text-align: center; color: var(--text-body); margin-bottom: 50px; }

/* --- SERVICES & BLOG GRID (Fixed: Now displaying in Rows) --- */
.services-grid, .blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto 50px; 
}

.service-card, .blog-card { 
    background: var(--white); 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    transition: 0.3s; 
    height: 100%;
}
.service-card:hover, .blog-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }

.service-icon { 
    width: 60px; height: 60px; background: #E89B5E; color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 24px; margin-bottom: 20px; 
}
.service-card h3, .blog-card h3 { color: var(--primary-navy); margin-bottom: 15px; font-size: 1.25rem; font-weight: 700; }
.service-card ul { padding-left: 20px; color: #555; line-height: 1.8; font-size: 0.95rem; }
.service-card li { margin-bottom: 8px; }
.service-link { text-decoration: none; color: inherit; display: block; height: 100%; }

/* --- BLOG CARD SPECIFIC --- */
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.card-content { display: flex; flex-direction: column; }
.category-tag { color: var(--primary-orange); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.read-more { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: block; }


.form-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 850px; /* Increased width */
    width: 95%;      /* Ensures it doesn't break on mid-sized screens */
    margin: 0 auto;   /* Centers the container */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* Increase these two values to make the dark shade larger */
    max-width: 900px;      /* Wider background container */
    padding: 80px 100px;   /* Large internal spacing (Top/Bottom, Left/Right) */
    
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;        /* Keep it centered */
    box-sizing: border-box; /* Ensures padding doesn't break the layout */
}

/* Ensure the grid of inputs stays a reasonable size */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

/* Responsive fix: Shrink the large padding on mobile screens */
@media (max-width: 768px) {
    .form-container {
        padding: 40px 20px;
        max-width: 100%;
    }
}

/* --- VISION SECTION (Original Style) --- */
.vision-section { background-color: #F0F4F8; text-align: center; padding: 80px 20px; margin-bottom: 40px; }
.vision-container { max-width: 900px; margin: 0 auto; }
.vision-title { font-size: 2.5rem; font-weight: 800; color: var(--primary-navy); margin-bottom: 25px; }
.vision-text { font-size: 1.1rem; color: #555; line-height: 1.8; margin-bottom: 35px; }
.vision-btn { display: inline-block; padding: 12px 30px; border: 2px solid #E89B5E; color: #E89B5E; background: transparent; font-weight: 700; text-decoration: none; border-radius: 6px; transition: all 0.3s ease; }
.vision-btn:hover { background: #E89B5E; color: white; }

/* --- ABOUT US ZIG ZAG --- */
.zigzag-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; text-align: left; }
.zigzag-row:nth-child(even) { flex-direction: row-reverse; }
.zigzag-content { flex: 1; }
.zigzag-content h2 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-navy); }
.zigzag-content p { color: #555; font-size: 1.1rem; margin-bottom: 20px; }
.zigzag-img { flex: 1; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.zigzag-img img { width: 100%; height: auto; display: block; }

/* =========================================
   FOOTER STYLES (MATCHING YOUR SCREENSHOT)
   ========================================= */
.site-footer {
    background-color: #0B1120; /* Dark Navy Black */
    color: #94a3b8; /* Soft Grey Text */
    padding: 80px 0 30px;
    margin-top: auto;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top: Logo & Socials */
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.footer-brand p { max-width: 400px; margin-top: 15px; color: #cbd5e1; font-size: 0.95rem; }
.footer-logo { font-size: 1.8rem; font-weight: 800; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.footer-logo span { color: #E89B5E; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: #94a3b8; font-size: 1.3rem; transition: 0.3s; }
.footer-socials a:hover { color: #E89B5E; }

/* Divider */
.footer-divider { border: 0; border-top: 1px solid #1e293b; margin: 40px 0; }

/* Newsletter */
.footer-newsletter { text-align: center; max-width: 600px; margin: 0 auto; }
.footer-newsletter h3 { color: white; font-size: 1.4rem; margin-bottom: 10px; }
.footer-newsletter p { margin-bottom: 25px; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 15px; border-radius: 6px; border: 1px solid #334155; background: #0f172a; color: white; }
.newsletter-form button { background: #E89B5E; color: white; border: none; padding: 12px 25px; border-radius: 6px; font-weight: 700; cursor: pointer; }
.newsletter-form button:hover { background: #d68b50; }

/* Footer Links Grid */
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: left; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.footer-col ul li a:hover { color: #E89B5E; padding-left: 5px; }

/* Scroll Top Button */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    background: #E89B5E; color: white;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999;
}
.scroll-top:hover { background: #d68b50; transform: translateY(-3px); }

/* Mobile Responsive */
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 15px; padding: 15px; }
    .nav-links { flex-direction: column; gap: 15px; width: 100%; }
    .inquiry-wrapper { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .zigzag-row { flex-direction: column !important; gap: 30px; text-align: center; }
    .footer-top { flex-direction: column; gap: 20px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}
/* ================= NAVBAR FIX (VIEW-BLOG + MOBILE) ================= */

.navbar {
    width: 100%;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary-navy);
}

/* Login button */
.login-btn {
    background: var(--primary-orange);
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
}
.login-btn:hover {
    background: #d68b50;
}

/* Mobile Navbar */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
        border-top: 1px solid #eee;
    }
}


/* =========================================================
   FINAL UI SPACING & TYPOGRAPHY TUNING (HOME PAGE)
   DO NOT REMOVE EXISTING CSS – ONLY ADD THIS
   ========================================================= */

/* ---------- GLOBAL SECTION SPACING ---------- */
section {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    section {
        margin-bottom: 60px;
    }
}

/* ---------- HERO FIX ---------- */
.hero {
    padding: 90px 20px 70px;
    max-width: 1000px;
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- SECTION HEADINGS (SMALL → BOLD FIX) ---------- */
.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 55px;
    line-height: 1.6;
}

/* ---------- BLOG GRID TUNING ---------- */
.blog-grid {
    margin-top: 30px;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
}

.category-tag {
    font-weight: 800;
    letter-spacing: 0.8px;
}

/* ---------- SERVICES ---------- */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.service-card ul {
    margin-top: 10px;
}

.service-card li {
    margin-bottom: 10px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 90px 20px;
}

.testimonial-card {
    padding: 45px 35px;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- CONTACT SECTION ---------- */
.inquiry-wrapper {
    margin-top: 40px;
}

.inquiry-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

/* ---------- NAVBAR VISUAL FIX (THIN LINE ISSUE) ---------- */
nav {
    border-bottom: none !important;
}

nav::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(0,0,0,0.04);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ---------- MOBILE TUNING ---------- */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }
}



