/* =========================== header start ======================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap');

body {
    font-family: "DM Sans", sans-serif;
}

@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1294px;
    }


}

.myClass {
    overflow: hidden;
}

.main-header {
    background: #fff;
    position: relative;
    transition: 0.3s;
    padding: 0px 20px;
}

.all-same-heading span {
    color: #fdb606;
}

.main-header.scrolled {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 999;
    box-shadow: rgba(59, 59, 59, 0.34) 2px 0px 10px 0px;
    transition: 0.3s;
    animation: goDown 0.5s ease-in-out forwards;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar-brand {
    margin: 0 !important;
    width: 190px;
}

.navbar-brand img {
    object-fit: cover;
    width: 186px;
}

.main-menus ul li {
    margin: 0 12px;
}

.main-menus ul li a {
    color: #000;
    font-weight: regular;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0%;
    /* text-transform: uppercase; */
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;

    width: fit-content;
    font-family: "DM Sans", sans-serif;
}


.main-menus ul li a:hover {
    color: #2563eb;

    /* text-decoration: underline; */

}

.main-menus ul li:hover>a::after {
    width: 100%;
    transition: 0.8s;
}

.main-menus ul li>a::after {
    content: "";
    background-color: #0a88ff;
    display: block;
    height: 2px;
    position: absolute;
    width: 0px;
    left: 0px;
    right: 0px;
    transition: 0.8s;
}

.main-menus ul li a.active::after {
    content: "";
    background-color: #C8102E;
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    transition: 0.8s;
}



.login-bar .all-same-btn {
    background: #0878f9;
}

.call-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fdb606;
    color: #fdb606;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0px 4px 2px 0px #CE927E2E;
    transition: 0.3s ease;
}

.about-dropdown-arrow {
    margin-left: 5px;
    font-size: 8px;
    vertical-align: middle;
}
.main-menus .dropdown-toggle::after {
    display: none;

}

.main-menus .dropdown-menu {
    border-radius: 6px 6px 0 0;
    padding: 10px;
    
}


.main-menus .dropdown-item {
    color: black !important;
    padding: 8px 0;
}



/* main navbar ended */


/* header ended */


/* hero secrtion */

.hero-section {
    position: relative;
    width: 100%;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    PADDING: 60PX 0;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(247, 250, 255, .95) 18%,
            rgba(219, 232, 255, .78) 35%,
            rgba(185, 210, 255, .38) 52%,
            rgba(255, 255, 255, 0) 70%);
}



.hero-overlay::before {

    content: "";

    position: absolute;

    left: -10%;

    top: -15%;

    width: 70%;

    height: 140%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .98),
            rgba(255, 255, 255, .82),
            rgba(214, 230, 255, .28),
            transparent 75%);

    filter: blur(55px);

}



.hero-overlay::after {

    content: "";

    position: absolute;

    left: 18%;

    top: 50%;

    width: 550px;

    height: 550px;

    transform: translateY(-50%);

    background:
        radial-gradient(circle,
            rgba(52, 120, 255, .12),
            transparent 75%);

}

.hero-section .container {
    position: relative;
    z-index: 5;
}



.hero-content {

    max-width: 620px;

    /* padding:80px 0; */

}

.hero-tag {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #2563eb;

}

.hero-content h1 {

    font-size: 68px;

    line-height: 1.08;

    font-weight: 800;

    color: #142f63;

    margin-bottom: 15px;

}

.hero-content h1 span {

    color: #142f63;

}

.hero-content p {

    max-width: 520px;

    font-size: 18px;

    line-height: 1.8;

    color: #000;

    margin-bottom: 15px;

}



.hero-btns {

    display: flex;

    gap: 18px;



}

.all-same-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 15px 40px;
    background: #FDB606;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.all-same-btn-primary:hover {
    background: #FDB606;
    color: #fff;
}

.all-same-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    background: #fff;
    width: max-content;
    padding: 15px 40px;
    font-size: 16px;
}

.all-same-btn-secondary:hover {
    background: #FDB606;
    color: #000;
    border: 2px solid #FDB606;
}



/* service section */

.service-arrow {
    color: #fdb708;
}

.service-section {
    padding: 60px 0;
    background: #f8fbff;
}

.service-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.all-same-subheading {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.all-same-heading {
    margin: 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #17315e;
}



.service-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    transition: .35s;
    box-shadow: 0 12px 40px rgba(18, 43, 92, .08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(37, 99, 235, .18);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: .35s;
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.05);
}

.service-icon i {
    color: #fff;
    font-size: 30px;
}

.service-content h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    color: #17315e;
}

.service-content p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}



.service-btn {
    margin-top: 60px;
}

.service-btn .all-same-btn-primary {

    margin: auto;
}




/* stats section */
.stats-section {

    /* background: linear-gradient(90deg, #0c8fff 0%, #095eda 100%); */
    background: #000;

    padding: 20px 0;

}

.stats-card {

    position: relative;

    text-align: center;

    color: #fff;

    padding: 10px 25px;

}

.stats-card::after {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 75px;

    background: rgba(255, 255, 255, .25);

}

.stats-last::after {

    display: none;

}

.stats-icon {

    margin-bottom: 18px;

}

.stats-icon i {

    font-size: 34px;

    color: #fff;

}

.stats-number {

    margin: 0 0 10px;

    font-size: 35px;

    font-weight: 700;

    color: #fff;

    line-height: 1;

}

.stats-text {

    margin: 0;

    font-size: 18px;

    color: rgba(255, 255, 255, .95);

    font-weight: 500;

}

/* work section */

.work-section {
    padding: 60px 0;
    background: #deeafe6e;
    overflow: hidden;
}

.work-card {
    position: relative;
    text-align: center;
    padding: 20px 15px;
    transition: .35s;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.work-section {
    padding: 60px 0;
    background: #deeafe6e;
    overflow: hidden;
}

.work-card {
    position: relative;
    text-align: center;
    padding: 20px 15px;
    transition: .35s;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}




.work-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;

}

.work-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    /* border: 2px solid #dbe7ff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: .35s;
}

.work-card:hover .work-icon {
    background: #000;
    border-color: #000;
}

.work-icon i {
    font-size: 30px;
    color: #fdb708;
    transition: .35s;
}

.work-card:hover .work-icon i {
    color: #fff;
}


.work-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #17315e;
    margin-bottom: 12px;
}

.work-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 240px;
    margin-inline: auto;
}



.work-arrow {
    position: absolute;
    top: 55px;
    right: -25px;
    width: 55px;
    height: 2px;
    border-top: 2px dashed #cfe0ff;
}

.work-arrow i {
    position: absolute;
    right: -5px;
    top: -11px;
    color: #a8c6ff;
    font-size: 20px;
}







/* job category section */


.job-category-section {
    padding: 60px 0;

}

.job-category-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 22px;

    margin-top: 50px;

}

.job-category-btn .all-same-btn-primary {
    margin: auto;
}

.job-category-card {

    background: #fff;

    border: 1px solid #edf2fb;

    border-radius: 16px;

    padding: 30px 15px;

    text-align: center;

    text-decoration: none;

    transition: .35s;

    box-shadow: 0 8px 25px rgba(16, 54, 126, .06);

}

.job-category-card:hover {

    transform: translateY(-8px);

    border-color: #000;

    box-shadow: 0 20px 45px rgba(12, 143, 255, .18);

}


.job-category-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #f3f7ff;

    display: flex;

    align-items: center;

    justify-content: center;

}

.job-category-icon i {
    font-size: 24px;
    color: #fdb606;
}

.job-category-card h3 {

    margin: 0;

    font-size: 17px;

    line-height: 1.5;

    font-weight: 600;

    color: #16315e;

}

.job-category-btn {

    margin-top: 45px;

}


/* why choose us  */
.why-section .why-card {

    margin: 0 auto;
    background: #eef3fb;

    padding: 60px 70px;
}



.why-section .all-same-heading p {
    margin: 0;
    color: #17315e;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
}

.why-left {
    padding-right: 60px;
}

.why-right {
    position: relative;
    padding-left: 60px;
}

/* Vertical Divider */
.why-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #d9e2f5;
}



