:root {
    --primary: #6b2c87;
    --white: #ffffff;
    --dark-blue: #2b3d4f;
    --light-gray: hsl(210 29% 24% / 0.7);
    --dark-gray: #373a3b;
}

@font-face {
    font-family: Montserrat-Medium;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: Roboto_Condensed-Regular;
    src: url(../fonts/Roboto_Condensed-Regular.ttf);
}

body {
    background: var(--white);
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
small {
    font-family: Montserrat-Medium;
}

p {
    line-height: 1.625;
    color: var(--light-gray);
}

.industry-overlay p {
    color: var(--white);
}

.footer-about p {
    color: #cbd5e1;
}

h1 {
    font-size: 52px;
    font-weight: bold;
    line-height: 1;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* home page */


/* =====================================================
   FANCY HERO SLIDER
===================================================== */

.hero-slider-section {
    position: relative;
    height: 90vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-main-slider,
.hero-main-slider .owl-stage-outer,
.hero-main-slider .owl-stage,
.hero-main-slider .owl-item,
.hero-slide-item {
    height: 100%;
}

.hero-slide-item {
    position: relative;
    overflow: hidden;
}


/* Background Image */

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease;
    z-index: 1;
}

.hero-main-slider .owl-item.active .hero-slide-bg {
    transform: scale(1);
}


/* Purple Overlay */

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%), linear-gradient( 100deg, rgba(47, 26, 58, 0.92) 0%, rgba(107, 44, 135, 0.78) 35%, rgba(107, 44, 135, 0.42) 58%, rgba(107, 44, 135, 0.08) 82%);
    z-index: 2;
}


/* Decorative Shape */

.hero-slide-item::before {
    content: "";
    position: absolute;
    left: -160px;
    top: 50%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 70px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-50%);
    z-index: 2;
}

.hero-slide-item::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
}


/* Content */

.hero-slide-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
    max-width: 720px;
    padding-top: 30px;
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f3dfff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-small-title::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #f3dfff;
    display: inline-block;
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 22px;
    color: #ffffff;
    max-width: 760px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 32px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}


/* Content Animation */

.hero-main-slider .owl-item .hero-small-title,
.hero-main-slider .owl-item .hero-title,
.hero-main-slider .owl-item .hero-subtitle,
.hero-main-slider .owl-item .hero-buttons {
    opacity: 0;
    transform: translateY(35px);
}

.hero-main-slider .owl-item.active .hero-small-title {
    animation: heroFadeUp 0.8s ease forwards 0.25s;
}

.hero-main-slider .owl-item.active .hero-title {
    animation: heroFadeUp 0.9s ease forwards 0.45s;
}

.hero-main-slider .owl-item.active .hero-subtitle {
    animation: heroFadeUp 0.9s ease forwards 0.65s;
}

.hero-main-slider .owl-item.active .hero-buttons {
    animation: heroFadeUp 0.9s ease forwards 0.85s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary-custom {
    background: #6b2c87;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-inline: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #5a2372;
    color: #ffffff;
}

.banner-btn {
    background: #6b2c87;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 15px 40px;
    font-size: 16px;
    height: 57px;
    line-height: 28px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.32);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(107, 44, 135, 0.42);
}

.banner-btn-light {
    border-radius: 6px;
    padding: 15px 40px;
    font-size: 16px;
    height: 57px;
    line-height: 28px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    transition: all 0.3s ease;
}

.banner-btn-light:hover {
    background: #ffffff;
    color: #6b2c87;
    border-color: #ffffff;
    transform: translateY(-3px);
}


/* Owl Navigation */

.hero-main-slider.owl-theme .owl-nav {
    margin: 0;
}

.hero-main-slider.owl-theme .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-main-slider.owl-theme .owl-nav button:hover {
    background: #ffffff !important;
    color: #6b2c87 !important;
}

.hero-main-slider.owl-theme .owl-nav .owl-prev {
    left: 30px;
}

.hero-main-slider.owl-theme .owl-nav .owl-next {
    right: 30px;
}


/* Owl Dots */

.hero-main-slider.owl-theme .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
}

.hero-main-slider.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.hero-main-slider.owl-theme .owl-dots .owl-dot.active span,
.hero-main-slider.owl-theme .owl-dots .owl-dot:hover span {
    width: 34px;
    background: #ffffff;
}


/* Progress Bar */

.hero-main-slider .owl-item.active .hero-slide-item .hero-progress {
    animation: heroProgress 5s linear forwards;
}


/* Responsive */

@media (max-width: 1199px) {
    .hero-slider-section {
        height: 78vh;
        min-height: 560px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-main-slider.owl-theme .owl-nav button {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-slider-section {
        height: auto;
        min-height: 560px;
    }
    .hero-slide-item {
        min-height: 560px;
    }
    .hero-slide-overlay {
        background: linear-gradient( 100deg, rgba(47, 26, 58, 0.94) 0%, rgba(107, 44, 135, 0.82) 52%, rgba(107, 44, 135, 0.48) 100%);
    }
    .hero-slide-content {
        padding-top: 20px;
        max-width: 100%;
    }
    .hero-small-title {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }
    .hero-small-title::before {
        width: 30px;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.12;
    }
    .hero-subtitle {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 26px;
    }
    .hero-buttons {
        gap: 12px;
    }
    .banner-btn,
    .banner-btn-light {
        width: 100%;
        height: 52px;
        padding: 12px 24px;
        font-size: 15px;
    }
    .hero-main-slider.owl-theme .owl-dots {
        bottom: 22px;
    }
}


/* ================= TRUSTED BRANDS ================= */


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


/* .trusted-brands-section {
  background: #f5f6f7;
} */

.trusted-brands-section {
    background: #f2f5f4;
}

.trusted-brands-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 600;
}


/* ================= CONTINUOUS SCROLLER ================= */

.trusted-brands-slider {
    overflow: hidden;
    position: relative;
}


/* scrolling track */

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}


/* animation */

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ================= BRAND ITEMS ================= */

.trusted-brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 30px;
    /* spacing between logos */
}

.trusted-brand-item img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trusted-brand-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* ================= HOVER CONTROL ================= */


/* pause on hover */

.trusted-brands-slider:hover .scroll-track {
    animation-play-state: paused;
}


/* ================= SECTION BG ================= */

.about-finance-section {
    padding: 80px 0;
}


/* TAG */


/* TITLE */

.about-title {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-title span {
    color: var(--primary);
    font-style: italic;
}


/* TEXT */

.about-description {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.625;
    max-width: 584px;
}

.about-finance-section {
    position: relative;
    z-index: 1;
    border-top: 1px solid lightgray;
    background: #f2f5f4;
}

.about-finance-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    /* background-color: hsl(var(--secondary) / 0.05); */
    z-index: -1;
    background-color: hsl(210 29% 24% / 0.05);
}

.about-finance-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 585px;
    /* background-color: hsl(var(--secondary) / 0.05); */
    z-index: -1;
    background-color: hsl(282 51% 35% / 0.05);
    border-radius: 0 0 0 70px;
}


/* STATS */

.about-stats {
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-number {
    background-color: hsl(282 51% 35% / 0.05);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 10px;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.stat-item p {
    font-size: 12px;
    color: var(--light-gray);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.6px;
}


/* IMAGE */

.about-image-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsl(282 51% 35% / 0.5);
    height: 438px;
    width: 100%;
}

.about-main-img {
    border-radius: 35px;
    border: 15px solid #ffffff;
    height: 438px;
    width: 100%;
    object-fit: cover;
}


/* FLOATING CARD */

.about-floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.about-floating-card .line {
    width: 4px;
    height: 30px;
    background: var(--primary);
    margin-right: 10px;
    margin-top: 0;
}

.about-floating-card p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-blue);
}


