/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #11B5F5;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Sora", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 7px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* mouse animation css  */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 27px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 13px;
    color: rgb(255 255 255 / 70%);
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


/* !NAV HEADER CSS */


/* banner */

.main-banner {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 24, 40, 1) 0%, rgba(16, 24, 40, 0.95) 40%, rgba(16, 24, 40, 0.4) 100%);
    z-index: -1;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.custom-badge {
    background-color: rgba(64, 153, 255, 0.1);
    color: #4099ff;
    border: 1px solid rgba(64, 153, 255, 0.2);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
}

.banner-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.text-highlight {
    color: #4099ff;
}

.banner-description {
    font-size: 17px;
    color: rgb(255 255 255 / 60%);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.banner-buttons {
    display: flex;
    gap: 16px;
}

.custom-btn-danger {
    background-color: #ff3333;
    border-color: #ff3333;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-btn-danger:hover {
    background-color: #e60000;
    border-color: #e60000;
}

.custom-btn-dark {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.stats-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    color: rgb(255 255 255 / 50%);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-icon {
    display: inline-block;
    margin-top: 8px;
}

@media (max-width: 991.98px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-overlay {
        background: linear-gradient(90deg, rgba(16, 24, 40, 1) 0%, rgba(16, 24, 40, 0.95) 70%, rgba(16, 24, 40, 0.8) 100%);
    }
}

@media (max-width: 767.98px) {
    .main-banner {
        padding: 80px 0;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .stats-container .row>div {
        margin-bottom: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.banner-buttons.menubutton .custom-btn-danger {
    padding: 11px 23px;
    font-size: 13px;
}

.banner-buttons.menubutton .custom-btn-dark {
    padding: 11px 23px;
    font-size: 13px;
}

/* banner */


/* footer */

.site-footer {
    background-color: #040404;
    font-family: 'Manrope', sans-serif;
    padding: 85px 0 35px;
    overflow: hidden;
}

.site-footer__row-top {
    justify-content: space-between;
}

.site-footer__logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.site-footer__desc {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    color: #7b7b7b;
    margin-bottom: 30px;
    max-width: 95%;
}

.site-footer__heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__list-item {
    margin-bottom: 14px;
}

.site-footer__link {
    color: #7b7b7b;
    font-size: 13px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.site-footer__link:hover {
    color: #ffffff;
    text-decoration: none;
}

.site-footer__divider {
    border-top: 1px solid #141414;
    margin: 55px 0 25px;
}

.site-footer__row-bottom {
    align-items: center;
}

.site-footer__copyright-text {
    font-size: 12px;
    color: #6a6a6a;
    margin-bottom: 0;
    font-weight: 400;
}

.site-footer__legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.site-footer__legal-link {
    color: #6a6a6a;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.site-footer__legal-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .site-footer__col-links {
        margin-bottom: 45px;
    }

    .site-footer__col-brand {
        margin-bottom: 45px;
    }

    .site-footer__legal-list {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .site-footer__row-top {
        justify-content: flex-start;
    }

    .site-footer {
        padding: 60px 0 30px;
    }
}

/* footer */


/* get in touch */

.consultation-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.consultation-section__content {
    padding-right: 20px;
}

.consultation-section__subtitle {
    color: #49b5f9;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
}

.consultation-section__title {
    font-size: 44px;
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.consultation-section__highlight {
    color: #49b5f9;
}

.consultation-section__description {
    color: #7b8595;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 500;
    max-width: 95%;
}

.consultation-section__contact-list {
    margin-bottom: 45px;
}

.consultation-section__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.consultation-section__icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.consultation-section__icon-wrap i {
    font-size: 14px;
}

.consultation-section__icon-wrap--red {
    background-color: #fef0f1;
    color: #de2434;
}

.consultation-section__icon-wrap--blue {
    background-color: #f1f6fd;
    color: #8c9bb0;
}

.consultation-section__icon-wrap--gray {
    background-color: #f5f7fa;
    color: #616e80;
}

.consultation-section__info-title {
    font-size: 13px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 4px;
}

.consultation-section__info-text {
    font-size: 13px;
    color: #7b8595;
    margin-bottom: 0;
    font-weight: 500;
}

.consultation-section__social-title {
    font-size: 13px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 15px;
}

.consultation-section__social-links {
    display: flex;
    gap: 10px;
}

.consultation-section__social-link {
    width: 34px;
    height: 34px;
    background-color: #49b5f9;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.consultation-section__social-link:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-2px);
}

.consultation-section__social-link i {
    font-size: 15px;
}

.consultation-section__x-icon {
    font-size: 14px;
    font-weight: 800;
    font-family: Arial, sans-serif;
    line-height: 1;
}

/* Form Card Styles */
.consultation-section__form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f4f8;
}

.consultation-section__form-heading {
    font-size: 22px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 10px;
}

.consultation-section__form-subheading {
    font-size: 13px;
    color: #7b8595;
    margin-bottom: 30px;
    font-weight: 500;
}

.consultation-section__form-group {
    margin-bottom: 22px;
}

.consultation-section__label {
    font-size: 12px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 10px;
    display: block;
}

.consultation-section__input {
    background-color: #f6f8fb;
    border: 1px solid #eef1f6;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 13px;
    color: #0d0d0d;
    font-weight: 500;
    height: auto;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.consultation-section__input::placeholder {
    color: #9ba5b5;
    font-weight: 500;
}

.consultation-section__input:focus {
    background-color: #ffffff;
    border-color: #49b5f9;
    box-shadow: 0 0 0 3px rgba(73, 181, 249, 0.1) !important;
    outline: none;
}

.consultation-section__textarea {
    resize: none;
}

.consultation-section__submit-btn {
    background-color: #df1b23;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.consultation-section__submit-btn:hover {
    background-color: #c4151c;
    color: #ffffff;
}

@media (max-width: 991px) {
    .consultation-section__form-card {
        padding: 30px;
    }

    .consultation-section__title {
        font-size: 36px;
    }
}

/* get in touch */


/* getstart */
.hero-section {
    position: relative;
    padding: 160px 0;
    display: flex;
    align-items: center;
    background-image: url(../images/startedbg1.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}



.hero-section__pre-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #55a5ec;
    margin-bottom: 20px;
}

.hero-section__title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-section__title-highlight {
    color: #55a5ec;
}

.hero-section__description {
    font-size: 17px;
    font-weight: 400;
    color: #a5b3c3;
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section__btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.hero-section__btn:hover {
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-section__btn--primary {
    background-color: #e51c2f;
    color: #ffffff;
    border: 1px solid #e51c2f;
}

.hero-section__btn--primary:hover {
    background-color: #cf1728;
    border-color: #cf1728;
    box-shadow: 0 4px 12px rgba(229, 28, 47, 0.3);
}

.hero-section__btn--secondary {
    background-color: #262e3e;
    color: #ffffff;
    border: 1px solid #3c4558;
}

.hero-section__btn--secondary:hover {
    background-color: #323b4e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width:991px) {
    .hero-section__title {
        font-size: 48px;
    }
}

@media (max-width:767px) {
    .hero-section {
        padding: 100px 0;
    }

    .hero-section__title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .hero-section__btn-group {
        flex-direction: column;
    }

    .hero-section__btn {
        margin: 8px 0;
        width: 100%;
        max-width: 280px;
    }

    .hero-section__description {
        font-size: 15px;
    }
}

/* getstart */


/* latestinsight */

.latest-insights {
    padding: 100px 0;
    background-color: #ffffff;
}

.latest-insights__header {
    margin-bottom: 60px;
}

.latest-insights__subtitle {
    color: #4eb6fe;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.latest-insights__title {
    color: #374357;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.latest-insights__title-highlight {
    color: #4eb6fe;
}

.latest-insights__description {
    color: #8b97a7;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
}

.latest-insights__card {
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-insights__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.latest-insights__card-img-wrap {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.latest-insights__card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.latest-insights__card-body {
    padding: 30px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.latest-insights__card-category {
    color: #4eb6fe;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
    display: block;
}

.latest-insights__card-title {
    color: #0b1320;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 14px;
}

.latest-insights__card-text {
    color: #8b97a7;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 24px;
    flex-grow: 1;
}

.latest-insights__card-link {
    color: #4eb6fe;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.2s ease;
}

.latest-insights__card-link:hover {
    color: #2b95e0;
    text-decoration: none;
}

.latest-insights__card-link svg {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.latest-insights__card-link:hover svg {
    transform: translateX(3px);
}

/* latestinsight */


/* patner */
.partners-sec {
    background-color: #0d111b;
    padding: 100px 0;
    color: #ffffff;
}

.partners-sec__pre-title {
    display: block;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.partners-sec__title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.partners-sec__title span {
    color: #3b82f6;
}

.partners-sec__subtitle {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 60px;
}

.partners-sec__card {
    background-color: #1a1e2d;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.partners-sec__card:hover {
    transform: translateY(-5px);
}

.partners-sec__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 25px;
}

.partners-sec__star {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.partners-sec__text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 35px;
    flex-grow: 1;
}

.partners-sec__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partners-sec__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #ffffff;
    flex-shrink: 0;
}

.partners-sec__avatar--jr {
    background-color: #38bdf8;
}

.partners-sec__avatar--mt {
    background-color: #a855f7;
}

.partners-sec__avatar--dk {
    background-color: #f59e0b;
}

.partners-sec__info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.partners-sec__info span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* patner */


/* acl advantages */
.acl-advantage-section {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.acl-advantage-header {
    margin-bottom: 60px;
}

.acl-advantage-pretitle {
    color: #50B1ED;
    font-size: 11px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.acl-advantage-title {
    color: #1E293B;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.acl-advantage-title .text-highlight {
    color: #50B1ED;
}

.acl-advantage-subtitle {
    color: #8492A6;
    font-size: 15px;
    font-weight: 400;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.acl-advantage-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.acl-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.acl-advantage-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.acl-advantage-card-icon .emoji {
    font-size: 20px;
    line-height: 1;
}

.icon-bg-1 {
    background-color: #E8F4FD;
}

.icon-bg-2 {
    background-color: #FEF0E7;
}

.icon-bg-3 {
    background-color: #F3E8FE;
}

.icon-bg-4 {
    background-color: #E6F7F0;
}

.icon-bg-5 {
    background-color: #FDF1E2;
}

.icon-bg-6 {
    background-color: #FDECEC;
}

.acl-advantage-card-title {
    color: #1E293B;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.acl-advantage-card-text {
    color: #8492A6;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

/* acl advantages */


/* portalsec */
.portal-section {
    padding: 120px 0;
    background: radial-gradient(circle at top center, #11141a 0%, #08090c 60%)
}

.portal-section-pretitle {
    color: #2c98e0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px
}

.portal-section-title {
    font-size: 37px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
}

.portal-section-title-highlight {
    color: #2c98e0
}

.portal-section-desc {
    color: #ffffff80;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.portal-section-toggles {
    display: flex;
    gap: 10px;
    margin-bottom: 40px
}

.portal-section-btn-active {
    background-color: #e11d35;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 53, 0.2)
}

.portal-section-btn-active:hover {
    background-color: #f22039
}

.portal-section-btn-inactive {
    background-color: transparent;
    color: #818895;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #1f2329;
    cursor: pointer;
    transition: all 0.3s ease
}

.portal-section-btn-inactive:hover {
    background-color: #11141a;
    color: #fff;
    border-color: #303640
}

.portal-section-features {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.portal-section-feature-item {
    background-color: #0f1216;
    border: 1px solid #1a1e24;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer
}

.portal-section-feature-item:hover {
    background-color: #15191e;
    border-color: #2a3038;
    transform: translateX(5px)
}

.portal-section-feature-icon {
    width: 38px;
    height: 38px;
    background-color: #171b21;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px
}

.portal-section-feature-text {
    font-size: 15px;
    font-weight: 700;
    color: #e5e7eb
}

.portal-section-dashboard {
    background-color: #13161a;
    border: 1px solid #20242a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02)
}

.portal-section-dash-header {
    padding: 14px 20px;
    background-color: #15181d;
    border-bottom: 1px solid #1f2329;
    display: flex;
    align-items: center
}

.portal-section-dash-controls {
    display: flex;
    gap: 8px
}

.portal-section-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.portal-section-dash-title {
    color: #5c6370;
    font-size: 12px;
    font-weight: 600;
    flex-grow: 1;
    text-align: center;
    margin-right: 48px
}

.portal-section-dash-body {
    padding: 30px
}

.portal-section-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px
}

.portal-section-stat-card {
    background-color: #181b21;
    border: 1px solid #20242a;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    text-align: center
}

.portal-section-stat-num {
    color: #2c98e0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1
}

.portal-section-stat-label {
    color: #5c6370;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.5px
}

.portal-section-chart-area {
    margin-bottom: 30px
}

.portal-section-chart-title {
    color: #5c6370;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px
}

.portal-section-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px
}

.portal-section-chart-bar {
    background-color: #2c98e0;
    flex: 1;
    border-radius: 3px 3px 0 0
}

.portal-section-list-item {
    padding: 18px 0;
    border-bottom: 1px solid #1f2329;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.portal-section-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.portal-section-list-job {
    font-size: 14px;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 4px
}

.portal-section-list-company {
    font-size: 12px;
    color: #5c6370;
    font-weight: 600
}

.portal-section-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px
}

.portal-section-badge-new {
    background-color: #13263b;
    color: #3da0e6
}

.portal-section-badge-active {
    background-color: #122b1f;
    color: #37b662
}

.portal-section-badge-review {
    background-color: #362a14;
    color: #ebad21
}

@media (max-width:991px) {
    .portal-section-title {
        font-size: 36px
    }

    .portal-section-dashboard {
        margin-top: 40px
    }
}

/* portalsec */


/* requirement */

.recruitment-process {
    background-color: #0d1220;
    padding: 110px 0;
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.recruitment-process__header {
    margin-bottom: 65px;
}

.recruitment-process__pre-title {
    color: #3ba4ec;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.recruitment-process__title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    color: #fff;
}

.recruitment-process__title-highlight {
    color: #3ba4ec;
}

.recruitment-process__subtitle {
    font-size: 17px;
    font-weight: 400;
    color: rgb(255 255 255 / 50%);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.recruitment-process__steps-row {
    position: relative;
}

.recruitment-process__step {
    position: relative;
    margin-bottom: 40px;
}

.recruitment-process__line {
    position: absolute;
    top: 31px;
    height: 2px;
    background-color: #562947;
    z-index: 0;
}

.recruitment-process__line--start {
    left: 50%;
    right: 0;
}

.recruitment-process__line--middle {
    left: 0;
    right: 0;
}

.recruitment-process__line--end {
    left: 0;
    right: 50%;
}

.recruitment-process__circle-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.recruitment-process__circle {
    width: 64px;
    height: 64px;
    border: 2px solid #3ba4ec;
    border-radius: 50%;
    background-color: #0d1220;
    color: #3ba4ec;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.recruitment-process__step:hover .recruitment-process__circle {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(59, 164, 236, 0.3);
}

.recruitment-process__step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.recruitment-process__step-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255 / 50%);
    line-height: 1.7;
    padding: 0 12px;
}

@media (max-width: 991.98px) {
    .recruitment-process__line {
        display: none !important;
    }

    .recruitment-process__step-desc {
        padding: 0;
    }

    .recruitment-process {
        padding: 70px 0;
    }

    .recruitment-process__title {
        font-size: 32px;
    }
}

/* requirement */


/* clients  */

/* Clients Section */
.clients-section {
    padding: 40px 0;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.clients-section__heading {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 25px;
    text-transform: none;
}

.clients-section__logos {
    gap: 30px;
}

.clients-section__logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 15px;
    font-weight: 700;
}

.clients-section__logo-dot {
    width: 6px;
    height: 6px;
    background-color: #d1f0ff;
    border-radius: 50%;
    display: inline-block;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-section__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-section__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.about-section__experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: #0d1b2a;
    color: #fff;
    padding: 25px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.2);
    z-index: 2;
}

.about-section__experience-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #38b6ff;
    line-height: 1;
    margin-bottom: 5px;
}

.about-section__experience-text {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}

.about-section__content {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .about-section__content {
        padding-left: 0;
        margin-top: 50px;
    }

    .about-section__experience-badge {
        right: 20px;
    }
}

.about-section__subtitle {
    color: #38b6ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-section__title {
    font-size: 48px;
    font-weight: 800;
    color: #2b3a4a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-section__title-highlight {
    color: #38b6ff;
}

.about-section__description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-section__features-list {
    margin-top: 40px;
}

.about-section__feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-section__feature-item:last-child {
    margin-bottom: 0;
}

.about-section__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.about-section__feature-icon--target {
    background-color: #ffeaea;
    color: #e53e3e;
}

.about-section__feature-icon--cog {
    background-color: #edf2f7;
    color: #4a5568;
}

.about-section__feature-icon--bolt {
    background-color: #fffaeb;
    color: #ecc94b;
}

.about-section__feature-icon--chart {
    background-color: #ebf8ff;
    color: #4299e1;
}

.about-section__feature-icon--globe {
    background-color: #e6fffa;
    color: #319795;
}

.about-section__feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

/* clients  */


/* service-offer */

.services-offer-section {
    padding: 100px 0;
    background-color: #f5f7fc;
}

.services-offer-header {
    margin-bottom: 65px;
}

.services-offer-label {
    color: #4ab7fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.services-offer-title {
    font-size: 44px;
    font-weight: 800;
    color: #2b3342;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.services-offer-title-highlight {
    color: #4ab7fc;
}

.services-offer-subtitle {
    font-size: 15px;
    color: #8c95a5;
    line-height: 1.6;
    font-weight: 400;
    max-width: 620px;
    margin: 0 auto;
}

.services-offer-col {
    margin-bottom: 30px;
}

.services-offer-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 35px 45px 35px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.services-offer-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(74, 183, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.services-offer-icon {
    font-size: 20px;
    line-height: 1;
}

.services-offer-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.services-offer-card-desc {
    font-size: 13px;
    color: #8c95a5;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 991px) {
    .services-offer-title {
        font-size: 36px;
    }

    .services-offer-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .services-offer-title {
        font-size: 30px;
    }

    .services-offer-header {
        margin-bottom: 40px;
    }

    .services-offer-card {
        padding: 30px 25px;
    }
}

/* service-offer */


/* industries */
.industries-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.industries-section-subtitle {
    color: #46B1F9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.industries-section-title {
    color: #2F3746;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.industries-section-highlight {
    color: #46B1F9;
}

.industries-section-desc {
    color: #838e9e;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
}

.industries-section-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industries-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industries-section-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(14, 18, 30, 0) 0%, rgba(14, 18, 30, 0.2) 30%, rgba(14, 18, 30, 0.8) 60%, rgba(10, 13, 24, 0.98) 100%);
    z-index: 1;
}

.industries-section-card-content {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
}

.industries-section-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.industries-section-icon-blue {
    background-color: rgba(30, 80, 150, 0.5);
}

.industries-section-icon-purple {
    background-color: rgba(80, 40, 120, 0.5);
}

.industries-section-icon-orange {
    background-color: rgba(180, 60, 20, 0.5);
}

.industries-section-icon-green {
    background-color: rgba(20, 100, 50, 0.5);
}

.industries-section-icon-red {
    background-color: rgba(200, 30, 60, 0.5);
}

.industries-section-icon-box img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.industries-section-card-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.industries-section-card-text {
    color: #aeb6c6;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Industries Slider Navigation */
.industrySlider {
    position: relative;
    padding: 2rem 0;
}

.industrySlider .swiper-button-prev,
.industrySlider .swiper-button-next {
    width: 48px;
    height: 48px;
    background-color: #11B5F5;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 181, 245, 0.3);
    z-index: 10;
}

.industrySlider .swiper-button-prev:hover,
.industrySlider .swiper-button-next:hover {
    background-color: #0D9FD8;
    box-shadow: 0 6px 16px rgba(17, 181, 245, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.industrySlider .swiper-button-prev:after,
.industrySlider .swiper-button-next:after {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.industrySlider .swiper-button-prev {
    left: 15px;
}

.industrySlider .swiper-button-next {
    right: 15px;
}

.industrySlider .swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* industries */


/* Inner Pages Css Start */

.inner-banner {
    background: url(../images/innerimg.png)center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
}

.inner-banner h2 {
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    margin: 0;
}


.counter-top {
    text-align: center;
    margin: 0 0 3rem 0;
}

.subHead {
    margin: 0 0 1rem 0;
    font-size: 11px;
    font-weight: bold;
    color: #11B5F5;
    text-transform: capitalize;
}

.mainHead {
    font-size: 2.75rem;
    font-weight: 900;
    text-transform: capitalize;
    color: #334155;
}

.mainHead span {
    color: #11B5F5;
}

.counter-main {
    background-color: #0E1525;
    border-radius: 28px;
    text-align: center;
    padding: 2.5rem 0 2.5rem 0;
    box-shadow: 0 28px 72px 0 rgb(14 21 37 / 30%);
    border: 1px solid rgb(17 181 245 / 50%);
}

.counter-main h5 {
    font-size: 54px;
    font-weight: 900;
    color: var(--primary);
}

.counter-main h5 span {
    display: block;
    font-size: 19px;
    font-weight: 400;
    text-transform: capitalize;
    color: #9FA1A8;
    margin: 0.5rem 0 0 0;
}

.counter-sec {
    padding: 0 0 6rem 0;
}


.counter-top {
    text-align: center;
    margin: 0 0 3rem 0;
}

.subHead {
    margin: 0 0 1rem 0;
    font-size: 11px;
    font-weight: bold;
    color: #11B5F5;
    text-transform: capitalize;
}

.mainHead {
    font-size: 2.75rem;
    font-weight: 900;
    text-transform: capitalize;
    color: #334155;
}

.mainHead span {
    color: #11B5F5;
}

.counter-main {
    background-color: #0E1525;
    border-radius: 28px;
    text-align: center;
    padding: 2.5rem 0 2.5rem 0;
    box-shadow: 0 28px 72px 0 rgb(14 21 37 / 30%);
    border: 1px solid rgb(17 181 245 / 50%);
}

.counter-main h5 {
    font-size: 54px;
    font-weight: 900;
    color: var(--primary);
}

.counter-main h5 span {
    display: block;
    font-size: 19px;
    font-weight: 400;
    text-transform: capitalize;
    color: #9FA1A8;
    margin: 0.5rem 0 0 0;
}

.counter-sec {
    padding: 0 0 6rem 0;
}

.services-sec .row+.row {
    padding: 2.75rem 0 0 0;
}

.services-content {
    padding: 0 1rem 0 1rem;
}

.services-content p {
    line-height: 1.7;
    color: #64748B;
    width: 96%;
}

.payment-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: capitalize;
    color: #DDDDDD;
    margin-bottom: 0.5rem;
    font-family: 'Sora';
}

.recruitment-employ {
    background-color: transparent;
}

section.recruitment-process.recruitment-employ .recruitment-process__step-title {
    color: #000;
}

section.recruitment-process.recruitment-employ .recruitment-process__step-desc {
    color: #7F7F7F;
}

section.recruitment-process.recruitment-employ .recruitment-process__circle {
    background-color: #E7F7FE;
}

section.recruitment-process.recruitment-employ .recruitment-process__line {
    background-color: #FF163D;
}

.job-board-wrapper {
    background-color: #F4F7F9;
    min-height: 100vh;
}

.header-subtitle {
    color: #16B3FF;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.header-title {
    color: #1A202C;
    font-size: 26px;
}

.header-title span {
    color: #16B3FF;
}

.search-box {
    max-width: 580px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.search-input {
    box-shadow: none !important;
    height: 46px;
    font-size: 13px;
    font-weight: 600;
    color: #4A5568;
    padding-left: 20px;
}

.search-input::placeholder {
    color: #A0AEC0;
    font-weight: 400;
}

.search-btn {
    background-color: #16B3FF;
    border-color: #16B3FF;
    color: #fff;
    font-size: 13px;
    border-radius: 0;
}

.search-btn:hover {
    background-color: #0FA0E5;
    color: #fff;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #E2E8F0;
    color: #718096;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-btn.active {
    background-color: #E61C33;
    border-color: #E61C33;
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: #EDF2F7;
    color: #2D3748;
}

.job-card {
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.job-title {
    font-size: 25px;
    color: #050505;
}

.meta-item {
    font-size: 1rem;
    font-weight: 400;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
}

.meta-item i {
    margin-right: 6px;
    font-size: 12px;
}

.icon-red {
    color: #E61C33;
}

.icon-brown {
    color: #8B4513;
}

.icon-grey {
    color: #64748B;
}

.icon-dark {
    color: #1A202C;
}

.icon-yellow {
    color: #F59E0B;
}

.icon-green {
    color: #10B981;
}

.job-salary {
    font-size: 22px;
    color: #050505;
}

.job-type {
    font-size: 0.875rem;
    color: #64748B;
    text-transform: capitalize;
    text-align: right;
    font-weight: 400 !important;
}

.btn-apply {
    background-color: #16B3FF;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    padding: 6px 20px;
}

.btn-apply:hover {
    background-color: #0FA0E5;
}

.btn-view-all {
    background-color: #E61C33;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 13px 29px !important;
}

.btn-view-all:hover {
    background-color: #CC162C;
}

@media (max-width: 768px) {
    .job-type {
        text-align: left;
        margin-bottom: 12px;
    }
}

/* Inner Pages Css End */