.why-list {
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    color: #fdb606;
    font-size: 19px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: .35s;
}

.why-list li:hover i {
    transform: scale(1.15);
}

.why-list li span {
    color: #17315e;
    font-size: 16px;
    line-height: 1.7;
}

.why-btn {
    display: inline-block;
    background: #0c8fff;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: .25s;
}

.why-btn:hover {
    background: #0a75d6;
    color: #fff;
}



.testimonial-slider {
    margin-top: 6px;
}

.testimonial-viewport {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    box-sizing: border-box;
}

.testimonial-quote i {
    font-size: 34px;
    color: #fdb708;
    opacity: .9;
}

.testimonial-text {
    margin: 18px 0 0;
    color: #17315e;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-user-img img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    transition: .35s;
}

.testimonial-user:hover img {
    transform: scale(1.08);
}

.testimonial-user-info h4 {
    margin: 0;
    color: #17315e;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-user-info span {
    display: block;
    margin-top: 3px;
    color: #666;
    font-size: 14px;
}



.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 26px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9e2f5;
    cursor: pointer;
    transition: .3s;
}

.testimonial-dot.is-active {
    background: #000;
    width: 22px;
    border-radius: 5px;
}

/* cta section */

.cta-section {
    padding-bottom: 80px;
    margin-top: -30px;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 32px;
    background: #fdb606;
    border-radius: 28px;
    overflow: hidden;
    padding: 0px 37px;
    position: relative;
}

.cta-btns .all-same-btn-secondary {
    border: none !important;
}

.cta-content h2 {

    color: #000;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 10px;

    line-height: 1.2;

}

.cta-content p {

    color: #000;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 10px;

    max-width: 620px;

}



.cta-btns {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}









.cta-image {

    text-align: right;

}

.cta-image img {

    max-width: 100%;

    height: auto;

    display: block;

    margin-left: auto;

}

/* footer css */

.footer-section {
    background: #000;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 220px;
    display: block;
}

.footer-about p {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/*=========================================
SOCIAL
=========================================*/

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.footer-social a:hover {
    background: #0c8fff;
    border-color: #0c8fff;
    transform: translateY(-4px);
}

/*=========================================WIDGET========================================*/

.footer-widget {
    position: relative;
    padding-left: 35px;
}

.footer-widget::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 1px;
    height: 150px;
    background: rgba(255, 255, 255, .12);
}

.footer-widget h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 16px;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a,
.footer-widget ul li span {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #0c8fff;
    /* padding-left: 5px; */
}

/*=========================================CONTACT========================================*/

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact ul li i {
    color: #fff;
    font-size: 18px;
    width: 20px;
    margin-top: 6px;
}

/*========================================BOTTOM=========================================*/

.footer-bottom {
    margin-top: 70px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-bottom-links a:hover {
    color: #0c8fff;
}






.about-hero {
    position: relative;
    width: 100%;
    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;



    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}



.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 620px;

    padding: 70px 0;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 24px;

    font-size: 13px;
}

.about-breadcrumb a {
    color: #168fff;
    text-decoration: none;
}

.about-breadcrumb span {
    color: #fff;
}

.about-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 56px;
    line-height: 1.1;

    font-weight: 700;
}

.about-hero-line {
    display: block;

    width: 45px;
    height: 3px;

    margin: 20px 0 25px;

    background: #0c8fff;
}

.about-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, .88);

    font-size: 17px;
    line-height: 1.8;
}

/* about story section */
.story-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}



.story-content {
    max-width: 550px;
}

.story-content .all-same-heading {
    text-align: left;
}

.story-content .all-same-subheading {
    color: #FDB707;
}

.story-content .all-same-heading p {
    color: #10213f;
    margin-top: 12px;
}

.story-line {
    display: block;

    width: 42px;
    height: 3px;

    margin: 20px 0 25px;

    background: #FDB707;
}

.story-text {
    max-width: 520px;
}

.story-text p {
    margin: 0 0 22px;

    color: #555;

    font-size: 16px;
    line-height: 1.75;
}

.story-text p:last-child {
    margin-bottom: 30px;
}




.story-content .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 28px;

    background: #FDB707;
    color: #151515;

    border: 2px solid #FDB707;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.story-content .primary-btn:hover {
    background: #fff;
    color: #151515;

    border-color: #FDB707;

    transform: translateY(-2px);
}




.story-image-wrap {
    position: relative;

    width: 100%;
    max-width: 560px;

    margin-left: auto;

    padding: 25px 20px 25px 0;
}

.story-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 22px;

    z-index: 2;
}

.story-image img {
    display: block;

    width: 100%;
    height: 330px;

    object-fit: cover;

    border-radius: 22px;

    transition: .4s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}




.story-corner {
    position: absolute;

    top: 0;
    right: 0;

    width: 105px;
    height: 105px;

    border-top: 10px solid #FDB707;
    border-right: 10px solid #FDB707;

    border-radius: 0 55px 0 0;

    z-index: 3;

    pointer-events: none;
}




.story-dots {
    position: absolute;

    width: 105px;
    height: 85px;

    background-image: radial-gradient(#FDB707 1.5px,
            transparent 1.5px);

    background-size: 9px 9px;

    opacity: .7;

    z-index: 1;
}

.story-dots-top {
    top: 0;
    right: 205px;
}

.story-dots-bottom {
    bottom: 0;
    left: -30px;
}

/* about mision */
.mission-section {
    width: 100%;
    padding: 60px 0;
    background: #f7f7f7ba;
    overflow: hidden;
}



.mission-intro {
    /* max-width: 850px; */
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    gap: 38px;
    margin-bottom: 40px;
}


.mission-main-icon {
    width: 138px;
    height: 138px;

    flex: 0 0 138px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f8fd;

    overflow: hidden;
}

.mission-main-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}





.mission-main-content {
    flex: 1;
    min-width: 0;
}

.mission-main-content .all-same-heading {
    text-align: left;
}

.mission-main-content .all-same-subheading {
    margin-bottom: 5px;
}

.mission-main-content .all-same-heading h2,
.mission-main-content .all-same-heading {
    color: #102d5c;
}

.mission-main-content .all-same-heading span {
    color: #FDB707;
}

.mission-description {
    max-width: 75%;
    margin: 6px 0 0;
    color: #555;
    font-size: 16px;
    line-height: 1.55;
}


.mission-values {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;
}



.mission-value {
    min-height: 125px;

    padding: 0 25px;

    text-align: center;

    border-right: 1px solid #dce5f0;
}

.mission-value:first-child {
    padding-left: 10px;
}

.mission-value:last-child {
    padding-right: 10px;

    border-right: 0;
}




.mission-value-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FDB707;

    color: #103d7f;

    font-size: 22px;
}




.mission-value h4 {
    margin: 0 0 7px;

    color: #102d5c;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;
}




.mission-value p {
    /* max-width: 175px; */
    margin: 0 auto;
    color: #555;
    font-size: 10px;
    line-height: 1.55;
    /* margin: 0 0 22px; */
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

/* our value section about */

.values-section {
    padding: 60px 0;
    background: #fff;
}


.values-section .all-same-heading {
    margin-bottom: 30px;
}

.values-section .all-same-heading span {
    color: #FDB707;
}




.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}




.value-card {
    min-height: 210px;

    padding: 20px 25px;

    background: #fff;

    border: 1px solid #e9edf3;

    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(16, 45, 92, .08);

    text-align: center;

    transition: all .3s ease;
}

.value-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 22px rgba(16, 45, 92, .12);
}




.value-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #FDB707;
    color: #102d5c;

    font-size: 22px;

    transition: .3s ease;
}

.value-card:hover .value-icon {
    background: #FDB707;
    color: #102d5c;
}




.value-card h3 {
    margin: 0 0 8px;

    color: #102d5c;

    font-size: 16px;

    font-weight: 700;
}




.value-card p {
    /* max-width: 190px; */
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}


/* candidate page css */
.candidate-benefits-section {
    padding: 60px 0;
    background: #fff;
}




.candidate-benefits-section .all-same-heading {
    margin-bottom: 55px;
}