/* ================= CARDS ================= */

.about-cards-row {
    margin-top: 100px;
}

.about-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
    position: relative;
    overflow: hidden;
}


/* Top-right circle */

.about-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background-color: hsl(282 51% 35% / 0.05);
    border-radius: 50%;
}


/* ICON */

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 32px;
    box-shadow: 0 10px 15px -3px hsl(282 51% 35% / 0.3);
}


/* CARD TEXT */

.about-card h5 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.about-card p {
    color: var(--light-gray);
}


/* .about-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
} */

.about-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--primary);
    vertical-align: middle;
    margin-top: auto;
}


/* icon animation */

.about-card a i {
    transition: transform 0.3s ease;
}


/* hover effect */

.about-card a:hover i {
    transform: translateX(6px);
}

.about-card {
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card-icon {
    transition: all 0.4s ease;
}

.about-card::after {
    transition: all 0.4s ease;
}

.about-card:hover .card-icon {
    transform: translateY(-10px);
}

.about-card:hover::after {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -60px;
}


/* ================= RESPONSIVE ================= */


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

.equipment-section {
    background: #e7f7fe;
}


/* HEADER */

.equipment-header {
    margin-bottom: 30px;
}

.equipment-title {
    font-weight: 600;
    color: var(--dark-blue);
}


/* NAV BUTTONS */

.equipment-nav button {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.equipment-nav button i {
    font-size: 14px;
    color: var(--dark-blue);
}

.equipment-nav button:hover {
    background: #ffffff;
}


/* CARD */

.equipment-item {
    text-align: center;
}

.equipment-card {
    background: #ffffff;
    padding: 24px;
    /* padding-top: 60px;
    padding-bottom: 60px; */
    border-radius: 8px;
    margin-bottom: 15px;
}

.equipment-card img {
    max-width: 240px;
    height: 240px;
    object-fit: contain;
}


/* TEXT */

.equipment-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
}


/* CARD HOVER EFFECT */

.equipment-card {
    transition: all 0.3s ease;
    overflow: hidden;
    /* important for image zoom */
}


/* Shadow on hover */

.equipment-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}


/* IMAGE ZOOM */

.equipment-card img {
    transition: transform 0.3s ease;
}


/* Scale image on hover */

.equipment-card:hover img {
    transform: scale(1.05);
}


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

.services-section {
    background: #ffffff;
}


/* HEADER */

.tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.services-title {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.services-title span {
    color: var(--primary);
}

.services-subtitle {
    margin-bottom: 0;
    color: var(--light-gray);
    max-width: 600px;
}

.services-header {
    align-items: flex-end;
}


/* BUTTON */

.services-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
}

.services-btn:hover {
    background: #5a2372;
    color: var(--white);
}


/* ================= CARDS ================= */

.services-cards-row {
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 40px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}


/* ICON */

.service-icon {
    width: 60px;
    height: 60px;
    background: #f1eef5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    rotate: 4deg;
}

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


/* TITLE */

.service-card h5 {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    margin-top: 20px;
}

.services-header i {
    font-size: 12px;
}


/* TEXT */

.service-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
}


/* LIST */

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-list li {
    font-size: 15px;
    color: var(--light-gray);
    margin-bottom: 8px;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    /* color: hsl(210 29% 24% / 0.7); */
    font-weight: 600;
}


/* CUSTOM CHECK ICON */

.service-list li i {
    color: var(--primary);
    font-size: 18px;
}


/* BUTTON */

.learn-more-btn {
    display: block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-blue);
    text-decoration: none;
    justify-content: center;
    text-align: center;
}


/* .learn-more-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
} */

.service-card {
    transition: all 0.3s ease;
}


/* Hover effect */

.service-card:hover {
    transform: translateY(-16px);
    /* same as -translate-y-4 */
}

.learn-more-btn {
    transition: all 0.3s ease;
}


/* When card is hovered → target button */

.service-card:hover .learn-more-btn {
    background: var(--primary);
    color: #fff;
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    rotate: 0deg;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
}


/* HOVER EFFECT */

.service-card:hover {
    background: #edeaf0;
    border: 8px solid #e7e5eb;
}


/* CARD */


/* SECTION */

.cta-section {
    padding-top: 50px;
}


/* WRAPPER */

