@charset "utf-8";
body {
  font-family: "Inter Tight", sans-serif;
}
a {
  cursor: pointer;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #000;
}

/* Header Styles */
header {
    background-color: #3bbdad;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #3bbdad;
    color: #fff;
}

.hero h1 {
    font-size: 3.0rem;
    margin-bottom: 1rem;
    margin-top: 4rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero .cta a {
    background-color: #fff;
    color: #3bbdad;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 4px;
    font-weight: bold;
}

/* Section Styles */
.section {
    padding: 2rem;
    margin: 1rem auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.section h2 {
    color: #3bbdad;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.section h3 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    color: #000;
}

.section p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section ul {
    list-style-type: disc;
    margin: 1rem 0 1rem 2rem;
}

.section ul li {
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.section#faqs p {
    margin-bottom: 1.5rem;
}

.section#faqs strong {
    font-weight: bold;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #3bbdad;
    color: #fff;
    margin-top: 2rem;
}
.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Add this class to your global stylesheet */
.limited-img {
    max-width: 500px; /* Example size */
    height: auto; /* Maintains aspect ratio */
    margin: 0 auto;
    display: block;
}

.resume-example {
    text-align: center; /* Center-align content inside the div */
    margin: 30px 0; /* Adds spacing around the example */
}

.resume-link {
    display: block; /* Ensures the link takes full width within its container */
    margin: 10px auto; /* Centers the link */
    font-size: 16px;
    color: #4a90e2; /* Your theme color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.resume-link:hover {
    color: #2b5fa0; /* Darker shade on hover */
}
.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between buttons */
    margin-top: 20px;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.cta-link {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    text-decoration: none !important; /* Ensures no underline */
    transition: all 0.3s ease-in-out;
    min-width: 200px; /* Ensures consistent button width */
    background-color: white; /* White background */
    color: #3bbdad; /* Brand-colored text */
    border: 2px solid #3bbdad; /* Brand-colored border */
}

/* Primary CTA (Main Action) */
.primary-cta {
    font-weight: bold;
}

.primary-cta:hover {
    background-color: #e6faf6; /* Light mint background on hover */
    color: #2ea291; /* Darker brand shade for contrast */
    border-color: #2ea291;
}

/* Secondary CTA (Less Emphasized) */
.secondary-cta {
    background-color: transparent; /* Transparent background */
    color: white; /* White text */
    border: 2px solid white; /* White border */
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Subtle hover effect */
    color: white;
    border-color: white;
}

/* Trust Badge (Under CTAs) */
.trust-badge {
    text-align: center;
    font-size: 16px;
    color: white; /* White text for better readability */
    margin-top: 15px;
    font-weight: 500;
}
#how-to-check-ats-score ol{ margin:.5rem 0 0 1.25rem; }
.cta-support{
  max-width:68ch; margin:.5rem auto 0;
  font-size:clamp(.98rem,2vw,1.06rem); line-height:1.55;
  color:var(--muted-foreground,#4b5563);
}
.cta-support a{
  color:var(--kw-accent,#2563eb); text-decoration:underline; text-underline-offset:2px;
}
.cta-support a:hover{ text-decoration:none; }


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    header {
        flex-wrap: wrap;
        padding: 1.2rem;
    }

    header a {
        margin-left: 0.5rem;
        font-size: 1.4rem;
    }
    .section {
        margin-inline: 1rem;
    }
}
/* =========================================
   ATS GUIDE SPECIFIC STYLES (ats-guide.css)
   ========================================= */

/* --- Score Meter Section --- */
.score-meter-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.score-meter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.score-range {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.score-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- System Cards (Greenhouse, Workday, Taleo) --- */
.system-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: #2a5298;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.system-logo-area {
    font-size: 2rem;
    margin-bottom: 15px;
}

.system-tips-list {
    padding-left: 20px;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.system-tips-list li {
    margin-bottom: 8px;
}

/* --- HaiTalent "Recruiter View" Box --- */
.recruiter-view-box {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%); /* Dark Professional Theme */
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.recruiter-badge {
    background: #00e676;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.recruiter-list {
    margin-top: 25px;
    list-style: none;
    padding-left: 0;
}

.recruiter-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

.recruiter-list i {
    color: #00e676;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.btn-hait-link {
    background: #4fc3f7;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-hait-link:hover {
    background: #fff;
    color: #0277bd;
    text-decoration: none;
    transform: translateY(-2px);
}
/* Ensures content doesn't hide behind sticky navbar */
.main-content-wrapper {
    margin-top: 80px; /* Adjust this value if your menu is taller/shorter */
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .main-content-wrapper {
        margin-top: 60px; /* Adjust for mobile menu height */
    }
}
/* --- Header Action Group --- */
.hero-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Secondary Outline Button (Job Fit) */
.btn-hero-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: #fff;
    color: #1e3c72; /* Dark Blue Text */
    text-decoration: none;
}

/* Tertiary Link (Builder) */
.hero-text-link {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: underline;
}

.hero-text-link:hover {
    color: #fff;
    text-decoration: none;
}
/* Global Badge for Turkey/Intl Traffic */
.global-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Icon Alignment Fixes */
.material-icons {
    vertical-align: middle;
    margin-right: 5px;
}
.global-badge .material-icons {
    font-size: 16px;
}