* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.main-section {
    min-height: 90vh;
}

.section-title {
    color: #22358a;
    font-weight: 800;
}

.container-fluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media(min-width:576px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(min-width:768px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(min-width:992px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media(min-width:1200px) {
    .container-fluid {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media(min-width:1400px) {
    .container-fluid {
        padding-left: 90px;
        padding-right: 90px;
    }
}

@media(min-width:1920px) {
    .container-fluid {
        max-width: 1800px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* =========================
   Site Header
   ========================= */
.site-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.main-section {
    margin-top: 120px;
}

@media (max-width: 991.98px) {
    .main-section {
        margin-top: 0px;
    }
}

@media (max-width: 767.98px) {
    .main-section {
        margin-top: 0px;
    }
}

/* =========================
   Brand Bar
   ========================= */
.middle-brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px;
}

.brand-logo img {
    height: 78px;
    width: auto;
    display: block;
}

.brand-highlights {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.brand-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 30px;
    border-right: 1px solid #e7e7ef;
}

.brand-highlight:last-child {
    border-right: none;
    padding-right: 0;
}

.brand-highlight-icon {
    width: 41px;
    height: 41px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e3b8b;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.brand-highlight-text small {
    display: block;
    font-size: 14px;
    color: #667;
}

.brand-highlight-text h6 {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 800;
    color: #14204f;
    line-height: 1.2;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(90deg, #5b36d8, #d1248f);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 12px 28px rgba(17, 58, 165, 0.25);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    padding: 10px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(17, 58, 165, 0.35);
}

/* =========================
   Custom Navbar
   ========================= */
.custom-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: transparent;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    padding: 0 18px;
    box-shadow: 0 18px 35px rgba(9, 23, 82, 0.28);
}

/* Main Menu (Desktop) */
.main-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.main-menu li a i {
    font-size: 18px;
    opacity: 0.95;
}

.main-menu li a .dropdown-toggle::after {
    font-size: 14px;
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.main-menu li:hover a,
.main-menu li.active a {
    color: #ff9f1a;
}

.main-menu li.active a {
    position: relative;
}

.main-menu li.active a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 3px;
    border-radius: 3px;
    background: #ff9f1a;
}

/* Desktop Dropdowns */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 30px rgba(216, 1, 245, 0.18);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1050;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 16px;
    color: #14204f !important;
    text-decoration: none;
    font-size: 14px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu-custom li a:hover {
    background: linear-gradient(90deg, #d61f9b 0%, #4b37d9 100%);
    color: #fff !important;
    border-radius: 0;
    padding-left: 22px;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Nav Right (Language + Search) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.language-box {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* =========================
   Mobile Menu Toggle
   ========================= */
.menu-toggle-custom {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(207, 17, 207, 0.08);
    border: 1px solid rgba(104, 102, 102, 0.18);
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.menu-toggle-custom span {
    width: 22px;
    height: 2px;
    background: #070be6;
    margin: 3px 0;
    transition: 0.35s;
}

.menu-toggle-custom.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle-custom.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-custom.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   Menu Overlay & Side Menu
   ========================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1045;
    /* below header (1050), above page content */
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1046;
    /* still below header (1050) */
    transition: 0.45s ease;
    padding: 90px 10px 20px 10px;
    box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

.side-menu.show {
    right: 0;
}

.side-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-list li {
    border-bottom: 1px solid #f0f0f5;
}

.side-menu-list li a {
    display: block;
    padding: 14px 16px;
    color: #14204f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.side-menu-list li a:hover {
    background: #f7f7fc;
}

/* Side Submenu */
.side-has-submenu {
    position: relative;
}

.side-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.side-chevron {
    transition: transform 0.25s ease;
}

.side-has-submenu.open .side-chevron {
    transform: rotate(180deg);
}

.side-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fafaff;
}

.side-submenu li a {
    padding-left: 28px;
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   Responsive Tweaks
   ========================= */
@media (max-width: 1100px) {
    .brand-highlights {
        gap: 16px;
    }

    .brand-highlight {
        gap: 10px;
        padding-right: 16px;
    }

    .brand-highlight-text small {
        font-size: 12px;
    }

    .brand-highlight-text h6 {
        font-size: 12px;
    }

    .main-menu {
        gap: 2px;
    }

    .main-menu li a {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 1042px) {
    .middle-brand-wrapper {
        gap: 0px;
        padding: 10px;
    }

    .brand-logo img {
        height: 60px;
    }

    .connect-btn {
        gap: 9px;
        font-size: 13px;
        font-weight: 600;
    }

    .brand-highlight-icon {
        height: 35px;
        width: 35px;
        font-size: 18px;
    }

    .main-menu {
        display: none;
    }

    .language-menu { display: block;}
    .nav-right {
        margin-left: auto;
        padding-left: 12px;
    }
    .menu-toggle-custom {display: flex;}
    .hero-container {
        padding: 0px 0 0 50px !important;
        position: relative;
    }

    .hero-section { height: 480px !important; }

    .hero-content h1 {
        font-size: 55px ;
    }
}

@media (max-width: 992px) {
    .middle-brand-wrapper {
        flex-wrap: wrap;
        gap: 2px;
        padding: 12px 16px;
    }
    .career-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

    .brand-logo img {
        height: 60px;
    }

    .brand-highlights {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 14px;
    }

    .brand-highlight {
        border-right: none;
        padding-right: 0;
    }

    .connect-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .navbar-wrapper {
       display: none;
    }

    .main-menu {
        display: none;
    }

    .language-menu {
        display: block;
    }

    .nav-right {
        margin-left: auto;
        padding-left: 12px;
    }

    .menu-toggle-custom {
        display: flex;
    }
}

@media (max-width: 480px) {

    .brand-highlight-text small,
    .brand-highlight-text h6 {
        display: none;
    }

    .brand-highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .connect-btn span {
        display: none;
    }

    .connect-btn {
        gap: 0;
        padding: 8px;
    }

    .language-box span {
        display: none;
    }
}

/* -----------------------Hero Section-------------------------- */
.hero-section {
    background: #fff;
    overflow: hidden;
    height: 670px;
}

.hero-content {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hire-tag {
    display: inline-block;
    color: #c0268d;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
    position: relative;
}

.hire-tag:after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c0268d;
    display: block;
    margin-top: 10px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.08;
    color: #22358a;
    font-weight: 800;
    margin-bottom: 20px;
}

/* .hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    color:#132238;
} */
.typing-text {
    color: #0d6efd;
    font-weight: 800;
    display: inline-block;
    min-width: 230px;
}

.typed-cursor {
    color: #0d6efd;
    font-size: 60px;
    font-weight: 300;
    animation: blink .7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-content h1 span {
    color: #b21f92;
}

.hero-content p {
    color: #5d6274;
    font-size: 22px;
    line-height: 1.7;
    max-width: 650px;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(4, fit-content(100%));
    gap: 15px;
    margin-top: 50px;
}

.info-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-right: 1px solid #ddd;
    padding-right: 15px;
    width: fit-content;
}

.info-box:last-child {
    border-right: none;
}

.icon {
    width: 41px;
    height: 41px;
    border: 2px solid #d53ba8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0268d;
    font-size: 20px;
}

.info-box small {
    display: block;
    font-size: 12px !important;
    color: #666;
    font-weight: 600;
}

.info-box h6 {
    margin-top: 4px;
    color: #222;
    font-weight: 700;
    line-height: 1.4;
    font-size: 13px !important;
}

.country-typing {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd !important;
    min-height: 28px;
}

.country-typing .typed-cursor {
    color: #0d6efd;
}

:root {
    --hero-scale: 1.1;
}

@media(min-width:1600px) {
    :root {
        --hero-scale: 1.2;
    }
}

@media(min-width:1920px) {
    :root {
        --hero-scale: 1.35;
    }
}

@media(max-width:1400px) {
    :root {
        --hero-scale: 0.9;
    }
}

@media(max-width:1300px) {

    .info-box h6 {

        font-size: 12px !important;
    }

    .info-box small {
        font-size: 10px !important;
        color: #000;

    }

    .icon {
        height: 30px !important;
        width: 30px !important;
        font-size: 14px;

    }
}

@media(max-width:1199px) {
    :root {
        --hero-scale: 0.75;
    }
}

@media(max-width:991px) {
    :root {
        --hero-scale: 0.65;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleInDynamic {
    from {
        opacity: 0;
        transform: scale(calc(var(--hero-scale)*0.8)) rotate(-45deg);
    }

    to {
        opacity: 1;
        transform: scale(var(--hero-scale)) rotate(-45deg);
    }
}

.hire-tag {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content h1 {
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content p {
    animation: fadeUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-info .info-box {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-info .info-box:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-info .info-box:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-info .info-box:nth-child(3) {
    animation-delay: 0.8s;
}

.hero-info .info-box:nth-child(4) {
    animation-delay: 0.9s;
}

.hero-container {
    padding: 0;
    position: relative;
}


.hero-images {
    position: relative;
    width: 100%;
    min-height: clamp(560px, 52vw, 720px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.worker-main {
    display: none;
}

.hero-images-container {
    display: grid;
    grid-template-columns: clamp(125px, 10vw, 188px) clamp(260px, 20vw, 374px);
    gap: clamp(10px, 1vw, 15px);
    align-items: center;
    justify-content: center;
    position: relative;
    width: auto !important;
    height: auto;
    transform: scale(var(--hero-scale)) rotate(-45deg);
    opacity: 0;
    animation: scaleInDynamic 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.diamond,
.big-diamond {
    overflow: hidden;
    border-radius: 5px;
}

.diamond {
    width: 90%;
    transform: rotate(0deg) scale(1.2) !important;
}

.diamond:nth-child(1) {
    height: 180px;
}

.big-diamond {
    width: 160%;
    height: clamp(390px, 39vw, 550px);
    grid-column: 2;
    grid-row: 1/span 2;
    transform: rotate(0deg) !important;
    position: relative;
    display: inline-block;
    animation: smoothSlide 3s ease-in-out infinite alternate;
}

.big-diamond::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #d61f9b 0%, #4b37d9 100%);
    opacity: .6;
    mix-blend-mode: multiply;
    z-index: 2;
}

.big-diamond img {
    width: 145%;
    height: 145%;
    object-fit: cover;
    transform: rotate(45deg) !important;
    margin: -22%;
    display: block;

}

@keyframes smoothSlide {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }

}

.big-diamond {
    position: relative;
    animation: moveLeftRight 3s linear infinite;
}

@keyframes moveLeftRight {

    0% {
        transform: translateX(-40px);
    }

    50% {
        transform: translateX(40px);
    }

    100% {
        transform: translateX(-40px);
    }

}

.diamond-slider {
    position: relative;
    margin: auto;
}

.diamond-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.diamond-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

.diamond-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider-btn-section {
    position: absolute;
    z-index: 11;
    display: block;
    /* Desktop: align bottom-right, but keep within viewport to avoid clipping by overflow: hidden */
    right: -8%;
    bottom: 5%;
}

.hero-slider-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 90px 18px 70px;
    background: linear-gradient(90deg,
            rgba(214, 31, 155, .65) 0%,
            rgba(75, 55, 217, .65) 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

/* White frame with 5px gap */
.hero-slider-btn-group::before {
    content: "";
    position: absolute;
    inset: -5px;
    /* 5px outside */
    background: #fff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.hero-slider-btn-group::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: inherit;
    clip-path: polygon(55% 0, 100% 0, 45% 100%, 0 100%);
    z-index: -1;
}


.diamond-btn {


    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .85);
    color: #222;

    font-size: 22px;
    cursor: pointer;

    transition: .3s;
    z-index: 10;
}

.diamond-btn:hover {
    background: #5e35ff;
    color: #fff;
}



.diamond img {
    width: 145%;
    height: 145%;
    object-fit: cover;
    transform: rotate(45deg) scale(1.2);
    margin: -22%;
}

.diamond-one {
    grid-column: 1;
    grid-row: 1;
    top: 48px;
    left: -32px;
    transform: rotate(45deg) scale(1.2);
}

.diamond-two {
    height: 250px;
    top: 10px;
}

.worker-image {
    position: absolute;
    right: -12%;
    bottom: -30px;
    max-width: min(500px, 45vw);
    width: 100%;
    z-index: 2;
    opacity: 0;
    animation: fadeLeft 1s ease 0.8s forwards;
    display: flex;
    justify-content: end;
}

.worker-image img {
    height: 100%;
    width: 70%;
    display: block;
}

@media(min-width:1200px) {
    .hero-container {
        padding: 0 0 0 4%;
        height: 500px;
    }
}

@media(min-width:1400px) {
    .hero-container {
        padding-left: 5%;
    }
}

@media(min-width:1200px) and (max-width:1400px) {
    .hero-section {
        min-height: 620px;
        margin-top: -40px !important;
    }

    .diamond-two {
        height: 211px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 560px;
    }

    .hero-info {
        grid-template-columns: repeat(4, fit-content(100%));
        margin-top: 35px;
    }

    .worker-image img {
        width: 70%;

    }

    .big-diamond {
        width: 200%;
    }

    .hero-slider-btn-group {
        padding: 18px 90px 18px 119px;
    }

    .worker-image {
        right: -8%;
        bottom: 36px;
        max-width: 390px;
    }
}

@media(max-width:1199px) {
    .hero-section {
        min-height: auto;
    }

    .worker-image {
        right: 2%;
        bottom: 80px;
        max-width: 360px;
    }

    .hero-slider-btn-section {
        right: 2%;
        bottom: 80px;
    }
}

.dots {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 10%;
    top: 50%;
    background-image: radial-gradient(#d7cde8 1.8px, transparent 1.8px);
    background-size: 12px 12px;
    z-index: -1;
}

@media(max-width:991px) {


    .hero-content {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-images {
        margin-top: 40px;
        min-height: 500px;
    }

    .worker-image {
        left: 0;
        right: 0;
        bottom: 25px;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-slider-btn-section {
        right: 5%;
        bottom: 120px;
    }
}

@media(max-width:767px) {
    .hero-section {
        height: fit-content;
    }

    .typed-cursor {
        display: none !important;
    }

    .hero-slider-btn-group {
        padding: 10px 70px 10px 30px;
    }

    .hero-slider-btn-section {
        right: -80px;
        bottom: auto;
        top: calc(75vw - 58px);
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }


    .info-box {
        padding-right: 0;
    }

    .info-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .worker-main {
        position: relative;
        width: 100%;
    }

    .hero-images {
        min-height: auto;
    }

    .hero-images-container {
        width: 100% !important;
        transform: none;
        animation: fadeUp 0.8s ease 0.3s forwards;
    }

    .big-diamond {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .big-diamond img {
        width: 100%;
        height: 100%;
        margin: 0;
        transform: none !important;
    }

    .diamond-one,
    .diamond-two,
    .dots {
        display: none;
    }

    .worker-image {
        left: 0;
        right: -190px;
        bottom: 0;
        max-width: 360px;
        width: 100%;
        margin: -120px auto 0;
    }

}

@media(max-width:480px) {
    .hero-container {
        padding: 10px !important;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-info {
        gap: 12px;
    }

    .worker-image {
        margin-top: -80px;
        max-width: 200px;
    }
}

.opp-slider-controls {
    display: flex;
    gap: 15px;
    justify-content: end;
    align-items: center;
}

@media(max-width:767px) {
    .opp-slider-controls {
        justify-content: center;
        padding: 30px 0;
    }
}

.opp-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(214, 31, 155, .7);
}

.opp-btn:hover {
    background: linear-gradient(90deg, #d61f9b 0%, #4b37d9 100%);
    color: #fff;
    transform: scale(1.05);
}

.opp-slider-wrapper {
    overflow: hidden;
    padding: 15px 0 40px;
    margin: -15px 0 -40px;
}

.opp-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.opp-slide {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    margin-right: 24px;
}

@media(max-width:991px) {
    .opp-slide {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 24px;
    }
}

.opportunities-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

.opportunity-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    padding: 35px 35px 0;
    height: 100%;
    border: 1px solid #ececec;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.job-card-image {
    width: 100%;
    height: 220px;
    /* adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    /* optional, match your card radius */
    margin-top: 16px;
    position: relative;
    /* optional spacing from content above */
}

.job-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 15%,
            rgba(255, 255, 255, .95) 30%,
            rgba(255, 255, 255, .75) 50%,
            rgba(255, 255, 255, .35) 75%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.card-header-custom {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.card-icon {
    min-width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    position: relative;
    z-index: 5;
}

.card-icon img {
    width: 38px;
}

.card-title {
    margin-left: -22px;
    padding: 12px 35px 12px 45px;
    background: linear-gradient(90deg, #d61f9b 0%, #4b37d9 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 0 12px 12px 0;
    letter-spacing: .5px;
    text-transform: uppercase;
    flex: 1;
}

.opportunity-card .row {
    align-items: center;
}

.job-list {
    margin-bottom: 35px;
}

.job-list ol {
    padding-left: 25px;
    column-count: 2;
    column-gap: 40px;
}

.job-list li {
    color: #333;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
    break-inside: avoid;
}

.eligibility {
    margin-top: 25px;
}

.eligibility h5 {
    font-size: 20px;
    color: #d12093;
    font-weight: 700;
    margin-bottom: 15px;
}

.eligibility ul {
    padding-left: 18px;
}

.eligibility li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.job-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 420px;
}

.job-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .55) 55%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

.job-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 22px;
}

.opportunity-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #efecff, #ffffff);
    border-radius: 50%;
    right: -70px;
    top: -70px;
    opacity: .7;
}



.job-list ol li::marker {
    color: #d61f9b;
    font-weight: 700;
}

.job-list li {
    transition: .35s;
}

.job-list li:hover {
    color: #4b37d9;
    transform: translateX(6px);
}

.eligibility-apply-button-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 20px;
}

/* Large Desktop */
@media (max-width:1400px) {
    .eligibility-apply-button-box {
        grid-template-columns: 1.8fr 1fr;
        gap: 18px;
    }
}

/* Laptop */
@media (max-width:1200px) {
    .eligibility-apply-button-box {
        grid-template-columns: 1.5fr 1fr;
        gap: 16px;
    }
}

/* Tablet */
@media (max-width:992px) {
    .eligibility-apply-button-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .eligibility-apply-button-box>* {
        width: 100%;
    }
}

/* Mobile */
@media (max-width:768px) {
    .eligibility-apply-button-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width:576px) {
    .eligibility-apply-button-box {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.eligibility li {
    position: relative;
    padding-left: 10px;
    transition: .35s;
}

.eligibility li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d61f9b;
}

.eligibility li:hover {
    color: #000;
}

.job-image {
    overflow: hidden;
    border-radius: 24px;
}

.job-image img {
    transition: transform .7s ease;
}

.opportunity-card:hover .job-image img {
    transform: scale(1.08);
}

.opportunity-card .card-title {
    position: relative;
    overflow: hidden;
}

.opportunity-card .card-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transition: 1s;
}

.opportunity-card:hover .card-title::before {
    left: 150%;
}

.job-image::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #f3edff;
    right: -100px;
    bottom: -100px;
    z-index: -1;
}

.job-list li:last-child,
.eligibility li:last-child {
    margin-bottom: 0;
}

.opportunity-card:hover {
    border-color: #d61f9b;
}

.job-image img {
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

@media(min-width:1400px) {
    .card-title {
        font-size: 26px;
        padding: 10px 40px 10px 50px;
    }

    .job-list li {
        font-size: 13px;
    }

    .eligibility li {
        font-size: 13px;
    }

    .job-image {
        min-height: 460px;
    }

    .job-image img {
        height: 460px;
    }
}

@media(max-width:1199px) {
    .opportunity-card {
        padding: 28px;
    }

    .card-title {
        font-size: 20px;
    }

    .job-list ol {
        column-count: 1;
    }

    .job-image {
        min-height: 340px;
    }

    .job-image img {
        height: 340px;
    }
}

@media(max-width:991px) {
    .opportunities-section {
        padding: 90px 0;
        background: #fff;
        position: relative;
    }

    .opportunity-card {
        margin-bottom: 30px;
    }

    .card-header-custom {
        margin-bottom: 25px;
    }

    .job-image {
        margin-top: 30px;
    }

    .job-image img {
        height: 360px;
    }
}

@media(max-width:767px) {
    .opportunities-section {
        padding: 50px 0;
    }

    .opportunity-card {
        padding: 22px;
        border-radius: 18px;
    }

    .card-header-custom {
        flex-wrap: wrap;
    }

    .card-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .card-icon img {
        width: 30px;
    }

    .card-title {
        padding: 14px 18px;
        width: 100%;
        border-radius: 10px;
        font-size: 17px;
        text-align: center;
    }

    .job-list {
        margin-bottom: 20px;
    }

    .job-list ol {
        column-count: 1;
        padding-left: 18px;
    }

    .job-list li {
        font-size: 13px;
        line-height: 1.6;
    }

    .eligibility h5 {
        font-size: 17px;
    }

    .eligibility li {
        font-size: 14px;
    }

    .job-image {
        min-height: 260px;
    }

    .job-image img {
        height: 260px;
    }
}

@media(max-width:480px) {
    .card-title {
        font-size: 15px;
    }

    .job-list li {
        font-size: 13px;
    }

    .eligibility li {
        font-size: 13px;
    }

    .job-image img {
        height: 220px;
    }
}

/* -------------------------------------------- */
.recruitment-banner {
    padding: 50px 0 80px;
    background: #fff;
}

.banner-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.banner-box {
    position: relative;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}

/* Gradient overlay on left half */
.banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 50%;
    border-radius: 22px 0 0 22px;
    background: linear-gradient(90deg, #a22086 0%, #5c3ab5 45%, #2f4fb5 100%);
    pointer-events: none;
}

.banner-col {
    position: relative;
    z-index: 2;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-content {
    color: #fff;
}

.small-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hm-contact-form {
    position: relative;
    margin-top: 10px;
}

.hm-contact-form::before,
.hm-contact-form::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hm-contact-form::before {
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(214, 31, 155, 0.15);
}

.hm-contact-form::after {
    right: -70px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    background: rgba(75, 55, 217, 0.18);
}

.hm-contact-form>* {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-control {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: 0.25s ease;
}

.form-control::placeholder {
    color: #e2dede;
}
 

select.form-control {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-control option {
    background: #ffffff;
    color: #1d2161;
    font-size: 14px;
    padding: 6px 8px;
}

select.form-control:focus {
    background: rgba(255, 255, 255, 0.24);
    border-color: #d61f9b;
    box-shadow: 0 0 0 4px rgba(214, 31, 155, 0.15);
    color: #fff;
}

textarea.form-control {
    min-height: 90px;
    resize: vertical;
    padding: 14px 16px;
}

.hm-submit-btn,
.apply-btn,
.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: fit-content;
    padding: 15px 34px;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;

    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(135deg, #d61f9b 0%, #7b2ff7 55%, #4b37d9 100%);
    background-size: 200% 200%;

    box-shadow:
        0 12px 35px rgba(75, 55, 217, .28),
        inset 0 1px 1px rgba(255, 255, 255, .25);

    transition: all .45s ease;
}

/* Shine Effect */

.hm-submit-btn::before,
.apply-btn::before,
.explore-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

/* Hover */

.hm-submit-btn:hover,
.apply-btn:hover,
.explore-btn:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.03);
    background-position: right center;

    box-shadow:
        0 20px 45px rgba(75, 55, 217, .38),
        0 0 25px rgba(214, 31, 155, .25);
}

.hm-submit-btn:hover::before,
.apply-btn:hover::before,
.explore-btn:hover::before {
    left: 140%;
}

/* Active */

.hm-submit-btn:active,
.apply-btn:active,
.explore-btn:active {
    transform: translateY(-2px) scale(.98);
}

/* Focus */

.hm-submit-btn:focus-visible,
.apply-btn:focus-visible,
.explore-btn:focus-visible {
    outline: 3px solid rgba(123, 47, 247, .25);
    outline-offset: 4px;
}

/* Select: visible + custom arrow + readable options */
select.form-control {
    background: rgba(255, 255, 255, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center / 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-control option {
    background: #ffffff;
    color: #1d2161;
    font-size: 14px;
    padding: 6px 8px;
}

select.form-control:focus {
    background: rgba(255, 255, 255, 0.24) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center / 18px 18px;
    border-color: #d61f9b;
    box-shadow: 0 0 0 4px rgba(214, 31, 155, 0.15);
    color: #fff;
}

.center-col {
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.center-image {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 420px;
    height: 424px;
    border-radius: 50%;
    background: linear-gradient(180deg, #cc247b, #5538bb);
    z-index: 1;
}

.center-image img {
    position: relative;
    z-index: 2;
    width: 460px;
    max-width: 90%;
    display: block;
}

/* ===========================
   Right Content
=========================== */
.right-content {
    color: #1d2161;
    position: relative;
}

.right-content h2 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    margin: 10px 0 16px;
}

.right-content p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.pink,
.pink-text {
    color: #c0197c;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #c0197c;
    transition: 0.3s ease;
}

.banner-btn i {
    font-size: 22px;
}

.banner-btn:hover {
    transform: translateX(6px);
}

.dot-pattern {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#9aa8ff 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: 0.6;
    pointer-events: none;
}

/* ===========================
   Responsive
=========================== */

/* Up to 1280px */
@media (max-width: 1280px) {

    .center-image img {
        width: 450px;
    }

    .circle-bg {
        width: 380px;
        height: 380px;
    }
}

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .banner-box::before {
        width: 100%;
    }

    .banner-box {
        grid-template-columns: 1fr 1fr;
    }

    /* Move center image below left form on medium tablets */
    .center-col {
        order: 3;
        min-height: 260px;
    }

    .center-image {
        min-height: 260px;
    }

    .center-image img {
        width: 320px;
    }

    .circle-bg {
        width: 280px;
        height: 280px;
    }

    .left-content h2,
    .right-content h2 {
        font-size: 22px;
    }

    .left-content p,
    .right-content p {
        font-size: 14px;
    }
}

/* Small tablets / large phones */
@media (max-width: 900px) {
    .banner-box {
        grid-template-columns: 1fr;
    }

    .center-col {
        order: 2;
    }

    .right-col {
        order: 3;
    }


    .center-image {
        min-height: 220px;
    }

    .center-image img {
        width: 395px;
    }

    .circle-bg {
        width: 380px;
        height: 341px;
    }

    .right-content h2 {
        font-size: 22px;
    }

    .right-content p {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .recruitment-banner {
        padding: 50px 0;
    }

    .banner-container {
        padding: 0 16px;
    }

    .banner-box {
        border-radius: 16px;
    }


    .small-title {
        font-size: 18px;
    }

    .form-control {
        height: 50px;
        font-size: 14px;
    }

    .hm-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .center-image img {
        width: 220px;
    }

    .circle-bg {
        width: 190px;
        height: 190px;
    }

    .right-content h2 {
        font-size: 20px;
    }

    .right-content p {
        font-size: 13px;
    }

    .dot-pattern {
        display: none;
    }
}

/* Section base (keep your bg, padding, etc.) */
.industries-sec-main,
.recruitment-process {
    padding: 80px 0;
    background: #fff;
    background-image: url(../img/images/how-applybg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* Heading styles (adapted from your .section-heading) */
.industries-sec-heading h2,
.recruitment-process .section-title {
    color: #fff;
    margin-bottom: 10px;
}

.industries-sec-heading p {
    font-size: 17px;
    color: #fff;
    margin: 0;
}

/* Slider wrapper */
.ind-inf-slider-wrapper {
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.industries-slider-btn {
    background-color: #fff;
    display: flex;
    padding: 0 10px 10px 14px;
    width: fit-content;
    justify-self: end;
    border-radius: 0 0 5px 30px;
    gap: 10px;
}

/* Viewport (visible window) */
.ind-inf-viewport {
    position: relative;
    z-index: 2;
    flex: 1;
    overflow: hidden;
    border-radius: 8px 8px 0;
    background: #fff;
}

/* Moving track */
.ind-inf-track {
    display: flex;
    width: max-content;
    will-change: transform;
    position: relative;
    z-index: 2;
}

/* Individual item */
.ind-inf-item {
    text-align: center;
    padding: 28px 18px;
    border-right: 1px solid #ececf2;
    transition: 0.35s;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 180px;
    /* adjust as needed */
    box-sizing: border-box;
    background: #fff;
}

.ind-inf-item:hover {
    background: #fafbff;
}

/* Icon box */
.ind-inf-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ind-inf-icon img {
    width: 42px;
    transition: 0.35s;
    position: relative;
    z-index: 2;
}

.ind-inf-item:hover .ind-inf-icon img {
    transform: translateY(-6px) scale(1.08);
}

/* Item text */
.ind-inf-item h6 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Prev/Next buttons */
.ind-inf-btn {
    position: relative;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ececf2;
    background: #fff;
    color: #22358a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
    flex: 0 0 auto;
}

.ind-inf-btn:hover {
    background: #f5f6ff;
    border-color: #cfd3f6;
}

/* Responsive: adapt item count visible by changing width via media queries if needed */
@media (max-width: 1199px) {
    .ind-inf-item {
        width: 160px;
    }
}

@media (max-width: 767px) {
    .industries-sec-heading h2 {
        font-size: 32px;
    }

    .ind-inf-item {
        width: 140px;
        padding: 20px 12px;
    }

    .ind-inf-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
    }

    .ind-inf-icon img {
        width: 34px;
    }

    .ind-inf-item h6 {
        font-size: 15px;
    }

    .ind-inf-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.about-company-section {
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.about-wrapper {
    position: relative;
    background: #fff;
    border: 1px solid #ececf4;
    border-radius: 26px;
    padding: 55px 60px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(31, 38, 135, .06);
}

.about-wrapper::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(95, 74, 255, .08), transparent 72%);
    pointer-events: none;
}

.about-wrapper::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(236, 37, 170, .08), transparent 72%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 5;
}

.section-tag {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.section-tag .tag-text {
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
    letter-spacing: 0.5px;
}

.section-tag .tag-line {
    position: relative;
    width: 42px;
    height: 3px;
    border-radius: 30px;
}

.section-tag .tag-line::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-radius: 2px;
}

/* Specific Tag Colors */
.section-tag.tag-pink .tag-text {
    color: #d1248f !important;
}

.section-tag.tag-pink .tag-line {
    background: linear-gradient(90deg, #ef2c98, #5d39db);
}

.section-tag.tag-pink .tag-line::after {
    background: #b83cc8;
}

.section-tag.tag-purple .tag-text {
    color: #5b36d8;
}

.section-tag.tag-purple .tag-line {
    background: #5b36d8;
}

.section-tag.tag-purple .tag-line::after {
    background: #5b36d8;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1d2145;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #6d7387;
    margin-bottom: 35px;
}

.about-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #5b36d8, #d1248f);
    padding: 14px 28px;
    border-radius: 30px;
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(209, 36, 143, 0.25);
}

.about-btn-solid i {
    font-size: 15px;
    transition: .35s;
}

.about-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(91, 54, 216, 0.35);
    color: #fff;
}

.about-btn-solid:hover i {
    transform: translateX(6px);
}

.about-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    z-index: 5;
}

.center-bg-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    background: linear-gradient(180deg, #f4e8ff, #e7e2ff);
    border-radius: 50%;
    z-index: 0;
}

.image-box {
    width: 320px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    z-index: 1;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
    position: relative;
    z-index: 0;
}

.image-box:hover img {
    transform: scale(1.06);
}

.image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, .15), rgba(255, 255, 255, 0));
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
}

.circle.purple {
    width: 55px;
    height: 55px;
    left: 55px;
    top: 55px;
    background: linear-gradient(135deg, #5b36d8, #8b4dff);
    box-shadow: 0 12px 25px rgba(75, 55, 217, .35);
    font-size: 20px;
}

.circle.pink {
    width: 55px;
    height: 55px;
    right: 55px;
    bottom: 35px;
    background: linear-gradient(135deg, #d1248f, #ff3aa5);
    box-shadow: 0 12px 25px rgba(255, 58, 165, .35);
    font-size: 20px;
}

.dots-pattern {
    position: absolute;
    right: -10px;
    top: 60px;
    width: 80px;
    height: 292px;
    background-image: radial-gradient(#8b4dff 1.8px, transparent 1.8px);
    background-size: 16px 16px;
    opacity: .35;
    z-index: 0;
}

.about-right {
    position: relative;
    z-index: 5;
    padding-left: 20px;
}

.about-right h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d2145;
    margin-bottom: 32px;
    line-height: 1.3;
}

.difference-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.difference-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 15px;
    font-weight: 600;
    color: #2e2e3c;
    transition: .3s ease;
}

.difference-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.difference-list li:hover {
    transform: translateX(6px);
}

.diff-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9e4ff;
    color: #5b36d8;
    font-size: 18px;
}

.about-wrapper:hover .circle.purple {
    transform: translate(-6px, -6px);
    transition: .4s ease;
}

.about-wrapper:hover .circle.pink {
    transform: translate(6px, 6px);
    transition: .4s ease;
}

.about-wrapper:hover .dots-pattern {
    opacity: .7;
    transition: .4s ease;
}

.about-wrapper:hover .image-box {
    transform: translateY(-4px);
    transition: .4s ease;
}

@media(max-width:1199px) {
    .about-wrapper {
        padding: 45px 36px;
    }

    .about-image-area {
        min-height: 360px;
    }

    .center-bg-circle {
        width: 320px;
        height: 320px;
    }

    .image-box {
        width: 280px;
        height: 280px;
    }

    .circle.purple {
        left: 35px;
        top: 60px;
    }

    .circle.pink {
        right: 35px;
    }
}

@media(max-width:991px) {

    .about-content,
    .about-right {
        text-align: center;
    }

    .about-content p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image-area {
        margin: 30px 0;
    }

    .section-tag {
        justify-content: center;
    }

    .about-right {
        padding-left: 0;
    }

    .difference-list li {
        justify-content: center;
    }
}

@media(max-width:767px) {
    .about-company-section {
        padding: 50px 0;
    }

    .about-wrapper {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .about-content h2,
    .about-right h3 {
        font-size: 24px;
    }

    .about-image-area {
        min-height: 300px;
    }

    .center-bg-circle {
        width: 260px;
        height: 260px;
    }

    .image-box {
        width: 230px;
        height: 230px;
    }

    .circle.purple,
    .circle.pink {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .circle.purple {
        left: 18px;
        top: 45px;
    }

    .circle.pink {
        right: 18px;
        bottom: 32px;
    }

    .dots-pattern {
        display: none;
    }
}

@media(max-width:480px) {
    .about-wrapper {
        padding: 26px 16px;
    }

    .about-btn-solid {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
    }

    .difference-list li {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
    }
}

.cta-banner-section {
    /* background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%); */

    position: relative;
    z-index: 10;
}

.cta-banner {
    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    border-radius: 100px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 55px;
    border: 11px solid #fff;
    width: 100%;
}

.cta-banner::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
    left: -120px;
    top: -120px;
}



.cta-left {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 78px;
    height: 78px;
    min-width: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d2fd2;
    font-size: 22px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.cta-icon img {
    height: 55%;
    width: 55%;
}

.cta-content h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.2;
}

.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    font-weight: 400;
}

.cta-right {
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: #fff;
    color: #8a2fd0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 48px;
    transition: .35s;
}

.cta-btn:hover {
    background: #f5f5f5;
    color: #5b36d8;
    transform: translateY(-3px);
}

@media(max-width:1291px) {
    .cta-btn {
        font-size: 13px;
    }
}

@media(max-width:991px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 25px;
        border-radius: 0;
    }

    .cta-left {
        flex-direction: column;
        gap: 18px;
    }
}

@media(max-width:767px) {
    .cta-content h3 {
        font-size: 18px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .cta-btn {
        width: 100%;
    }
}

/*=====================================
    FOOTER WIDGET
======================================*/
.footer-section {
    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    position: relative;
    margin-top: -88.5px;
    padding: 150px 0 50px;

}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.2;
}

/*=====================================
    FOOTER LINKS
======================================*/

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all .35s ease;
    text-decoration: none;
}

.footer-links li a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: .35s;
    opacity: 0;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 16px;
}

.footer-links li a:hover::before {
    width: 10px;
    opacity: 1;
}

/*=====================================
    ABOUT
======================================*/

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    max-width: 260px;
    width: 100%;
}

.footer-tagline {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 290px;
}

/*=====================================
    SOCIAL ICONS
======================================*/

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social li a {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .35);

    color: #ffffff;
    font-size: 16px;

    transition: all .35s ease;
}

.footer-social li a:hover {

    background: #ffffff;
    color: #7035d7;

    transform: translateY(-5px);

    border-color: #ffffff;
}

/*=====================================
    CONTACT INFO
======================================*/

.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {

    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 22px;

    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact .icon {

    width: 20px;
    min-width: 20px;

    color: #ffffff;

    margin-top: 4px;

    font-size: 15px;
}

.footer-contact a {

    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: .35s;
}

.footer-contact a:hover {
    color: #ffffff;
}

/*=====================================
    FOOTER BOTTOM
======================================*/

.footer-bottom {

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;
}

.footer-bottom-links {

    display: flex;
    gap: 25px;
}

.footer-bottom-links a {

    color: rgba(255, 255, 255, .72);

    text-decoration: none;

    transition: .35s;
}

.footer-bottom-links a:hover {

    color: #ffffff;
}

/*=========================================
    FOOTER RESPONSIVE
==========================================*/

@media (max-width:1399px) {

    .footer-section {
        padding: 150px 0 45px;
    }

    .footer-logo img {
        max-width: 220px;
    }

    .footer-title {
        font-size: 18px;
    }

}

@media (max-width:1199px) {

    .footer-section {
        padding: 65px 0 40px;
    }

    .footer-top .row {
        row-gap: 40px;
    }

    .footer-about {
        margin-bottom: 10px;
    }

    .footer-logo img {
        max-width: 210px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-title {
        margin-bottom: 22px;
        font-size: 18px;
    }

}

@media (max-width:991px) {

    .footer-section {
        text-align: left;
        padding: 60px 0 35px;
    }

    .footer-about {
        margin-bottom: 15px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .footer-tagline {
        margin-bottom: 25px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-widget {
        margin-bottom: 10px;
    }

    .footer-title {
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact li {
        margin-bottom: 16px;
    }

    .footer-bottom {

        flex-direction: column;
        justify-content: center;
        text-align: center;

        gap: 15px;

        margin-top: 35px;
        padding-top: 20px;
    }

}

@media (max-width:767px) {

    .footer-section {
        padding: 50px 0 30px;
    }

    .footer-top .row {

        row-gap: 30px;
    }

    .footer-widget {

        text-align: left;
    }

    .footer-logo {

        display: block;
    }

    .footer-logo img {

        max-width: 180px;
    }

    .footer-tagline {

        font-size: 14px;
        margin-bottom: 22px;
    }

    .footer-title {

        font-size: 17px;
        margin-bottom: 16px;
    }

    .footer-links li {

        margin-bottom: 8px;
    }

    .footer-links li a {

        font-size: 14px;
    }

    .footer-contact li {

        font-size: 14px;
        gap: 10px;
    }

    .footer-contact .icon {

        width: 18px;
        min-width: 18px;
        font-size: 14px;
    }

    .footer-social {

        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-social li a {

        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .footer-bottom-links {

        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

}

@media (max-width:575px) {

    .footer-section {

        padding: 45px 0 25px;
    }

    .footer-top {

        text-align: center;
    }

    .footer-about {

        text-align: center;
    }

    .footer-logo {

        text-align: center;
    }

    .footer-tagline {

        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {

        justify-content: center;
    }

    .footer-widget {

        text-align: center;
    }

    .footer-contact li {

        justify-content: center;
        text-align: left;
    }

    .footer-contact .icon {

        margin-top: 3px;
    }

    .footer-links li a:hover {

        padding-left: 0;
    }

    .footer-links li a::before {

        display: none;
    }

}

@media (max-width:420px) {

    .footer-logo img {

        max-width: 160px;
    }

    .footer-title {

        font-size: 16px;
    }

    .footer-tagline {

        font-size: 13px;
    }

    .footer-links li a {

        font-size: 13px;
    }

    .footer-contact li {

        font-size: 13px;
    }

    .footer-social li a {

        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom p {

        font-size: 13px;
    }

    .footer-bottom-links {

        gap: 10px;
    }

    .footer-bottom-links a {

        font-size: 13px;
    }

}



/* ==================================================
   Insights Section
   ================================================== */
.new-insights-section {
    position: relative;
    padding: 50px 0px 90px;
    overflow: hidden;
    background-color: #f0f1f8;
    background-image: url(../img/images/latest-bg-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: -60px;
}

/* decorative blobs */
.new-insights-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -180px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 146, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.new-insights-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 53, 255, 0.22), transparent 70%);
    pointer-events: none;
}

/* ==================================================
       Heading
       ================================================== */
.new-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.new-latest-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgb(207, 24, 126) 0%, rgb(101, 64, 215) 55%, rgb(36, 68, 184) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.new-section-heading h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--new-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.new-section-heading p {
    color: var(--new-text);
    font-size: 18px;
    margin: 0;
}

/* ==================================================
       Slider wrapper with navigation
       ================================================== */
.new-slider-wrapper {
    position: relative;
}

/* ==================================================
       Swiper
       ================================================== */
.new-insights-slider {
    padding: 15px 5px 30px;
    overflow: hidden;
}

.new-insights-slider .swiper-wrapper {
    align-items: stretch;
}

.new-insights-slider .swiper-slide {
    display: flex !important;
    height: auto;
}

.new-insights-slider .swiper-slide .new-news-card {
    width: 100%;
}

/* ==================================================
       Navigation arrows (custom <> icons)
       ================================================== */
.new-swiper-button-next,
.new-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(94, 53, 255, 0.15);
    transition: all 0.25s ease;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-swiper-nav-color);
    font-size: 20px;
    font-weight: 700;
}

.new-swiper-button-next::after,
.new-swiper-button-prev::after {
    display: none;
    /* hide swiper default arrows */
}

.new-swiper-button-next i,
.new-swiper-button-prev i {
    font-size: 20px;
    color: var(--new-swiper-nav-color);
    transition: transform 0.2s;
}

.new-swiper-button-next:hover,
.new-swiper-button-prev:hover {
    background: var(--new-primary);
    border-color: var(--new-primary);
    box-shadow: 0 12px 30px rgba(94, 53, 255, 0.25);
}

.new-swiper-button-next:hover i,
.new-swiper-button-prev:hover i {
    color: #fff;
}

.new-swiper-button-next {
    right: -10px;
}

.new-swiper-button-prev {
    left: -10px;
}

/* disabled state (invisible if at edge, but loop keeps them active) */
.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ==================================================
   Modern News Card
================================================== */

.new-news-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(91, 54, 216, .12);
    transition: .45s ease;
}

.swiper {
    position: static;
}

.new-news-card:hover {
    transform: translateY(-6px);
}

.new-news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.new-news-card:hover::before {
    opacity: 1;
}

/* Image */

.new-news-image {
    position: relative;
    overflow: hidden;
}

.new-news-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .6s;
}

.new-news-card:hover .new-news-image img {
    transform: scale(1.08);
}

.new-news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(30, 59, 139, .65),
            transparent 65%);
}

/* Category */

.new-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;

    padding: 9px 18px;

    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;

    border-radius: 50px;

    box-shadow: 0 12px 25px rgba(101, 64, 215, .30);
}

.new-category.new-purple {
    background: linear-gradient(90deg, #5b36d8, #d1248f);
}

/* Content */

.new-news-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.new-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

.new-news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.new-news-meta i {
    color: #5b36d8;
}

/* Title */

.new-news-content h3 {
    font-size: 18px;
    line-height: 1.45;
    color: #1e3b8b;
    font-weight: 500;
    margin-bottom: 14px;
    transition: .35s;
}

.new-news-card:hover h3 {
    color: #6540d7;
}

/* Description */

.new-news-content p {
    color: #5b6478;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}

/* Button */

.new-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;

    color: #1e3b8b;
    font-weight: 600;

    transition: .35s;
}

.new-read-btn i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    color: #fff;

    transition: .35s;
}

.new-news-card:hover .new-read-btn {
    color: #cf187e;
    gap: 16px;
}

.new-news-card:hover .new-read-btn i {
    transform: translateX(4px) rotate(-45deg);
}

/* Navigation */

.new-swiper-button-prev,
.new-swiper-button-next {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

    color: #1e3b8b;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 35px rgba(30, 59, 139, .12);

    transition: .35s;
}

.new-swiper-button-prev:hover,
.new-swiper-button-next:hover {

    background: linear-gradient(90deg, #cf187e 0%, #6540d7 55%, #2444b8 100%);
    color: #fff;

    transform: translateY(-4px);

    box-shadow: 0 20px 45px rgba(101, 64, 215, .30);

}

/* ==================================================
       View All Button
       ================================================== */
.new-text-center {
    text-align: center;
    margin-top: 20px;
}

.new-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(90deg, rgb(207, 24, 126) 0%, rgb(101, 64, 215) 55%, rgb(36, 68, 184) 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.35s, box-shadow 0.35s;
    box-shadow: 0 15px 35px rgba(94, 53, 255, 0.25);
}

.new-view-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(94, 53, 255, 0.35);
}

.new-view-btn i {
    transition: transform 0.3s;
}

.new-view-btn:hover i {
    transform: translateX(6px);
}

/* ==================================================
       Responsive
       ================================================== */
@media (max-width: 1499px) {
    .new-insights-section {
        margin-bottom: -77px;
    }
}

@media (max-width: 1399px) {
    .new-section-heading h2 {
        font-size: 40px;
    }

    .new-insights-section {
        margin-bottom: -80px;
    }
}

@media (max-width: 1299px) {
    .new-insights-section {
        margin-bottom: -77px;
    }
}

@media (max-width: 1199px) {
    .new-insights-section {
        padding: 80px 0 60px;
    }

    .new-section-heading h2 {
        font-size: 36px;
    }

    .new-news-content {
        padding: 22px;
    }

    .new-news-content h3 {
        font-size: 22px;
    }

    .new-slider-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .new-insights-section {
        padding: 70px 0 50px;
    }

    .new-section-heading h2 {
        font-size: 34px;
    }

    .new-section-heading p {
        font-size: 16px;
    }

    .new-news-image img {
        height: 210px;
    }

    .new-news-content h3 {
        font-size: 21px;
    }

    .new-container-fluid {
        padding: 0 20px;
    }

    .new-slider-wrapper {
        padding: 0 30px;
    }

    .new-swiper-button-next {
        right: -6px;
        width: 42px;
        height: 42px;
    }

    .new-swiper-button-prev {
        left: -6px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .new-insights-section {
        padding: 60px 0 40px;
    }

    .new-section-heading {
        margin-bottom: 20px;
    }

    .new-latest-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .new-section-heading h2 {
        font-size: 28px;
    }

    .new-section-heading p {
        font-size: 15px;
    }

    .new-news-image img {
        height: 200px;
    }

    .new-news-content {
        padding: 20px;
    }

    .new-news-content h3 {
        font-size: 20px;
    }

    .new-news-content p {
        font-size: 14px;
    }

    .new-news-meta {
        gap: 10px;
        margin-bottom: 12px;
    }

    .new-news-meta span {
        font-size: 12px;
    }

    .new-view-btn {
        padding: 13px 28px;
        font-size: 15px;
    }

    .new-slider-wrapper {
        padding: 0 20px;
    }

    .new-swiper-button-next,
    .new-swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .new-swiper-button-next i,
    .new-swiper-button-prev i {
        font-size: 16px;
    }

    .new-swiper-button-next {
        right: -4px;
    }

    .new-swiper-button-prev {
        left: -4px;
    }
}

@media (max-width: 575px) {
    .new-container-fluid {
        padding: 0 16px;
    }

    .new-insights-section {
        padding: 50px 0 30px;
    }

    .new-section-heading h2 {
        font-size: 24px;
    }

    .new-section-heading p {
        font-size: 14px;
    }

    .new-news-image img {
        height: 180px;
    }

    .new-category {
        font-size: 10px;
        padding: 5px 12px;
    }

    .new-news-content {
        padding: 18px;
    }

    .new-news-content h3 {
        font-size: 18px;
    }

    .new-read-btn {
        font-size: 14px;
    }

    .new-view-btn {
        width: 100%;
        justify-content: center;
    }

    .new-slider-wrapper {
        padding: 0 12px;
    }

    .new-swiper-button-next,
    .new-swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .new-swiper-button-next i,
    .new-swiper-button-prev i {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    .new-container-fluid {
        max-width: 1600px;
    }

    .new-section-heading h2 {
        font-size: 52px;
    }

    .new-news-content h3 {
        font-size: 26px;
    }

    .new-news-image img {
        height: 240px;
    }
}

/* pulse animation for view button */
@keyframes newPulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(94, 53, 255, 0.18);
    }

    50% {
        box-shadow: 0 20px 45px rgba(94, 53, 255, 0.35);
    }

    100% {
        box-shadow: 0 0 0 rgba(94, 53, 255, 0.18);
    }
}

.new-view-btn {
    animation: newPulseGlow 3s infinite;
}

/* ======================================
 No : 2 ( About Us Page CSS )
=================================== */
.abtus-about-recruitment-section .container-fluid {
    padding-right: 0;
    width: 100% !important;
}

.abtus-about-recruitment-section {
    position: relative;
    padding: 0px 0 50px;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}


.abtus-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
}


.abtus-bg-circle-one {
    width: 320px;
    height: 320px;
    background: rgba(255, 80, 170, .18);
    left: -120px;
    top: -60px;
}


.abtus-about-title {
    font-size: 62px;
    line-height: 1.08;
    font-weight: 800;
    color: #17245f;
    margin-bottom: 28px;
}


.abtus-about-title span {
    display: inline-block;
    background: linear-gradient(90deg, #ff2f92, #8f2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.abtus-about-desc {
    font-size: 18px;
    color: #646d86;
    line-height: 1.9;
    margin-bottom: 42px;
}


.abtus-about-btn-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.abtus-btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 58px;
    padding: 0 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff2f92, #8f2cff);
    box-shadow: 0 15px 35px rgba(157, 64, 255, .28);
    transition: .35s ease;
    text-decoration: none;
}

.abtus-btn-primary-custom i {
    transition: .35s;
}

.abtus-btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(157, 64, 255, .35);
}

.abtus-btn-primary-custom:hover i {
    transform: translateX(5px);
}

.abtus-btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 58px;
    padding: 0 34px;
    border-radius: 50px;
    border: 2px solid #ff7ab8;
    color: #ff3b8d;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .35s ease;
    text-decoration: none;
}

.abtus-btn-outline-custom i {
    transition: .35s;
}

.abtus-btn-outline-custom:hover {
    background: linear-gradient(90deg, #ff2f92, #8f2cff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 60, 150, .25);
}

.abtus-btn-outline-custom:hover i {
    transform: translateX(5px);
}

.abtus-about-image-wrapper {
    position: relative;
    /* margin-left: auto; */
    width: 100%;
    border-radius: 40px 0 0 40px;
    padding: 40px 0 40px 14px;
}

.abtus-about-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 32px;

    z-index: 1;
    pointer-events: none;
}

.abtus-about-image {
    position: relative;
    box-shadow: 0 0 10px #c9bdbd;

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 0 0 100px;
    display: block;
    position: relative;
    z-index: 2;
}

.abtus-world-map {
    position: absolute;
    top: 40px;
    right: 35px;
    width: 72%;
    height: 52%;
    background: url("images/world-map.png") center/contain no-repeat;
    opacity: .18;
    z-index: 3;
    pointer-events: none;
}

.abtus-dots {
    position: absolute;
    background-image: radial-gradient(#cfc5ff 1.6px, transparent 1.6px);
    background-size: 12px 12px;
    opacity: .7;
    z-index: 0;
}

.abtus-dots-top {
    width: 90%;
    height: 90%;
    top: 19px;
    right: -19px;
}

.abtus-dots-bottom {
    width: 140px;
    height: 60px;
    left: -25px;
    bottom: -18px;
}

.abtus-floating-icon {
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
    z-index: 5;
    animation: floatIcon 4s ease-in-out infinite;
}

.abtus-floating-icon i {
    font-size: 28px;
    color: #7d3cff;
}

.abtus-top-icon {
    top: 34px;
    right: 26px;
}

.abtus-bottom-icon {
    left: 45px;
    top: 52%;
    transform: translateY(-50%);
}


.abtus-bottom-icon i {
    color: #ff2f92;
}


.abtus-floating-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(142, 71, 255, .18);
}

.abtus-about-image-wrapper::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 34px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    background: rgba(108, 86, 255, .8);
    filter: blur(25px);
    border-radius: 50%;
    z-index: -1;
}


@keyframes floatIcon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.abtus-bottom-icon {
    animation: floatLeft 4s ease-in-out infinite;
}


@keyframes floatLeft {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }

    .abtus-about-title {
        font-size: 64px;
    }

    .abtus-about-desc {
        font-size: 18px;
    }
}


@media (max-width:1399px) {
    .abtus-about-recruitment-section {
        padding: 90px 0;
    }

    .abtus-about-title {
        font-size: 56px;
    }

    .abtus-about-desc {
        font-size: 17px;
    }

}

@media (max-width:1199px) {
    .abtus-about-recruitment-section {
        padding: 80px 0;
    }

    .abtus-about-title {
        font-size: 48px;
        line-height: 1.15;
    }

    .abtus-about-desc {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .abtus-btn-primary-custom,
    .abtus-btn-outline-custom {
        height: 54px;
        padding: 0 28px;
        font-size: 15px;
    }

    .abtus-about-image-wrapper {
        max-width: 100%;
    }

    .abtus-floating-icon {
        width: 58px;
        height: 58px;
    }

    .abtus-floating-icon i {
        font-size: 24px;
    }
}

@media (max-width:991px) {
    .abtus-about-recruitment-section {
        padding: 70px 0;
    }

    .abtus-about-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .abtus-about-title {
        font-size: 42px;
    }

    .abtus-about-desc {
        margin: 25px auto 35px;
        max-width: 700px;
    }

    .abtus-about-btn-group {
        justify-content: center;
    }

    .abtus-about-image-wrapper {
        margin: 0 auto;
        max-width: 700px;
    }

    .abtus-top-icon {
        top: 20px;
        right: 20px;
    }

    .abtus-bottom-icon {
        left: 25px;
    }

    .abtus-world-map {
        width: 75%;
        top: 30px;
        right: 25px;
    }


}


@media (max-width:767px) {
    .abtus-about-recruitment-section {
        padding: 60px 0;
    }


    .abtus-about-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .abtus-about-desc {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .abtus-about-btn-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .abtus-btn-primary-custom,
    .abtus-btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .abtus-about-image-wrapper {
        border-radius: 28px;
        padding: 10px;
    }

    .abtus-about-image {
        border-radius: 22px;
    }

    .abtus-floating-icon {
        width: 50px;
        height: 50px;
    }

    .abtus-floating-icon i {
        font-size: 20px;
    }

    .abtus-top-icon {
        top: 15px;
        right: 15px;
    }

    .abtus-bottom-icon {
        left: 15px;
    }

    .abtus-dots-top {
        width: 120px;
        height: 45px;
    }

    .abtus-world-map {
        width: 78%;
        opacity: .15;
    }
}


@media (max-width:575px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .abtus-about-recruitment-section {
        padding: 50px 0;
    }

    .abtus-about-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .abtus-about-desc {
        font-size: 14px;
    }

    .abtus-btn-primary-custom,
    .abtus-btn-outline-custom {
        height: 50px;
        padding: 0 22px;
        font-size: 14px;
    }

    .abtus-about-image-wrapper {
        border-radius: 22px;
        padding: 8px;
    }

    .abtus-about-image {
        border-radius: 18px;
    }

    .abtus-floating-icon {
        width: 44px;
        height: 44px;
    }

    .abtus-floating-icon i {
        font-size: 18px;
    }

    .abtus-world-map {
        display: none;
    }

    .abtus-dots {
        display: none;
    }
}

@media (max-width:399px) {

    .abtus-about-title {
        font-size: 26px;
    }

    .abtus-about-desc {
        font-size: 13px;
    }

    .abtus-btn-primary-custom,
    .abtus-btn-outline-custom {
        font-size: 13px;
        height: 48px;
    }
}


/*====================================================
    Our Story Section
====================================================*/

.our-story-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.our-story-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -120px;
    background: #f6ebff;
    filter: blur(110px);
    border-radius: 50%;
    z-index: 0;
}

.our-story-section .container {
    position: relative;
    z-index: 2;
}

.story-image-area {
    position: relative;
    max-width: 560px;
    margin: auto;
}


.story-shape {
    position: absolute;
    left: -22px;
    top: 30px;
    width: 92%;
    height: 92%;
    background: #f3efff;
    border-radius: 34px;
    z-index: 0;
}

/* Main Image */

.story-main-image {
    position: relative;
    width: 100%;
    border-radius: 30px;
    z-index: 2;
    transition: .4s;
}

.story-dots {
    position: absolute;
    width: 110px;
    height: 220px;
    right: -45px;
    top: 60px;
    border-radius: 18px;
    background-image:
        radial-gradient(circle, #9f82ff 1.6px, transparent 1.8px);
    background-size: 16px 16px;
    z-index: 1;
}

.experience-box {
    position: absolute;
    right: -22%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 195px;
    padding: 24px 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ff2d93, #d40b79);
    color: #fff;
    z-index: 5;
    box-shadow:
        0 8px 15px rgba(220, 20, 120);
}

.experience-box h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.experience-box span {
    display: block;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

/*====================================================
    Right Content
====================================================*/

.story-content {
    padding-left: 35px;
}




.story-description {
    max-width: 700px;
    color: #666c84;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/*==========================================
    Statistics Cards
==========================================*/

.story-info-card {
    position: relative;
    background: #fff;
    border: 1px solid #f0eff8;
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 10px 35px rgba(28, 35, 90, .05);
}

.story-info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8f4cff, #ff2d93);
    transform: scaleX(0);
    transition: .4s;
}

.story-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(25, 35, 80, .12);
}

.story-info-card:hover::before {
    transform: scaleX(1);
}

/*==========================================
    Icon Circle
==========================================*/

.story-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .35s;
}

.story-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: .08;
}

.story-icon i {
    font-size: 32px;
    line-height: 1;
    transition: .35s;
}

.story-icon.award,
.story-icon.users,
.story-icon.globe,
.story-icon.calendar {
    color: #fff;
    background: linear-gradient(90deg, #8f4cff, #ff2d93);

}

.story-icon.calendar::after {
    background: #635BFF;
}


.story-icon.globe::after {
    background: #b03cff;
}


.story-icon.users::after {
    background: #5867ff;
}

.story-icon.award::after {
    background: #ff2d93;
}


.story-info-card:hover .story-icon {
    transform: rotateY(180deg);
}

.story-info-card:hover .story-icon i {
    transform: rotateY(-180deg) scale(1.08);
}


.story-info-card span {
    display: block;
    font-size: 15px;
    color: #7b819b;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.5;
}

.story-info-card h3 {
    margin: 0;
    color: #16255c;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.story-info-card p {
    margin: 0;
}

.experience-box {
    overflow: hidden;
}

.experience-box::before {
    content: "";
    position: absolute;
    top: -45%;
    left: -30%;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .30),
            transparent 55%);
    transform: rotate(-25deg);
}

.experience-box::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -14px;
    height: 18px;
    border-radius: 50%;
    background: rgba(214, 18, 117, .35);
    filter: blur(12px);
    z-index: -1;
}

.story-image-area,
.story-content,
.story-info-card,
.story-main-image,
.story-icon,
.experience-box {
    transition: all .35s ease;
}

@media (min-width:1400px) {

    .container {
        max-width: 1320px;
    }

    .story-title {
        font-size: 56px;
    }

    .story-main-image {
        min-height: 560px;
        object-fit: cover;
    }

}

@media (max-width:1399px) {

    .our-story-section {
        padding: 100px 0;
    }

    .story-title {
        font-size: 48px;
    }

    .story-description {
        font-size: 16px;
    }

    .story-content {
        padding-left: 25px;
    }

    .experience-box {
        width: 185px;
        padding: 22px;
    }

    .experience-box h2 {
        font-size: 46px;
    }

    .experience-box span {
        font-size: 18px;
    }

}

@media (max-width:1199px) {

    .our-story-section {
        padding: 90px 0;
    }

    .story-title {
        font-size: 42px;
    }

    .story-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .story-content {
        padding-left: 20px;
    }

    .story-info-card {
        padding: 30px 20px;
    }

    .story-icon {
        width: 70px;
        height: 70px;
    }

    .story-icon i {
        font-size: 34px;
    }

    .story-info-card h3 {
        font-size: 26px;
    }

    .experience-box {
        left: 68%;
        width: 170px;
        padding: 20px;
    }

    .experience-box h2 {
        font-size: 40px;
    }

    .experience-box span {
        font-size: 17px;
    }

}

@media (max-width:991px) {

    .our-story-section {
        padding: 80px 0;
    }

    .story-image-area {
        max-width: 650px;
        margin: 0 auto 40px;
    }

    .story-content {
        padding-left: 0;
        text-align: center;
    }

    .story-description {
        max-width: 700px;
        margin: 0 auto 25px;
    }

    .story-title {
        font-size: 38px;
    }

    .story-content::before,
    .story-content::after {
        display: none;
    }

    .story-info-card {
        padding: 35px 25px;
    }

    .experience-box {
        left: 72%;
        bottom: -15px;
    }

}

@media (max-width:767px) {

    .our-story-section {
        padding: 70px 0;
    }

    .story-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .story-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .story-image-area {
        max-width: 100%;
    }

    .story-main-image {
        border-radius: 22px;
    }

    .story-shape {
        border-radius: 24px;
    }

    .story-dots {
        width: 70px;
        height: 150px;
        right: -15px;
        top: 35px;
    }

    .experience-box {
        width: 160px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        text-align: center;
    }

    .experience-box h2 {
        font-size: 36px;
    }

    .experience-box span {
        font-size: 16px;
    }

    .story-info-card {
        padding: 28px 20px;
    }

}


@media (max-width:575px) {

    .our-story-section {
        padding: 60px 0;
    }

    .story-title {
        font-size: 28px;
    }

    .story-description {
        font-size: 14px;
    }

    .story-main-image {
        border-radius: 18px;
    }

    .story-shape {
        display: none;
    }

    .story-dots {
        display: none;
    }

    .experience-box {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: -40px auto 0;
        width: 170px;
    }

    .story-info-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .story-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .story-icon i {
        font-size: 30px;
    }

    .story-info-card span {
        font-size: 14px;
    }

    .story-info-card h3 {
        font-size: 24px;
    }

}

@media (max-width:399px) {

    .story-title {
        font-size: 24px;
    }

    .story-description {
        font-size: 13px;
    }

    .experience-box {
        width: 150px;
        padding: 18px;
    }

    .experience-box h2 {
        font-size: 32px;
    }

    .experience-box span {
        font-size: 15px;
    }

    .story-info-card {
        padding: 22px 16px;
    }

    .story-icon {
        width: 60px;
        height: 60px;
    }

    .story-icon i {
        font-size: 28px;
    }

    .story-info-card h3 {
        font-size: 22px;
    }

}


@media (min-width:992px) {

    .story-image-area:hover .story-main-image {
        transform: scale(1.03);
    }

    .story-image-area:hover .experience-box {
        transform: translateX(-50%) translateY(-8px);
    }

    .story-info-card:hover {
        border-color: #ece7ff;
    }

}


.abtus-mission-vision-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.abtus-mission-vision-section::before,
.abtus-mission-vision-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.abtus-mission-vision-section::before {
    width: 380px;
    height: 380px;
    left: -170px;
    top: -120px;
    background: #f5f1ff;
}

.abtus-mission-vision-section::after {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    background: #fff1f8;
}

.abtus-mv-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ececf7;
    border-radius: 28px;
    padding: 34px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow:
        0 12px 35px rgba(20, 35, 90, .05),
        0 2px 10px rgba(20, 35, 90, .03);
}

.abtus-mission-card {
    border-color: #ece8ff;
}

.abtus-values-card {
    border-color: #ffe2ef;
}

.abtus-mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(145, 92, 255, .06), transparent 45%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.abtus-values-card::before {
    background: radial-gradient(circle at top left, rgba(255, 60, 150, .06), transparent 45%);
}

.abtus-mv-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c4dff, #ff2f92);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    border-radius: 20px;
}

.abtus-card-title {
    font-weight: 500;
    color: #17245f;
}

.abtus-card-text {
    font-size: 17px;
    line-height: 1.9;
    color: #66708b;
}

.abtus-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #2a3265;
    line-height: 1.6;
    transition: transform .3s ease;
}

.abtus-values-list li:last-child {
    margin-bottom: 0;
}

.abtus-values-list li i {
    font-size: 18px;
    color: #ff2f92;
    margin-top: 3px;
    transition: transform .3s ease;
}

.abtus-icon-circle {
    position: relative;
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 35, 90, .10);
    transition: transform .35s ease;
}

.abtus-icon-circle i {
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: transform .35s ease;
}

.abtus-icon-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b61ff, #536dfe);
}

.abtus-icon-circle::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -95%;
    left: -90%;
    background: rgba(255, 255, 255, .35);
    transform: rotate(-40deg);
    transition: all .6s ease;
}

.abtus-mission-icon::before {
    background: linear-gradient(135deg, #7555ff, #5d74ff);
}

.abtus-vision-icon::before {
    background: linear-gradient(135deg, #4b7cff, #5fa5ff);
}

.abtus-values-icon::before {
    background: linear-gradient(135deg, #ff5aa9, #ff2b8a);
}

.abtus-watermark {
    position: absolute;
    left: 18px;
    bottom: -22px;
    font-size: 120px;
    color: #eef2ff;
    opacity: .85;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.abtus-values-card .abtus-watermark {
    color: #fff0f6;
}

.abtus-mv-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 60px rgba(20, 35, 90, .12),
        0 8px 20px rgba(20, 35, 90, .05);
    border-color: #d9d9ff;
}

.abtus-values-card:hover {
    border-color: #ffc8df;
}

.abtus-mv-card:hover::before {
    opacity: 1;
}

.abtus-mv-card:hover::after {
    transform: scaleX(1);
}

.abtus-mv-card:hover .abtus-icon-circle {
    transform: translateY(-6px) rotate(8deg);
}

.abtus-mv-card:hover .abtus-icon-circle i {
    transform: scale(1.12);
}

.abtus-mv-card:hover .abtus-icon-circle::after {
    top: 120%;
    left: 120%;
}

.abtus-mv-card:hover .abtus-card-title {
    color: #6f45ff;
    transition: color .35s ease;
}

.abtus-values-card:hover .abtus-card-title {
    color: #ff2b8a;
}

.abtus-values-list li:hover {
    transform: translateX(6px);
}

.abtus-values-list li:hover i {
    transform: scale(1.15);
}

@media (max-width: 1399px) {
    .abtus-mv-card {
        padding: 32px;
    }

    .abtus-icon-circle {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .abtus-icon-circle i {
        font-size: 34px;
    }

    .abtus-card-title {
        font-size: 30px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 16px;
    }

    .abtus-watermark {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .abtus-mv-card {
        padding: 28px;
        border-radius: 24px;
    }

    .abtus-icon-circle {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .abtus-icon-circle i {
        font-size: 30px;
    }

    .abtus-card-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 15px;
    }

    .abtus-watermark {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .abtus-mv-card {
        padding: 28px 24px;
    }

    .abtus-card-title {
        font-size: 24px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 15px;
    }

    .abtus-watermark {
        font-size: 80px;
        left: 15px;
        bottom: -10px;
    }

    .abtus-mv-card:hover {
        transform: none;
    }
}

@media (max-width: 767px) {
    .abtus-mv-card {
        padding: 24px;
        border-radius: 20px;
    }

    .abtus-mv-card .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .abtus-icon-circle {
        width: 70px;
        height: 70px;
        min-width: 70px;
        margin-bottom: 20px;
    }

    .abtus-icon-circle i {
        font-size: 28px;
    }

    .abtus-card-content {
        padding-left: 0 !important;
    }

    .abtus-card-title {
        font-size: 24px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 15px;
    }

    .abtus-values-list {
        text-align: left;
        margin-top: 18px;
    }

    .abtus-watermark {
        font-size: 70px;
        left: 12px;
        bottom: -8px;
    }
}

@media (max-width: 575px) {
    .abtus-mv-card {
        padding: 22px;
        border-radius: 18px;
    }

    .abtus-icon-circle {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .abtus-icon-circle i {
        font-size: 24px;
    }

    .abtus-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 14px;
    }

    .abtus-values-list li i {
        font-size: 16px;
    }

    .abtus-watermark {
        display: none;
    }
}

@media (max-width: 399px) {
    .abtus-mv-card {
        padding: 18px;
    }

    .abtus-icon-circle {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .abtus-icon-circle i {
        font-size: 22px;
    }

    .abtus-card-title {
        font-size: 20px;
    }

    .abtus-card-text,
    .abtus-values-list li {
        font-size: 13px;
    }
}

/*====================================================
   why-choose-section
====================================================*/

.why-choose-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
}


.section-description {
    font-size: 17px;
    color: #6d748b;
    line-height: 1.9;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-item {
    align-items: flex-start;
}

.why-check {
    min-width: 30px;
    margin-right: 18px;
}

.why-check i {
    font-size: 20px;
    color: #6d43ff;
}

.why-text h5 {
    font-size: 17px;
    font-weight: 600;
    color: #17245f;
    transition: .35s;
}

.why-text p {
    margin: 0;
    color: #67708a;
    font-size: 16px;
    line-height: 1.8;
}

.why-image-wrapper {
    position: relative;
    max-width: 620px;
    margin-left: auto;
}

.why-bg-circle {
    position: absolute;
    width: 96%;
    height: 96%;
    left: -20px;
    top: 22px;
    background: #f4f1ff;
    border-radius: 36px;
    z-index: 0;
}

.why-image {
    position: relative;
    width: 100%;
    border-radius: 34px;
    z-index: 2;
    object-fit: cover;
    box-shadow:
        0 25px 60px rgba(25, 35, 90, .10),
        0 8px 25px rgba(25, 35, 90, .05);
    transition: .45s ease;
}


.why-image-wrapper:hover .why-image {
    transform: translateY(-6px);
}


.why-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0),
            rgba(20, 30, 60, .05));
    pointer-events: none;
    z-index: 3;
}


.floating-icons {
    position: absolute;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 10;
}

.floating-icons::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 35px;
    width: 2px;
    height: calc(100% - 70px);
    background: linear-gradient(to bottom,
            rgba(207, 24, 126, .15),
            rgba(101, 64, 215, .15),
            rgba(36, 68, 184, .15));
    transform: translateX(-50%);
    z-index: -1;
}


.floating-icon {
    position: relative;
    width: 92px;
    height: 92px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 45px rgba(20, 35, 90, .12),
        0 5px 18px rgba(20, 35, 90, .06);
    transition: all .35s ease;
    overflow: hidden;
    cursor: pointer;
}


.floating-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: .35s;
    background: linear-gradient(90deg,
            #cf187e 0%,
            #6540d7 55%,
            #2444b8 100%);
}

.floating-icon::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    left: -130%;
    top: -130%;
    background: rgba(255, 255, 255, .35);
    transform: rotate(35deg);
    transition: .7s;
}


.floating-icon i {
    position: relative;
    z-index: 2;
    font-size: 38px;
    transition: .35s;
}

.floating-icon.pink i {
    color: #cf187e;
}

.floating-icon.blue i {
    color: #2444b8;
}

.floating-icon:hover {
    transform: translateX(-10px) scale(1.08);
    box-shadow:
        0 25px 55px rgba(101, 64, 215, .22),
        0 8px 25px rgba(36, 68, 184, .12);
}

.floating-icon:hover::before {
    opacity: 1;
}

.floating-icon:hover::after {
    left: 120%;
    top: 120%;
}

.floating-icon:hover i {
    color: #ffffff;
    transform: scale(1.15);
}

.why-item {
    transition: all .35s ease;
}

.why-item:hover {
    transform: translateX(8px);
}

.why-item:hover .why-check i {
    color: #cf187e;
    transform: scale(1.15);
}

@media (min-width:1400px) {
    .why-image-wrapper {
        max-width: 620px;
    }

    .floating-icon {
        width: 92px;
        height: 92px;
    }
}

@media (max-width:1399px) {
    .why-choose-section {
        padding: 100px 0;
    }

    .section-description {
        font-size: 16px;
    }

    .why-text h5 {
        font-size: 20px;
    }

    .why-text p {
        font-size: 15px;
    }

    .floating-icon {
        width: 84px;
        height: 84px;
    }

    .floating-icon i {
        font-size: 34px;
    }
}

@media (max-width:1199px) {
    .why-choose-section {
        padding: 90px 0;
    }

    .section-description {
        margin-bottom: 30px;
    }

    .why-text h5 {
        font-size: 18px;
    }

    .why-text p {
        font-size: 15px;
    }

    .floating-icons {
        right: -25px;
        gap: 18px;
    }

    .floating-icon {
        width: 74px;
        height: 74px;
    }

    .floating-icon i {
        font-size: 30px;
    }
}

@media (max-width:991px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-content {
        max-width: 100%;
        text-align: center;
    }

    .section-description {
        max-width: 700px;
        margin: 0 auto 35px;
    }

    .why-item {
        text-align: left;
    }

    .why-image-wrapper {
        max-width: 650px;
        margin: 40px auto 0;
    }

    .floating-icons {
        right: -15px;
    }

    .floating-icon {
        width: 70px;
        height: 70px;
    }

    .floating-icon i {
        font-size: 28px;
    }
}

@media (max-width:767px) {

    .why-choose-section {
        padding: 70px 0;
    }



    .section-title {
        line-height: 1.25;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .why-item {
        align-items: flex-start;
    }

    .why-check {
        min-width: 24px;
        margin-right: 12px;
    }

    .why-check i {
        font-size: 18px;
    }

    .why-text h5 {
        font-size: 17px;
    }

    .why-text p {
        font-size: 14px;
    }

    .why-bg-circle {
        display: none;
    }

    .why-image {
        border-radius: 24px;
    }

    /* Icons become horizontal */
    .floating-icons {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .floating-icons::before {
        display: none;
    }

    .floating-icon {
        width: 65px;
        height: 65px;
    }

    .floating-icon i {
        font-size: 24px;
    }
}

@media (max-width:575px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .section-description {
        font-size: 14px;
    }

    .why-item {
        align-items: flex-start;
    }

    .why-check {
        min-width: 22px;
        margin-right: 10px;
    }

    .why-check i {
        font-size: 17px;
    }

    .why-text h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .why-text p {
        font-size: 13px;
        line-height: 1.7;
    }

    .why-image {
        border-radius: 20px;
    }

    .floating-icons {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }

    .floating-icon {
        width: 58px;
        height: 58px;
    }

    .floating-icon i {
        font-size: 22px;
    }
}

@media (max-width:399px) {
    .section-description {
        font-size: 13px;
    }

    .why-text h5 {
        font-size: 15px;
    }

    .why-text p {
        font-size: 12px;
    }

    .floating-icon {
        width: 52px;
        height: 52px;
    }

    .floating-icon i {
        font-size: 20px;
    }
}

@media (min-width:992px) {
    .why-item:hover {
        transform: translateX(8px);
    }

    .why-image-wrapper:hover .why-image {
        transform: scale(1.02);
    }

    .floating-icon:hover {
        transform: translateX(-8px) scale(1.08);
    }
}


/*==========leadership Section ==========*/

.leadership-section {
    padding: 90px 0;
    background: #fff;
}

.leader-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #edf0f8;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    transition: .35s;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.leader-img {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.leader-card:hover img {
    transform: scale(1.08);
}

.leader-content h4 {
    margin: 25px 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1d2557;
}

.leader-content span {
    display: block;
    color: #cf187e;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-content p {
    color: #6d748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

/*========== LinkedIn Button ==========*/

.linkedin-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(90deg, #cf187e, #6540d7, #2444b8);
    transition: .35s;
}

.linkedin-btn:hover {
    color: #fff;
    transform: rotate(360deg) scale(1.08);
}

/*========== Responsive ==========*/

@media(max-width:991px) {

    .leader-card {
        padding: 35px 22px;
    }

    .leader-img {
        width: 115px;
        height: 115px;
    }

}

@media(max-width:767px) {

    .leadership-section {
        padding: 70px 0;
    }

    .leader-card {
        padding: 30px 20px;
    }

    .leader-content h4 {
        font-size: 18px;
    }

}

@media(max-width:575px) {

    .leader-img {
        width: 100px;
        height: 100px;
    }

    .leader-content h4 {
        font-size: 14px;
    }

    .leader-content p {
        font-size: 14px;
    }

}

/* ========Map bg-image */

.global-presence-section {
    padding: 90px 0;
    background: #fff;
}


.global-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.world-map {
    position: relative;
    width: 100%;
    height: 450px;
    background: url(../img/images/map-bg-img.png) center center no-repeat;
    background-size: contain;
}

/* Pins */

.map-pin {
    position: absolute;
    color: #ff3f8f;
    font-size: 36px;
    animation: jump 2s infinite;
    filter: drop-shadow(0 8px 15px rgba(255, 0, 120, .25));
}

.map-pin.blue {
    color: #4b4cff;
}

.pin1 {
    left: 18%;
    top: 22%;
}

.pin2 {
    left: 53%;
    top: 22%;
}

.pin3 {
    left: 57%;
    top: 30%;
}

.pin4 {
    left: 63%;
    top: 17%;
}

.pin5 {
    left: 60%;
    top: 46%;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

/* Right */

.country-list {
    border-left: 1px solid #ececec;
    padding-left: 35px;
}

.country-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-locations,
.job-locations i {
    color: #cf187e !important;
    font-weight: 800;
    font-size: 18px;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #20235b;
    font-weight: 500;
    font-size: 16px;
}

.country-list i {
    color: #673de6;
}

/* Responsive */

@media(max-width:991px) {

    .global-content {
        text-align: center;
    }

    .world-map {
        height: 320px;
    }

    .country-list {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 30px;
    }

    .country-list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .global-content h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .global-presence-section {
        padding: 70px 0;
    }

    .world-map {
        height: 220px;
    }

    .country-list ul {
        grid-template-columns: 1fr;
    }

    .global-content h2 {
        font-size: 28px;
    }

    .explore-btn {
        width: 100%;
    }

    .map-pin {
        font-size: 28px;
    }

}

/* --------------------- */

.process-wrapper {
    position: relative;
    margin-top: 70px;
}

.process-line {
    position: absolute;
    top: 72px;
    left: 7%;
    right: 7%;
    border-top: 2px dashed #d8cfff;
    z-index: 0;
}

.process-card {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-icon {
    width: 96px;
    height: 96px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f1ebff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #7b3ff2;
    box-shadow: 0 12px 35px rgba(108, 71, 255, .08);
    transition: .4s;
}

.process-card:hover .process-icon {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #d61f9b, #4b37d9);
    color: #fff;
    box-shadow: 0 20px 40px rgba(75, 55, 217, .25);
}

.process-card h5 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ff4a9d;
}

.process-card p {
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width:991px) {

    .process-line {
        display: none;
    }

    .process-card {
        margin-bottom: 30px;
    }



    .process-icon {
        width: 82px;
        height: 82px;
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .recruitment-process {
        padding: 70px 0;
    }



    .process-card h5 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 14px;
    }

    .process-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

}

.gre-testimonial-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}



.gre-testimonial-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
}

.gre-text {
    font-size: 15px;
    line-height: 1.9;
    color: #6c7288;
    margin-bottom: 30px;
}

.gre-client,
.gre-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gre-client img,
.gre-client-info img {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.gre-client h5,
.gre-client-info h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1d2552;
}

.gre-client span,
.gre-client-info span {
    display: block;
    margin-top: 4px;
    color: #7d839b;
    font-size: 14px;
}

.gre-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-color: #fff !important;
}

.greTestimonialSwiper {
    width: 100%;
    height: 100%;
}

.greTestimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.greTestimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.gre-testimonial-card {
    background: #ffffff;
    width: 100%;
    border-radius: 22px;
    padding: 25px;
    border: 1px solid #cecdcd;
    /* display:flex;
    flex-direction:column; */
    transition: .4s;
}

.gre-quote-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5ff;
    color: #5d4cff;
    font-size: 22px;
    margin-bottom: 22px;
}

.gre-testimonial-card:hover .gre-quote-icon {
    background: linear-gradient(135deg, #d61f9b, #4b37d9);
    color: #fff;
}


.gre-review-text {
    font-size: 15px;
    color: #5d647a;
    line-height: 1.9;
    margin-bottom: 22px;
    flex: 1;
}

.gre-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.gre-rating i {
    color: #ffb400;
    font-size: 15px;
}

.gre-prev,
.gre-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ececff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    color: #6b54ff;
    font-size: 18px;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gre-prev {
    left: 1px;
}

.gre-next {
    right: 1px;
}

.gre-prev:hover,
.gre-next:hover {
    color: #fff;
    background: linear-gradient(135deg, #d61f9b, #4b37d9);
    transform: translateY(-50%) scale(1.08);
}

.gre-testimonial-pagination {
    margin-top: 40px;
    text-align: center;
}

.gre-testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    margin: 0 5px !important;
    background: #d6d8ea;
    transition: .35s;
}

.gre-testimonial-pagination .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 50px;
    background: linear-gradient(90deg, #d61f9b, #4b37d9);
}

.gre-testimonial-card:hover .gre-rating i {
    transform: translateY(-2px);
}

.gre-testimonial-card:hover .gre-client-info img {
    transform: scale(1.06);
}

.gre-client-info img {
    transition: .35s;
}

@media(min-width:1400px) {
    .gre-testimonial-grid {
        grid-template-columns: 380px 1fr;
    }
}

@media(max-width:1199px) {
    .gre-testimonial-grid {
        grid-template-columns: 320px 1fr;
        gap: 25px;
    }

    .gre-testimonial-card {
        padding: 28px;
    }

    .gre-prev {
        left: -10px;
    }

    .gre-next {
        right: -10px;
    }
}

@media(max-width:991px) {
    .gre-testimonial-section {
        padding: 80px 0;
    }

    .gre-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gre-intro-card {
        max-width: 100%;
    }

    .gre-slider-wrap {
        padding: 0;
    }

    .gre-prev {
        left: 0;
    }

    .gre-next {
        right: 0;
    }

    .gre-testimonial-pagination {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .gre-testimonial-section {
        padding: 70px 0;
    }

    .gre-intro-card,
    .gre-testimonial-card {
        padding: 22px;
        border-radius: 18px;
    }

    .gre-text,
    .gre-review-text {
        font-size: 14px;
    }

    .gre-client img,
    .gre-client-info img {
        width: 50px;
        height: 50px;
    }

    .gre-client h5,
    .gre-client-info h5 {
        font-size: 15px;
    }

    .gre-client span,
    .gre-client-info span {
        font-size: 12px;
    }

    .gre-quote-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .gre-rating {
        margin-bottom: 18px;
    }

    .gre-testimonial-pagination {
        margin-top: 25px;
    }

    .gre-testimonial-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .gre-testimonial-pagination .swiper-pagination-bullet-active {
        width: 26px;
    }
}


@media(max-width:480px) {
    .gre-subtitle {
        font-size: 11px;
    }

    .gre-intro-card,
    .gre-testimonial-card {
        padding: 18px;
    }

    .gre-review-text {
        line-height: 1.8;
    }

    .gre-client,
    .gre-client-info {
        gap: 10px
    }

    .gre-client img,
    .gre-client-info img {
        width: 46px;
        height: 46px;
    }
}

/*=========================================================
NO .2 CONTACT PAGE
=========================================================*/

.gre-contact-section {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}

.gre-contact-section .container-fluid {
    position: relative;
    z-index: 2;
}

.gre-contact-content {
    max-width: 520px;
}

.gre-contact-subtitle {
    display: inline-block;
    color: #d61f9b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
}

.gre-contact-subtitle::after {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: #d61f9b;
    display: block;
    margin-top: 8px;
}

.gre-contact-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #233b8f;
    margin-bottom: 24px;
}

.gre-contact-title span {
    color: #e9288f;
}

.gre-contact-text {
    font-size: 20px;
    line-height: 1.9;
    color: #6b7286;
    max-width: 420px;
    margin-bottom: 45px;
}

.gre-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gre-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.gre-contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(233, 40, 143, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #e9288f;
    box-shadow: 0 12px 30px rgba(75, 55, 217, .08);
    transition: .35s;
}

.gre-contact-item:hover .gre-contact-icon {
    background: linear-gradient(135deg, #d61f9b, #4b37d9);
    color: #ffffff;
    transform: translateY(-5px);
}

.gre-contact-details h6 {
    margin: 0 0 6px;
    color: #2b3159;
    font-size: 18px;
    font-weight: 700;
}

.gre-contact-details a,
.gre-contact-details span {
    color: #666f85;
    font-size: 17px;
    line-height: 1.7;
    text-decoration: none;
    transition: .3s;
}

.gre-contact-details a:hover {
    color: #d61f9b;
}

.gre-contact-map {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gre-world-map {
    position: absolute;
    inset: 0;
    background: url("../img/images/map-bg-img.png") center center no-repeat;
    background-size: contain;
}

.gre-map-pin {
    position: absolute;
    color: #e9288f;
    font-size: 34px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(233, 40, 143, .30));
    animation: grePinBounce 2.5s infinite;
}

.gre-pin-usa {
    top: 30%;
    left: 20%;
}

.gre-pin-brazil {
    top: 66%;
    left: 34%;
}

.gre-pin-india {
    top: 43%;
    left: 56%;
}

.gre-pin-japan {
    top: 34%;
    left: 79%;
}

.gre-pin-australia {
    top: 76%;
    left: 86%;
}

.gre-map-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 247, .12), transparent 70%);
    z-index: 1;
}

.gre-circle-top {
    width: 140px;
    height: 140px;
    right: -35px;
    top: -25px;
}

.gre-circle-bottom {
    width: 220px;
    height: 220px;
    right: 60px;
    bottom: -80px;
}


@keyframes grePinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*==========================================================
    CONTACT FORM SECTION - PART 1
    Layout + Form + Cards
==========================================================*/

.gre-contact-form-section {
    position: relative;
    padding: 0 0 100px 0;
    background: #ffffff;
    overflow: hidden;
}


.gre-contact-form-section .container-fluid {
    position: relative;
    z-index: 2;
}

.gre-contact-form-card,
.gre-contact-info-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    border: 1px solid #eceef8;
    box-shadow:
        0 20px 60px rgba(25, 33, 72, .08);
    transition: .35s;
}

.gre-section-heading {
    margin-bottom: 25px;
}

.gre-heading-line {
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d61f9b, #4b37d9);
}

.gre-contact-form-card .form-label {
    font-size: 15px;
    font-weight: 600;
    color: #37415d;
    margin-bottom: 10px;
}

.gre-input {
    width: 100%;
    height: 58px;
    border-radius: 12px;
    border: 1px solid #dfe4f3;
    background: #ffffff;
    padding: 0 18px;
    color: #28324c;
    font-size: 15px;
    transition: .35s;
    box-shadow: none;
}

.gre-input::placeholder {
    color: #9aa2b6;
}

.gre-input:focus {
    border-color: #6d46ff;
    box-shadow: 0 0 0 .20rem rgba(109, 70, 255, .12);
    outline: none;
}

.gre-textarea {
    height: 220px;
    resize: none;
    padding-top: 18px;
}

.gre-contact-form-card .form-select {
    cursor: pointer;
    background-position: right 18px center;
}

.gre-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 10px;
}

.gre-info-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid #edf0fa;
    background: #ffffff;
    transition: .35s;
}