.candidate-benefits-section .all-same-heading span {
    color: #ffb000;
}




.candidate-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    align-items: start;
}




.candidate-benefit-card {
    text-align: center;
    padding: 0 10px;
}




.candidate-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f6ff;
    border: 2px solid #dbe8ff;
    color: #102D5C;
    font-size: 25px;
    box-shadow: 0 3px 8px rgba(25, 80, 160, .08);
    transition: .3s ease;
}

.candidate-benefit-card:hover .candidate-benefit-icon {
    background: #FFB000;
    color: #102D5C;
    transform: translateY(-5px);
}



.candidate-benefit-card h3 {
    margin: 0 0 22px;
    /* min-height: 58px; */
    color: #173665;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 7px;
    color: #102d5c;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}




.candidate-benefit-card p {
    max-width: 245px;

    margin: 0 auto;

    color: #7b8494;

    font-size: 16px;

    line-height: 1.7;
}

/* how aisectino  */

/* HOW IT WORKS */
.how-it-works-section {
    background: #f1f5fd;
    padding: 60px 0;
}

.how-it-works-section .all-same-heading {
    margin-bottom: 55px;
}





.how-it-works-section h2.all-same-heading span {
    color: #ffb20b;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.how-it-works-card {
    /* min-height: 410px; */
    padding: 33px;
    background: #fff;
    border-radius: 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works-icon-wrap {
    position: relative;
    width: 125px;
    height: 125px;
    margin-bottom: 10px;
}

.how-it-works-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-icon i {
    color: #17315e;
    font-size: 30px;
}


.how-it-works-number {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #17315e;
    color: #fff;
    font-size: 17px;
    line-height: 42px;
    font-weight: 600;
    border: 4px solid #fff;
}

.how-it-works-card h3 {
    margin: 0 0 10px;
    color: #17396d;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.how-it-works-card p {
    /* max-width: 280px; */
    margin: 0;
    color: #7b8495;
    font-size: 16px;
    line-height: 1.45;
}

/* jo categorue */

.ai-job-categories {
    padding: 60px 0;
    background: #fff;
}

.job-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 164px);
    justify-content: center;
    gap: 25px;
    width: 100%;
}


/* CARD */

.job-category-card {
    width: 164px;
    height: 225px;

    border: 1px solid #dce2ea;
    border-radius: 23px;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    text-decoration: none;

    padding: 27px 12px 20px;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* ICON AREA */

.job-category-icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}

.job-category-icon i {
    font-size: 30px;
    line-height: 1;
    color: #102d5c;
}


/* CARD TITLE
   Fixed height keeps every card aligned
*/

.job-category-card h3 {
    width: 100%;
    min-height: 56px;
    height: 56px;

    /* display: flex; */
    align-items: center;
    justify-content: center;

    margin: 0;

    color: #193866;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;

    text-align: center;
}


/* JOB COUNT */

.job-category-card p {
    width: 100%;

    margin: 8px 0 0;

    color: #9da6b4;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;

    text-align: center;
}

.job-catgories-btn {

    margin-top: 60px;

}

.job-catgories-btn .all-same-btn-primary {
    margin: auto;

}

/* HOVER */

.job-category-card:hover {
    transform: translateY(-3px);
    border-color: #dce2ea;
    box-shadow: 0 8px 22px rgba(25, 56, 102, 0.07);
}

.job-category-card:hover .job-category-icon i {
    color: #2864e6;
}

/* what we offer section serice  */

.offer-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}



.offer-heading {
    max-width: 900px;
    margin: 0 auto 35px;
}

.offer-heading .all-same-subheading {
    margin-bottom: 16px;
}

.offer-heading .all-same-heading {
    margin: 0;
}



.offer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}




.offer-card {
    grid-column: span 2;

    min-height: 355px;
    padding: 36px;

    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 18px;

    box-shadow: 0 4px 14px rgba(16, 45, 92, 0.07);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}




.offer-card:nth-child(7) {
    grid-column: 2 / 4;
}

.offer-card:nth-child(8) {
    grid-column: 4 / 6;
}


.offer-card:hover {
    transform: translateY(-6px);

    border-color: #dce4ef;

    box-shadow: 0 14px 30px rgba(16, 45, 92, 0.11);
}




.offer-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 28px;

    border-radius: 50%;

    background: #fff7e9;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.offer-icon i {
    color: #fdb606;
    font-size: 26px;
}



.offer-content {
    flex: 1;
}

.offer-content h3 {
    margin: 0 0 12px;

    color: #17315e;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 700;
}

.offer-content p {
    max-width: 245px;

    margin: 0;

    color: #626b78;

    font-size: 16px;
    line-height: 1.48;
}




.offer-learn-more {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    width: fit-content;

    margin-top: 26px;
    padding-bottom: 7px;

    color: #102d5c;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;
}

.offer-learn-more::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #b8b8b8;

    transition: .3s;
}

.offer-learn-more i {
    font-size: 16px;

    transition: transform .3s ease;
}

.offer-learn-more:hover {
    color: #fdb606;
}

.offer-learn-more:hover::after {
    background: #fdb606;
}

.offer-learn-more:hover i {
    transform: translateX(5px);
}

/* proess secton  */
.process-section {
    padding: 60px 0;
    background: #f3f7ff;
}

.process-heading {
    margin-bottom: 90px;
}

.process-heading .all-same-subheading {
    margin-bottom: 15px;
}

.process-heading .all-same-heading {
    margin: 0;
}



.process-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.process-step {
    position: relative;
    min-width: 0;
    text-align: center;
}




.process-step:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 64px;
    left: calc(50% + 64px);
    width: calc(100% - 128px);

    border-top: 3px dashed #b9d5ff;
}




.process-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 38px;

    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 10px rgba(16, 45, 92, .08);

    position: relative;
    z-index: 1;
}

.process-icon i {
    color: #17315e;
    font-size: 30px;
}




.process-number {
    margin-bottom: 20px;

    color: #17315e;

    font-size: 23px;
    line-height: 1;
    font-weight: 600;
}



.process-step h3 {
    margin: 0 0 14px;

    color: #17315e;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.process-step p {
    max-width: 235px;

    margin: 0 auto;

    color: #626b78;

    font-size: 16px;
    line-height: 1.48;
}

/* contact page */

.contact-section {
    padding: 60px 0;
    background: #f8faff;
    overflow: hidden;
}




.contact-heading {
    max-width: 900px;
    margin: 0 auto 75px;
}

.contact-heading .all-same-subheading {
    margin-bottom: 16px;
}

.contact-heading .all-same-heading {
    margin: 0;
}

.contact-heading .all-same-heading span {
    color: #fdb606;
}




.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.08fr;
    gap: 30px;
    align-items: stretch;
}




.contact-form-box,
.contact-info-box {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(16, 45, 92, 0.07);
}




.contact-form-box {
    padding: 40px 38px 45px;
}

.contact-form-box h3,
.contact-info-box h3 {
    margin: 0;
    color: #17315e;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-form-intro {
    margin: 8px 0 30px;
    color: #626b78;
    font-size: 15px;
    line-height: 1.5;
}




.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-field {
    width: 100%;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dfe4eb;
    border-radius: 7px;
    background: #fff;
    color: #17315e;
    font-family: inherit;
    font-size: 15px;
    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-field input {
    height: 46px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 162px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a2acbd;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #fdb606;
    box-shadow: 0 0 0 3px rgba(253, 182, 6, 0.10);
}



.contact-message-field {
    margin-bottom: 22px;
}



.contact-submit-btn {
    width: 186px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: #fdb606;
    color: #102d5c;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 5px 12px rgba(16, 45, 92, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    background: #f5ad00;
    box-shadow: 0 10px 20px rgba(16, 45, 92, 0.15);
}

.contact-submit-btn i {
    font-size: 13px;
}



.contact-info-box {
    padding: 40px 36px;
}

.contact-info-box h3 {
    margin-bottom: 36px;
}



.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff7e9;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    color: #fdb606;
    font-size: 15px;
}

.contact-info-content {
    padding-top: 2px;
}