.cta-wrapper {
    background: linear-gradient(135deg, #2b3d4f, #34495e);
    padding: 35px 40px;
    border-radius: 30px;
    color: var(--white);
}


/* TITLE */

.cta-title {
    font-weight: 600;
    margin-bottom: 8px;
}


/* SUBTITLE */

.cta-subtitle {
    color: #cbd5e1;
    margin: 0;
}


/* BUTTON */

.cta-btn {
    background: linear-gradient(135deg, #6b2c87, #8e44ad);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.cta-btn:hover {
    color: var(--white);
}


/* ================= RESPONSIVE ================= */


/* ================= RESPONSIVE ================= */


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

.industries-section {
    background: #f3f6f5;
}


/* HEADER */

.industries-title {
    font-weight: 600;
    color: var(--dark-blue);
}

.industries-title span {
    color: var(--primary);
}

.industries-subtitle {
    color: var(--light-gray);
    max-width: 690px;
    margin: 20px auto 60px;
}


/* ================= CARDS ================= */

.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.industry-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}


/* OVERLAY */


/* .industry-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
} */

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient( to top, hsl(210 29% 24%) 0%, hsl(210 29% 24% / 0.4) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.overlay-icon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: var(--primary); */
    background: rgba(255, 255, 255, 0.2);
    /* semi-transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    margin-bottom: 20px;
}

.overlay-icon i {
    color: #fff;
    font-size: 20px;
}

.industry-overlay p {
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* default */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-overlay {
    padding-bottom: 30px;
}


/* TEXT EXPAND */

.industry-card:hover .industry-overlay p {
    -webkit-line-clamp: 4;
    transform: translateY(-10px);
}


/* ICON BG CHANGE */

.industry-card:hover .overlay-icon {
    background: var(--primary);
}

.industry-card:hover .overlay-icon i {
    color: var(--white);
}


/* MOVE ICON + TITLE UP */

.industry-overlay h5,
.overlay-icon {
    transform: translateY(0);
    transition: 0.4s ease;
    opacity: 1;
}

.industry-card:hover .industry-overlay h5,
.industry-card:hover .overlay-icon {
    transform: translateY(-10px);
}


/* .industry-overlay>* {
    transform: translateY(10px);
    opacity: 0;
    transition: 0.4s ease;
}

.industry-card:hover .industry-overlay>* {
    transform: translateY(0);
    opacity: 1;
} */

.industry-overlay h5 {
    margin-bottom: 20px;
    font-weight: bold;
}

.industry-overlay p {
    opacity: 0.8;
    font-size: 14px;
}

.industry-overlay a {
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}


/* IMPORTANT: hide overflow */

.industry-card {
    overflow: hidden;
    position: relative;
}


/* Smooth animation */

.industry-card img {
    width: 100%;
    transition: transform 0.4s ease;
}


/* ZOOM on hover */

.industry-card:hover img {
    transform: scale(1.1);
}


/* Button */

.industry-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* Arrow animation */

.industry-overlay a i {
    transition: transform 0.3s ease;
}


/* Move arrow on hover */

.industry-overlay a:hover i {
    transform: translateX(6px);
}


/* ================= STEPS ================= */

.process-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

.step-number {
    width: 36px;
    height: 36px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    font-style: italic;
}

.step-item h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.step-item p {
    color: var(--light-gray);
    font-size: 17px;
}


/* ================= RIGHT BOX ================= */

.why-partner-box {
    margin-top: 40px;
    padding: 50px;
    padding-bottom: 40px;
    border-radius: 25px;
    background: #2b3d4e;
    color: white;
}

.why-partner-box ul li::marker {
    color: var(--primary);
}

.why-partner-box h5 {
    margin-bottom: 20px;
}

.why-partner-box ul {
    padding-left: 15px;
}

.why-partner-box h4 {
    margin-bottom: 20px;
    font-weight: bold;
}

.why-partner-box li {
    margin-bottom: 20px;
    color: #fffc;
}


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

.presence-section {
    background: #ffffff;
}


/* HEADER */

.presence-title {
    font-weight: 600;
    color: var(--dark-blue);
}

.presence-title span {
    color: var(--primary);
    font-style: italic;
}

.presence-subtitle {
    color: var(--light-gray);
    max-width: 610px;
}


/* STAT CARD */

.presence-stat-card {
    display: inline-flex;
    align-items: baseline;
    background: #f3f6f5;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Continuous bounce animation */

.presence-stat-card {
    /* animation: bounceCard 1s; */
    animation: bounceCard 1s infinite ease-in-out;
    /* animation: 1s infinite bounce; */
}


/* Keyframes */

@keyframes bounceCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 28px;
}

.presence-stat-card h6 {
    margin: 0;
    font-weight: 600;
}

.presence-stat-card p {
    font-size: 11px;
    margin: 0;
    color: var(--light-gray);
}


/* ================= LOCATION CARDS ================= */

.location-cards {
    margin-top: 40px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 20px;
    height: 100%;
}

.location-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

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


/* ACTIVE CARD */

.active-location {
    background: var(--dark-blue);
    color: var(--white);
}

.active-location .location-icon {
    background: var(--primary);
    color: #ffffff;
}

.active-location p {
    color: #d1d5db !important;
}


/* ICON */

.location-icon {
    width: 80px;
    height: 80px;
    background: #f1eef5;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.active-location .location-icon i {
    color: #ffffff;
}


/* TEXT */

.location-card h5 {
    margin-bottom: 5px;
    font-weight: bold;
}


/* .location-card span {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
} */

.location-card span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 25px;
    background-color: hsl(282 51% 35% / 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.active-location span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--white);
    display: inline-block;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.state {
    margin-bottom: 20px !important;
    background-color: transparent !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-card p {
    color: var(--light-gray);
    font-size: 14px;
}


/* HOVER ONLY NON-ACTIVE CARDS */

.location-card:not(.active-location):hover .location-icon {
    background: var(--primary);
    transform: rotate(4deg);
    transition: 0.3s ease;
}

.location-card:not(.active-location):hover .location-icon i {
    color: #fff;
}


/* LINE COLOR CHANGE */

.location-card:not(.active-location):hover .line {
    background: var(--primary);
}

.location-icon {
    transition: all 0.3s ease;
}


/* FIRST CARD HOVER (ONLY ROTATE ICON) */

.active-location:hover .location-icon {
    transform: rotate(4deg);
    transition: 0.3s ease;
}

.location-icon {
    transition: all 0.3s ease;
}


/* HOVER LIFT EFFECT (IGNORE FIRST CARD) */

.location-card:not(.active-location):hover {
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.location-card {
    transition: all 0.3s ease;
}


/* ================= MAP ================= */

.map-wrapper {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-wrapper img {
    width: 100%;
    display: block;
}


/* ================= RESPONSIVE ================= */


/* MAP */

.map-wrapper {
    margin-top: 40px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 8px solid white;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}


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

.highlight-section {
    padding: 80px 0;
    background: #f8f9fb;
}


/* ================= CARD ================= */

.highlight-card {
    background: linear-gradient(135deg, #2b3d4f, #6b2c87);
    padding: 18px 25px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    gap: 15px;
}


/* ICON */

.highlight-icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    color: white;
    font-size: 32px;
}


/* TEXT */

.highlight-text {
    font-size: 14px;
    line-height: 1.5;
    color: #e5e7eb;
}


/* ================= RESPONSIVE ================= */


/* SECTION */

.contact-section {
    background: #f3f6f5;
}


/* LEFT */

.contact-title {
    color: var(--dark-blue);
    margin: 10px 0 25px;
}

.contact-title span {
    color: var(--primary);
    font-style: italic;
}

.contact-desc {
    color: var(--light-gray);
    margin-bottom: 35px;
}


/* INFO CARDS */

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
    /* smooth hover */
}


/* FIX ICON COMPRESSION */

.parent-icon {
    height: 48px;
    width: 48px;
    min-width: 48px;
    /* 🔥 important */
    flex-shrink: 0;
    /* 🔥 prevents compression */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(282 51% 35% / 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}


/* ICON */

.info-card i {
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
}


/* TEXT */

.info-card h6 {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 5px;
    letter-spacing: 1.4px;
    font-weight: bold;
}

.info-card p {
    font-size: 14px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.info-card small {
    font-size: 12px;
    color: var(--light-gray);
}


/* HOVER EFFECT (OPTIONAL PREMIUM 🔥) */

.info-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}


/* .info-card:hover .parent-icon {
  background: var(--primary);
} */


/* .info-card:hover i {
  color: #fff;
} */


/* Smooth transition */

.parent-icon {
    transition: all 0.3s ease;
}


/* HOVER → ICON INCREASE */

.info-card:hover .parent-icon {
    transform: scale(1.15);
}


/* BOTTOM CARD */

.contact-highlight {
    margin-top: 40px;
    background: #2b3d4e;
    padding: 32px;
    border-radius: 40px;
    color: white;
}

.contact-highlight h6 {
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: 700;
}

.contact-highlight p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.25rem;
}

.highlight-row {
    gap: 20px;
}


/* FORM */

.contact-form-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 50px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-title {
    margin-bottom: 40px;
}

.contact-form-card input, .contact-form-card textarea, .contact-form-card select{
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5ecf3;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    height: 56px;
    line-height: 20px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: hsla(160, 11%, 96%, 0.3);
    font-weight: 500;
    color: var(--light-gray);
}


/* INPUT FOCUS EFFECT */

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

.custom-label {
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--light-gray);
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.form-row {
    margin-bottom: 25px;
}

.contact-form-card textarea {
    height: 120px;
    resize: none;
}


/* BUTTON */

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}


/* .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */


/* Smooth transition for icon */

.submit-btn i {
    display: inline-block;
    transition: transform 0.3s ease;
}


/* Hover effect */

.submit-btn:hover i {
    transform: translateX(6px);
}


/* ================= FOOTER ================= */

.footer-section {
    background: #2b3d4f;
    color: #cbd5e1;
    padding: 60px 0 20px;
}


/* LOGO */

.footer-logo {
    max-width: 250px;
    margin-bottom: 15px;
}


/* TEXT */

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}


/* SOCIAL */

.footer-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: #3b4d5f;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #fff;
    font-size: 14px;
}


/* HEADINGS */

.footer-links h5,
.footer-contact h5 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-flex;
    font-weight: 700;
    font-size: 18px;
}


