  /* --- 1. GLOBAL RESET & VARIABLES --- */
        :root {
            --primary-color: #2563eb; /* Blue */
            --primary-dark: #1e40af;
            --secondary-color: #10b981; /* Green */
            --dark-accent: #1e293b;     /* Dark Slate */
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f3f4f6;
            --white: #ffffff;
            --alert-bg: #fff7ed;
            --alert-text: #c2410c;
            --footer-bg: #111827;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            font-size: 1rem;
        }

        .btn-primary { background: var(--primary-color); color: var(--white); }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
        
        .btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
        .btn-outline:hover { background: var(--primary-color); color: var(--white); }

        .btn-dark { background: var(--dark-accent); color: white; border: 1px solid var(--dark-accent); }
        .btn-dark:hover { background: #0f172a; transform: translateY(-2px); }

        .btn-large { font-size: 1.1rem; padding: 15px 30px; }

        /* --- 2. NAVIGATION BAR --- */
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); }

        .nav-links { display: flex; align-items: center; gap: 25px; }
        .nav-links a { font-weight: 500; color: var(--text-dark); }
        .nav-links a:hover { color: var(--primary-color); }

        /* Template Button in Nav */
        .nav-btn-highlight {
            background-color: var(--primary-color);
            color: white !important;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 600;
        }
        .nav-btn-highlight:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* --- 3. ALERT BANNER --- */
        .alert-banner {
            background: var(--alert-bg);
            color: var(--alert-text);
            text-align: center;
            padding: 10px;
            font-weight: 600;
            border-bottom: 1px solid #fed7aa;
            font-size: 0.9rem;
        }

        /* --- 4. HERO SECTION --- */
        .hero {
            padding: 80px 0;
            background: var(--white);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-text { flex: 1; }
        
        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .hero-buttons { display: flex; gap: 15px; }

        /* VIDEO CONTAINER */
        .hero-video-container {
            flex: 1;
            background-color: #000;
            height: 400px; /* Fixed height for desktop */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .hero-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures video fills the box without stretching */
            transform: scale(1.4)
            object-position: center;
        }

        /* --- 5. VALUE PROPOSITION CARDS --- */
        .benefits {
            padding: 60px 0;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.2s;
        }

        .benefit-card:hover { transform: translateY(-5px); }
        .benefit-card h3 { margin: 15px 0 10px; }
        .icon { font-size: 2rem; margin-bottom: 10px; display: block; }

        /* --- 6. SHARED SECTION STYLES --- */
        .features-split {
            padding: 80px 0;
            background: var(--white);
        }

        .split-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .split-container.reversed { flex-direction: row-reverse; }

        .split-image {
            flex: 1;
            background: #dbeafe;
            height: 350px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }

        .split-text { flex: 1; }
        
        .tag-badge {
            background: var(--secondary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        .tag-badge.blue { background: var(--primary-color); }

        .split-text h2 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
        .split-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }
        .split-text ul { margin-top: 20px; margin-bottom: 30px; }
        .split-text li { margin-bottom: 10px; display: flex; align-items: center; }
        .split-text li::before { content: "✔"; color: var(--secondary-color); margin-right: 10px; font-weight: bold;}

        /* --- 7. ATS CLASSIC TOOL HIGHLIGHT --- */
        .classic-tool-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .classic-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .classic-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .classic-content p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 30px; }
        
        .feature-list-horizontal {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            display: flex; align-items: center; gap: 8px;
        }

        .classic-visual {
            background: white;
            height: 300px;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }

        /* --- 8. CTA BANNER --- */
        .cta-banner {
            background: var(--bg-light);
            text-align: center;
            padding: 80px 20px;
            border-top: 1px solid #e5e7eb;
        }

        .cta-banner h2 { font-size: 2rem; margin-bottom: 20px; color: var(--text-dark); }
        .btn-white { background: var(--white); color: var(--primary-color); border: 1px solid #ddd; }
        .btn-white:hover { background: #f9fafb; border-color: var(--primary-color); }

        /* --- 9. SEO & FAQ --- */
        .seo-section { padding: 60px 0; background: var(--white); border-bottom: 1px solid #eee; }
        .seo-content h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .seo-content p { color: var(--text-light); margin-bottom: 15px; }

        .faq-section { padding: 60px 0; background: var(--bg-light); }
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-title { text-align: center; margin-bottom: 40px; font-size: 2rem; }

        details {
            background: var(--white);
            margin-bottom: 15px;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            cursor: pointer;
        }
        summary { font-weight: 600; font-size: 1.1rem; outline: none; }
        details p { margin-top: 15px; color: var(--text-light); }

        /* --- 10. FOOTER --- */
        footer { background: var(--footer-bg); color: #9ca3af; padding: 50px 0 20px; }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 { color: var(--white); margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a:hover { color: var(--white); }
        .copyright { text-align: center; border-top: 1px solid #374151; padding-top: 20px; font-size: 0.9rem; }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .nav-links { display: none; } /* Standard Mobile Menu Hide */
            
            .hero-content, 
            .split-container, 
            .split-container.reversed,
            .classic-grid {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .hero-buttons { justify-content: center; }
            .hero-text h1 { font-size: 2.2rem; }
            
            .split-text li { justify-content: center; }
            
            .classic-grid { display: flex; flex-direction: column-reverse; }
            .feature-list-horizontal { justify-content: center; }
            
            /* Mobile Video Height */
            .hero-video-container {
                height: auto;
                aspect-ratio: 9/16; /* Portrait video optimization */
                max-height: 500px;
                width: 100%;
            }
        }
/* FAQ STYLES */
    .homepage-faq {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .homepage-faq h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        color: #2c3e50;
    }

    details {
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    details:hover {
        border-color: #3498db;
    }

    summary {
        padding: 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        color: #1f2937;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    /* Remove default triangle */
    summary::-webkit-details-marker {
        display: none;
    }

    /* Custom + Icon */
    summary::after {
        content: '+';
        font-size: 1.5rem;
        color: #3498db;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    /* Rotate to X when open */
    details[open] summary::after {
        transform: rotate(45deg);
        color: #ef4444;
    }

    details p {
        padding: 0 20px 20px 20px;
        margin: 0;
        color: #6b7280;
        line-height: 1.6;
        border-top: 1px solid #f3f4f6;
        padding-top: 15px;
    }

 /* --- CSS FOR TOOLS GRID --- */
    :root {
        --primary-hex: #2c3e50;
        --accent-hex: #3498db;
        --bg-hex: #f8f9fa;
    }

    .tools-section {
        padding: 80px 20px;
        background-color: var(--bg-hex);
        font-family: 'Segoe UI', sans-serif;
    }

    .tools-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .tools-header h2 {
        font-size: 2.5rem;
        color: var(--primary-hex);
        margin-bottom: 10px;
    }

    .tools-header p {
        color: #666;
        font-size: 1.1rem;
    }

    /* THE GRID */
    .tools-grid {
        display: grid;
        /* Responsive magic: columns automatically fit based on screen width */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* THE CARD */
    .tool-card {
        background: white;
        padding: 35px;
        border-radius: 12px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    /* Color Top Border for visual pop */
    .tool-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-hex);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    /* HOVER EFFECTS */
    .tool-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        border-color: transparent;
    }

    .tool-card:hover::before {
        transform: scaleX(1);
    }

    /* ICON CIRCLE */
    .card-icon {
        width: 70px;
        height: 70px;
        background: #eaf6ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-bottom: 20px;
        transition: 0.3s;
    }

    .tool-card:hover .card-icon {
        background: var(--accent-hex);
        color: white;
        transform: rotateY(180deg); /* Fun 3D flip effect */
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--primary-hex);
    }

    .card-desc {
        font-size: 0.95rem;
        color: #777;
        line-height: 1.5;
    }

    /* ARROW LINK */
    .card-link {
        margin-top: 20px;
        font-weight: 600;
        color: var(--accent-hex);
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s;
    }

    .tool-card:hover .card-link {
        opacity: 1;
        transform: translateY(0);
    }
/* ===============================
   GLOBAL FOOTER – HEIGHT FIX
   =============================== */

.site-footer {
  background: linear-gradient(180deg, #0b1220, #020617);
  padding: 48px 24px;
}

/* Prevent unexpected height growth */
.site-footer * {
  box-sizing: border-box;
}

/* Footer grid */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Headings */
.site-footer h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* Text */
.site-footer p {
  margin: 0;
  line-height: 1.6;
  max-width: 260px;
}

/* Lists */
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

/* Links */
.site-footer a {
  display: inline-block;
  line-height: 1.4;
  padding: 2px 0;
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    padding: 36px 20px;
  }
}


/* --- FEATURES SPLIT SECTION --- */
.features-split {
    padding: 80px 0;
    background: var(--white);
}

.split-container {
    display: flex;       /* This forces side-by-side */
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Wrapper to prevent full-width expansion */
.split-video-wrapper {
    flex: 1;             /* Takes up 50% space */
    min-width: 0;        /* Prevents flexbox overflow issues */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-video-wrapper video {
    width: 100%;         /* Fits inside the wrapper */
    height: auto;
    display: block;
}

.split-text {
    flex: 1;             /* Takes up the other 50% */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column; /* Stacks vertically on phone */
        text-align: center;
    }
    .split-text ul {
        display: inline-block;
        text-align: left;
    }
}
/* ===============================
   FOOTER TOOLS – TWO COLUMN LIST
   =============================== */

.footer-col.tools ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  column-gap: 24px;
  row-gap: 8px;
}

/* Mobile: revert to single column */
@media (max-width: 768px) {
  .footer-col.tools ul {
    grid-template-columns: 1fr;
  }
}
.footer-col.tools li {
  margin-bottom: 6px;
}

/* --- 1. Navbar Container --- */
.navbar {
    background: #ffffff;
    height: 70px;
    width: 100%;
    position: relative; /* Keeps it in the flow */
    z-index: 2000;      /* High priority */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. Logo (Force Blue) --- */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff !important; /* BLUE TEXT */
    text-decoration: none;
    z-index: 2002;
}

/* --- 3. Hamburger (The Fix) --- */
.hamburger {
    display: none; /* Hidden on desktop */
}

/* --- Mobile View Settings --- */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        cursor: pointer;
        z-index: 2002;
        padding: 10px;
        /* DEBUG: If you see a light grey box, the div is there! */
        background-color: #f0f0f0; 
        border-radius: 4px;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        /* FORCE COLOR BLACK */
        background-color: #000000 !important; 
        transition: all 0.3s ease;
    }

    /* Mobile Menu Drawer */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute; /* Changed to absolute to stick to header */
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }
}
    z-index: 1; /* Lower than the navbar (which is 2000) */
    margin-top: 0; 
}
