:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --slate-800: #1e293b;
    --slate-500: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --primary-color: #2563eb;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --text-muted: #64748b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}


body,html{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

    /* CONTAINER */

.carousel-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    max-width: 100%;
}

/* TRACK */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* SLIDE */
.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block; /* extra space remove */
}

/* OVERLAY */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENT */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    padding: 0 10px;
}

.slide-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.slide-content span {
    color: #00c6ff;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-btns {
    margin-bottom: 25px;
}

.btn {
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-primary {
    background: #00c6ff;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
}

.search-box input,
.search-box select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 150px;
    max-width: 100%;
}

.search-box button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

/* ARROWS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 22px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* DOTS */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #00c6ff;
}




/* ---------------- 2nd section --------------------- */
/* QUICK FILTER SECTION */
.quick-filters {
    background: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.filter-container {
    max-width: 1100px;
    margin: auto;
}

.filter-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* FILTER BOX */
.filter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
}

/* INPUTS */
.filter-box input,
.filter-box select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 180px;
}

/* BUTTON */
.search-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.search-btn:hover {
    background: #0056b3;
}

/* QUICK APPLY */
.quick-apply {
    margin-top: 20px;
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
}

/* ------------------------ 3 section -----------*/

/* CATEGORY SECTION */
.categories-section {
    padding: 60px 20px;
    background: #f8f9fb;
    text-align: center;
}

.categories-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}

/* CARD */
.category-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--accent-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.category-icon {
    
    height: 150px;
    margin: auto;
    margin-bottom: 15px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TITLE */
.category-card h3 {
    font-size: 16px;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 10px 0;
}

.btn-apply i {
    font-size: 18px;
    transition: 0.3s ease;
}

.job-card:hover .btn-apply {
    color: #1d4ed8;
}

.job-card:hover .btn-apply i {
    transform: translateX(5px); /* Arrow moves right on hover */
}

/* SHOW ALL BUTTON */
.show-all {
    margin-top: 30px;
    text-align: center;
}

.show-all-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.show-all-btn:hover {
    background: #0056b3;
}


/* CANDIDATE SECTION */
.candidate-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.candidate-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* STEPS GRID */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* STEP CARD */
.step-card {
    background: #f5f7fa;
    padding: 25px 20px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
}

/* ICON */
.step-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TEXT */
.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #555;
}








 /* ----------------- 5 ---------*/


.container_about {
     
    margin: 0 auto;
    padding: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Side Styling */
.sub-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-text {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: #334155;
}

/* List Styling */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-list li:hover {
    transform: translateX(10px);
}

.icon-box {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.about-list span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Image Side Styling */
.about-image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* To allow badge to pop out */
}

.image-wrapper img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-content h4 {
    font-size: 2rem;
    margin: 0;
    font-weight: 800;
}

.badge-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-subtitle{
    text-align: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* EMPLOYER SECTION */
.employer-section {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.employer-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* SAME GRID (reuse) */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* STEP CARD (reuse if already created) */
.step-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* NUMBER */
.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
}

/* ICON */
.step-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* CTA BUTTON */
.employer-cta {
    margin-top: 40px;
}

.post-job-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.post-job-btn:hover {
    background: #0056b3;
}


/* WHY SECTION */
.why-section {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.why-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.why-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TEXT */
.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}



/* STATS SECTION */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    text-align: center;
}

.stats-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 40px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

/* BOX */
.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
}

/* NUMBER */
.stat-box h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

/* TEXT */
.stat-box p {
    font-size: 16px;
}


/* TESTIMONIAL SECTION */
.testimonials {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.testimonials h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* SLIDER */
/* WRAPPER */
.testimonial-wrapper {
    overflow: hidden;
    max-width: 700px;
    margin: auto;
}

/* SLIDER */
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    background: #f5f7fa;
    padding: 30px 20px;
    border-radius: 12px;
}

/* TEXT */
.message {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #777;
    font-size: 14px;
}

/* DOTS */
.testimonial-dots {
    margin-top: 20px;
}

.testimonial-dots .dot {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: #007bff;
}


/* CTA SECTION */
.cta-section {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* HEADING */
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* TEXT */
.cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTON WRAPPER */
.cta-btns {
    margin-top: 20px;
}

/* BUTTON */
.cta-section .btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #007bff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.cta-section .btn:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

/* OPTIONAL BACKGROUND SHAPES */
.cta-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    top: -50px;
    left: -50px;
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
}





/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .highlight-text {
        border-left: none;
        border-top: 2px solid var(--primary-color);
        padding: 15px 0;
    }
    .about-list li {
        justify-content: center;
    }
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    .filter-box {
        flex-direction: column;
        align-items: center;
    }

    .filter-box input,
    .filter-box select {
        width: 100%;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .search-box {
        flex-direction: column;
    }
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: auto;
    }
    .category-icon {
        
        height: 200px;
        margin: auto;
        margin-bottom: 15px;
    }
    .carousel-container {
        position: relative;
        overflow: hidden;
        height: 100vh;
        width: 100%;
        max-width: 100%;
    }




    /* TESTIMONIAL WRAPPER */
    .testimonial-wrapper {
        overflow: hidden;
        width: 100%;
        padding: 0 10px;
    }

    /* SLIDER */
    .testimonial-slider {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease;
    }

    /* CARD */
    .testimonial-card {
        min-width: 100%;
        flex-shrink: 0;
        padding: 20px 15px;
        border-radius: 10px;
    }

    /* TEXT */
    .message {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-card h4 {
        font-size: 16px;
    }

    .testimonial-card span {
        font-size: 13px;
    }

    /* DOTS */
    .testimonial-dots {
        margin-top: 15px;
    }

    .testimonial-dots .dot {
        height: 8px;
        width: 8px;
        margin: 4px;
    }

    /* SECTION PADDING */
    .testimonials {
        padding: 40px 10px;
    }

    .testimonials h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
}