/* SMALL LINE UNDER TITLE */

.footer-links h5::after,
.footer-contact h5::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--white);
    width: 30px;
    top: 10px;
    /* display: flex; */
    justify-content: center;
    /* align-items: center; */
    /* text-align: center; */
    margin-top: 13px;
    margin-left: 10px;
}


/* LINKS */

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #fff;
}


/* CONTACT */

.footer-contact p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #cbd5e1;
    margin-right: 8px;
}

a i {
    vertical-align: middle;
}


/* BOTTOM */

.footer-bottom {
    border-top: 1px solid #3b4d5f;
    margin-top: 30px;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 12px;
    color: #94a3b8;
}

.footer-policy a {
    font-size: 12px;
    color: #94a3b8;
    margin-left: 15px;
    text-decoration: none;
}

.footer-policy a:hover {
    color: var(--primary);
}


/* Make link inline-flex for proper alignment */

.footer-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}


/* Smooth icon animation */

.footer-links ul li a i {
    transition: transform 0.3s ease;
}


/* HOVER EFFECT */

.footer-links ul li a:hover {
	font-weight: 600; 
    transform: translateX(5px);
    color: var(--white);
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
    color: var(--white);
}

.active-location .line {
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
    margin-top: 35px;
}

.line {
    width: 50px;
    height: 3px;
    background-color: #f3f7f5;
    margin: 0 auto;
    margin-top: 35px;
}

.form-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
}

.form-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--primary);
    width: 50px;
}


/* about page */

.page-banner {
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    overflow: hidden;
}


/* 🔥 Gradient + overlay */

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(107, 44, 135, 0.85), rgba(107, 44, 135, 0.6));
}


/* ✨ Glass blur effect */


/* .page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: 0;
} */

.page-banner .container {
    position: relative;
    z-index: 2;
}


/* 💎 Title styling */

.page-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-content {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.breadcrumb-section {
    background: #f5fbff;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.custom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    font-size: 14px;
}

.custom-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumb a i {
    margin-right: 4px;
}

.breadcrumb-separator i {
    font-size: 12px;
    color: rgba(38, 37, 36, 0.5);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #262524;
    font-weight: 500;
}


/* SECTION */

.single-service {
    background: #fff;
}


/* TITLE */

.service-main-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}


/* TEXT */

.service-desc {
    color: var(--light-gray);
    margin-bottom: 15px;
}


/* SECTION TITLE */

.section-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 30px;
}


/* LIST */

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-gray);
}


/* STEPS */

.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.step-card span {
    font-size: 30px;
    font-weight: bold;
    color: var(--primary);
}

.step-card h6 {
    margin-top: 10px;
    font-weight: 600;
}


/* .step-card:hover {
    transform: translateY(-5px);
} */


/* CTA */

.service-cta {
    background: #f5f3f8;
    padding: 60px 0;
}

.cta-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--light-gray);
    margin-bottom: 20px;
}


/* OVERLAY */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}


/* ACTIVE STATE */

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* BOX */

.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}


/* ANIMATION */

.popup-overlay.active .popup-box {
    transform: translateY(0);
}


/* CLOSE BUTTON */

.popup-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}


/* INPUTS */

.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.popup-box textarea {
    height: 100px;
}

.parent-field {
    margin-bottom: 15px;
}

.sticky-top {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.navbar-toggler {
    height: 34px;
}

.navbar-toggler-icon {
    line-height: 1;
    width: 1.2rem;
    height: 1.2rem;
}


/* =====================================================
   LEADERSHIP TEAM SECTION
===================================================== */

.leadership-section {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.leadership-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 340px;
    height: 340px;
    background: rgba(14, 43, 78, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.leadership-section .container {
    position: relative;
    z-index: 1;
}

.leadership-header {
    max-width: 760px;
    margin: 0 auto 45px;
}

.leadership-title {
    font-size: 42px;
    font-weight: 700;
    color: #0e2b4e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.leadership-title span {
    color: var(--primary);
}

.leadership-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}

.leader-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 32px;
    box-shadow: 0 16px 45px rgba(14, 43, 78, 0.10);
    border: 1px solid rgba(13, 110, 253, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #0e2b4e);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(14, 43, 78, 0.16);
}

.leader-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.leader-avatar {
    width: 92px;
    height: 92px;
    min-width: 92px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 3px solid rgba(13, 110, 253, 0.12);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.18);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* For transparent/full-body image like Shilpi Kanoria */

.leader-avatar img.contain-img {
    object-fit: contain;
    background: #f8fafc;
    padding: 6px;
}

.leader-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0e2b4e;
    margin-bottom: 5px;
}

.leader-info span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.leader-line {
    width: 100%;
    height: 1px;
    background: rgba(14, 43, 78, 0.10);
    margin: 24px 0 15px 0;
}

.leader-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 24px;
}

.leader-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    color: #0e2b4e;
    font-size: 14px;
    font-weight: 600;
}

.leader-highlight i {
    color: var(--primary);
    font-size: 18px;
    line-height: 1.2;
}


/*** Asset Page***/


/* =====================================================
   ASSET PAGE - PURPLE THEME
===================================================== */

.asset-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(79, 31, 103, 0.94), rgba(107, 44, 135, 0.78)), url("../media/asset-hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.asset-page-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.14), transparent 38%);
    z-index: 0;
}

.asset-page-hero .container {
    position: relative;
    z-index: 1;
}

.asset-page-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.asset-page-title span {
    color: #f3dfff;
}

.asset-page-subtitle {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.asset-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* Intro Section */

.asset-intro-section {
    background: #ffffff;
}

.asset-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.asset-section-title span {
    color: #6b2c87;
}

.asset-intro-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.asset-intro-box {
    background: #fdf9ff;
    border-radius: 24px;
    padding: 38px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.asset-intro-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(107, 44, 135, 0.08);
}

.asset-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
}

.asset-intro-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 22px;
}

.asset-intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asset-intro-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5f6f80;
    font-size: 15.5px;
    margin-bottom: 13px;
}

.asset-intro-box ul li i {
    color: #6b2c87;
}


/* Asset Classes */

.asset-classes-section {
    background: #faf7fc;
    position: relative;
}

.asset-header {
    max-width: 780px;
    margin: 0 auto 45px;
}

.asset-header-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}


/* =====================================================
   ASSET CLASSES WITH IMAGES - 2 CARDS PER ROW
===================================================== */

.asset-class-card {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.asset-class-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #6b2c87, #4f1f67);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
}

.asset-class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.asset-class-card:hover::before {
    opacity: 1;
}


/* Asset Card Image */

.asset-class-img {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f3ebf8;
}

.asset-class-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.asset-class-card:hover .asset-class-img img {
    transform: scale(1.08);
}

.asset-class-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(47, 26, 58, 0.04) 0%, rgba(47, 26, 58, 0.24) 100%);
}


/* Card Content */

.asset-class-content {
    position: relative;
    padding: 34px 30px 32px;
}

.asset-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-top: -66px;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.25);
    border: 4px solid #ffffff;
}

.asset-class-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 14px;
}

.asset-class-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 18px;
}

.asset-class-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.asset-class-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: #4f6173;
    margin-bottom: 9px;
    break-inside: avoid;
}