.gre-info-box:last-child {
    margin-bottom: 0;
}

.gre-info-box:hover {
    transform: translateX(8px);
    border-color: #e5dcff;
    box-shadow: 0 15px 35px rgba(75, 55, 217, .10);
}

.gre-info-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f2ff;
    color: #5f47ff;
    font-size: 30px;
    transition: .35s;
}

.gre-info-box:hover .gre-info-icon {
    background: linear-gradient(135deg, #d61f9b, #4b37d9);
    color: #ffffff;
    transform: rotate(-8deg);
}


.gre-info-content {
    flex: 1;
}

.gre-info-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #24316f;
    margin-bottom: 10px;
}

.gre-info-content p {
    margin: 0;
    color: #6d758d;
    line-height: 1.8;
    font-size: 15px;
}

.gre-info-content a {
    display: block;
    text-decoration: none;
    color: #6d758d;
    font-size: 15px;
    margin-bottom: 5px;
    transition: .3s;
}

.gre-info-content a:hover {
    color: #d61f9b;
}

.gre-input {
    position: relative;
    transition: all .35s ease;
}

.gre-input:hover {
    border-color: #b7b0ff;
    box-shadow: 0 10px 25px rgba(75, 55, 217, .08);
}

.gre-input:focus {
    background: #fff;
    border-color: #6d46ff;
    box-shadow: 0 0 0 .22rem rgba(109, 70, 255, .12);
}