.contact-info-content h4 {
    margin: 0 0 5px;
    color: #17315e;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-info-content p {
    margin: 0 0 4px;
    color: #4f5c70;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.contact-info-content span {
    display: block;
    color: #9aa4b4;
    font-size: 13px;
    line-height: 1.5;
}



.contact-social {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #edf0f4;
}

.contact-social .contact-info-item {
    margin-bottom: 0px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 59px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #202d42;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 13px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fdb606;
    color: #17315e;
}


/* employer page css */

.employer-benefits-section {
    padding: 60px 0;
    background: #F8FBFF;
}




.employer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 50px;
    margin-top: 40px;
}



.employer-benefit-item {
    position: relative;
    text-align: center;
    padding: 0 15px;
}

.employer-benefit-item:nth-child(1),
.employer-benefit-item:nth-child(2),
.employer-benefit-item:nth-child(3) {
    grid-column: span 2;
}


.employer-benefit-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.employer-benefit-item:nth-child(5) {
    grid-column: 4 / span 2;
}




.employer-benefit-item:nth-child(1)::after,
.employer-benefit-item:nth-child(2)::after {
    content: "";

    position: absolute;
    top: 5px;
    right: -20px;

    width: 1px;
    height: 105px;

    background: #e4e8ef;
}




.employer-benefit-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;
    color: #2867e8;

    font-size: 21px;
    line-height: 1;
}



.employer-benefit-item:nth-child(2) .employer-benefit-icon {
    background: #eaf9f1;
    color: #31b878;
}



.employer-benefit-item:nth-child(3) .employer-benefit-icon {
    background: #f1edff;
    color: #7559d9;
}




.employer-benefit-item:nth-child(4) .employer-benefit-icon {
    background: #fff4e8;
    color: #ffae00;
}




.employer-benefit-item:nth-child(5) .employer-benefit-icon {
    background: #edf4ff;
    color: #2867e8;
}




.employer-benefit-item h3 {
    margin: 0 0 9px;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;

    color: #132f61;
}



.employer-benefit-item p {
    max-width: 220px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;

    color: #6f7785;
}

/* hiring process */

.hiring-process-section {
    padding: 60px 0;
    background: #fff;
}




.hiring-process-heading {
    max-width: 900px;
    margin: 0 auto 35px;
}

.hiring-process-heading .all-same-subheading {
    margin-bottom: 15px;
}

.hiring-process-heading .all-same-heading {
    margin: 0;
}




.hiring-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}




.hiring-process-item {
    position: relative;

    text-align: center;

    min-width: 0;
}




.hiring-process-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 40px;
    left: calc(100% + 10px);

    width: 50px;

    border-top: 2px dotted #7eabf5;
}


/* Arrow */

.hiring-process-item:not(:last-child)::before {
    content: "";

    position: absolute;

    top: 36px;
    left: calc(100% + 57px);

    border-left: 5px solid #17315e;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}




.hiring-process-icon {
    position: relative;

    width: 80px;
    height: 80px;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17315e;

    box-shadow: 0 3px 10px rgba(16, 45, 92, 0.08);
}

.hiring-process-icon i {
    font-size: 30px;
}




.hiring-process-number {
    position: absolute;

    top: -3px;
    left: -8px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #17315e;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;

    border: 2px solid #fff;
}




.hiring-process-content {
    max-width: 235px;
    margin: 0 auto;
}

.hiring-process-content h3 {
    margin: 0 0 10px;

    color: #17315e;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;
}

.hiring-process-content p {
    margin: 0;

    color: #626b78;

    font-size: 16px;
    line-height: 1.48;

    font-weight: 400;
}

/* industry section  */

.industry-section {
    padding: 60px 0;
    background: #fff;
}

.industry-heading {
    margin-bottom: 35px;
}

.industry-heading .all-same-subheading {
    margin-bottom: 10px;
}

.industry-heading .all-same-heading {
    margin: 0;
}




.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}




.industry-card {
    min-height: 175px;
    padding: 20px 15px;

    text-align: center;

    border: 1px solid #e5eaf2;
    border-radius: 7px;

    background: #fff;

    box-shadow: 0 3px 10px rgba(16, 45, 92, 0.04);
}

.industry-icon {
    width: 45px;
    height: 45px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4ff;
    color: #17315e;

    font-size: 21px;
}

.industry-card:nth-child(2) .industry-icon {
    background: #eaf9f1;
    color: #20b66b;
}

.industry-card:nth-child(3) .industry-icon {
    background: #f1edff;
    color: #7355dc;
}

.industry-card:nth-child(4) .industry-icon {
    background: #fff4e8;
    color: #ff8a00;
}

.industry-card:nth-child(5) .industry-icon {
    background: #edf4ff;
    color: #17315e;
}

.industry-card:nth-child(6) .industry-icon {
    background: #eafafa;
    color: #20b9b9;
}

.industry-card h3 {
    margin: 0 0 9px;

    color: #17315e;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.industry-card p {
    margin: 0;

    color: #626b78;

    font-size: 16px;
    line-height: 1.7;
}




.industry-btn {
    margin-top: 22px;
}









/* SHIVANSH ai talent page css  */
.all-same-text {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}



.ai-talent-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    gap: 16px;

    margin-top: 30px;
}

/* .ai-talent-hero-buttons .all-same-btn-primary,
.ai-talent-hero-buttons .all-same-btn-secondary {
    width: auto;

    min-width: 0;

    padding: 0 24px;

    gap: 10px;
} */

.ai-talent-hero-buttons .all-same-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .6);
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.ai-talent-hero-buttons .all-same-btn-secondary:hover {
    border-color: #fff;

    background: #fff;

    color: #061d43;
}




.ai-intro-section {
    padding: 85px 0;

    background: #fff;
}

.ai-intro-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.ai-intro-image {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 18px 45px rgba(16, 45, 92, .13);
}

.ai-intro-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

.ai-intro-content {
    max-width: 800px;
}

.ai-intro-content .all-same-subheading {
    display: inline-block;

    margin-bottom: 18px;
}

.ai-intro-content .all-same-heading {
    margin-bottom: 25px;
}

.ai-intro-content .all-same-text {
    margin-bottom: 18px;
}

.ai-intro-content .all-same-text:last-child {
    margin-bottom: 0;
}




.ai-roles-section {
    padding: 60px 0;

    background: #f8fbff;
}

.ai-roles-section .service-heading {
    max-width: 800px;

    margin-bottom: 55px;
}

.ai-roles-section .service-heading .all-same-text {
    margin-top: 18px;
}

.ai-roles-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.ai-role-card {
    position: relative;

    min-height: 380px;

    padding: 34px;

    background: #fff;

    border: 1px solid #e7edf5;

    border-radius: 18px;

    box-shadow: 0 8px 28px rgba(16, 45, 92, .07);

    overflow: hidden;

    transition: .35s ease;
}

.ai-role-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(16, 45, 92, .13);

    border-color: #fdb606;
}

.ai-role-number {
    position: absolute;

    top: 22px;
    right: 28px;

    color: #e9edf3;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;
}

.ai-role-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 28px;

    border-radius: 50%;

    background: #fff7e8;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-role-icon i {
    color: #fdb606;

    font-size: 27px;
}

.ai-role-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #17315e;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 700;
}

.ai-role-card>.all-same-text {
    margin-bottom: 22px;

    color: #626b78;
}

.ai-role-details {
    display: flex;
    flex-direction: column;

    gap: 5px;

    padding-top: 18px;

    border-top: 1px solid #edf1f6;
}

.ai-role-details strong {
    margin-top: 5px;

    color: #17315e;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.ai-role-details span {
    color: #666;

    font-size: 14px;

    line-height: 1.55;
}

.ai-common-btn {
    display: flex;

    justify-content: center;

    margin-top: 48px;
}

/* .ai-common-btn .all-same-btn-primary {
    width: auto;

    min-width: 230px;

    padding: 0 28px;

    gap: 12px;
} */



.ai-expertise-section {
    padding: 60px 0;

    background: #fff;
}

.ai-expertise-header {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}

.ai-expertise-header .all-same-text {
    max-width: 530px;

    margin-left: auto;
}