.asset-class-card ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: #6b2c87;
    font-size: 14px;
}


/* Asset Support */

.asset-support-section {
    background: #ffffff;
}

.asset-support-card {
    background: #ffffff;
}

.asset-support-card p {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
}

.asset-support-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.asset-support-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fdf9ff;
    border-radius: 14px;
    padding: 15px 16px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    color: #2f1a3a;
    font-weight: 600;
    font-size: 14.5px;
}

.asset-support-list div i {
    color: #6b2c87;
    font-size: 20px;
}

.asset-process-box {
    background: linear-gradient(135deg, #4f1f67, #6b2c87);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 20px 55px rgba(47, 26, 58, 0.18);
}

.asset-process-box h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.asset-process-item {
    display: flex;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.asset-process-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.asset-process-item span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #6b2c87;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-process-item h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.asset-process-item p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* CTA adjustment */

.asset-page-cta {
    padding-top: 0;
}


/* Responsive */

@media (max-width: 991px) {
    .asset-page-hero {
        min-height: 460px;
    }
    .asset-page-title {
        font-size: 42px;
    }
    .asset-section-title {
        font-size: 34px;
    }
    .asset-support-list {
        grid-template-columns: 1fr;
    }
    .asset-class-img {
        height: 220px;
    }
    .asset-class-content {
        padding: 32px 24px 30px;
    }
    .asset-class-card ul {
        columns: 1;
    }
}

@media (max-width: 575px) {
    .asset-page-hero {
        min-height: 430px;
        padding: 80px 0;
    }
    .asset-page-title {
        font-size: 32px;
    }
    .asset-page-subtitle {
        font-size: 15.5px;
    }
    .asset-section-title {
        font-size: 28px;
    }
    .asset-intro-box,
    .asset-process-box {
        padding: 28px 22px;
        border-radius: 20px;
    }
    .asset-class-card {
        border-radius: 20px;
    }
    .asset-class-img {
        height: 210px;
    }
    .asset-class-content {
        padding: 30px 22px 28px;
    }
    .asset-card-icon {
        width: 58px;
        height: 58px;
        font-size: 26px;
        margin-top: -58px;
        border-radius: 16px;
    }
    .asset-class-card h5 {
        font-size: 20px;
    }
    .asset-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}


/* =====================================================
   PROCESS PAGE - PURPLE THEME
===================================================== */

.process-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(79, 31, 103, 0.94), rgba(107, 44, 135, 0.78)), url("../media/process-hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.process-page-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.14), transparent 38%);
    z-index: 0;
}

.process-page-hero .container {
    position: relative;
    z-index: 1;
}

.process-page-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.process-page-title span {
    color: #f3dfff;
}

.process-page-subtitle {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.process-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* Intro */

.process-intro-section {
    background: #ffffff;
}

.process-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.process-section-title span {
    color: #6b2c87;
}

.process-intro-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.process-intro-box {
    background: #fdf9ff;
    border-radius: 24px;
    padding: 38px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.process-intro-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(107, 44, 135, 0.08);
}

.process-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
}

.process-intro-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 22px;
}

.process-intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-intro-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5f6f80;
    font-size: 15.5px;
    margin-bottom: 13px;
}

.process-intro-box ul li i {
    color: #6b2c87;
}


/* Process Timeline */

.process-steps-section {
    background: #faf7fc;
    position: relative;
}

.process-header {
    max-width: 780px;
    margin: 0 auto 55px;
}

.process-header-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}

.process-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 38px;
    width: 2px;
    background: linear-gradient(180deg, #6b2c87, rgba(107, 44, 135, 0.12));
}

.process-timeline-item {
    position: relative;
    display: flex;
    gap: 28px;
    margin-bottom: 34px;
}

.process-timeline-item:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.28);
    position: relative;
    z-index: 2;
    border: 6px solid #faf7fc;
}

.process-step-card {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 32px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    display: flex;
    gap: 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #6b2c87, #4f1f67);
    opacity: 0;
    transition: all 0.35s ease;
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.process-step-card:hover::before {
    opacity: 1;
}

.process-step-icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.35s ease;
}

.process-step-card:hover .process-step-icon {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.process-step-content h5 {
    font-size: 23px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.process-step-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 16px;
}

.process-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 3;
    column-gap: 22px;
}

.process-step-content ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: #4f6173;
    margin-bottom: 8px;
    break-inside: avoid;
}

.process-step-content ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: #6b2c87;
    font-size: 14px;
}


/* Benefit Section */

.process-benefit-section {
    background: #ffffff;
}

.process-benefit-card p {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
}

.process-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.process-benefit-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fdf9ff;
    border-radius: 14px;
    padding: 15px 16px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    color: #2f1a3a;
    font-weight: 600;
    font-size: 14.5px;
}

.process-benefit-list div i {
    color: #6b2c87;
    font-size: 20px;
}

.process-summary-box {
    background: linear-gradient(135deg, #4f1f67, #6b2c87);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 20px 55px rgba(47, 26, 58, 0.18);
}

.process-summary-box h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.process-summary-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-summary-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.process-summary-item span {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #6b2c87;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-summary-item p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 0;
}


/* CTA adjustment */

.process-page-cta {
    padding-top: 0;
}


/* Responsive */

@media (max-width: 991px) {
    .process-page-hero {
        min-height: 460px;
    }
    .process-page-title {
        font-size: 42px;
    }
    .process-section-title {
        font-size: 34px;
    }
    .process-step-content ul {
        columns: 1;
    }
    .process-benefit-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .process-page-hero {
        min-height: 430px;
        padding: 80px 0;
    }
    .process-page-title {
        font-size: 32px;
    }
    .process-page-subtitle {
        font-size: 15.5px;
    }
    .process-section-title {
        font-size: 28px;
    }
    .process-intro-box,
    .process-summary-box {
        padding: 28px 22px;
        border-radius: 20px;
    }
    .process-timeline::before {
        left: 28px;
    }
    .process-timeline-item {
        gap: 18px;
    }
    .process-step-number {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 16px;
        border-width: 4px;
    }
    .process-step-card {
        padding: 26px 20px;
        border-radius: 20px;
        flex-direction: column;
        gap: 18px;
    }
    .process-step-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 26px;
        border-radius: 16px;
    }
    .process-step-content h5 {
        font-size: 20px;
    }
    .process-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}


/* =====================================================
   INDUSTRIES OWL CAROUSEL
===================================================== */

.industries-carousel {
    margin-top: 35px;
}

.industries-carousel .industry-carousel-item {
    padding: 8px 4px;
}

.industries-carousel .industry-card {
    height: 390px;
}

.industries-carousel .industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Owl Dots */

.industries-carousel.owl-theme .owl-dots {
    margin-top: 28px;
}

.industries-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(107, 44, 135, 0.25);
    transition: all 0.3s ease;
}

.industries-carousel.owl-theme .owl-dots .owl-dot.active span,
.industries-carousel.owl-theme .owl-dots .owl-dot:hover span {
    width: 28px;
    background: #6b2c87;
}


/* Owl Nav */

.industries-carousel.owl-theme .owl-nav {
    margin-top: 0;
}

.industries-carousel.owl-theme .owl-nav button {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: #6b2c87 !important;
    color: #ffffff !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industries-carousel.owl-theme .owl-nav button:hover {
    background: #4f1f67 !important;
}

.industries-carousel.owl-theme .owl-nav .owl-prev {
    left: -22px;
}