/*==============================
        SEND BUTTON
===============================*/

.gre-send-btn {

    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 220px;
    height: 58px;

    padding: 0 34px;

    border: none;

    border-radius: 14px;

    overflow: hidden;

    cursor: pointer;

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    background: linear-gradient(90deg, #d61f9b 0%, #4b37d9 100%);

    box-shadow:
        0 15px 35px rgba(75, 55, 217, .30);

    transition: .35s;
}

.gre-send-btn span,
.gre-send-btn i {

    position: relative;
    z-index: 2;
}

.gre-send-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-25deg);

    transition: .75s;
}

.gre-send-btn:hover::before {

    left: 150%;
}

.gre-send-btn:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(75, 55, 217, .40);
}

.gre-send-btn:active {

    transform: scale(.98);
}

.gre-send-btn i {

    font-size: 18px;

    transition: .3s;
}

.gre-send-btn:hover i {

    transform: translateX(5px) rotate(-15deg);
}

/*==============================
      SECURITY NOTE
===============================*/

.gre-security-note {

    display: flex;

    align-items: center;

    gap: 14px;
}

.gre-security-note i {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f6ff;

    color: #6674ff;

    font-size: 18px;

    transition: .3s;
}

.gre-security-note p {

    margin: 0;

    color: #72798f;

    line-height: 1.6;

    font-size: 14px;
}