.ai-expertise-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.ai-expertise-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 24px;

    border: 1px solid #e8edf4;

    border-radius: 14px;

    background: #f5f8fc;

    transition: .3s ease;
}

.ai-expertise-item:hover {
    transform: translateY(-5px);

    border-color: #fdb606;

    box-shadow: 0 12px 30px rgba(16, 45, 92, .08);
}

.ai-expertise-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #fdb606;

    font-size: 20px;
}

.ai-expertise-item h3 {
    margin: 2px 0 7px;

    color: #17315e;

    font-size: 17px;

    font-weight: 700;
}

.ai-expertise-item .all-same-text {
    font-size: 14px;

    line-height: 1.55;
}




.ai-why-section {
    padding: 60px 0;

    background: #f5f8fc;
}

.ai-why-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    padding: 60px;

    background: #fff;

    border-radius: 24px;

    box-shadow: 0 10px 35px rgba(16, 45, 92, .07);
}

.ai-why-content {
    padding-right: 40px;
}

.ai-why-content .all-same-heading {
    margin-bottom: 20px;
}

.ai-why-content .all-same-text {
    max-width: 520px;
}

.ai-why-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.ai-why-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}

.ai-why-check {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 50%;

    background: #fdb606;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 15px;
}

.ai-why-item h3 {
    margin: 0 0 5px;

    color: #17315e;

    font-size: 18px;

    font-weight: 700;
}

.ai-why-item .all-same-text {
    font-size: 15px;

    line-height: 1.6;
}




.ai-process-section {
    padding: 60px 0;

    background: #fff;
}

.ai-process-section .service-heading {
    max-width: 850px;

    margin-bottom: 60px;
}

.ai-process-section .service-heading .all-same-text {
    margin-top: 18px;
}

.ai-process-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.ai-process-item {
    position: relative;

    text-align: center;

    padding: 20px 15px;
}


.ai-process-icon {
    position: relative;

    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #fdb606;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 24px;
}

.ai-process-item h3 {
    margin: 0 0 10px;

    color: #17315e;

    font-size: 18px;

    font-weight: 700;
}

.ai-process-item .all-same-text {
    font-size: 14px;

    line-height: 1.6;
}




.ai-hiring-section {
    padding: 80px 0;

    background: #f8fbff;
}

.ai-hiring-section .service-heading {
    margin-bottom: 50px;
}

.ai-hiring-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.ai-hiring-card {
    padding: 32px;

    background: #fff;

    border: 1px solid #e7edf5;

    border-radius: 16px;

    transition: .3s ease;
}

.ai-hiring-card:hover {
    transform: translateY(-6px);

    border-color: #fdb606;

    box-shadow: 0 15px 35px rgba(16, 45, 92, .09);
}

.ai-hiring-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    border-radius: 12px;

    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 21px;
}

.ai-hiring-card h3 {
    margin: 0 0 8px;

    color: #17315e;

    font-size: 20px;

    font-weight: 700;
}

.ai-hiring-card .all-same-text {
    font-size: 15px;
}



.ai-faq-section {
    padding: 60px 0;

    background: #fff;
}

.ai-faq-section .service-heading {
    margin-bottom: 45px;
}

.ai-faq-wrapper {
    max-width: 900px;

    margin: auto;
}

.ai-faq-item {
    border-bottom: 1px solid #e2e7ee;
}

.ai-faq-item:first-child {
    border-top: 1px solid #e2e7ee;
}

.ai-faq-item summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 5px;

    color: #17315e;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.ai-faq-item summary::-webkit-details-marker {
    display: none;
}

.ai-faq-item summary i {
    color: #fdb606;

    font-size: 15px;

    transition: .3s ease;
}

.ai-faq-item[open] summary i {
    transform: rotate(45deg);
}

.ai-faq-answer {
    padding: 0 45px 25px 5px;
}

.ai-faq-answer .all-same-text {
    color: #666;

    font-size: 16px;
}

/* resources section */
.resources-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}




.resources-heading {
    max-width: 900px;
    margin: 0 auto 50px;
}

.resources-heading .all-same-heading {
    margin: 0 0 15px;
}

.resources-heading p {
    max-width: 850px;
    margin: 0 auto;
    color: #626b78;
    font-size: 16px;
    line-height: 1.5;
}




.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}




.resource-card {
    min-height: 285px;
    padding: 20px;

    background: #fff;
    border: 1px solid #e4e8ef;
    border-radius: 8px;

    box-shadow: 0 3px 10px rgba(16, 45, 92, 0.05);
}




.resource-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.resource-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    border-radius: 50%;
    background: #eef4ff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #102D5C;
    font-size: 19px;
}

.resource-card h3 {
    margin: 0;
    color: #17315e;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}




.resource-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.resource-card li {
    position: relative;

    padding-left: 17px;
    margin-bottom: 15px;

    color: #626b78;
    font-size: 16px;
    line-height: 1.45;
}

.resource-card li:last-child {
    margin-bottom: 0;
}

.resource-card li::before {
    content: "›";

    position: absolute;
    left: 0;
    top: -1px;

    color: #102D5C;
    font-size: 22px;
    line-height: 1;
}




.resources-btn {
    margin-top: 35px;
    justify-content: center;
    display: flex;
}



/* fetaures section resoruvces */
.featured-resources-section {
    padding: 70px 0;
    background: #fff;
}




.featured-resources-heading {
    max-width: 850px;
    margin: 0 auto 45px;
}

.featured-resources-heading .all-same-subheading {
    margin-bottom: 12px;
}

.featured-resources-heading .all-same-heading {
    margin: 0 0 15px;
}

.featured-resources-heading p {
    max-width: 700px;
    margin: 0 auto;

    color: #626b78;
    font-size: 16px;
    line-height: 1.6;
}




.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}




.featured-resource-card {
    position: relative;

    min-height: 325px;
    padding: 28px;

    background: #fff;

    border: 1px solid #e4e9f2;
    border-radius: 16px;

    box-shadow: 0 5px 18px rgba(16, 45, 92, 0.06);

    display: flex;
    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.featured-resource-card:hover {
    transform: translateY(-6px);

    border-color: #cfdcff;

    box-shadow: 0 15px 35px rgba(40, 100, 232, 0.11);
}

.featured-resource-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.featured-resource-meta span {
    color: #626b78;
    font-size: 13px;
    line-height: 1.45;
}

.featured-resource-meta strong {
    color: #17315e;
    font-weight: 600;
}


.featured-resource-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}




.featured-resource-icon {
    width: 58px;
    height: 58px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;
    color: #102D5C;

    font-size: 23px;

    transition: .3s ease;
}

.featured-resource-card:hover .featured-resource-icon {
    background: #102D5C;
    color: #fff;
}




.featured-resource-tag {
    padding: 6px 11px;

    border-radius: 30px;

    background: #f1edff;
    color: #7559d9;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: .3px;
}




.featured-resource-content {
    flex: 1;
}

.featured-resource-content h3 {
    margin: 0 0 12px;

    color: #17315e;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 700;
}

.featured-resource-content p {
    margin: 0;

    color: #626b78;

    font-size: 15px;
    line-height: 1.6;
}



.featured-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: 24px;

    color: #102D5C;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.featured-resource-link i {
    transition: transform .3s ease;
}

.featured-resource-link:hover {
    color: #fdb606;
}

.featured-resource-link:hover i {
    transform: translateX(5px);
}