.industries-carousel.owl-theme .owl-nav .owl-next {
    right: -22px;
}

@media (max-width: 767px) {
    .industries-carousel .industry-card {
        height: 360px;
    }
    .industries-carousel.owl-theme .owl-nav button {
        display: none !important;
    }
}


/**** Inner page Hero Banner****/


/* =====================================================
   COMMON INNER PAGE HERO
===================================================== */

.inner-page-hero {
    position: relative;
    height: 80vh;
    min-height: 560px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.inner-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(107, 44, 135, 0.78) 0%, rgba(107, 44, 135, 0.68) 35%, rgba(107, 44, 135, 0.38) 58%, rgba(107, 44, 135, 0.05) 82%);
    z-index: 1;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.inner-page-title {
    font-size: 58px;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
}

.inner-page-title span {
    color: #f3dfff;
}

.inner-page-subtitle {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 32px;
}


/* Responsive */

@media (max-width: 991px) {
    .inner-page-hero {
        height: 70vh;
        min-height: 500px;
    }
    .inner-page-title {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .inner-page-hero {
        height: auto;
        min-height: 460px;
        padding: 80px 0;
    }
    .inner-page-overlay {
        background: linear-gradient( to right, rgba(107, 44, 135, 0.88) 0%, rgba(107, 44, 135, 0.76) 58%, rgba(107, 44, 135, 0.45) 100%);
    }
    .inner-page-title {
        font-size: 32px;
    }
    .inner-page-subtitle {
        font-size: 15.5px;
        line-height: 1.7;
    }
    .inner-hero-content .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }
}


/* =====================================================
   CAREER PAGE
/* =====================================================
   COMMON CAREER TITLES
===================================================== */

.career-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.career-section-title span {
    color: #6b2c87;
}

.career-intro-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.career-header {
    max-width: 780px;
    margin: 0 auto 45px;
}

.career-header-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}


/* =====================================================
   CAREER VALUES SECTION
===================================================== */

.career-values-section {
    background: #faf7fc;
}

.career-value-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    transition: all 0.35s ease;
}

.career-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.career-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.career-value-card:hover .career-value-icon {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.career-value-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.career-value-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 0;
}


/* =====================================================
   CURRENT OPPORTUNITIES SECTION
===================================================== */

.open-positions-section {
    background: #ffffff;
}

.career-opportunity-header {
    margin-bottom: 38px;
}

.career-opportunity-header .tag {
    margin-bottom: 10px;
}

.career-opportunity-header .career-section-title {
    margin-bottom: 0;
}

.open-positions-section .row.g-4 {
    row-gap: 28px;
}

.job-card {
    height: 100%;
    background: #fdf9ff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.07);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #6b2c87, #4f1f67);
    opacity: 0;
    transition: all 0.35s ease;
}

.job-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.job-card:hover::before {
    opacity: 1;
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.job-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 5px;
}

.job-card-top span {
    font-size: 14px;
    color: #6b2c87;
    font-weight: 600;
}

.job-type {
    background: #ffffff;
    color: #6b2c87;
    border: 1px solid rgba(107, 44, 135, 0.15);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    height: fit-content;
}

.job-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 18px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4f6173;
    font-size: 14px;
    font-weight: 600;
}

.job-meta i {
    color: #6b2c87;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b2c87;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    color: #4f1f67;
    gap: 12px;
}


/* =====================================================
   APPLICATION FORM SECTION
===================================================== */

.career-apply-section {
    background: #faf7fc;
}

.career-contact-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    margin-top: 28px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 12px 35px rgba(47, 26, 58, 0.08);
}

.career-contact-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 16px;
}

.career-contact-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.career-contact-box p:last-child {
    margin-bottom: 0;
}

.career-contact-box i {
    color: #6b2c87;
}

.career-contact-box a {
    color: #4f6173;
    text-decoration: none;
    font-weight: 600;
}

.career-contact-box a:hover {
    color: #6b2c87;
}

.career-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.10);
    border: 1px solid rgba(107, 44, 135, 0.10);
}

.career-form-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 24px;
}

.career-form-card input,
.career-form-card textarea,
.career-form-card select {
    width: 100%;
    border: 1px solid rgba(47, 26, 58, 0.14);
    border-radius: 12px;
    padding: 13px 15px;
    outline: none;
    background: #ffffff;
    color: #2f1a3a;
    transition: all 0.3s ease;
}

.career-form-card textarea {
    min-height: 130px;
    resize: none;
}

.career-form-card input:focus,
.career-form-card textarea:focus,
.career-form-card select:focus {
    border-color: #6b2c87;
    box-shadow: 0 0 0 4px rgba(107, 44, 135, 0.08);
}

.career-page-cta {
    padding-top: 0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .career-page-hero {
        height: 70vh;
        min-height: 500px;
    }
    .career-page-title {
        font-size: 42px;
    }
    .career-section-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .career-page-hero {
        height: auto;
        min-height: 460px;
        padding: 80px 0;
    }
    .career-page-overlay {
        background: linear-gradient( to right, rgba(107, 44, 135, 0.88) 0%, rgba(107, 44, 135, 0.76) 58%, rgba(107, 44, 135, 0.45) 100%);
    }
    .career-page-title {
        font-size: 32px;
    }
    .career-page-subtitle {
        font-size: 15.5px;
        line-height: 1.7;
    }
    .career-section-title {
        font-size: 28px;
    }
    .career-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .career-opportunity-header {
        margin-bottom: 28px;
    }
    .career-form-card,
    .job-card {
        padding: 26px 22px;
        border-radius: 20px;
    }
    .job-card-top {
        flex-direction: column;
    }
}


/* =====================================================
   BECOME PARTNER PAGE - PURPLE THEME
===================================================== */

.partner-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.partner-section-title span {
    color: #6b2c87;
}

.partner-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.partner-header {
    max-width: 780px;
    margin: 0 auto 45px;
}

.partner-header-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}


/* Intro */

.partner-intro-section {
    background: #ffffff;
}

.partner-intro-box {
    background: #fdf9ff;
    border-radius: 24px;
    padding: 38px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.partner-intro-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(107, 44, 135, 0.08);
}

.partner-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
}

.partner-intro-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 22px;
}

.partner-intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-intro-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f6f80;
    font-size: 15.5px;
    margin-bottom: 13px;
}

.partner-intro-box ul li i {
    color: #6b2c87;
    margin-top: 2px;
}


/* Opportunities */

.partner-opportunities-section {
    background: #faf7fc;
}

.partner-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    transition: all 0.35s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.partner-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.partner-card:hover .partner-card-icon {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.partner-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.partner-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 0;
}


/* Process */

.partner-process-section {
    background: #ffffff;
}

.partner-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.partner-process-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fdf9ff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(107, 44, 135, 0.10);
}

.partner-process-list span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #6b2c87;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-process-list p {
    color: #2f1a3a;
    font-weight: 600;
    font-size: 14.5px;
    margin-bottom: 0;
}

.partner-benefit-box {
    background: linear-gradient(135deg, #4f1f67, #6b2c87);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 20px 55px rgba(47, 26, 58, 0.18);
}

.partner-benefit-box h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.partner-benefit-item {
    display: flex;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-benefit-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.partner-benefit-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.partner-benefit-item h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-benefit-item p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Apply */

.partner-apply-section {
    background: #faf7fc;
}

.partner-contact-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    margin-top: 28px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 12px 35px rgba(47, 26, 58, 0.08);
}

.partner-contact-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 16px;
}