.gre-form-footer:hover .gre-security-note i {

    background: #6674ff;

    color: #fff;

    transform: rotate(10deg);
}

/*==============================
      SOCIAL LINKS
===============================*/

.gre-social-links {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;
}

.gre-social-links a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #dfe3f8;
    color: #5d4bff;
    font-size: 18px;
    background: #fff;
    transition: .35s;
}

.gre-social-links a:nth-child(1) {
    color: #0A66C2;
    border-color: #0A66C2;
}

.gre-social-links a:nth-child(2) {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.gre-social-links a:nth-child(3) {
    color: #1877F2;
    border-color: #1877F2;
}

.gre-social-links a:nth-child(4) {
    color: #E1306C;
    border-color: #E1306C;
}

.gre-social-links a:hover {
    transform: translateY(-6px);
    color: #fff;
}

.gre-social-links a:nth-child(1):hover {
    background: #0A66C2;
}

.gre-social-links a:nth-child(2):hover {
    background: #1DA1F2;
}

.gre-social-links a:nth-child(3):hover {
    background: #1877F2;
}

.gre-social-links a:nth-child(4):hover {
    background: #E1306C;
}

/*==============================
        INFO BOX EFFECT
===============================*/

.gre-info-box {
    position: relative;
    overflow: hidden;
}

.gre-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transition: .8s;
}

