body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #323232;
}
:root {
    --blue-c: #5f4bde;
    --blue-lt-c: #615fe7;
    --purple-c: #7809c0;
    --purple-lt-c: #7c0fc8;
    --gray: #666;
    --gray-lt: #ebd8f4;
    --gray-lt-c: #cdcaf5;
    --black-c: #323232;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.text-gradient-primary {
    background: linear-gradient(90deg, #7b3ff2, #9f5bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-text {
    color: var(--blue-c)!important;
}
.secondary-text {
    color: var(--purple-c)!important;
}
.black-text {
    color: var(--blue-c)!important;
}
.black-text {
    color: var(--blue-c)!important;
}

.primary-heading {
    font-size: clamp(2.2rem, 2vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: var(--black-c);
}
.primary-sub-heading {
    font-size: clamp(1.5rem, 1.8vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 1.3rem;
    color: var(--black-c);
}

/* Gradient Background */
    .hero-section {
    /* background: linear-gradient(131deg, #a10dd1, #4E73DF); */
    background-image: url('./../images/banner-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.img-bnr-3 {
    margin-top: 9vh;
}
.img-bnr-2 {
    margin-top: 10vh;
}
.img-bnr-1 {
    margin-top: 15vh;
}
.w-85 {
    width: 85%;
}
.w-65 {
    width: 65%;
}
/* Navbar */
.navbar {
    background: transparent !important; 
    z-index: 999;
}


.navbar-brand {
    font-weight: 700;
}

.navbar-nav {
    text-align: center;
    width: 100%;
}

.sec-pad {
    padding: 5rem 0;
}

.pills-cust {
    background: linear-gradient(123deg, #f2eaff, #e7d7ff);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: solid 1px #dbc6ff;
    color: var(--blue-c);
    font-weight: 600;
    display: inline-block;
    margin: 5px;
    transition: 0.4s;
}
.pills-cust:hover {
    transform: translateY(-5px);
    transition: 0.4s;
}

.fs-large {
    font-size: clamp(2rem, 4vw, 4rem);
}
.bg-purple-gradent {
    background: linear-gradient(136deg, #c338cf, #072c7e);
    color: white;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    margin: 0 15px;
    font-weight: 500;
}

@media(max-width:1024px) {
    .navbar-nav .nav-link {
        color: #000000 !important;
        margin: 0 3px;
        font-weight: 500;
        font-size: clamp(0.78rem, 1vw, 1rem);
    }
}

.navbar-nav .nav-link:hover {
    color: #ffb46e !important;
}

.btn-gradient {
    background: linear-gradient(45deg, #7809c0, #5f4bde);
    border: none;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 1.7rem;
    font-weight: 600;
    transition: 0.4s;
    z-index: 99;
    box-shadow: 0 3px 20px #00000020;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #5f4bde, #7809c0);
    color: var(--gray-lt-c);
    box-shadow: 0 3px 15px #0000003b;
    transform: translateY(-3px);
    transition: 0.4s;
}
.inner-page-nav .navbar {
    background: #ffffff !important;
    z-index: 999;
    box-shadow: 0 2px 5px #00000020;
}
.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-menu .dropdown-item:hover {
    color: var(--blue-c);
}
.cust-drop .dropdown-item {
    line-height: 2;
    border-bottom: solid 1px #f1e3e3;
}
.cust-drop .dropdown-item:last-child {
    border-bottom: solid 0px #f1e3e3;
}
.carousel-control-next, .carousel-control-prev {
    width: 0%;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}
.border-radius {
    border-radius: 4rem;
}
.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.hero-img img {
    max-width: 100%;
    height: auto;
}

element.style {
}
.core-slider .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 5px;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #414141;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
/* Responsive */
@media (max-width: 991px) {
    .nav-cutom-menu {
        background-color: #7b2ff7;
        padding: 0.8rem;
    }
        .navbar-nav .nav-link {
        color: #ffffff !important;
        }
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
                margin-top: 15%;
    }
    /* .hero-content h1 {
        font-size: 38px;
    } */
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
        margin-top: 2rem;
    }
    
}

/* strip css start */
.stats-section {
       background: #f3eef7;
    padding: 40px 0;
    z-index: 999;
    display: -webkit-inline-box;
    width: 100%;
    }

    .stat-box {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
        flex-shrink: 0;
    }

    .purple { background: var(--blue-c); }
    .orange { background: #ff8c42; }
    .blue   { background: var(--purple-lt-c) }
    .violet { background: var(--purple-c); }

    .stat-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        color: var(--black-c);
    }

    .stat-content p {
        margin: 0;
        font-size: 14px;
        color: #666;
    }

    /* Responsive */
    @media (max-width: 767px) {
        .stat-box {
            justify-content: start;
        }
    }
/* strip css end */

/* start featured josbs */
 .jobs-wrapper {
        background: #eeebf1;
        padding: 60px 0;
    }

    .jobs-heading {
        font-size: clamp(2.2rem, 2vw, 2rem);
        font-weight: 600;
        margin-bottom: 30px;
        color: #2c2c2c;
    }

    .career-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: 0.3s ease;
        height: 100%;
    }

    .career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .job-top {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .job-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
    }

    .job-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        color: var(--black-c);
    }

    .job-company {
        font-size: 14px;
        color: #777;
        margin: 0;
    }

    .job-info {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        border-top: solid 1px #f3f3f3;
        border-bottom: solid 1px #f3f3f3;
        padding: 13px 0;
        font-weight: 600;
    }

    .apply-btn-custom {
        background: var(--blue-c);
        color: #fff;
        border: none;
        padding: 8px 18px;
        border-radius: 8px;
        font-size: 14px;
        transition: 0.3s;
    }

    .apply-btn-custom:hover {
        background: var(--blue-lt-c);
    }

    @media (max-width: 767px) {
        .jobs-heading {
            text-align: center;
        }
    }
/* start featured end */

/* explore by start css */
.category-zone {
    background: var(--gray-lt-c);
    padding: 60px 0;
}

    /* .category-title {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 35px;
        color: var(--black-c);
    } */

    .category-box {
        border-radius: 14px;
        padding: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: 0.3s ease;
        height: 100%;
    }

    .category-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .category-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
        flex-shrink: 0;
    }

    .cat-name {
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        color: var(--black-c);
    }

    .cat-count {
        font-size: 13px;
        margin: 0;
        color: #555;
        font-weight: 600;
    }

    /* Background Variants */
    .bg-tech      { background: linear-gradient(45deg, #baa8fa, #c5b7f7); }
    .bg-market    { background: linear-gradient(45deg, #fadcbd, #fff5ea); }
    .bg-health    { background: linear-gradient(45deg, #a2e1f0, #e8fbff); }
    .bg-finance   { background: linear-gradient(45deg, #c7dafc, #d9e6ff); }
    .bg-remote    { background: linear-gradient(45deg, #fccdcd, #ffe1e1); }

    .icon-tech    { background: #7b2ff7; }
    .icon-market  { background: #ff8c42; }
    .icon-health  { background: #2bb6d6; }
    .icon-finance { background: #2fa84f; }
    .icon-remote  { background: #ff9f43; }

     
    @media (min-width: 992px) {
        .col-lg-20 {
            flex: 0 0 auto;
            width: 20%;
        }
    }
/* explore by end css */

/* how it work start */
.process-area {
    background: #f4eefb;
    padding: 0 0 70px 0;
}

    /* .process-title {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 45px;
        color: var(--black-c);
        position: relative;
    } */

    .step-card-box {
        background: #ffffff;
        padding: 25px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        gap: 20px;
        transition: 0.3s ease;
        height: 100%;
    }

    .step-card-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .step-badge {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5f4bde, #7809c0);
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .step-heading {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 5px;
        color: var(--black-c);
    }

    .step-text {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    @media (max-width: 767px) {
        .step-card-box {
            flex-direction: column;
            text-align: center;
        }
    }
/* how it work end */

/* feature companies start */
  .brand-showcase-area {
        background: #f4eefb;
        padding: 0 0 70px 0;
    }

    /* .brand-heading {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
        color: var(--black-c);
    } */

    .brand-logo-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 60px;
    }

    .brand-item img {
        max-height: 40px;
        width: auto;
        transition: 0.3s ease;
        filter: grayscale(20%);
    }

    .brand-item img:hover {
        transform: scale(1.1);
        filter: grayscale(0%);
    }

    @media (max-width: 768px) {
        .brand-logo-wrap {
            gap: 30px;
        }

        .brand-item img {
            max-height: 32px;
        }
    }

    @media (max-width: 480px) {
        .brand-logo-wrap {
            gap: 20px;
        }
    }
/* feature companies end */

/* what our user start */
/* ===== Section Background ===== */
.feedback-zone {
    background: linear-gradient(135deg, #ebd8f4, #cdcaf5);
    padding: 80px 0;
    
}
.college-module-bg {
    background: linear-gradient(45deg, #b3d3ea, #fee9e6);
    padding: 80px 0;
}
.sec-testimonial {
    /* background: linear-gradient(135deg, #ebd8f4, #cdcaf5); */
    background-image: url('./../images/banner-bg3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    padding: 80px 0;
}
.what-we-do {
    /* background-image: url('./../images/banner-bg2.jpg'); */
    /* background: linear-gradient(130deg, #ffdcfe, #a8a3ef); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
 }
 .sec-pad {
   padding: 80px 0; 
 }
 @media (max-width: 992px) {
    .what-we-do, .sec-testimonial, .college-module-bg, .feedback-zone, .sec-pad {
        padding: 60px 20px;
    }
 
}

/* ===== Section Title ===== */
.feedback-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 50px;
}

/* ===== Testimonial Card ===== */
.review-card-box {
    background: #ffffff;
    border-radius: 15px;
    /* padding: 25px; */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    height: 100%;
}
.client-card-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    height: 100%;
}

.review-card-box:hover {
    transform: translateY(-8px);
}

/* ===== User Image ===== */
.client-avatar {
width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 70px;
}
 
/* ===== Quote Text ===== */
.client-review-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

/* ===== Stars ===== */
.star-rating i {
    color: #f7b500;
    font-size: 14px;
}

/* ===== Name & Role ===== */
.client-name {
    font-weight: 600;
    margin-bottom: 0;
    border-top: solid 2px #f7f4f4;
    padding-top: 10px;
}

.client-role {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* ===== Subscribe Button ===== */
.cta-subscribe-btn {
    background: linear-gradient(90deg, #7b3ff2, #9f5bff);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
    box-shadow: 0 3px 15px #00000010;
    text-decoration: none;
}

.cta-subscribe-btn:hover {
    /* background: linear-gradient(90deg, #9f5bff, #7b3ff2); */
    transform: scale(1.1);
    box-shadow: 0 3px 15px #00000050;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
    .feedback-zone {
        padding: 60px 20px;
    }
}
/* what our user end */

/* footer start */
/* ===== Footer Background ===== */
.site-footer-area {
    background: linear-gradient(135deg, #5f4bde, #7809c0);
    padding: 70px 0 30px;
    color: #ffffff;
}

/* ===== Footer Headings ===== */
.footer-heading-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

/* ===== Footer Links ===== */
.footer-link-item {
    display: block;
    color: var(--gray-lt-c);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-link-item:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* ===== Social Icons ===== */
.social-icons-group a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons-group a:hover {
    background: #ffffff;
    color: var(--blue-c);
}

/* ===== Bottom Copyright ===== */
.footer-bottom-text {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: var(--gray-lt);
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .site-footer-area {
        text-align: center;
    }
    .social-icons-group {
        margin-top: 15px;
    }
}

/* footer end */

/* find companys start */
.company-hub-section {
        background: var(--gray-lt-c);
        padding: 70px 0;
    }

    .company-hub-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--black-c);
    }

    /* Tabs Styling */
    .custom-pill-nav .nav-link {
        border-radius: 30px;
        padding: 8px 18px;
        margin-right: 10px;
        background: #fff;
        color: var(--blue-c);
        font-weight: 500;
        border: none;
    }

    .custom-pill-nav .nav-link.active {
        background: linear-gradient(135deg, #5f4bde, #7809c0);
        color: #fff;
    }

    /* Card Styling */
    .company-card-box {
        background: #fff;
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: 0.3s ease;
        height: 100%;
    }

    .company-card-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .company-header-row {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }

    .company-logo-round {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: contain;
        background: #f5f5f5;
        padding: 8px;
    }

    .company-name-text {
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }

    .company-desc-text {
        font-size: 14px;
        color: var(--blue-lt-c);
        margin-bottom: 5px;
    }

    .company-jobs-count {
        font-size: 13px;
        color: var(--gray-lt-c);
        margin-bottom: 15px;
    }

    .view-jobs-btn {
        background: linear-gradient(135deg, #5f4bde, #7809c0);
        color: #fff;
        border: none;
        padding: 7px 16px;
        border-radius: 8px;
        font-size: 14px;
    }

    .view-jobs-btn:hover {
        opacity: 0.9;
    }

    @media (max-width: 767px) {
        .company-hub-title {
            text-align: center;
        }
    }
/* find companys end */

.contact-sec {
    background-image: url('./../images/contact-banner-image.png');
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
}
.img-overlay {
    background: #000000;
    height: 70vh;
    width: 100%;
    opacity: .5;
}
.contact-content {
    position: absolute!important;
    top: 20%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.contact-para {
    width: 56%;
    margin: 0 auto;
    text-align: center;
    color: #eed4ff;
    font-size: 1.3rem;
}
@media (max-width: 992px) {
    .contact-para {
        width: 98%;
        margin: 0 auto;
        text-align: center;
        color: #eed4ff;
        font-size: clamp(1.3rem, 1.3vw, .8rem);
        line-height: normal;
    }
    .contact-content {
        top: 5%;
    }
}

.modal-header.bg-light {
    background: linear-gradient(45deg, var(--purple-c), var(--blue-c));
    color: white;
}
@media (max-width: 992px) {
    .navbar-toggler {
        background-color: #8421e3!important;
    }
}

 .container-box {
    background: #fff;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08)
}
.policy-container h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.3rem;
}
.policy-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

.contact-addr .card-body {
    min-height: 140px;
}

 .logo-main {
    width: 14rem;
}

/* key featurs start */
.features-section {
    background: #f8f9fc;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.feature-icon {
    font-size: 50px;
    color: #1f4f95;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #343a40;
}

.feature-card p {
    color: #6c757d;
    font-size: 17px;
    line-height: 1.8;
    min-height: 90px;
}

.feature-pill {
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    margin: 3px;
}

.feature-badge {
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    margin: 3px;
    border: 1px solid #dbe4ff;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 25px 20px;
    }

    .feature-card h4 {
        font-size: 22px;
    }

    .feature-card p {
        min-height: auto;
        font-size: 15px;
    }

    .feature-icon {
        font-size: 42px;
    }
}
/* key featurs end */