/* Global Styles */
:root {
    --primary-color: #00A6FF;
    --secondary-color: #003B73;
    --accent-color: #D4AF37;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --box-shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
    --text-light: #f0f0f0;
    --text-muted: #444;
    --top-bar-height: 37px;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

section {
    padding: 4rem 0;
}

/* Top Bar */
.top-bar {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.top-bar-links {
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-links a i {
    color: #4CAF50;
    font-size: 14px;
}

.top-bar-links a:hover {
    color: var(--primary-color);
}

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    left: 0;
    top: var(--top-bar-height);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: calc(var(--top-bar-height) + var(--header-height));
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem 1rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-slide h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.hero-slide .hero-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 1.5rem auto;
    color: #ffd;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    text-align: left;
    max-width: 700px;
}

.hero-cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.hero-cta-button:hover {
    background-color: #004a99;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy Hero (commented out in HTML but keeping styles) */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 51, 102, 0.9)), url('../img/image1.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin-top: calc(var(--top-bar-height) + var(--header-height));
    padding: 5rem 1rem;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.hero h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: #f0f0f0;
}

/* USP Section */
.usp {
    background-color: #f9f9f9;
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.usp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 150%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    z-index: 0;
    transform: skewY(-3deg);
}

.usp .container {
    position: relative;
    z-index: 1;
}

.usp-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.usp-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.usp-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

.usp-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Core Values Section */
.core-values {
    background-color: var(--light-color);
    padding: 5rem 1rem;
    color: #333;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* About Sections */
.about-commitment,
.founder-vision {
    margin-top: 4rem;
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-commitment h3,
.founder-vision h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

.about-commitment h3::after,
.founder-vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.about-commitment p,
.founder-vision p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    z-index: -1;
    border-radius: 12px;
}

.about-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-content {
    flex: 1;
    min-width: 280px;
}

/* Services Section */
.services {
    background-color: var(--light-color);
    padding: 5rem 1rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img i {
    font-size: 3.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img i {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem 1.5rem;
    flex: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Employer Section */
.employer {
    background-color: var(--light-color);
    padding: 4rem 1.5rem;
}

.employer .section-title {
    text-align: center;
    color: var(--secondary-color);
}

.employer-message,
.competitive-advantage {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.employer-message:hover,
.competitive-advantage:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.employer-message h3,
.competitive-advantage h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.employer-message p,
.competitive-advantage p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Why BADAM HR Section */
#why-we-do-it {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.advantage-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.advantage-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Methodology */
.methodology {
    margin-bottom: 4rem;
}

.methodology h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.methodology p {
    max-width: 800px;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Timeline */
.methodology-timeline {
    position: relative;
    max-width: 1100px;
    margin: 3rem auto;
}

.methodology-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 5px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    margin-bottom: 20px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    position: relative;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -14px;
    top: 15px;
    background-color: white;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -14px;
    top: 15px;
    background-color: white;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-number {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.2);
}

.timeline-item:nth-child(even) .timeline-number {
    left: -20px;
    right: auto;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.timeline-item:nth-child(odd) .timeline-content h4 {
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content h4 {
    padding-left: 30px;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Talent Categories */
.talent-categories {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    background-color: #f9fafb;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.talent-categories h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.talent-categories p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 3px solid var(--primary-color);
}

.category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.category h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.category h5 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.category ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.category ul li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #555;
}

/* Sectors */
.sectors {
    margin-top: 3rem;
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sectors h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.sectors p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.sectors em {
    color: var(--accent-color);
}

/* Candidate Section */
.candidate {
    background-color: #f7f9fc;
    padding: 4rem 1rem;
}

.candidate-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.candidate-heading h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.candidate-heading h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.candidate-heading p {
    font-size: 1rem;
    color: #555;
}

.open-roles {
    background-color: #eef4fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.open-roles h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.open-roles p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

/* Candidate Form */
.candidate-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.candidate-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-step h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 166, 255, 0.1);
    outline: none;
    background-color: #fff;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 1.5rem auto 0;
}

.cta-button:hover {
    background-color: #0088d4;
    transform: translateY(-2px);
    color: #fff;
}

.notice {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    padding: 4rem 1.5rem;
    border-top: 1px solid #eee;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a2a4a);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 59, 115, 0.2);
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 166, 255, 0.3);
}

.contact-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color), #1b1f2a);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-tagline {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Toast */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #28a745;
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 14px 24px;
    position: fixed;
    z-index: 9999;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

/* ===========================
   RESPONSIVE - TABLET (max 992px)
   =========================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide h2 {
        font-size: 2.4rem;
    }

    .hero-slide .container {
        max-width: 90%;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ===========================
   RESPONSIVE - MOBILE (max 768px)
   =========================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Top bar */
    .top-bar {
        padding: 6px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1001;
        height: var(--top-bar-height);
        display: flex;
        align-items: center;
    }

    .top-bar-links {
        gap: 16px;
    }

    .top-bar-links a {
        font-size: 11px;
    }

    /* Navigation */
    .nav {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0.8rem;
        animation: slideDown 0.3s ease-in-out;
    }

    .nav-links.active a {
        padding: 0.6rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero */
    .hero-carousel {
        height: 80vh;
    }

    .hero-slide h2 {
        font-size: 2rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .hero-slide .hero-quote {
        font-size: 0.95rem;
    }

    .hero-cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .usp-content {
        padding: 1.5rem;
    }

    .usp-content p {
        font-size: 1rem;
    }

    /* Values */
    .values-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.2rem;
    }

    /* About */
    .about-commitment,
    .founder-vision {
        padding: 2rem 1.2rem;
    }

    .about-commitment h3,
    .founder-vision h3 {
        font-size: 1.4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img::before {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-img {
        height: 140px;
    }

    /* Employer */
    .employer {
        padding: 3rem 1rem;
    }

    .employer-message,
    .competitive-advantage {
        padding: 1.5rem;
    }

    /* Timeline - clean card layout on mobile */
    .methodology-timeline {
        margin: 2rem 0;
    }

    .methodology-timeline::after {
        display: none;
    }

    .timeline-item {
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
        left: 0 !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }

    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        display: none;
    }

    .timeline-number {
        position: relative;
        display: inline-flex;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        left: auto !important;
        right: auto !important;
        top: auto;
        margin-right: 10px;
        float: left;
        box-shadow: none;
    }

    .timeline-content {
        padding: 1.2rem;
        border-left: 4px solid var(--primary-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .timeline-content h4 {
        font-size: 1rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content h4,
    .timeline-item:nth-child(even) .timeline-content h4 {
        padding-left: 0;
        padding-right: 0;
    }

    .timeline-content p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
        clear: both;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category {
        padding: 1.2rem;
    }

    /* Candidate */
    .candidate-form {
        padding: 1.5rem;
    }

    .candidate-heading h3 {
        font-size: 1.3rem;
    }

    /* Contact */
    .contact {
        padding: 3rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem 1.5rem;
    }

    .contact-intro h3 {
        font-size: 1.4rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* CTA buttons */
    .cta-button {
        max-width: 100%;
        width: 100%;
    }
}

/* ===========================
   RESPONSIVE - SMALL MOBILE (max 480px)
   =========================== */
@media (max-width: 480px) {
    :root {
        --top-bar-height: 32px;
        --header-height: 60px;
    }

    .top-bar-links a {
        font-size: 10px;
        gap: 4px;
    }

    .top-bar-links {
        gap: 12px;
    }

    .logo img {
        height: 42px;
    }

    .hero-carousel {
        height: 70vh;
    }

    .hero-slide h2 {
        font-size: 1.6rem;
    }

    .hero-slide p {
        font-size: 0.9rem;
    }

    .hero-slide .hero-quote {
        font-size: 0.85rem;
        padding-left: 0.8rem;
    }

    .hero-cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .usp-content p {
        font-size: 0.95rem;
    }

    .value-card i {
        font-size: 2.2rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .advantage-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .form-control {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}