.gre-info-box:hover::before {
    left: 150%;
}

/*==============================
      INPUT ANIMATION
===============================*/
.blog-search-box .form-control::placeholder {
    color: #000;
}
 

.gre-contact-form-card .form-control,
.gre-contact-form-card .form-select {
    transition:
        border-color .35s,
        box-shadow .35s,
        transform .35s;
}

.gre-contact-form-card .form-control:hover,
.gre-contact-form-card .form-select:hover {
    transform: translateY(-2px);
}

/*==============================
      CARD SHINE
===============================*/

.gre-contact-form-card,
.gre-contact-info-card {
    overflow: hidden;
}

.gre-contact-form-card::after,
.gre-contact-info-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 220%;
    height: 220%;
    background:
        linear-gradient(135deg,
            transparent,
            rgba(255, 255, 255, .12),
            transparent);
    transform: rotate(25deg);
    transition: 1.2s;
    pointer-events: none;
}

.google-map {
    margin-bottom: -50px;
}

@media(max-width:1480px) {
    .google-map {
        margin-bottom: -85px;
    }
}

@media(max-width:1280px) {
    .google-map {
        margin-bottom: -83px;
    }
}

/*===============================
       No.3 Blog Section 
=============================== */
.blog-section {
    background: url("../img/images/Blog-hero.png") no-repeat right center;
    background-size: contain;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 25%,
            rgba(255, 255, 255, 0.98) 45%,
            rgba(255, 255, 255, 0.9) 65%,
            rgba(255, 255, 255, 0.1) 85%,
            transparent 100%);
}