.featured-resources-button {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

/* .featured-resources-button .all-same-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
} */



/* resources format  */
.resource-format-section {
    padding: 70px 0;
    background: #fff;
}

.resource-format-box {
    display: flex;
    align-items: center;
    gap: 55px;

    padding: 24px 30px;

    background: #fff;
    border: 1px solid #dfe6f2;
    border-radius: 14px;

    box-shadow: 0 4px 16px rgba(16, 45, 92, 0.06);
}


/* =========================================
   LEFT CONTENT
========================================= */

.resource-format-info {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 28px;
}

.resource-format-icon {
    width: 82px;
    height: 82px;

    flex: 0 0 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4ff;
    border: 1px solid #cbdcff;

    color: #102d5c;

    font-size: 32px;
}

.resource-format-text {
    max-width: 390px;
}

.resource-format-text h3 {
    margin: 0 0 8px;

    color: #17315e;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.resource-format-text p {
    margin: 0;

    color: #626b78;

    font-size: 15px;
    line-height: 1.5;
}



.resource-format-list {
    flex: 1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.resource-format-item {
    min-height: 52px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px 12px;

    background: #f7f9ff;
    border: 1px solid #e6ebf5;
    border-radius: 7px;

    color: #17315e;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s ease;
}

.resource-format-item:hover {
    border-color: #102d5c;
    background: #eef4ff;
    color: #102d5c;
}

.resource-format-item-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #fff;
    border: 1px solid #e1e8f5;

    color: #102d5c;

    font-size: 14px;
}



/* hiring tools  */

.hiring-tools-section {
    padding: 70px 0;
    background: #fff;
}

.hiring-tools-heading {
    margin-bottom: 45px;
}

.hiring-tools-heading .all-same-subheading {
    margin-bottom: 14px;
}

.hiring-tools-heading .all-same-heading {
    margin: 0;
}




.hiring-tools-grid {
    row-gap: 24px;
}




.hiring-tool-card {
    height: 100%;
    min-height: 345px;
    padding: 28px 26px 24px;

    display: flex;
    flex-direction: column;

    background: #fff;
    border: 1px solid #e4e9f2;
    border-radius: 16px;

    box-shadow: 0 5px 18px rgba(16, 45, 92, .06);

    transition: .3s ease;
}

.hiring-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(16, 45, 92, .10);
}




.hiring-tool-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef4ff;

    color: #102d5c;
    font-size: 23px;
}




.hiring-tool-card h3 {
    margin: 0 0 11px;

    color: #17315e;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.hiring-tool-card p {
    margin: 0;

    color: #626b78;
    font-size: 15px;
    line-height: 1.55;
}




.tool-get {
    margin-top: 18px;

    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 25px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.5;
}

.tool-get strong {
    color: #17315e;
}




.tool-btn {
    width: 100%;
    margin-top: auto;
    padding: 13px 15px;

    text-align: center;
    text-decoration: none;

    font-size: 14px;
}





/* faq section */

.faq-section {
    padding: 70px 0px;
    background: #fff;
}

.faq-heading {
    margin-bottom: 35px;
}

.faq-heading .all-same-subheading {
    margin-bottom: 10px;
}

.faq-heading .all-same-heading {
    margin-bottom: 0;
}

.faq-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(23, 49, 94, 0.05);
}

.faq-accordion .accordion-button {
    min-height: 56px;
    padding: 16px 20px;
    background: #fff;
    color: #17315e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: none;
    justify-content: space-between;
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    margin-left: 20px;
    background-size: 9px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #17315e;
    background: #fff;
}

.faq-accordion .accordion-body {
    padding: 0 20px 18px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.6;
}



/* industry page css SHIVANSH  */
.all-same-text {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.75;
}



.industry-intro-section {
    padding: 60px 0;
    background: #fff;
}

.industry-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.industry-intro-heading {
    max-width: 520px;
}

.industry-intro-heading .all-same-heading {
    text-align: left;
}

.industry-intro-heading .all-same-heading span {
    color: #fdb606;
}

.industry-intro-content {
    padding-left: 55px;
    border-left: 1px solid #dce5f0;
}

.industry-intro-content .all-same-text {
    margin-bottom: 22px;
}

.industry-intro-content .all-same-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading-center {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading-center .all-same-subheading {
    margin-bottom: 12px;
}

.section-heading-center .all-same-heading span {
    color: #fdb606;
}

.section-heading-center .all-same-text {
    max-width: 680px;
    margin: 18px auto 0;
}


/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section {
    padding: 60px 0;
    background: #f8fbff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.industry-card {
    position: relative;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(18, 43, 92, .06);
    transition: .35s ease;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    /* background: ; */
    transition: .35s ease;
}

.industry-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(18, 43, 92, .12);
    border-color: #d9e5f5;
}

.industry-card:hover::before {
    height: 100%;
}

.industry-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.industry-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff7e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.industry-card:hover .industry-icon {
    background: #fdb606;
    transform: scale(1.06);
}

.industry-icon i {
    color: #fdb606;
    font-size: 27px;
    transition: .35s ease;
}

.industry-card:hover .industry-icon i {
    color: #17315e;
}

.industry-number {
    color: #dbe4f1;
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

.industry-card h3 {
    margin: 0 0 14px;
    color: #17315e;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
}

.industry-card>.all-same-text {
    margin-bottom: 28px;
}

.industry-info {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #edf1f6;
}

.industry-info h4 {
    margin: 0 0 12px;
    color: #17315e;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.industry-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    gap: 9px 20px;
}

.industry-info ul li {
    position: relative;
    padding-left: 17px;
    text-align: left;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.industry-info ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fdb606;
}

.industry-domain {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f7f9fc;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.industry-domain strong {
    color: #17315e;
}


/* =========================================================
   FEATURED INDUSTRY
========================================================= */

.featured-industry-section {
    padding: 60px 0;
    background: #fff;
}

.featured-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.featured-industry-card {
    background: #f8fbff;
    border: 1px solid #e4ebf4;
    border-radius: 18px;
    padding: 32px;
    transition: .35s ease;
}

.featured-industry-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 45px rgba(18, 43, 92, .1);
}

.featured-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid #dfe7f1;
}

.featured-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fdb606;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon i {
    color: #17315e;
    font-size: 22px;
}

.featured-card-header h3 {
    margin: 0;
    color: #17315e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-row {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e5ebf3;
}

.featured-row span {
    color: #17315e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
}

.featured-row p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.65;
}

.featured-outcome {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 10px;
    background: #fff7e8;
    border-left: 4px solid #fdb606;
}

.featured-outcome small {
    display: block;
    margin-bottom: 7px;
    color: #17315e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.featured-outcome p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   HIRING SOLUTIONS
========================================================= */

.hiring-solutions-section {
    padding: 60px 0;
    background: #f8fbff;
}

.hiring-solutions-wrapper {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.hiring-solutions-heading {
    max-width: 500px;
}

.hiring-solutions-heading .all-same-heading {
    text-align: left;
    margin-bottom: 18px;
}

.hiring-solutions-heading .all-same-heading span {
    color: #fdb606;
}

.hiring-solutions-heading .all-same-text {
    margin-bottom: 28px;
}



.hiring-solutions-list {
    background: #fff;
    border-radius: 20px;
    padding: 10px 30px;
    box-shadow: 0 12px 40px rgba(18, 43, 92, .08);
}

.hiring-solution-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #e8edf4;
}

.hiring-solution-item:last-child {
    border-bottom: 0;
}

.solution-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff7e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a900;
    font-size: 13px;
    font-weight: 800;
}

.hiring-solution-item h3 {
    margin: 0 0 7px;
    color: #17315e;
    font-size: 20px;
    font-weight: 700;
}

.hiring-solution-item .all-same-text {
    font-size: 15px;
}


/* case studies page */

.case-studies-section {
    padding: 70px 0;
    background: #fff;
}

.case-studies-heading {
    margin-bottom: 38px;
}

.case-studies-heading .all-same-subheading {
    margin-bottom: 10px;
}

.case-studies-heading .all-same-heading {
    margin-bottom: 0;
}

.case-studies-section .row {
    row-gap: 25px;
}



.case-study-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(23, 49, 94, .05);
    transition: .25s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 24px rgba(23, 49, 94, .09);
}



.case-study-image {
    height: 180px;
    overflow: hidden;
    background: #eef3f8;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.03);
}



.case-study-content {
    padding: 18px 18px 17px;
}