.partner-contact-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.partner-contact-box p:last-child {
    margin-bottom: 0;
}

.partner-contact-box i {
    color: #6b2c87;
}

.partner-contact-box a {
    color: #4f6173;
    text-decoration: none;
    font-weight: 600;
}

.partner-contact-box a:hover {
    color: #6b2c87;
}

.partner-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.10);
    border: 1px solid rgba(107, 44, 135, 0.10);
}

.partner-form-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 24px;
}

.partner-form-card input,
.partner-form-card textarea,
.partner-form-card select {
    width: 100%;
    border: 1px solid rgba(47, 26, 58, 0.14);
    border-radius: 12px;
    padding: 13px 15px;
    outline: none;
    background: #ffffff;
    color: #2f1a3a;
    transition: all 0.3s ease;
}

.partner-form-card textarea {
    min-height: 130px;
    resize: none;
}

.partner-form-card input:focus,
.partner-form-card textarea:focus,
.partner-form-card select:focus {
    border-color: #6b2c87;
    box-shadow: 0 0 0 4px rgba(107, 44, 135, 0.08);
}

.partner-page-cta {
    padding-top: 0;
}


/* Responsive */

@media (max-width: 991px) {
    .partner-section-title {
        font-size: 34px;
    }
    .partner-process-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .partner-section-title {
        font-size: 28px;
    }
    .partner-intro-box,
    .partner-benefit-box,
    .partner-form-card,
    .partner-card {
        padding: 26px 22px;
        border-radius: 20px;
    }
}


/* =====================================================
   WHY LEASE PAGE - PURPLE THEME
===================================================== */

.why-lease-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.why-lease-section-title span {
    color: #6b2c87;
}

.why-lease-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.why-lease-header {
    max-width: 780px;
    margin: 0 auto 45px;
}

.why-lease-header-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6f80;
    margin-bottom: 0;
}


/* Intro */

.why-lease-intro-section {
    background: #ffffff;
}

.why-lease-intro-box {
    background: #fdf9ff;
    border-radius: 24px;
    padding: 38px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.why-lease-intro-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(107, 44, 135, 0.08);
}

.why-lease-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
}

.why-lease-intro-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 22px;
}

.why-lease-intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-lease-intro-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f6f80;
    font-size: 15.5px;
    margin-bottom: 13px;
}

.why-lease-intro-box ul li i {
    color: #6b2c87;
    margin-top: 2px;
}


/* Benefits */

.why-lease-benefits-section {
    background: #faf7fc;
}

.why-lease-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    transition: all 0.35s ease;
}

.why-lease-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.why-lease-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.why-lease-card:hover .why-lease-card-icon {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.why-lease-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.why-lease-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 0;
}


/* Lease vs Buy */

.lease-vs-buy-section {
    background: #ffffff;
}

.lease-comparison-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.lease-comparison-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fdf9ff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(107, 44, 135, 0.10);
}

.lease-comparison-list span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #6b2c87;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lease-comparison-list p {
    color: #2f1a3a;
    font-weight: 600;
    font-size: 14.5px;
    margin-bottom: 0;
}

.lease-vs-buy-box {
    background: linear-gradient(135deg, #4f1f67, #6b2c87);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 20px 55px rgba(47, 26, 58, 0.18);
}

.lease-vs-buy-box h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.lease-suitable-item {
    display: flex;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lease-suitable-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.lease-suitable-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.lease-suitable-item h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lease-suitable-item p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Industries */

.why-lease-industries-section {
    background: #faf7fc;
}

.why-industry-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(47, 26, 58, 0.08);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    transition: all 0.35s ease;
    text-align: center;
}

.why-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.why-industry-card i {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.why-industry-card:hover i {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.why-industry-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.why-industry-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 0;
}

.why-lease-page-cta {
    padding-top: 0;
}


/* Responsive */

@media (max-width: 991px) {
    .why-lease-section-title {
        font-size: 34px;
    }
    .lease-comparison-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .why-lease-section-title {
        font-size: 28px;
    }
    .why-lease-intro-box,
    .lease-vs-buy-box,
    .why-lease-card,
    .why-industry-card {
        padding: 26px 22px;
        border-radius: 20px;
    }
}


/* =====================================================
   INNER CONTENT COMMON PAGE STYLE
   Used for Management Key Personnel and Announcement
===================================================== */

.inner-content-page {
    background: #ffffff;
    position: relative;
}

.inner-page-header {
    max-width: 850px;
    margin: 0 auto 55px;
}

.inner-content-title {
    font-size: 48px;
    font-weight: 800;
    color: #2f1a3a;
    line-height: 1.15;
    margin-bottom: 18px;
}

.inner-content-title span {
    color: #6b2c87;
}

.inner-content-subtitle {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 0;
}

.section-common-title {
    font-size: 40px;
    font-weight: 700;
    color: #2f1a3a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-common-title span {
    color: #6b2c87;
}


/* =====================================================
   MANAGEMENT KEY PERSONNEL PAGE
===================================================== */

.management-page {
    background: #ffffff;
}

.management-intro-row {
    margin-bottom: 70px;
}

.management-content-box p {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6f80;
    margin-bottom: 16px;
}

.management-highlight-box {
    background: #fdf9ff;
    border-radius: 24px;
    padding: 38px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 18px 50px rgba(47, 26, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.management-highlight-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(107, 44, 135, 0.08);
}

.management-highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
    position: relative;
    z-index: 1;
}

.management-highlight-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.management-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.management-highlight-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f6f80;
    font-size: 15.5px;
    margin-bottom: 13px;
}

.management-highlight-box ul li i {
    color: #6b2c87;
    margin-top: 2px;
}

.personnel-header {
    max-width: 780px;
    margin: 0 auto 45px;
}

.personnel-card {
    height: 100%;
    background: #fdf9ff;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.07);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.personnel-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #6b2c87, #4f1f67);
    opacity: 0;
    transition: all 0.35s ease;
}

.personnel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.personnel-card:hover::before {
    opacity: 1;
}

.personnel-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.personnel-card:hover .personnel-icon {
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
}

.personnel-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 6px;
}

.personnel-card span {
    display: block;
    font-size: 14px;
    color: #6b2c87;
    font-weight: 700;
    margin-bottom: 15px;
}

.personnel-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 0;
}


/* =====================================================
   ANNOUNCEMENT PAGE
===================================================== */

.announcement-page {
    background: #faf7fc;
}

.announcement-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.announcement-card {
    display: flex;
    gap: 26px;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.08);
    margin-bottom: 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #6b2c87, #4f1f67);
    opacity: 0;
    transition: all 0.35s ease;
}

.announcement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(47, 26, 58, 0.14);
}

.announcement-card:hover::before {
    opacity: 1;
}

.announcement-date-box {
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6b2c87, #4f1f67);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(107, 44, 135, 0.24);
}

.announcement-date-box span {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.announcement-date-box small {
    font-size: 12px;
    font-weight: 700;
    margin-top: 7px;
    letter-spacing: 0.5px;
}

.announcement-content {
    flex: 1;
}

.announcement-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.announcement-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #6b2c87;
    font-size: 14px;
    font-weight: 700;
}

.announcement-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 12px;
}

.announcement-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6f80;
    margin-bottom: 16px;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b2c87;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-link:hover {
    color: #4f1f67;
    gap: 12px;
}