@media (max-width: 991.98px) {
    .blog-section {
        background-size: cover;
        background-position: top center;
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        background-size: contain;
        background-position: top center;
        min-height: auto;
        padding: 80px 0 0;

    }
}

.blog-listing-section {
    background: #fafbff;
    padding: 80px 0;
}

/*=============================
TOP BAR
=============================*/

.blog-result-text {
    color: #5b6280;
    font-size: 15px;
    font-weight: 500;
}

.blog-result-text span {
    font-weight: 700;
    color: #1b2143;
}

.blog-sort {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e8ebf8;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    color: #52596e;
}

.blog-sort:focus {
    box-shadow: none;
    border-color: #6b4cff;
}

/*=============================
SEARCH BOX
=============================*/

.blog-search-box {
    position: relative;
}

.blog-search-box input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #eceef9;
    padding-left: 18px;
    padding-right: 55px;
    font-size: 15px;
    background: #fff;
    box-shadow: none;
}

.blog-search-box input:focus {
    border-color: #6b4cff;
    box-shadow: none;
}

.blog-search-box button {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #6b4cff;
    transition: .3s;
}

.blog-search-box button:hover {
    background: #6b4cff;
    color: #fff;
}

.blog-sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7a90;


}

.sidebar-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d8dde6;
    min-width: 90px;
    /* line length */
}

