:root {
    --primary: #e62f0e;
    --secondary: #e62f0e;
    --accent: #f97316;
    --light: #f8fafc;
    --dark: #0f172a;
    --light-gray: #f1f5f9;
    --text: #334155;
}

.btn-outline-primary {
    padding: 10px 25px !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary) !important;
    letter-spacing: 0.5px;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
    padding: 8px 16px !important;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(37, 99, 235, 0.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
}

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    padding: 120px 0 80px;
    position: relative;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    font-size: 2.5rem;
}



.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text);
    opacity: 0.8;
    font-size: 1.1rem;
}

.job-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s;
    margin-bottom: 25px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.job-type {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.full-time {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.part-time {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: white;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.category-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.category-card:hover .icon-wrapper i {
    color: white;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.icon-wrapper i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin: 15px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.stats-card:hover .stats-number {
    color: white;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.3rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
    color: white;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.job-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 30px;
    margin: 5px 5px 5px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.job-details {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.95rem;
}

.salary {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.featured-badge {
    position: absolute;
    top: 5px;
    left: -10px;
    background: #f97315;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-light {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.how-it-works {
    position: relative;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .navbar-brand {
        font-size: 1.5rem;
    }
}




/* //////////////////////// about */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.92)),
        url('../images/hand.png') center/cover no-repeat;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 800;
    color: var(--dark);
    font-size: 2.5rem;
}



.section-padding {
    padding: 100px 0;
}

/* Mission Section */
.mission-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.mission-box h2 {
    color: white;
    margin-bottom: 25px;
}

.mission-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.stats-card:hover .stats-number {
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Industries Section */
.industry-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-icon i {
    font-size: 28px;
    color: var(--primary);
}

/* Client Logos */
.clients-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 16);
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }
}

.client-logo {
    height: 100px;
    width: 200px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
}

.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.company-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.company-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

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

    .mission-box {
        padding: 30px;
    }
}





/*////////CTA  */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('assets/images/whitebackground.png');
    opacity: 0.08;
}

.cta-btn {
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}


/* //////////// COURSEL */

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% 50%;
}


.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0 93 179) !important;
}