.announcement-note {
    max-width: 950px;
    margin: 40px auto 0;
    background: #ffffff;
    border-radius: 22px;
    padding: 26px 28px;
    border: 1px solid rgba(107, 44, 135, 0.10);
    box-shadow: 0 14px 40px rgba(47, 26, 58, 0.07);
    display: flex;
    align-items: center;
    gap: 20px;
}

.announcement-note-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: rgba(107, 44, 135, 0.08);
    color: #6b2c87;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.announcement-note h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2f1a3a;
    margin-bottom: 6px;
}

.announcement-note p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #5f6f80;
    margin-bottom: 0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .inner-content-title {
        font-size: 38px;
    }
    .section-common-title {
        font-size: 34px;
    }
    .management-intro-row {
        margin-bottom: 55px;
    }
}

@media (max-width: 575px) {
    .inner-page-header {
        margin-bottom: 38px;
    }
    .inner-content-title {
        font-size: 30px;
    }
    .inner-content-subtitle {
        font-size: 15px;
    }
    .section-common-title {
        font-size: 28px;
    }
    .management-highlight-box,
    .personnel-card,
    .announcement-card,
    .announcement-note {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .announcement-card {
        flex-direction: column;
        gap: 18px;
    }
    .announcement-date-box {
        width: 82px;
        min-width: 82px;
        height: 82px;
    }
    .announcement-content h4 {
        font-size: 21px;
    }
    .announcement-note {
        align-items: flex-start;
    }
}
.trusted-brands-slider .owl-nav{
	display: none;
}
.wpcf7 form.cf7-loading input[type="submit"],
.wpcf7 form.cf7-loading button[type="submit"] {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-listing-row {
            margin-top: 60px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            height: auto;
            margin-bottom: 15px;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        /* .blog-card:hover {
            transform: translateY(-10px);
        } */
        
        .blog-card-img-wrap {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        
        .blog-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .blog-card:hover .blog-card-img-wrap img {
            transform: scale(1.08);
        }
        
        .blog-card-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--white);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
        }
        
        .blog-card-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: var(--light-gray);
            margin-bottom: 12px;
        }
        
        .blog-card-meta i {
            color: var(--primary);
            margin-right: 5px;
        }
        
        .blog-card-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .blog-card-excerpt {
            color: var(--light-gray);
            font-size: 15px;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .blog-card-readmore {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            margin-top: auto;
        }
        
        .blog-card-readmore i {
            margin-left: 6px;
            transition: all 0.3s ease;
        }
        
        .blog-card-readmore:hover i {
            margin-left: 10px;
        }
        
         .single-blog-featured {
            width: 100%;
            border-radius: 24px;
            margin-bottom: 30px;
            max-height: 480px;
            object-fit: cover;
        }

        .single-blog-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-bottom: 18px;
        }

        .single-blog-meta span {
            font-size: 14px;
            color: var(--light-gray);
            display: inline-flex;
            align-items: center;
        }

        .single-blog-meta i {
            color: var(--primary);
            margin-right: 6px;
        }

        .single-blog-category {
            display: inline-block;
            background: #f1eef5;
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .single-blog-title {
            font-size: 40px;
            font-weight: bold;
            color: var(--dark-blue);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .single-blog-content p {
            margin-bottom: 20px;
            font-size: 17px;
        }

        .single-blog-content h3 {
            color: var(--dark-blue);
            font-size: 28px;
            margin: 35px 0 18px;
        }

        .single-blog-content ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .single-blog-content ul li {
            color: var(--light-gray);
            margin-bottom: 10px;
            padding-left: 8px;
        }

        .single-blog-quote {
            border-left: 4px solid var(--primary);
            background: #f8f6fa;
            padding: 25px 30px;
            border-radius: 0 16px 16px 0;
            margin: 30px 0;
            font-size: 19px;
            font-weight: 600;
            color: var(--dark-blue);
            font-style: italic;
        }

        .single-blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 35px 0;
        }

        .single-blog-tags a {
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            color: var(--dark-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .single-blog-tags a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .single-blog-share {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }

        .single-blog-share span {
            font-weight: 700;
            color: var(--dark-blue);
            margin-right: 5px;
        }

        .single-blog-share a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #f1eef5;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .single-blog-share a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .single-blog-author {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #f8f6fa;
            border-radius: 20px;
            padding: 25px;
            margin-top: 40px;
        }

        .single-blog-author img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
        }

        .single-blog-author h6 {
            color: var(--dark-blue);
            margin-bottom: 6px;
        }

        .single-blog-author p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .related-blogs-title {
            margin-bottom: 10px;
        }

     h5.blog-card-title a {
    color: #000;
    text-decoration: none;
}  
/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: hsl(282 51% 35% / 0.05);
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -150px;
    top: -150px;
    border-radius: 50%;
    background: hsl(210 29% 24% / 0.05);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-intro {
    position: sticky;
    top: 150px;
}

.faq-title {
    color: var(--dark-blue);
    margin: 10px 0 20px;
}

.faq-title span {
    color: var(--primary);
    font-style: italic;
}

.faq-description {
    max-width: 520px;
    margin-bottom: 30px;
}

.faq-support-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 500px;
    padding: 24px;
    border: 1px solid hsl(282 51% 35% / 0.12);
    border-radius: 18px;
    background: hsl(282 51% 35% / 0.04);
}

.faq-support-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 10px 24px hsl(282 51% 35% / 0.22);
}

.faq-support-label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.faq-support-card h5 {
    margin-bottom: 7px;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 700;
}

.faq-support-card p {
    margin-bottom: 10px;
    font-size: 14px;
}

.faq-support-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.faq-support-link i {
    transition: transform 0.3s ease;
}

.faq-support-link:hover {
    color: #5a2372;
}

.faq-support-link:hover i {
    transform: translateX(5px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion .accordion-item {
    border: 1px solid #e8e8ec;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(47, 26, 58, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: hsl(282 51% 35% / 0.25);
    box-shadow: 0 12px 30px rgba(47, 26, 58, 0.08);
}

.faq-accordion .accordion-button {
    gap: 15px;
    padding: 22px 24px;
    background: #ffffff;
    color: var(--dark-blue);
    font-family: Montserrat-Medium;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: hsl(282 51% 35% / 0.035);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.faq-question-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: hsl(282 51% 35% / 0.08);
    color: var(--primary);
    font-size: 17px;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-question-icon {
    background: var(--primary);
    color: #ffffff;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px 77px;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.7;
}

.equip-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: all 0.3s ease;
        box-shadow: rgba(100, 100, 111, 0.12) 0px 4px 18px 0px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
 
    .equip-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 20px 25px -5px rgba(0, 0, 0, 0.1),
            0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
 
    /* INNER CARD (IMAGE) */
    .equip-card__media {
        margin: 14px;
        margin-bottom: 0;
        border-radius: 10px;
        overflow: hidden;
        background: #e7f7fe;
    }
 
    .equip-card__media img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
 
    .equip-card:hover .equip-card__media img {
        transform: scale(1.05);
    }
 
    /* BODY (TITLE + PARAGRAPH) */
    .equip-card__body {
        padding: 20px 22px 24px;
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
 
    .equip-card__title {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark-blue);
        margin-bottom: 8px;
    }
 
    .equip-card__desc {
        font-size: 14px;
        line-height: 1.6;
        color: var(--dark-gray);
        margin: 0;
    }