/*=============================
CATEGORY
=============================*/

.blog-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    margin-bottom: 12px;
    border-radius: 0px;
    cursor: pointer;
    transition: .35s;
    font-size: 14px;
    font-weight: 500;
    color: #4b5473;
}

.blog-category-list li span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-category-list li i {
    font-size: 11px;
    color: #7f86a8;
}

.blog-category-list li .count {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #f5f6fc;
    color: #666f90;
    font-size: 13px;
    font-weight: 700;
}

.blog-category-list li:hover {

    background: linear-gradient(90deg, #ffeff7, #f4efff);

    color: #6b4cff;
}

.blog-category-list li.active {

    background: linear-gradient(90deg, #ffe6f1, #f3ebff);

    color: #ff3c93;

}

.blog-category-list li.active .count {

    background: #fff;

    color: #ff3c93;

}

.blog-category-list li.active i {

    color: #ff3c93;

}

/*=============================
RECENT POSTS
=============================*/

.recent-post {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    text-decoration: none;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h6 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    color: #18213f;
    transition: .3s;
}

.recent-post-content span {
    font-size: 13px;
    color: #7c84a2;
}

.recent-post:hover h6 {
    color: #6b4cff;
}

/*=============================
SUBSCRIBE
=============================*/

.blog-subscribe-card {
    border-radius: 10px;
    padding: 35px 28px;
    background: linear-gradient(135deg, #ff3c92, #cfced5);
    color: #fff;
}

.blog-subscribe-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;

}

.blog-subscribe-card p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 25px;
    line-height: 1.8;
}

.subscribe-box {
    position: relative;
}

.subscribe-box input {
    height: 55px;
    border: none;
    border-radius: 12px;
    padding-left: 18px;
    padding-right: 60px;
    box-shadow: none;
}

.subscribe-box input:focus {

    box-shadow: none;

}

.subscribe-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 43px;
    height: 43px;
    border: none;
    border-radius: 10px;
    color: #fff;
    background: #5a42ff;
    transition: .3s;
}

.subscribe-box button:hover {
    transform: translateX(3px);
}

/*=============================
BLOG GRID
=============================*/

.blog-card {

    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #edf0fb;
    box-shadow: 0 10px 35px rgba(20, 31, 70, .06);
    transition: .35s;
    height: 100%;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff4b9e, #7a43ff);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 22px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #8a91ad;
    margin-bottom: 14px;
}

.blog-meta i {
    color: #7b44ff;
    margin-right: 5px;
}

.blog-title {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #1b2143;
    margin-bottom: 15px;
    transition: .3s;
}

.blog-card:hover .blog-title {
    color: #6b4cff;
}

.blog-desc {
    color: #636b87;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #6b4cff;
    font-weight: 700;
    transition: .3s;
}

.blog-read i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6b4cff;
    color: #fff;
    font-size: 12px;
}

.blog-read:hover {
    color: #ff3c93;
}

/***************************************
BLOG LISTING - PART 3
Hover + Pagination + Responsive
****************************************/

/*=====================================
CARD HOVER EFFECTS
======================================*/

.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(106, 76, 255, .03) 100%);
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(34, 45, 85, .14);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transition: transform .6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-badge {
    transition: .35s;
}

.blog-card:hover .blog-badge {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(107, 76, 255, .35);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-read {
    position: relative;
}

.blog-read::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #6b4cff;
    transition: .35s;
}

.blog-read:hover::after {
    width: 100%;
}

.blog-read:hover i {
    transform: translateX(5px);
}

.blog-read i {
    transition: .35s;
}

.blog-title {
    transition: .35s;
}

.blog-card:hover .blog-title {
    color: #6b4cff;
}

/*=====================================
PAGINATION
======================================*/

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.page-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e7eaf8;
    background: #fff;
    color: #606986;
    font-weight: 600;
    transition: .35s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.page-btn:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #ff3c93, #6545ff);
    transform: translateY(-3px);
}

.page-btn.active {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #ff3c93, #6545ff);
    box-shadow: 0 12px 30px rgba(107, 76, 255, .35);
}

/*=====================================
SCROLL ANIMATION
======================================*/

.blog-card {
    animation: fadeUp .7s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=====================================
SIDEBAR STICKY
======================================*/

@media(min-width:992px) {

    .blog-sidebar-card:first-child {
        position: sticky;
        top: 150px;
    }

}

/*=====================================
CUSTOM SCROLLBAR
======================================*/

.blog-category-list::-webkit-scrollbar {
    width: 6px;
}

.blog-category-list::-webkit-scrollbar-thumb {
    background: #d9dcf3;
    border-radius: 20px;
}

@media (max-width:1399px) {
    .blog-title {
        font-size: 17px;
    }

    .blog-image img {
        height: 220px;
    }
}

@media (max-width:1199px) {
    .blog-sidebar-card {
        padding: 22px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-desc {
        font-size: 14px;
    }

    .blog-image img {
        height: 210px;
    }
}

@media (max-width:991.98px) {

    .blog-listing-section {
        padding: 70px 0;
    }

    .blog-result-text {
        text-align: center;
        margin: 18px 0;
    }

    .blog-sort {
        margin-top: 15px;
    }

    .blog-sidebar-card {
        margin-bottom: 25px;
    }

    .blog-image img {
        height: 250px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-pagination {
        margin-top: 45px;
    }
}

@media (max-width:767.98px) {
    .blog-listing-section {
        padding: 60px 0;
    }

    .blog-sidebar-card {
        padding: 20px;
        border-radius: 18px;
    }

    .sidebar-title {
        font-size: 19px;
    }

    .blog-search-box input {
        height: 50px;
    }

    .blog-search-box button {
        width: 38px;
        height: 38px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .blog-meta {
        gap: 10px;
        font-size: 12px;
    }

    .blog-subscribe-card {
        padding: 28px 20px;
    }

    .blog-subscribe-card h3 {
        font-size: 24px;
    }

    .page-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width:575.98px) {
    .blog-listing-section {
        padding: 50px 0;
    }

    .blog-image img {
        height: 210px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-desc {
        font-size: 13px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 6px;
    }

    .blog-category-list li {
        padding: 12px;
        font-size: 13px;
    }

    .recent-post img {
        width: 65px;
        height: 65px;
    }

    .recent-post-content h6 {
        font-size: 14px;
    }

    .blog-subscribe-card {
        border-radius: 18px;
    }

    .subscribe-box input {
        height: 50px;
    }

    .subscribe-box button {
        width: 38px;
        height: 38px;
    }

    .blog-pagination {
        gap: 8px;
    }

    .page-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

}

/* =========================
  5. BLOG DETAILS PAGE
   ========================= */

.blog-details-section {
    background: #f8faff;
    padding: 90px 0;
}

.blog-breadcrumb {
    margin-bottom: 30px;
}

.blog-breadcrumb .breadcrumb {
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(20, 35, 80, .06);
}

.blog-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.blog-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: .35s;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: #ff3d93;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: #5b42ff;
    font-weight: 600;
}

.blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #b6bdd4;
}

.blog-breadcrumb i {
    margin-right: 6px;
}

.blog-author-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

}

.blog-author-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-author-info h6 {
    font-size: 17px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 12px;
}

.blog-author-info ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-author-info ul li {
    display: flex;
    align-items: center;
    color: #7d859d;
    font-size: 14px;
    font-weight: 500;
}

.blog-author-info ul li i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f5fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b42ff;
    margin-right: 8px;
    font-size: 13px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share span {
    color: #17203f;
    font-size: 15px;
    font-weight: 600;
}

.blog-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5b42ff;
    background: #f6f7fd;
    transition: .35s;
    border: 1px solid #f1e4e4;
}

.blog-share a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    box-shadow: 0 12px 25px rgba(91, 66, 255, .25);
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(18, 31, 72, .12);
}

.blog-featured-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

.blog-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(23, 32, 63, .05) 100%);
}


.blog-intro {
    margin-top: 45px;
}

.blog-intro p {
    font-size: 17px;
    line-height: 2;
    color: #5c647c;
    margin-bottom: 24px;
}

.blog-intro p:first-child {
    font-size: 17px;
    color: #17203f;
    font-weight: 500;
}

.blog-author-wrapper,
.blog-featured-image {
    animation: fadeUp .7s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.blog-details-content {
    margin-top: 45px;
}

.blog-details-content p {
    font-size: 17px;
    line-height: 2;
    color: #5d657f;
    margin-bottom: 28px;
}

.blog-details-content strong {
    color: #17203f;
    font-weight: 700;
}

.blog-details-content a {
    color: #5a42ff;
    text-decoration: none;
    font-weight: 600;
}

.blog-details-content a:hover {
    color: #ff3d93;
}


.blog-content-block h2 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;

}

.blog-content-block h2 span {
    color: #ff3d93;
}

/*=========================================
    Lists
==========================================*/

.blog-list {
    margin: 35px 0;
    padding: 0;
    list-style: none;
}

.blog-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #5d657f;
    line-height: 1.8;
}

.blog-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}


.blog-quote-box {
    position: relative;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 40px;
    margin: 60px 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #5a42ff, #ff3d93);
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(90, 66, 255, .25);
}

.blog-quote-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.blog-quote-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.quote-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-content h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 18px;
}

.quote-content span {
    font-size: 15px;
    font-weight: 600;
    opacity: .9;
}


/*=========================================
    Highlight Box
==========================================*/

.blog-highlight-box {
    margin: 70px 0;
    padding: 35px;
    border-radius: 22px;
    background: #fff;
    border-left: 6px solid #5a42ff;
    box-shadow: 0 20px 50px rgba(20, 35, 80, .08);
}

.blog-highlight-box i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    font-size: 32px;
}

.blog-highlight-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #cf187e;
    margin-bottom: 15px;
}

.blog-highlight-box p {
    margin: 0;
    color: #5d657f;
    font-size: 16px;
    line-height: 1.9;
}

/*=========================================
    Tags
==========================================*/

.blog-tags-wrapper h5 {
    font-size: 18px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 20px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-tags a {
    padding: 12px 22px;
    border-radius: 50px;
    background: #fff;
    color: #5d657f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eceef8;
    transition: .35s;
}

.blog-tags a:hover {
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(90, 66, 255, .22);
}

/*=========================================
    Selection
==========================================*/

.blog-details-content ::selection,
.blog-content-block ::selection {
    background: #5a42ff;
    color: #fff;
}


@media(max-width:991.98px) {

    .blog-content-block h2 {
        font-size: 28px;
    }

    .quote-content h4 {
        font-size: 24px;
    }

    .blog-highlight-box {
        padding: 28px;
    }

}

@media(max-width:767.98px) {

    .blog-details-content p {
        font-size: 15px;
    }

    .blog-content-block {
        margin: 45px 0;
    }

    .blog-content-block h2 {
        font-size: 24px;
        gap: 14px;
    }

    .blog-content-block h2 span {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .blog-list li {
        font-size: 15px;
        padding-left: 36px;
    }

    .blog-quote-box {
        flex-direction: column;
        padding: 30px 25px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .quote-content h4 {
        font-size: 21px;
    }

    .blog-highlight-box i {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .blog-highlight-box h4 {
        font-size: 22px;
    }

    .blog-tags {
        gap: 10px;
    }

    .blog-tags a {
        padding: 10px 18px;
        font-size: 13px;
    }

}

/* **************************************************************
                Career Page CSS
************************************************************** */

.career-opening-section {
    position: relative;
    background-image: url(../img/images/career-opening-bg-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 660px;
}

.career-hero {
    padding: 100px 0;
}

.career-hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width:1399px) {
    .career-container {
        padding: 0 70px;
    }
}

@media (max-width:1199px) {
    .career-container {
        padding: 0 45px;
    }

    .career-hero {
        padding: 100px 0 160px;
    }
}

@media (max-width:991.98px) {
    .career-hero {
        padding: 90px 0 140px;
        text-align: center;
    }

    .career-hero-content {
        margin-bottom: 60px;
    }

    .career-opening-section {
        background-position: 70% 0%;
        background-size: cover;
        min-height: 660px;

    }
    .career-hero-content p{
        color: #1c359b;
        font-weight: 600;
    }
}

@media (max-width:767.98px) {
    .career-container {
        padding: 0 20px;
        text-align: left;
    }

    .career-hero {
        padding: 70px 0 20px;
    }
}

@media (max-width:575.98px) {
    .career-hero {
        padding:  0 ;
    }
}

.career-hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
}

.hero-stat {
    min-width: 170px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 11px 11px;
    text-align: center;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 61, 147, .04), rgba(90, 66, 255, .05));
    opacity: 0;
    transition: .35s;
}

.hero-stat:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 28px 60px rgba(20, 35, 80, .12);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat span {
    position: relative;
    color: #667089;
    font-size: 15px;
    font-weight: 600;
}

.career-search-wrapper {
    position: absolute;
    z-index: 20;
    bottom: -90px;
    left: 0%;
    right: 0%;

}

.mobile-search-box {
    display: none;
    margin-bottom: 16px;
}

.career-search-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid #e7ebf7;
    border-radius: 16px;
    background: #ffffff;
    color: #17203f;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(90, 66, 255, .12);
}