.case-study-tag {
    display: inline-block;
    margin-bottom: 11px;
    padding: 5px 9px;
    border-radius: 20px;
    background: #eef3ff;
    color: #17315e;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}



.case-study-content h3 {
    margin: 0 0 11px;
    color: #17315e;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}



.case-study-content>p {
    margin: 0 0 19px;
    color: #626b78;
    font-size: 14px;
    line-height: 20.4px;
}



.case-study-details {
    padding: 14px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.case-detail {
    display: grid;
    grid-template-columns: 22px 105px 1fr;
    align-items: start;
    column-gap: 8px;
}

.case-detail+.case-detail {
    margin-top: 12px;
}

.case-detail-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2864e8;
    font-size: 12px;
}

.case-detail-label {
    color: #7d8797;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.case-detail-value {
    color: #17315e;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}



.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #17315e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.case-study-link i {
    font-size: 11px;
    transition: transform .2s ease;
}

.case-study-link:hover {
    color: #17315e;
}

.case-study-link:hover i {
    transform: translateX(4px);
}


/* case studies inner page / */

.case-study-hero {
    padding: 70px 0;
    background: #fff;
}

.case-study-hero .row {
    align-items: center;
}

.case-study-hero-content {
    padding-right: 25px;
}

.case-study-number {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #eef3ff;
    color: #2864e8;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.case-study-hero h1 {
    margin: 0 0 16px;
    color: #101d4d;
    font-size: 42px;
    line-height: 1.17;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.case-study-type {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    padding-bottom: 12px;
    color: #2864e8;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .3px;
}

.case-study-type::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 3px;
    background: #2864e8;
}




.case-study-meta-box {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(23, 49, 94, .07);
}

.case-study-meta {
    display: grid;
    grid-template-columns: 30px 125px 1fr;
    align-items: center;
    min-height: 47px;
    column-gap: 10px;
}

.case-study-meta+.case-study-meta {
    border-top: 1px solid #edf0f4;
}

.case-study-meta-icon {
    color: #2864e8;
    font-size: 18px;
    text-align: center;
}

.case-study-meta-label {
    color: #17315e;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.case-study-meta-value {
    color: #626b78;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}




.case-study-hero-image {
    height: 385px;
    overflow: hidden;
    border-radius: 12px;
}

.case-study-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================
   CASE STUDY CONTENT
========================================= */

.case-study-content-page {
    background: #fff;
}

.case-study-content-page p {
    margin: 0;
    color: #626b78;
    font-size: 15px;
    line-height: 1.7;
}



.case-context-section {
    padding: 30px 0 22px;
}

.case-context-box {
    padding: 24px 28px;
    background: #f8faff;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
}

.case-context-box p {
    font-size: 15px;
    line-height: 1.7;
}




.case-challenge-section {
    padding: 25px 0 32px;
}

.case-content-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(23, 49, 94, .045);
}

.case-content-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.case-content-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef3ff;
    color: #2864e8;
    font-size: 17px;
}

.case-content-heading h2 {
    margin: 0;
    color: #17315e;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.case-content-card p+p {
    margin-top: 14px;
}


/* =========================================
   SCREENED LIST
========================================= */

.case-screen-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-screen-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 21px;
    color: #626b78;
    font-size: 15px;
    line-height: 1.65;
}

.case-screen-list li:last-child {
    margin-bottom: 0;
}

.case-screen-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2864e8;
}


/* =========================================
   TECHNICAL SCREEN
========================================= */

.case-technical-section {
    padding: 0 0 32px;
}

.case-technical-box {
    padding: 27px 30px;
    background: #f8faff;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
}

.case-technical-box h2 {
    margin: 0 0 15px;
    color: #17315e;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.case-technical-box p {
    font-size: 15px;
}

.case-technical-box p+p {
    margin-top: 14px;
}


/* =========================================
   OUR APPROACH
========================================= */

.case-approach-section {
    padding: 0 0 35px;
}

.case-approach-box {
    padding: 29px 30px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(23, 49, 94, .045);
}

.case-approach-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.case-approach-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef3ff;
    color: #2864e8;
    font-size: 17px;
}

.case-approach-heading h2 {
    margin: 0;
    color: #17315e;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.case-approach-box p+p {
    margin-top: 15px;
}


/* =========================================
   OUTCOME
========================================= */

.case-outcome-section {
    padding: 42px 0 45px;
    background: #f8faff;
}

.case-outcome-heading {
    margin-bottom: 28px;
    text-align: center;
}

.case-outcome-heading h2 {
    margin: 0;
    color: #17315e;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.case-outcome-card {
    height: 100%;
    padding: 22px 17px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 11px;
    transition: .25s ease;
}

.case-outcome-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(23, 49, 94, .07);
}

.case-outcome-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef3ff;
    color: #2864e8;
    font-size: 15px;
}

.case-outcome-number {
    display: block;
    margin-bottom: 5px;
    color: #2864e8;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.case-outcome-card h3 {
    margin: 0 0 6px;
    color: #17315e;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.case-outcome-card p {
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   DIAGRAM
========================================= */

.case-diagram-section {
    padding: 40px 0 60px;
}

.case-diagram {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(23, 49, 94, .06);
}

.case-diagram img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}


/* service detail page  */

.service-detail-hero {
    padding: 70px 0;
    background: #f8faff;
}

.service-detail-hero-content {
    max-width: 610px;
}

.service-detail-hero-content .all-same-heading {
    margin-bottom: 20px;
}

.service-detail-hero-content p {
    margin: 0 0 16px;
    color: #626b78;
    font-size: 16px;
    line-height: 1.7;
}

.service-detail-hero-content .service-detail-intro {
    color: #17315e;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.service-detail-actions {
    margin-top: 28px;
}

.service-detail-hero-image {
    text-align: center;
}

.service-detail-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: inline-block;
    border-radius: 20px;
}




.service-overview-section {
    padding: 70px 0;
    background: #fff;
}

.service-overview-title {
    max-width: 470px;
    position: sticky;
    top: 100px;
}

.service-overview-title .all-same-subheading {
    margin-bottom: 13px;
}

.service-overview-title h2 {
    margin: 0 0 20px;
    color: #000;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

.service-overview-title h2 span {
    display: block;
    color: #000;
}

.service-overview-title p {
    margin: 0;
    color: #626b78;
    font-size: 15px;
    line-height: 1.75;
}

.service-overview-content {
    border-top: 1px solid #dfe4eb;
}

.service-overview-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #dfe4eb;
}

.service-overview-number {
    color: #2864e8;
    font-size: 14px;
    font-weight: 700;
}

.service-overview-item h3 {
    margin: 0 0 9px;
    color: #17315e;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.service-overview-item p {
    max-width: 650px;
    margin: 0;
    color: #626b78;
    font-size: 15px;
    line-height: 1.65;
}




.service-benefits-section {
    padding: 70px 0;
    background: #f3f7ff;
}

.service-benefits-inner {
    padding: 0;
}

.service-benefits-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.service-benefits-heading .all-same-heading {
    margin-bottom: 15px;
}

.service-benefits-heading>p {
    margin: 0;
    color: #626b78;
    font-size: 15px;
    line-height: 1.7;
}

.service-benefits-grid {
    row-gap: 25px;
}

.service-benefit {
    height: 100%;
    padding: 27px 25px;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
}

.service-benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.service-benefit-top span {
    color: #2864e8;
    font-size: 13px;
    font-weight: 700;
}

.service-benefit-top i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    color: #2864e8;
    font-size: 15px;
}

.service-benefit h3 {
    margin: 0 0 10px;
    color: #17315e;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.service-benefit p {
    margin: 0;
    color: #626b78;
    font-size: 14px;
    line-height: 1.65;
}

.service-benefits-cta {
    margin-top: 45px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
}

.service-benefits-cta h3 {
    margin: 0 0 5px;
    color: #17315e;
    font-size: 19px;
    line-height: 1.4;
}

.service-benefits-cta p {
    margin: 0;
    color: #626b78;
    font-size: 14px;
}



/* blog p[age css/] */


.latest-blogs-section {
    padding: 70px 0;
    background: #fff;
}

.latest-blogs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 38px;
}

.latest-blogs-heading {
    position: relative;
}

.heading-line {
    display: block;
    width: 32px;
    height: 3px;
    margin-bottom: 8px;
    background: #fdb606;
    border-radius: 3px;
}

.latest-blogs-heading h2 {
    margin: 0;
    color: #17315e;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 700;
}




.blog-search {
    width: 260px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid #2864e8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(40, 100, 232, 0.10);
    transition: .25s ease;
}