.career-search-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px;
    border: 1px solid #edf1fb;
    box-shadow: 0 35px 80px rgba(20, 35, 80, .10);
}

.career-search-modal {
    position: fixed !important;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.career-search-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.career-search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 30, 0.65);
    backdrop-filter: blur(4px);
}

.career-search-modal-dialog {
    position: relative;
    width: min(100%, 560px);
    z-index: 1;
    animation: modalSlideIn 0.25s ease;
}

.career-search-modal-content {
    display: block;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.career-search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.career-search-modal-header h4 {
    margin: 0;
    color: #17203f;
    font-size: 22px;
    font-weight: 700;
}

.career-search-modal-close {
    border: none;
    background: #f8faff;
    color: #17203f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.career-search-modal-body .career-search-card {
    box-shadow: none;
    border: 1px solid #edf1fb;
    padding: 20px;
}

/*=========================================
    Form Group
==========================================*/

.career-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 12px;
}

.career-input {
    position: relative;
}

.career-input input,
.career-form-group .form-select {
    width: 100%;
    height: 58px;
    border: 1px solid #e7ebf7;
    border-radius: 16px;
    background: #f8faff;
    font-size: 15px;
    color: #5d657f;
    box-shadow: none;
    transition: .35s;
}

.career-input input {
    padding: 0 55px 0 18px;
}
.career-input .form-control{
color: #5d657f;
}
.career-form-group .form-select {
    padding-left: 18px;
}

.career-input input:focus,
.career-form-group .form-select:focus {
    background: #fff;
    border-color: #5a42ff;
    box-shadow: 0 0 0 4px rgba(90, 66, 255, .08);
    color: #5d657f;
}

.career-input i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #5a42ff;
    font-size: 16px;
}

/*=========================================
    Search Button
==========================================*/

.career-search-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .35s;
    box-shadow: 0 18px 40px rgba(90, 66, 255, .22);
}

.career-search-btn i {
    transition: .35s;
}

.career-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(90, 66, 255, .30);
}

.career-search-btn:hover i {
    transform: translateX(5px);
}

/*=========================================
    Floating Animation
==========================================*/

.career-search-card {
    animation: searchUp .8s ease;
}

@keyframes searchUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=========================================
    Responsive
==========================================*/

@media(max-width:1199px) {

    .career-search-card {
        padding: 30px;
    }

    .hero-stat {
        padding: 24px 20px;
    }

}

@media(max-width:991.98px) {

    .career-hero-stats {
        justify-content: center;
    }

    .career-search-wrapper {
            bottom: 0px;

        margin-top: -70px;
    }

    .mobile-search-box {
        display: block;
    }

    .career-search-card {
        padding: 28px;
        display: none;
    }

    .career-search-modal .career-search-card {
        display: block !important;
    }

}

@media(min-width:992px) {
    .mobile-search-box {
        display: none !important;
    }

    .career-search-card {
        display: block !important;
    }
}

@media(max-width:767.98px) {
    .career-hero-stats {
        gap: 5px;
    }

    .hero-stat {
        padding: 10px;
        min-width: 120px;
        width: 120px;
    }

    .career-search-wrapper {
        margin-top: -50px;
    }

    .career-search-card {
        padding: 22px;
        border-radius: 20px;
    }

    .career-form-group {
        margin-bottom: 10px;
    }

    .career-form-group label {
        font-size: 13px;
    }

    .career-input input,
    .career-form-group .form-select,
    .career-search-btn {
        height: 52px;
        font-size: 14px;
    }

    .hero-stat span {
        font-size: 11px;
    }

    .hero-stat h3 {
        font-size: 28px;
    }

}

@media(max-width:575.98px) {

    .hero-stat {
        width: 100%;
    }

    .career-search-wrapper {
        margin-top: -40px;
    }

    .career-search-card {
        padding: 18px;
    }

    .career-search-btn {
        margin-top: 5px;
    }

}

.career-listing-section {
     padding: 190px 0 90px 0 ;
}

.career-job-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.career-result-bar {
    background: #ffffff;
    border: 1px solid #edf1fb;
    border-radius: 20px 20px 0 0;
    padding: 10px 30px;
    margin-bottom: 35px;
    box-shadow: 0 18px 45px rgba(20, 35, 80, .05);
}

.career-result-count {
    color: #667089;
    font-size: 15px;
    font-weight: 500;
}

.career-result-count span {
    color: #17203f;
    font-weight: 700;
}

.career-sort-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.career-sort-box label {
    white-space: nowrap;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #17203f;
}

.career-sort-box .form-select {
    width: 220px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e7ebf7;
    box-shadow: none;
}

.career-sort-box .form-select:focus {
    border-color: #5a42ff;
    box-shadow: 0 0 0 4px rgba(90, 66, 255, .08);
}

/*=========================================
    Job Card
==========================================*/

.career-job-card {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #edf1fb;
    border-radius: 8px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 18px 40px rgba(20, 35, 80, .05);
}

.career-job-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff3d93, #5a42ff);
    transform: scaleY(0);
    transform-origin: top;
    transition: .4s;
}

.career-job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(20, 35, 80, .12);
}

.career-job-card:hover::before {
    transform: scaleY(1);
}

/*=========================================
    Company Logo
==========================================*/

.job-logo {
    width: 95px;
    height: 95px;
    border-radius: 8px;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #eef2fb;
    overflow: hidden;
}

.job-logo-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(90, 66, 255, .12), rgba(255, 61, 147, .12));
    color: #5a42ff;
    font-size: 36px;
}

/*=========================================
    Job Content
==========================================*/

.job-content {
    flex: 1;
}

.job-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(90, 66, 255, .08);
    color: #5a42ff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.job-title {
    font-size: 28px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 15px;
    transition: .3s;
}

.career-job-card:hover .job-title {
    color: #5a42ff;
}

.job-description {
    color: #667089;
    line-height: 1.8;
    margin-bottom: 22px;
}

/*=========================================
    Job Meta
==========================================*/

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8faff;
    border-radius: 50px;
    color: #5d657f;
    font-size: 14px;
    font-weight: 500;
}

.job-meta span i {
    color: #5a42ff;
}

/*=========================================
    Bottom Area
==========================================*/

.job-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.job-salary {
    display: flex;
    flex-direction: column;
}

.job-salary small {
    color: #000;
    font-size: 13px;
    font-weight: 600;
}

.job-salary strong {
     font-weight: 700;
    color: #ff3d93;
}

.job-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(90, 66, 255, .22);
}

.job-details-btn i {
    transition: .35s;
}

.job-details-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.job-details-btn:hover i {
    transform: translateX(5px);
}

.job-save-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #f8faff;
    color: #5a42ff;
    transition: .35s;
    border: 1px solid #5a42ff;
    box-shadow: 0 18px 40px rgba(90, 66, 255, .12);
}

.job-save-btn:hover {
    background: #5a42ff;
    color: #fff;
}

/*=========================================
    Featured Badge
==========================================*/

.featured-job {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 7px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffb000, #ff7a00);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

/*=========================================
    Animation
==========================================*/

.career-job-card {
    animation: jobFade .6s ease;
}

@keyframes jobFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=========================================
    Responsive
==========================================*/

@media(max-width:1199px) {

    .job-title {
        font-size: 24px;
    }

}

@media(max-width:991.98px) {

    .career-result-bar {
        padding: 20px;
    }

    .career-sort-box {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .career-job-card {
        flex-direction: column;
    }

    .job-logo {
        width: 80px;
        height: 80px;
    }

}

@media(max-width:767.98px) {

    .career-listing-section {
        padding: 70px 0;
    }

    .career-job-card {
        padding: 22px;
    }

    .job-title {
        font-size: 22px;
    }

    .job-meta {
        gap: 10px;
    }

    .job-meta span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .job-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-action {
        width: 100%;
    }

    .job-details-btn {
        flex: 1;
        justify-content: center;
    }

}

@media(max-width:575.98px) {

    .career-result-bar {
        padding: 18px;
    }

    .career-sort-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-sort-box .form-select {
        width: 100%;
    }

    .job-title {
        font-size: 20px;
    }

    .job-description {
        font-size: 14px;
    }

    .featured-job {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }

}

/*=========================================
    CAREER OPENING
    PART 3
    Sidebar + Resume CTA + Newsletter
==========================================*/

/*=========================================
    Sidebar
==========================================*/

.career-sidebar {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*=========================================
    Common Sidebar Card
==========================================*/

.career-sidebar-card,
.career-newsletter-card,
.career-contact-card {
    background: #ffffff;
    border: 1px solid #edf1fb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(20, 35, 80, .06);
    transition: .35s;
}

.career-sidebar-card:hover,
.career-newsletter-card:hover,
.career-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(20, 35, 80, .10);
}

/*=========================================
    Sidebar Title
==========================================*/

.career-sidebar-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.sidebar-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.career-sidebar-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 6px;
}

.career-sidebar-title p {
    margin: 0;
    color: #7b849d;
    font-size: 14px;
}

/*=========================================
    Benefits
==========================================*/

.career-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.career-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: #f8fbff;
    border-radius: 8px;
    transition: .35s;
}

.career-benefit-item:hover {
    background: #fff0f7;
}

.career-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #ffffff;
    color: #5a42ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(20, 35, 80, .08);
}

.career-benefit-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 6px;
}

.career-benefit-content p {
    margin: 0;
    color: #6d7690;
    line-height: 1.7;
    font-size: 14px;
}

/*=========================================
    Resume Card
==========================================*/

.career-resume-card {
    position: relative;
    overflow: hidden;
    padding: 40px 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    box-shadow: 0 25px 60px rgba(90, 66, 255,0.5);
    margin-top: 20px;
}

.career-resume-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -120px;
    right: -90px;
}

.resume-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.resume-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .9;
}

.career-resume-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.career-resume-card p {
    color: rgba(255, 255, 255, .92);
    line-height: 1.9;
    margin-bottom: 30px;
}

.career-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: #5a42ff;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

.career-submit-btn i {
    transition: .35s;
}

.career-submit-btn:hover {
    color: #5a42ff;
    transform: translateY(-3px);
}

.career-submit-btn:hover i {
    transform: translateX(5px);
}

/*=========================================
    Newsletter
==========================================*/

.newsletter-header {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.newsletter-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 8px;
}

.newsletter-header p {
    color: #727c95;
    margin: 0;
    line-height: 1.7;
}

.newsletter-input {
    position: relative;
}

.newsletter-input input {
    width: 100%;
    height: 58px;
    border-radius: 50px;
    border: 1px solid #e8edf8;
    background: #f8fbff;
    padding: 0 65px 0 22px;
    box-shadow: none;
}

.newsletter-input input:focus {
    border-color: #5a42ff;
    box-shadow: 0 0 0 4px rgba(90, 66, 255, .08);
}

.newsletter-input button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    transition: .35s;
}

.newsletter-input button:hover {
    transform: rotate(-15deg);
}

/*=========================================
    Contact Card
==========================================*/

.career-contact-card {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.career-contact-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #17203f;
    margin-bottom: 15px;
}

.career-contact-card p {
    color: #707b95;
    line-height: 1.8;
    margin-bottom: 25px;
}

.career-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    color: #fff;
    font-weight: 700;
    transition: .35s;
}

.career-contact-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(90, 66, 255, .25);
}

/*=========================================
    Responsive
==========================================*/

@media(max-width:991.98px) {

    .career-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }

}

@media(max-width:767.98px) {

    .career-sidebar-card,
    .career-newsletter-card,
    .career-contact-card,
    .career-resume-card {
        padding: 25px;
        border-radius: 20px;
    }

    .career-sidebar-title h3,
    .newsletter-header h3,
    .career-contact-card h4 {
        font-size: 21px;
    }

    .career-resume-card h3 {
        font-size: 28px;
    }

}

@media(max-width:575.98px) {

    .career-sidebar {
        gap: 20px;
    }

    .career-sidebar-card,
    .career-newsletter-card,
    .career-contact-card,
    .career-resume-card {
        padding: 20px;
    }

    .newsletter-header {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-icon,
    .sidebar-icon,
    .resume-icon {
        margin: auto;
    }

    .career-submit-btn,
    .career-contact-btn {
        width: 100%;
        justify-content: center;
    }

}

/*=========================================
    CAREER OPENING
    PART 4
    Pagination + Hover Effects + Responsive
==========================================*/

/*=========================================
    Pagination
==========================================*/

.career-pagination-wrapper {
    margin-top: 32px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    clear: both;
    border-top: 1px solid rgba(90, 66, 255, 0.08);
}

.career-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.career-pagination li {
    list-style: none;
}

.page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e8edf8;
    color: #5f6881;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(20, 35, 80, .05);
}

.page-btn.page-nav {
    min-width: 44px;
}

.page-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    box-shadow: 0 20px 40px rgba(90, 66, 255, .25);
}

.page-btn.active {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #ff3d93, #5a42ff);
    box-shadow: 0 20px 40px rgba(90, 66, 255, .28);
}

.page-btn i {
    font-size: 14px;
}

/*=========================================
    Global Hover Effects
==========================================*/

.career-job-card,
.career-sidebar-card,
.career-newsletter-card,
.career-contact-card,
.career-resume-card {
    position: relative;
    overflow: hidden;
}

.career-job-card::after,
.career-sidebar-card::after,
.career-newsletter-card::after,
.career-contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 61, 147, .03),
            rgba(90, 66, 255, .03));
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.career-job-card:hover::after,
.career-sidebar-card:hover::after,
.career-newsletter-card:hover::after,
.career-contact-card:hover::after {
    opacity: 1;
}

/*=========================================
    Buttons
==========================================*/

.career-search-btn,
.job-details-btn,
.career-submit-btn,
.career-contact-btn {
    position: relative;
    overflow: hidden;
}

.career-search-btn::before,
.job-details-btn::before,
.career-submit-btn::before,
.career-contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .7s;
}

.career-search-btn:hover::before,
.job-details-btn:hover::before,
.career-submit-btn:hover::before,
.career-contact-btn:hover::before {
    left: 130%;
}

/*=========================================
    Card Animations
==========================================*/

.career-job-card {
    animation: fadeUp .6s ease both;
}

.career-sidebar-card {
    animation: fadeUp .7s ease both;
}

.career-resume-card {
    animation: fadeUp .8s ease both;
}

.career-newsletter-card {
    animation: fadeUp .9s ease both;
}

.career-contact-card {
    animation: fadeUp 1s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=========================================
    Scrollbar
==========================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f7fc;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff3d93, #5a42ff);
    border-radius: 20px;
}

/*=========================================
    Responsive
==========================================*/

@media (max-width:1399px) {

    .career-container {
        padding: 0 60px;
    }

}

@media (max-width:1199px) {

    .career-container {
        padding: 0 40px;
    }

    .career-pagination-wrapper {
        margin-top: 60px;
    }

}

@media (max-width:991.98px) {

    .career-listing-section {
        padding: 80px 0;
    }

    .career-pagination {
        gap: 10px;
    }

    .page-btn {
        width: 46px;
        height: 46px;
    }

}

@media (max-width:767.98px) {

    .career-container {
        padding: 0 20px;
    }

    .career-listing-section {
        padding: 70px 0;
    }

    .career-pagination-wrapper {
        margin-top: 50px;
    }

    .page-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

}

@media (max-width:575.98px) {

    .career-container {
        padding: 40px 15px;
    }

    .career-pagination {
        gap: 8px;
    }

    .page-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .page-btn i {
        font-size: 12px;
    }

}