.blog-search:focus-within {
    border-color: #2864e8;
    box-shadow: 0 5px 18px rgba(40, 100, 232, 0.18);
}

.blog-search i {
    flex: 0 0 auto;
    color: #2864e8;
    font-size: 13px;
}

.blog-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    color: #17315e;
    font-size: 12px;
    background: transparent;
}

.blog-search input::placeholder {
    color: #8b96a5;
}




.blog-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(23, 49, 94, 0.05);
    transition: .25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(23, 49, 94, 0.09);
}




.blog-image {
    width: 100%;
    height: 205px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .35s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}




.blog-content {
    padding: 19px 20px 21px;
}




.blog-category {
    display: inline-block;
    margin-bottom: 11px;
    padding: 5px 10px;
    color: #17315e;
    background: #fff3c7;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .3px;
}



.blog-content h3 {
    margin: 0 0 11px;
    color: #17315e;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 700;
}




.blog-content p {
    margin: 0 0 17px;
    color: #626b78;
    font-size: 16px;
    line-height: 1.65;
}



.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
    color: #8d98a7;
    font-size: 14px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #8d98a7;
    font-size: 10px;
}




.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #17315e;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.blog-read-more i {
    color: #fdb606;
    font-size: 9px;
    transition: .2s ease;
}

.blog-read-more:hover {
    color: #2864e8;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}



.latest-blogs-section .row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 34px;
}


/* blog detail paeg */
.blog-detail-section {
    padding: 70px 0;
    background: #fff;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #626b78;
    font-size: 12px;
}

.blog-breadcrumb a {
    color: #2864e8;
    text-decoration: none;
}

.blog-breadcrumb i {
    font-size: 9px;
    color: #a5aebb;
}

.blog-detail-content h1 {
    margin: 0 0 15px;
    color: #17315e;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.blog-detail-category {
    display: inline-block;
    margin-bottom: 13px;
    padding: 6px 10px;
    color: #17315e;
    background: #fff3c7;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
}

.blog-detail-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    color: #8993a1;
    font-size: 14px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: #2864e8;
}

.blog-detail-image {
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 9px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article {
    max-width: 820px;
}

.blog-article p {
    margin: 0 0 21px;
    color: #626b78;
    font-size: 15px;
    line-height: 1.8;
}

.blog-article h2 {
    margin: 38px 0 14px;
    color: #17315e;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-article ul {
    margin: 0 0 22px;
    padding-left: 21px;
}

.blog-article li {
    margin-bottom: 9px;
    padding-left: 4px;
    color: #626b78;
    font-size: 15px;
    line-height: 1.7;
}

.blog-article strong {
    color: #17315e;
}

.blog-article a {
    color: #2864e8;
    font-weight: 600;
    text-decoration: none;
}

/* FAQ */
.blog-faq {
    margin-bottom: 30px;
}

.blog-faq .accordion-item {
    margin-bottom: 9px;
    border: 1px solid #e3e8f0;
    border-radius: 7px;
    overflow: hidden;
}

.blog-faq .accordion-button {
    padding: 17px 18px;
    color: #17315e;
    background: #fff;
    box-shadow: none;
    font-size: 15px;
    font-weight: 600;
}

.blog-faq .accordion-button:not(.collapsed) {
    color: #2864e8;
    background: #f8faff;
}

.blog-faq .accordion-body {
    padding: 0 18px 18px;
    color: #626b78;
    background: #f8faff;
    font-size: 14px;
    line-height: 1.7;
}

/* Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 30px;
}

.blog-sidebar-box {
    padding: 27px 25px;
    background: #f8faff;
    border: 1px solid #e3e8f0;
    border-radius: 9px;
}

.blog-sidebar-label {
    display: block;
    margin-bottom: 11px;
    color: #2864e8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
}

.blog-sidebar-box h3 {
    margin: 0 0 11px;
    color: #17315e;
    font-size: 22px;
    line-height: 1.4;
}

.blog-sidebar-box p {
    margin: 0 0 20px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.7;
}

.blog-sidebar-box .all-same-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

/* blog page css */
.blog-article .blog-article-subheading {
    margin: 34px 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.blog-article .blog-article-subheading {
    margin: 34px 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.2px;
}


.blog-article .blog-article-subheading+p {
    margin-top: 0;
}

@media (max-width: 767px) {
    .blog-article .blog-article-subheading {
        margin: 28px 0 9px;
        font-size: 14px;
        line-height: 1.35;
    }
}



/* privacy css  */

.privacy-policy-section {
    padding: 70px 0 ;
    background: #fff;
}

.privacy-policy-section .row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 28px;
}

.privacy-policy-updated {
    margin-bottom: 24px;
    color: #626b78;
    font-size: 11px;
    line-height: 1.5;
}

.privacy-policy-content {
    width: 100%;
}

.privacy-policy-card {
    margin-bottom: 14px;
    padding: 25px 28px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 12px;
}

.privacy-policy-card:last-child {
    margin-bottom: 0;
}

.privacy-policy-card h2 {
    margin: 0 0 14px;
    color: #17315e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-policy-card p {
    margin: 0 0 12px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.7;
}

.privacy-policy-card p:last-child {
    margin-bottom: 0;
}



.privacy-policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-policy-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-policy-list li:last-child {
    margin-bottom: 0;
}

.privacy-policy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fdb606;
    font-size: 11px;
    font-weight: 700;
}




.privacy-policy-sidebar {
    position: sticky;
    top: 25px;
}

.privacy-sidebar-box {
    margin-bottom: 14px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 11px;
}

.privacy-sidebar-box:last-child {
    margin-bottom: 0;
}

.privacy-sidebar-title {
    margin: 0 0 12px;
    color: #626b78;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.privacy-sidebar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-sidebar-nav li {
    border-bottom: 1px solid #e5e9ef;
}

.privacy-sidebar-nav li:last-child {
    border-bottom: 0;
}

.privacy-sidebar-nav a {
    display: block;
    padding: 7px 0;
    color: #17315e;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

.privacy-sidebar-nav a:hover {
    color: #2864e8;
}

.privacy-sidebar-box h3 {
    margin: 0 0 6px;
    color: #17315e;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-sidebar-box p {
    margin: 0 0 14px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-sidebar-contact {
    background: #eef4fc;
}






.privacy-related-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

/* terms condition css */

.terms-section {
    padding: 70px 0 ;
    background: #fff;
}

.terms-section .row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 28px;
}

.terms-updated {
    margin-bottom: 24px;
    color: #626b78;
    font-size: 11px;
    line-height: 1.5;
}

.terms-content {
    width: 100%;
}

.terms-card {
    margin-bottom: 14px;
    padding: 25px 28px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 12px;
}

.terms-card:last-child {
    margin-bottom: 0;
}

.terms-card h2 {
    margin: 0 0 14px;
    color: #17315e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.terms-card p {
    margin: 0 0 12px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.7;
}

.terms-card p:last-child {
    margin-bottom: 0;
}



.terms-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terms-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    color: #626b78;
    font-size: 14px;
    line-height: 1.6;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fdb606;
    font-size: 11px;
    font-weight: 700;
}




.terms-sidebar {
    position: sticky;
    top: 25px;
}

.terms-sidebar-box {
    margin-bottom: 14px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 11px;
}

.terms-sidebar-box:last-child {
    margin-bottom: 0;
}

.terms-sidebar-title {
    margin: 0 0 12px;
    color: #626b78;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.terms-sidebar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terms-sidebar-nav li {
    border-bottom: 1px solid #e5e9ef;
}

.terms-sidebar-nav li:last-child {
    border-bottom: 0;
}

.terms-sidebar-nav a {
    display: block;
    padding: 7px 0;
    color: #17315e;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

.terms-sidebar-nav a:hover {
    color: #2864e8;
}

.terms-sidebar-box h3 {
    margin: 0 0 6px;
    color: #17315e;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.terms-sidebar-box p {
    margin: 0 0 14px;
    color: #626b78;
    font-size: 12px;
    line-height: 1.6;
}

.terms-sidebar-contact {
    background: #eef4fc;
}



.terms-related-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}
