/* ==========================================================================
   3i World - Core Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Tokens */
    --bg-dark: #020813;
    --bg-secondary: #040e22;
    --bg-card: #081735;
    --bg-card-hover: #0c2352;
    --bg-nav: rgba(2, 8, 19, 0.85);

    --primary: #0d6efd;
    --primary-glow: rgba(13, 110, 253, 0.3);

    --accent-cyan: #6fbf4b;
    --accent-cyan-glow: rgba(0, 210, 255, 0.3);

    --accent-green: #2ecc71;
    --accent-yellow: #f1c40f;

    --text-white: #ffffff;
    --text-muted: #8ca2c0;
    --text-muted-light: #597393;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%);
    --gradient-blue: linear-gradient(135deg, #0b224e 0%, #020813 100%);
    --gradient-card: linear-gradient(145deg, #081735 0%, #040e22 100%);
    --gradient-banner: linear-gradient(135deg, #09214f 0%, #030d1d 100%);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
html {
    overflow-x: hidden;
}

body {
    /* background-color: var(--bg-dark); */
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #ED3237;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    /* width: 400px;
    height: 400px; */
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0, 210, 255, 0.05) 50%, transparent 100%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-right {
    top: 10%;
    right: -100px;
}

.bg-glow-left {
    top: 50%;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(13, 110, 253, 0.04) 50%, transparent 100%);
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 40px 0;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    /* margin-bottom: 12px; */
    display: inline-block;
}

.section-title {
    font-size: 30px;
    /* margin-bottom: 20px; */
    font-weight: 700;
}

/* Buttons */
.btn-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

.btn-custom-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
    color: var(--text-white);
}

.btn-custom-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-custom-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--text-white);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-2px);
}

/* Header & Navbar */
.navbar-custom {
    background-color: #fff;
    padding: 0px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar-custom.navbar-scrolled {
    background-color: #fff;
    backdrop-filter: blur(15px);
    padding: 0px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-img,
.footer-brand-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.navbar-custom .nav-link {
    color: #000;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin: 0 5px;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #6fbf4b;
}

.navbar-custom .dropdown-menu {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-custom .dropdown-item {
    color: #000;
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 16px;
}

.navbar-custom .dropdown-item:hover {
    background-color: var(--primary-glow);
    color: var(--text-white);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.15);
}

.nav-cta:hover {
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.3);
    transform: translateY(-1px);
}

.navbar-toggler {
    border-color: var(--border-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Custom Mobile Hamburger Toggler */
.mobile-custom-toggler {
    border: none !important;
    background: transparent !important;
    padding: 8px 10px !important;
    outline: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-custom-toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-custom-toggler-icon .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #6fbf4b;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: absolute;
}

.mobile-custom-toggler-icon .line-1 {
    top: 0;
}

.mobile-custom-toggler-icon .line-2 {
    top: 8px;
    left: 0;
}

.mobile-custom-toggler-icon .line-3 {
    bottom: 0;
}

/* Morphing hamburger lines into an 'X' when open (not collapsed) */
.mobile-custom-toggler:not(.collapsed) .mobile-custom-toggler-icon .line-1 {
    transform: rotate(45deg);
    top: 8px;
    background-color: var(--accent-cyan);
    /* Theme color cyan/green when opened */
}

.mobile-custom-toggler:not(.collapsed) .mobile-custom-toggler-icon .line-2 {
    opacity: 0;
    left: -20px;
}

.mobile-custom-toggler:not(.collapsed) .mobile-custom-toggler-icon .line-3 {
    transform: rotate(-45deg);
    bottom: 8px;
    background-color: var(--accent-cyan);
    /* Theme color cyan/green when opened */
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    height: 110vh;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}



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

.hero-section .scroll-indicator {
    z-index: 2;
}

.hero-subtitle {
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-subtitle .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-social-proof {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 12px;
}

.social-proof-text .stars {
    color: var(--accent-yellow);
    margin-top: 3px;
    font-size: 10px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 8, 19, 0.6) 0%, transparent 60%);
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-glow-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(0, 210, 255, 0.15);
    border-radius: 50%;
    z-index: 0;
    animation: spin 60s linear infinite;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(8, 23, 53, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 3;
    transition: var(--transition);
}

.floating-card:hover {
    transform: scale(1.03);
    border-color: var(--border-color-hover);
}

.floating-card-1 {
    top: 15%;
    right: -20px;
    width: 200px;
    animation: float-y 5s ease-in-out infinite alternate;
}

.floating-card-2 {
    bottom: 15%;
    left: -30px;
    width: 210px;
    animation: float-y 5s ease-in-out infinite alternate-reverse;
}

.floating-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.floating-card-2 .card-icon {
    background: rgba(46, 204, 113, 0.15);
    color: var(--accent-green);
}

.floating-card .card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.floating-card .card-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.floating-card .card-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin: 0;
}

.floating-card .card-desc i {
    margin-right: 3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-bounce 1.5s infinite;
}

/* Light Section Styles */
.light-section {
    background-color: #ffffff;
    color: #0f172a;
    position: relative;
}

.light-section-alt {
    background-color: #f8fafc;
    color: #0f172a;
    position: relative;
}

.light-section h2.section-title,
.light-section-alt h2.section-title {
    color: #0f172a;
}

.light-section p,
.light-section-alt p {
    color: #475569;
}

.light-section .section-subtitle,
.light-section-alt .section-subtitle {
    color: #6fbf4b;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

/* Trusted Logos Section */
.trusted-section {
    padding: 20px 0 30px;
    background: #ffffff;
    position: relative;
    z-index: 10;
    margin-top: -65px;
    /* Overlap with hero section */
}

.trusted-card-wrapper {
    background: #ffffff;
    padding: 30px 40px 15px;
    /* border: 1px solid #e2e8f0;
    border-radius: 24px; */
    /* box-shadow: 0 10px 40px rgba(2, 8, 19, 0.04); */
}

.trusted-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
}

.blog-details-main {
    margin-top: 20px;
}

.py-30 {
    padding-top: 80px;
}

.logo-slider {
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoMarquee 25s linear infinite;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    margin: 0 0px;
    border: 0.5px solid lightgrey;
    flex-shrink: 0;
}

.partnersSwiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.partnersSwiper .logo-item {
    margin: 0;
}

.logo-item img,
.logo-item svg {
    /* max-height: 50px;  */
    width: 100%;
    transition: var(--transition);
}

.logo-item:hover img,
.logo-item:hover svg {
    transform: scale(1.06);
}

/* Pause animation on hover */
.logo-slider:hover .logo-slider-track {
    animation-play-state: paused;
}

@keyframes logoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Industries Section - Swiper overrides */
.industrySwiper {
    overflow: hidden;
    padding-bottom: 8px;
}

.industrySwiper .swiper-slide {
    height: auto;
}

/* Industries Section */
.industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.industry-img-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: visible;
}

.industry-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
}

.industry-card:hover .industry-bg {
    transform: scale(1.06);
}

.industry-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.industry-icon-badge i {
    font-size: 18px;
}

.industry-body {
    padding: 35px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.industry-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.industry-body p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.5;
}

.explore-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.explore-link i {
    transition: var(--transition);
}

.industry-card:hover .explore-link i {
    transform: translateX(4px);
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

/* Why Choose Us Section */

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    /* text-align: center; */
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.06);
    background: #ffffff;
}

.feature-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.25);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 12px;
    margin-bottom: 0;
    color: #64748b;
}

/* Counter Banner Section */
.counter-section {
    padding: 0px 0;
    background: var(--gradient-banner);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.counter-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.counter-item:last-child::after {
    display: none;
}

.counter-icon {
    font-size: 26px;
    color: var(--accent-cyan);
    margin-bottom: 1px;
}

.counter-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.counter-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Success Stories (Testimonials) - Swiper overrides */
.testimonialSwiper {
    overflow: hidden;
    padding-bottom: 8px;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

/* Success Stories (Testimonials) */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.06);
}

.testimonial-stars {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    color: #334155;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center !important;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.testimonial-user-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #0f172a;
}

.testimonial-user-role {
    font-size: 11px;
    color: #64748b;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 48px;
    color: rgba(13, 110, 253, 0.06);
    line-height: 1;
}

/* Our Process Section */
.process-wrapper {
    position: relative;
    margin-top: 50px;
}

.process-line-svg {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 0;
    pointer-events: none;
}

.process-line-path {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-node {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--primary);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}


.process-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 210, 255, 0.2);
}

.process-step:hover .process-step-node {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.15);
    transform: scale(1.05);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 11px;
    color: #64748b;
    max-width: 150px;
    margin: 0 auto;
}

/* Case Studies - Swiper overrides */
.caseStudiesSwiper {
    overflow: hidden;
    padding-bottom: 8px;
}

.caseStudiesSwiper .swiper-slide {
    height: auto;
}

/* Case Studies */
.case-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.case-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    z-index: 0;
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 19, 0.2) 0%, rgba(2, 8, 19, 0.95) 90%);
    z-index: 1;
    transition: var(--transition);
}

.case-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.case-tag {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.case-card:hover .case-bg {
    transform: scale(1.08);
}

.case-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.case-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.case-stat-label {
    font-size: 15px;
    color: var(--text-muted);
}

.case-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-green);
}

.case-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
}

.case-link i {
    transition: var(--transition);
}

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

/* Technologies Section */
.tech-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.tech-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 7px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.tech-item img {
    height: 24px;
    width: auto;
}

.tech-item span {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.tech-item:hover {
    border-color: var(--accent-cyan);
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}


.tech-item:hover span {
    color: #0d6efd;
}

.tech-divider {
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-divider i {
    transition: var(--transition);
}

@media (max-width: 991px) {
    .tech-divider i {
        transform: rotate(90deg);
    }
}

/* FAQ Section */
.faq-accordion .accordion-item {
    background-color: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    background-color: transparent !important;
    color: #0f172a !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 24px 30px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    border-bottom: none;
    background-color: #ffffff !important;
    color: #0f172a !important;
    padding-bottom: 12px;
}

.faq-accordion .accordion-button::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    color: #0d6efd;
    background-image: none !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: auto;
    transition: none !important;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\2212';
    /* minus sign: − */
    color: #0d6efd;
    transform: none !important;
}

.faq-accordion .accordion-body {
    padding: 0 30px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    background: #ffffff;
}

.faq-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.faq-img-wrapper img {
    width: 100%;
    height: auto;
}

/* Action CTA Banner */
.action-cta-section {
    padding: 40px 0;
}

.action-cta-card {
    background: linear-gradient(135deg, #09214f 0%, #030d1d 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.action-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.action-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.action-cta-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(180deg,
            #0B234A 0%,
            #071B3A 40%,
            #03142D 100%);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    color: #fff;
    margin-bottom: 25px;
    max-width: 280px;
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-link:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-white);
}

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

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

.footer-links a {
    font-size: 13px;
    color: #fff;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info li i {
    color: var(--accent-cyan);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted-light);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--text-muted-light);
}

.footer-bottom-links a:hover {
    color: var(--text-white);
}

/* Animations */
@keyframes float-y {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(15px);
        opacity: 1;
    }
}

/* ==========================================================================
   Vision & Mission Page Scoped Styles (LIGHT THEME)
   ========================================================================== */

.py-6 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mv-section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0d6efd;
    /* Blue */
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
}

.mv-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0b1528;
    /* Dark Navy */
    line-height: 1.3;
}

#vission01 .mv-section-title {
    font-size: 21px !important;
    font-weight: 600;
}

.mv-section-title.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mv-section-desc {
    font-size: 15px;
    color: #475569;
    /* Slate Gray */
    line-height: 1.8;
}

/* Hero Section */
.mv-hero-section {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background-color: #ffffff;
}

.mv-breadcrumb {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #64748b;
}

.mv-breadcrumb a {
    color: #64748b;
    transition: var(--transition);
}

.mv-breadcrumb a:hover {
    color: #0b1528;
}

.mv-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: #94a3b8;
}

.mv-breadcrumb .active {
    color: #0b1528;
    font-weight: 600;
}

.mv-hero-title {
    font-size: 46px;
    font-weight: 800;
    color: #0b1528;
    line-height: 1.25;
}

.mv-hero-title .text-gradient {
    background: linear-gradient(90deg, #0d6efd 0%, #00d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-hero-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.mv-hero-graphic-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}

.mv-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(13, 110, 253, 0.15);
    pointer-events: none;
}

.mv-orb-ring.ring-1 {
    width: 440px;
    height: 440px;
    animation: spin 60s linear infinite;
}

.mv-orb-ring.ring-2 {
    width: 500px;
    height: 500px;
    animation: spin 90s linear infinite reverse;
}

.mv-hero-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 0 50px rgba(13, 110, 253, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-orb-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
}

.mv-orb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.mv-orb-brand {
    position: relative;
    font-size: 80px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #0d6efd 0%, #00d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(13, 110, 253, 0.3));
    z-index: 2;
    animation: float-y 4s ease-in-out infinite alternate;
}

.mv-floating-card {
    position: absolute;
    width: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: var(--transition);
}

.mv-floating-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
}

.mv-floating-card.card-vision {
    top: -20px;
    right: -100px;
}

.mv-floating-card.card-mission {
    bottom: -20px;
    left: -100px;
}

.card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-icon-wrap.icon-blue {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.15);
}

.card-icon-wrap.icon-green {
    background: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.card-title-mini {
    font-size: 15px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 6px;
    text-align: left;
}

.card-desc-mini {
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

/* Purpose & Stats Section */
.mv-purpose-section {
    background-color: #f4f7f9;
}

.mv-target-wrapper {
    position: relative;
    display: inline-block;
    width: 400px;
    height: 400px;
}

.mv-target-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.mv-target-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */

}

.mv-target-dart {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #e74c3c;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    animation: float-y 2s ease-in-out infinite alternate;
}

.mv-stats-strip {
    border-top: 1px solid #e2e8f0;
}

.mv-stat-item {
    text-align: left;
}

.mv-stat-item .stat-icon {
    font-size: 20px;
    color: #0d6efd;
    margin-bottom: 8px;
}

.mv-stat-item .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0b1528;
    margin-bottom: 4px;
}

.mv-stat-item .stat-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Detailed Rows */
.mv-detail-rows-section {
    background-color: #ffffff;
}

.mv-detail-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.img-box-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.mv-detail-img {
    border-radius: 24px;
    transition: var(--transition);
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.mv-detail-img-box:hover .mv-detail-img {
    transform: scale(1.03);
}

.img-circle-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.img-circle-decoration.deco-green {
    background: #2ecc71;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

/* Values Section */
.mv-values-section {
    background-color: #f8fafc;
}

.mv-value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.mv-value-card:hover {
    background: #ffffff;
    border-color: rgba(13, 110, 253, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
}

.mv-value-card .value-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #0d6efd 0%, #00d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mv-value-card .value-name {
    font-size: 18px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 12px;
}

.mv-value-card .value-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process & Trust Section */
.mv-process-step {
    position: relative;
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-line {
    width: 2px;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.2) 0%, transparent 100%);
    flex-grow: 1;
    margin-top: 8px;
}

.step-info {
    padding-bottom: 24px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.mv-trust-card {
    background: linear-gradient(135deg, #09214f 0%, #030d1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.trust-bg-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.trust-metric-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition);
    text-align: center;
}

.trust-metric-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 210, 255, 0.15);
    transform: translateY(-3px);
}

.metric-icon-box {
    font-size: 24px;
    color: #2ecc71;
}

.metric-val {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.metric-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Culture Section */
.mv-culture-section {
    background-color: #f8fafc;
}

.mv-culture-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.mv-culture-card:hover {
    border-color: rgba(13, 110, 253, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.08);
}

.culture-img-wrap {
    overflow: hidden;
    height: 200px;
}

.culture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.culture-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 10px;
    text-align: left;
}

.culture-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* Journey Timeline */
.mv-journey-section {
    background-color: #ffffff;
}

.mv-timeline-container {
    position: relative;
    padding: 40px 0;
}

.mv-timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.25) 50%, rgba(13, 110, 253, 0.05) 100%);
    z-index: 1;
}

.mv-timeline-row {
    position: relative;
    z-index: 2;
}

.mv-timeline-card {
    text-align: center;
    position: relative;
}

.timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
    transition: var(--transition);
}

.timeline-node.node-future {
    border-color: #2ecc71;
    color: #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.15);
}

.mv-timeline-card:hover .timeline-node {
    transform: scale(1.1);
    background-color: #0d6efd;
    color: #ffffff;
}

.mv-timeline-card:hover .timeline-node.node-future {
    background-color: #2ecc71;
    color: #ffffff;
}

.timeline-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 10px;
}

.timeline-card-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials */
.mv-testimonials-section {
    background-color: #f8fafc;
}

.mv-testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.mv-testimonial-card:hover {
    border-color: rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.06);
}

.testimonial-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.client-name {
    font-size: 15px;
    font-weight: 700;
    color: #0b1528;
    margin-bottom: 2px;
    text-align: left;
}

.client-role {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
    text-align: left;
}

/* Bottom CTA section */
.mv-bottom-cta-section {
    background-color: #ffffff;
}

.mv-bottom-cta-wrap {
    background: linear-gradient(135deg, #09214f 0%, #030d1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-rocket-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.1);
    color: #00f2fe;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.cta-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}




/* ==========================================================================
   Industry Details Page - Scoped Styles (all rules use parent #id selectors)
   Uses the 3i World theme colors (teal, green, gradient-primary, dark-blue)
   ========================================================================== */

/* -----------------------------------------------
   Hero Section & Breadcrumb (#indHero)
   ----------------------------------------------- */
#indHero {
    position: relative;
    padding: 100px 0 40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

#indHero .ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 19, 0.85) 0%, rgba(2, 8, 19, 0.95) 100%);
    z-index: 1;
}

#indHero .ind-breadcrumb {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-muted);
}

#indHero .ind-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

#indHero .ind-breadcrumb a:hover {
    color: var(--text-white);
}

#indHero .ind-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: var(--text-muted-light);
}

#indHero .ind-breadcrumb .current {
    color: var(--text-white);
    font-weight: 600;
}

#indHero .ind-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4facfe;
    background: rgba(79, 172, 254, 0.08);
    border: 1px solid rgba(79, 172, 254, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
}

#indHero .ind-hero-title {
    font-size: 35px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.35;
    margin: 0 auto 20px;
    max-width: 950px;
    text-align: center;
}

#indHero .ind-hero-title .text-gradient {
    display: block;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#indHero .ind-hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 850px;
    line-height: 1.8;
    margin: 0 auto 35px;
    text-align: center;
}

#indHero .ind-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

#indHero .btn-talk-expert-solid {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px 8px 28px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

#indHero .btn-talk-expert-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

#indHero .btn-talk-expert-solid .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition);
}

#indHero .btn-talk-expert-solid:hover .arrow-circle {
    /* background: #ffffff; */
    color: #0d6efd;
}

#indHero .btn-download-brochure-outline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    background: transparent;
    color: var(--text-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

#indHero .btn-download-brochure-outline:hover {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.05);
    transform: translateY(-2px);
}

#indHero .btn-download-brochure-outline .download-icon {
    font-size: 14px;
    color: var(--text-muted);
}

/* Right Visual stacked stat badges */
#indHero .ind-hero-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&q=80&w=800');
    /* airplane overlay */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 360px;
}

#indHero .ind-stat-badge-vertical {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    animation: float-y 3s ease-in-out infinite alternate;
}

#indHero #indHeroStat1 {
    animation-delay: 0s;
}

#indHero #indHeroStat2 {
    animation-delay: 1s;
}

#indHero #indHeroStat3 {
    animation-delay: 2s;
}

#indHero .badge-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

#indHero .badge-info-wrap h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1528;
    line-height: 1.1;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    text-align: left;
}

#indHero .badge-info-wrap p {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}


/* -----------------------------------------------
   Trusted Logos Strip (#indLogos)
   ----------------------------------------------- */
#indLogos {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

#indLogos .ind-strip-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#indLogos .partner-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #cbd5e1;
    transition: var(--transition);
}

#indLogos .partner-logo span {
    color: #ef4444;
}

#indLogos .ind-logos-row div:hover .partner-logo {
    color: #64748b;
}


/* -----------------------------------------------
   Industry Overview (#indOverview)
   ----------------------------------------------- */
#indOverview .ind-overview-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 440px;
    /* Change as per your requirement */
}

#indOverview .ind-overview-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

#indOverview .ind-overview-img-box:hover img {
    transform: scale(1.04);
}

#indOverview .ind-overview-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

#indOverview .ind-overview-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

#indOverview .ind-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 110, 253, 0.2);
}

#indOverview .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

#indOverview .card-body-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

#indOverview .card-body-text p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}


/* -----------------------------------------------
   Key Challenges (#indChallenges)
   ----------------------------------------------- */
#indChallenges .ind-challenge-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

#indChallenges .ind-challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 110, 253, 0.25);
}

#indChallenges .challenge-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0d6efd;
    transition: var(--transition);
    border: 1px solid rgba(13, 110, 253, 0.15);
}

#indChallenges .ind-challenge-card:hover .challenge-icon-badge {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

#indChallenges .ind-challenge-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

#indChallenges .ind-challenge-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}


/* -----------------------------------------------
   Process Section/Timeline (#indProcess)
   ----------------------------------------------- */
#indProcess .ind-process-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

#indProcess .ind-process-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

#indProcess .ind-timeline-step-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

#indProcess .timeline-circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

#indProcess .ind-timeline-step-node:hover .timeline-circle-icon {
    border-color: #0d6efd;
    color: #0d6efd;
    transform: scale(1.08);
}

#indProcess .step-label-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 6px;
}

#indProcess .ind-timeline-step-node h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

#indProcess .ind-timeline-step-node p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

#indProcess .timeline-arrow-spacer {
    font-size: 20px;
    color: #cbd5e1;
    margin-top: 25px;
}


/* -----------------------------------------------
   Solutions & Case Study Section (#indSolutionsCase)
   ----------------------------------------------- */
#indSolutionsCase .ind-capability-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

#indSolutionsCase .ind-capability-box:hover {
    border-color: rgba(13, 110, 253, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

#indSolutionsCase .box-icon {
    font-size: 18px;
    color: #ED3237;
    display: flex;
    align-items: center;
}

#indSolutionsCase .ind-capability-box span {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

#indSolutionsCase .ind-explore-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #ED3237;
}

#indSolutionsCase .ind-explore-link:hover {
    color: #0a4fba;
}

/* Case Study Card */
#indSolutionsCase .ind-case-study-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#indSolutionsCase .ind-case-img-wrap {
    position: relative;
    height: 200px;
    width: 100%;
}

#indSolutionsCase .case-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ED3237;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
}

#indSolutionsCase .ind-case-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
}

#indSolutionsCase .ind-case-body p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

#indSolutionsCase .ind-case-stats {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px 10px;
    border: 1px solid #e2e8f0;
}

#indSolutionsCase .ind-case-stats .stat-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ED3237;
    margin-bottom: 2px;
}

#indSolutionsCase .ind-case-stats .stat-item span {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    display: block;
}

#indSolutionsCase .btn-read-case {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #0b1528;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#indSolutionsCase .btn-read-case:hover {
    color: #0d6efd;
}


/* -----------------------------------------------
   Technologies We Use (#indTech)
   ----------------------------------------------- */
#indTech .tech-icon-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

#indTech .tech-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 110, 253, 0.2);
}

#indTech .tech-icon-box i {
    font-size: 32px;
    transition: var(--transition);
}

#indTech .tech-icon-box span {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

#indTech .react-color {
    color: #61dbfb;
}

#indTech .angular-color {
    color: #dd0031;
}

#indTech .node-color {
    color: #3c873a;
}

#indTech .python-color {
    color: #ffe873;
}

#indTech .aws-color {
    color: #ff9900;
}

#indTech .azure-color {
    color: #0078d4;
}

#indTech .docker-color {
    color: #0db7ed;
}

#indTech .mongo-color {
    color: #4db33d;
}

#indTech .ind-explore-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
}

/* Custom 5 column breakpoint for Bootstrap */
@media (min-width: 992px) {
    #indTech .col-lg-1-5 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}


/* -----------------------------------------------
   Industries We Serve (#indServe)
   ----------------------------------------------- */
#indServe .indServeSwiper {
    width: 100%;
    padding: 10px 0 45px;
    overflow: hidden;
}

#indServe .ind-serve-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

#indServe .ind-serve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 110, 253, 0.25);
}

#indServe .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: var(--transition);
}

#indServe .ind-serve-card:hover .card-icon {
    background: var(--gradient-primary);
    color: #ffffff;
}

#indServe .ind-serve-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

#indServe .ind-serve-card p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

#indServe .swiper-pagination-bullet-active {
    background: #0d6efd !important;
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


/* -----------------------------------------------
   CTA Footer Section (#indCta)
   ----------------------------------------------- */
#indCta {
    padding: 60px 0 100px;
    background: #ffffff;
}

#indCta .ind-cta-box {
    background: linear-gradient(135deg, #020813 0%, #081735 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

#indCta .ind-cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#indCta .cta-mini-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #00f2fe;
    display: block;
    margin-bottom: 10px;
}

#indCta .cta-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0;
    line-height: 1.3;
}

#indCta .cta-button-group {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

#indCta .btn-talk-expert-solid {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

#indCta .btn-talk-expert-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

#indCta .btn-talk-expert-solid .arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

#indCta .btn-schedule-meeting {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    background: transparent;
    color: var(--text-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

#indCta .btn-schedule-meeting:hover {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.05);
    transform: translateY(-2px);
}


/* -----------------------------------------------
   Responsive Settings
   ----------------------------------------------- */
@media (max-width: 991.98px) {
    #indHero {
        padding: 140px 0 60px;
        text-align: center;
    }

    #indHero .ind-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #indHero .ind-hero-actions {
        justify-content: center;
    }

    #indHero .ind-hero-visual-container {
        align-items: center;
        background-position: center;
        height: 280px;
        margin-top: 40px;
    }

    #indHero .ind-stat-badge-vertical {
        min-width: 210px;
    }

    #indProcess .ind-process-timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 20px;
    }

    #indProcess .ind-process-timeline-wrapper::before {
        top: 20px;
        bottom: 20px;
        left: 55px;
        width: 2px;
        height: auto;
    }

    #indProcess .ind-timeline-step-node {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    #indProcess .timeline-circle-icon {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    #indProcess .step-label-num {
        position: absolute;
        top: -6px;
        left: 80px;
    }

    #indCta .cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #indCta .cta-button-group {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    #indHero .ind-hero-title {
        font-size: 32px;
    }

    #indHero .ind-stat-badge-vertical {
        min-width: 200px;
        padding: 10px 14px;
    }

    #indHero .badge-info-wrap h3 {
        font-size: 20px;
    }

    #indLogos {
        padding: 30px 0;
    }

    #indOverview .ind-overview-card {
        padding: 16px 20px;
        gap: 15px;
    }

    #indChallenges .ind-challenge-card {
        padding: 24px 16px;
    }

    #indSolutionsCase .ind-capability-box {
        padding: 14px 16px;
    }

    #indSolutionsCase .ind-case-img-wrap {
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    #indHero .ind-hero-title {
        font-size: 26px;
    }

    #indHero .ind-hero-visual-container {
        height: 250px;
    }

    #indHero .ind-stat-badge-vertical {
        min-width: 100%;
    }
}

/* ==========================================================================
   Service Detail Page - Scoped Styles (all rules use parent #id selectors)
   Uses the 3i World theme colors (teal, green, gradient-primary, dark-blue)
   ========================================================================== */

/* -----------------------------------------------
   Breadcrumb Section (#sdBreadcrumb)
   ----------------------------------------------- */
#sdBreadcrumb {
    position: relative;
    padding: 100px 0 40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

#sdBreadcrumb .sd-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 19, 0.85) 0%, rgba(2, 8, 19, 0.95) 100%);
    z-index: 1;
}

#sdBreadcrumb .sd-banner-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    max-width: 920px;
    margin: 0 auto 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#sdBreadcrumb .sd-banner-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 820px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

#sdBreadcrumb .sd-banner-btn {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(87, 199, 133, 0.3);
    display: inline-flex;
    transition: var(--transition);
}

#sdBreadcrumb .sd-banner-btn:hover {
    box-shadow: 0 6px 20px rgba(87, 199, 133, 0.5);
    transform: translateY(-2px);
}

/* -----------------------------------------------
   Hero Section (#sdHero)
   ----------------------------------------------- */
#sdHero {
    background: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

#sdHero .sd-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ED3237;
    /* burgundy red accent */
    margin-bottom: 20px;
}

#sdHero .sd-hero-title {
    font-size: 29px;
    font-weight: 800;
    color: #0b1528;
    line-height: 1.2;
    /* margin-bottom: 24px; */
}

#sdHero .sd-title-highlight {
    color: #ED3237;
    /* red highlight */
    display: block;
}

#sdHero .sd-hero-desc {
    font-size: 15px;
    color: #475569;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 35px;
}

#sdHero .sd-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

#sdHero .btn-talk-expert-solid {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    background: #ED3237;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(237, 50, 55, 0.2);
}

#sdHero .btn-talk-expert-solid:hover {
    background: #c7272c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 50, 55, 0.3);
}

#sdHero .btn-talk-expert-solid .arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition);
}

#sdHero .btn-talk-expert-solid:hover .arrow-circle {
    background: #ffffff;
    color: #ED3237;
}

#sdHero .btn-download-brochure-outline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: #0b1528 !important;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

#sdHero .btn-download-brochure-outline:hover {
    border-color: #0b1528;
    background: #f8fafc;
    transform: translateY(-2px);
}

#sdHero .btn-download-brochure-outline .download-icon {
    font-size: 14px;
    color: #475569;
}

/* Hero Visual on the Right */
#sdHero .sd-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

#sdHero .sd-hero-visual-shape {
    position: absolute;
    width: 440px;
    height: 480px;
    background: #081735;
    /* dark blue card background shape */
    border-radius: 30px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    transform: rotate(5deg);
}

/* Decorative dot grid overlays */
#sdHero .sd-dots-pattern {
    position: absolute;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(#ED3237 2px, transparent 2px), radial-gradient(#081735 2px, transparent 2px);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    opacity: 0.8;
}

#sdHero .sd-dots-left {
    top: -10px;
    left: -20px;
    z-index: 0;
}

#sdHero .sd-dots-right {
    bottom: -10px;
    right: -20px;
    z-index: 2;
}

#sdHero .sd-dots-accent-circle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ED3237;
    border-radius: 50%;
    top: 50px;
    left: 10px;
    z-index: 3;
}

#sdHero .sd-hero-img-wrapper {
    position: relative;
    width: 440px;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#sdHero .sd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sdHero .sd-stat-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    z-index: 4;
}

#sdHero .sd-stat-badge-top {
    top: 30px;
    right: -50px;
}

#sdHero .sd-stat-badge-middle {
    bottom: 90px;
    left: -70px;
}

#sdHero .sd-stat-badge-bottom {
    bottom: 20px;
    right: -40px;
}

#sdHero .sd-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #081735;
    /* dark blue badge background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ED3237;
    /* red icon */
    flex-shrink: 0;
}

#sdHero .sd-badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#sdHero .sd-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

#sdHero .sd-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #ED3237;
    /* red value numbers */
    line-height: 1.1;
    margin-bottom: 1px;
    font-family: var(--font-heading);
}

#sdHero .sd-stat-change {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
}

/* -----------------------------------------------
   Features Bar (#sdFeaturesBar)
   ----------------------------------------------- */
#sdFeaturesBar {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -36px;
}

#sdFeaturesBar .sd-features-strip {
    background: #081735;
    /* dark navy */
    border-radius: 17px;
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(8, 23, 53, 0.2);
}

#sdFeaturesBar .sd-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

#sdFeaturesBar .sd-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(111, 191, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(111, 191, 75, 0.15);
}


/* -----------------------------------------------
   Services Grid (#sdServices)
   ----------------------------------------------- */
#sdServices {
    padding-top: 100px;
}

#sdServices .sd-section-desc {
    max-width: 620px;
    font-size: 14px;
    color: #475569;
}

#sdServices .sd-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

#sdServices .sd-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(111, 191, 75, 0.3);
}

#sdServices .sd-service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(111, 191, 75, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 26px;
    color: #0d9488;
    transition: var(--transition);
    border: 1px solid rgba(111, 191, 75, 0.15);
}

#sdServices .sd-service-card:hover .sd-service-icon-wrap {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

#sdServices .sd-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

#sdServices .sd-service-card p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.6;
}


/* -----------------------------------------------
   Vision & Mission Section (#mvVisionMissionSection)
   ----------------------------------------------- */
#mvVisionMissionSection {
    padding-top: 100px;
}

#mvVisionMissionSection .sd-service-card {
    background: #f0f7ff;
    /* Soft light blue background */
    border: 1px solid #e0f2fe;
    /* Light blue border */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.03);
}

#mvVisionMissionSection .sd-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.25);
}

#mvVisionMissionSection .sd-service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    /* Premium blue */
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

#mvVisionMissionSection .sd-service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
}

#mvVisionMissionSection .sd-service-card p.mv-lead-text {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.6;
}

#mvVisionMissionSection .sd-service-card p.mv-sub-text {
    font-size: 13.5px;
    color: #475569;
    font-weight: 400;
    line-height: 1.8;
}

#mvVisionMissionSection .sd-service-card.mission-card {
    background: #f4faf0;
    /* Soft light green background as per image */
    border: 1px solid #e2f4dc;
    /* Soft green border */
    box-shadow: 0 4px 20px rgba(111, 191, 75, 0.03);
}

#mvVisionMissionSection .sd-service-card.mission-card:hover {
    box-shadow: 0 12px 30px rgba(111, 191, 75, 0.08);
    border-color: rgba(111, 191, 75, 0.25);
}

#mvVisionMissionSection .sd-service-card.mission-card h4 {
    color: #6fbf4b;
}

#mvVisionMissionSection .sd-service-card.mission-card h4::after {
    background: #6fbf4b;
}


/* -----------------------------------------------
   Core Values Section (#mvCoreValuesSection)
   ----------------------------------------------- */
#mvCoreValuesSection {
    padding-top: 100px;
}

#mvCoreValuesSection .sd-service-card {
    text-align: center;
}

#mvCoreValuesSection .sd-service-icon-wrap {
    margin: 0 auto 22px;
    /* Center-align the icon container as requested */
}


/* -----------------------------------------------
   5-Step Process (#sdProcess)
   ----------------------------------------------- */
#sdProcess {
    background-color: #f8fafc;
}

#sdProcess .sd-process-wrapper-box {
    background: linear-gradient(135deg, #020813 0%, #040e22 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

#sdProcess .sd-process-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    display: inline-block;
    margin-bottom: 12px;
}

#sdProcess .sd-process-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

#sdProcess .sd-process-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

#sdProcess .btn-custom-primary {
    padding-right: 6px !important;
}

#sdProcess .btn-custom-primary .arrow-badge {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: var(--transition);
}

#sdProcess .btn-custom-primary:hover .arrow-badge {
    background: #ffffff;
    color: #0d9488;
}

/* Horizontal Timeline Steps */
#sdProcess .sd-process-timeline-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

#sdProcess .sd-process-timeline-row::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-color) 0px, var(--border-color) 6px, transparent 6px, transparent 12px);
    z-index: 1;
}

#sdProcess .sd-process-timeline-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 8px;
    text-align: center;
}

#sdProcess .sd-timeline-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #081735;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#sdProcess .sd-process-timeline-node:hover .sd-timeline-circle {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
}

#sdProcess .sd-timeline-number {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

#sdProcess .sd-timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

#sdProcess .sd-timeline-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}


/* -----------------------------------------------
   Industries Section (#sdIndustries)
   ----------------------------------------------- */
#sdIndustries .sd-section-desc {
    max-width: 600px;
    font-size: 14px;
    color: #475569;
}

#sdIndustries .sdIndustrySwiper {
    width: 100%;
    padding: 10px 0 45px;
    overflow: hidden;
}

#sdIndustries .sd-industry-slide-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

#sdIndustries .sd-industry-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(111, 191, 75, 0.25);
}

#sdIndustries .sd-industry-image-container {
    position: relative;
    height: 160px;
    width: 100%;
}

#sdIndustries .sd-industry-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

#sdIndustries .sd-industry-slide-card:hover .sd-industry-bg-img {
    transform: scale(1.06);
}

#sdIndustries .sd-industry-badge-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

#sdIndustries .sd-industry-body-content {
    padding: 35px 20px 24px;
}

#sdIndustries .sd-industry-body-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

#sdIndustries .sd-industry-body-content p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Swiper Pagination Styling */
#sdIndustries .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
}

#sdIndustries .swiper-pagination-bullet-active {
    background: #0d9488 !important;
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


/* -----------------------------------------------
   Stats Grid (#sdStats)
   ----------------------------------------------- */
#sdStats {
    background: #ffffff;
}

#sdStats .sd-stats-grid-row {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

#sdStats .sd-stat-grid-item {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

#sdStats .sd-stat-grid-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #cbd5e1;
}

#sdStats .sd-stat-grid-item:last-child::after {
    display: none;
}

#sdStats .sd-stat-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(111, 191, 75, 0.08);
    color: #0d9488;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

#sdStats .sd-stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

#sdStats .sd-stat-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}


/* -----------------------------------------------
   CTA Section (#sdContactCta)
   ----------------------------------------------- */
#sdContactCta {
    padding: 60px 0 100px;
    background: #ffffff;
}

#sdContactCta .sd-cta-card-box {
    background: linear-gradient(135deg, #020813 0%, #081735 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

#sdContactCta .sd-cta-card-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 191, 75, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#sdContactCta .sd-cta-content {
    position: relative;
    z-index: 2;
}

#sdContactCta .sd-cta-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 10px;
}

#sdContactCta .sd-cta-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.25;
}

#sdContactCta .sd-cta-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

#sdContactCta .btn-cta-get {
    padding-right: 6px !important;
}

#sdContactCta .btn-cta-get .arrow-badge {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: var(--transition);
}

#sdContactCta .btn-cta-get:hover .arrow-badge {
    background: #ffffff;
    color: #0d9488;
}

#sdContactCta .sd-cta-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* -----------------------------------------------
   FAQ Section (#faq)
   ----------------------------------------------- */
#faq {
    background: #ffffff;
}

#faq .sd-faq-help-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    overflow: visible;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

#faq .sd-faq-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 19, 0.3) 0%, rgba(2, 8, 19, 0.6) 100%);
    border-radius: 24px;
    z-index: 1;
}

#faq .sd-faq-card-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 250px;
}

#faq .sd-faq-call-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 24px 28px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.25);
    min-width: 260px;
}

#faq .sd-faq-call-label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

#faq .sd-faq-call-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

#faq .sd-faq-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #020813;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

#faq .sd-faq-call-number {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline !important;
}

/* FAQ Accordion */
#sdFaqAccordion {
    background: transparent;
}

#sdFaqAccordion .accordion-item {
    background: #ffffff;
    border: 1px dashed #cbd5e1 !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: var(--transition);
}

#sdFaqAccordion .accordion-item:hover {
    border-color: rgba(13, 110, 253, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

#sdFaqAccordion .accordion-button {
    background: transparent !important;
    color: #0f172a !important;
    font-size: 15px;
    font-weight: 700;
    padding: 22px 24px;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding-right: 60px;
    text-align: left;
}

#sdFaqAccordion .accordion-button::after {
    display: none;
}

#sdFaqAccordion .faq-icon-wrapper {
    position: absolute;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    flex-shrink: 0;
}

#sdFaqAccordion .accordion-button.collapsed .faq-icon-wrapper {
    border-color: #cbd5e1;
    color: #475569;
}

/* Icon state toggles */
#sdFaqAccordion .accordion-button .faq-icon-wrapper .collapsed-show {
    display: none;
}

#sdFaqAccordion .accordion-button .faq-icon-wrapper .expanded-show {
    display: inline-block;
}

#sdFaqAccordion .accordion-button.collapsed .faq-icon-wrapper .collapsed-show {
    display: inline-block;
}

#sdFaqAccordion .accordion-button.collapsed .faq-icon-wrapper .expanded-show {
    display: none;
}

#sdFaqAccordion .accordion-collapse {
    border: none !important;
}

#sdFaqAccordion .accordion-body {
    padding: 0 24px 22px 24px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    border: none !important;
    text-align: left;
}


/* -----------------------------------------------
   Responsive Settings
   ----------------------------------------------- */
@media (max-width: 991.98px) {
    #sdBreadcrumb {
        padding: 140px 0 80px;
    }

    #sdBreadcrumb .sd-banner-title {
        font-size: 32px;
    }

    #sdHero {
        padding: 60px 0 60px;
        text-align: center;
    }

    #sdHero .sd-hero-title {
        font-size: 36px;
    }

    #sdHero .sd-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #sdHero .sd-hero-actions {
        justify-content: center;
    }

    #sdHero .sd-hero-visual {
        margin-top: 60px;
    }

    #sdHero .sd-hero-visual-shape,
    #sdHero .sd-hero-img-wrapper {
        width: 340px;
        height: 360px;
    }

    #sdHero .sd-stat-badge-top {
        right: -10px;
    }

    #sdHero .sd-stat-badge-middle {
        left: -30px;
    }

    #sdHero .sd-stat-badge-bottom {
        right: -10px;
    }

    #sdFeaturesBar .sd-features-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 20px 24px;
    }

    #sdProcess .sd-process-timeline-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding-left: 20px;
    }

    #sdProcess .sd-process-timeline-row::before {
        top: 20px;
        bottom: 20px;
        left: 45px;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(to bottom, var(--border-color) 0px, var(--border-color) 6px, transparent 6px, transparent 12px);
    }

    #sdProcess .sd-process-timeline-node {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    #sdProcess .sd-timeline-circle {
        margin-bottom: 0;
    }

    #sdProcess .sd-timeline-number {
        position: absolute;
        top: -6px;
        left: 70px;
    }

    #faq .sd-faq-help-card {
        height: 380px;
        padding: 30px;
        margin-bottom: 30px;
    }

    #faq .sd-faq-call-box {
        bottom: -20px;
        right: 0;
        left: 0;
        margin: 0 auto;
        max-width: 280px;
    }
}

@media (max-width: 767.98px) {
    #sdBreadcrumb .sd-banner-title {
        font-size: 26px;
    }

    #sdBreadcrumb .sd-banner-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    #sdBreadcrumb .sd-banner-btn {
        padding: 12px 26px;
        font-size: 13px;
    }

    #sdHero .sd-hero-title {
        font-size: 30px;
    }

    #sdHero .sd-hero-visual-shape,
    #sdHero .sd-hero-img-wrapper {
        width: 300px;
        height: 320px;
    }

    #sdHero .sd-stat-badge {
        padding: 10px 14px;
        min-width: 210px;
    }

    #sdHero .sd-stat-badge-top {
        right: -20px;
    }

    #sdHero .sd-stat-badge-middle {
        left: -40px;
    }

    #sdHero .sd-stat-badge-bottom {
        right: -20px;
    }

    #sdHero .sd-stat-value {
        font-size: 20px;
    }

    #sdHero .sd-badge-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #sdFeaturesBar {
        margin-top: -24px;
    }

    #sdFaqAccordion .accordion-button {
        padding: 16px 18px;
        font-size: 14px;
        padding-right: 50px;
    }

    #sdFaqAccordion .accordion-body {
        padding: 0 18px 16px 18px;
        font-size: 13px;
    }

    #sdFaqAccordion .faq-icon-wrapper {
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    #sdFeaturesBar .sd-features-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 24px;
    }

    #sdStats .sd-stats-grid-row {
        flex-wrap: wrap;
    }

    #sdStats .sd-stat-grid-item {
        flex: 0 0 50%;
        padding: 28px 16px;
    }

    #sdStats .sd-stat-grid-item:nth-child(2)::after {
        display: none;
    }

    #sdStats .sd-stat-number {
        font-size: 32px;
    }

    #sdContactCta .sd-cta-title {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    #sdHero .sd-hero-title {
        font-size: 24px;
    }

    #sdHero .sd-hero-visual-shape,
    #sdHero .sd-hero-img-wrapper {
        width: 280px;
        height: 300px;
    }

    #sdHero .sd-stat-badge {
        min-width: 190px;
        padding: 8px 12px;
        gap: 8px;
    }

    #sdHero .sd-stat-value {
        font-size: 18px;
    }

    #sdHero .sd-stat-badge-top {
        top: -10px;
        right: -10px;
    }

    #sdHero .sd-stat-badge-middle {
        left: -10px;
        top: 40%;
    }

    #sdHero .sd-stat-badge-bottom {
        bottom: 5px;
        right: -10px;
    }

    #sdStats .sd-stat-grid-item {
        flex: 0 0 100%;
    }

    #sdStats .sd-stat-grid-item::after {
        display: none;
    }
}

/* ==========================================================================
   Leadership Page Styling
   ========================================================================== */
.leaders-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #212529;
    /* Dark text for readability on light bg */
}

.leaders-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leaders-subtitle-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 400;
}

/* Custom Sub-header for Leaders Grid */
.for-headeing {
    text-align: left;
    PADDING: 20PX 0 0 0;
    MARGIN-LEFT: 37PX;
}

.for-headeing h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    /* Dark navy as per design */
    margin-bottom: 10px;
}

.for-headeing p {
    font-size: 15px;
    color: #64748b;
    /* Slate grey */
    margin-bottom: 0;
    line-height: 1.6;
}



.leader-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.leader-img-wrapper {
    background-color: #eef8f2;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

.leader-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #75c160;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.leader-card-body {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.leader-role {
    font-size: 14px;
    font-weight: 600;
    color: #75c160;
    margin-bottom: 12px;
}

.leader-exp-badge {
    display: inline-block;
    background-color: #eef8f2;
    color: #75c160;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.leader-orgs {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.leader-focus-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

.leader-focus-list li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-weight: 550;
    line-height: 1.4;
}

.leader-focus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #75c160;
}

.leader-social {
    margin-top: 15px;
    display: none;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #0b224e;
    transition: all 0.3s ease;
    font-size: 16px;
}

.linkedin-link:hover {
    background-color: #0a66c2;
    color: #ffffff;
    transform: scale(1.1);
}

/* Modal styling overrides to match dark/light transitions */
.leader-modal .modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.leader-modal .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 24px;
}

.leader-modal .modal-title {
    color: #0b224e;
    font-weight: 700;
    font-size: 20px;
}

.leader-modal .modal-body {
    padding: 24px;
}

/* ==========================================================================
   Careers Page Styling
   ========================================================================== */
.career-potential-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #212529;
}

.text-dark-override {
    color: #212529 !important;
}

.text-dark-override h2,
.text-dark-override h3,
.text-dark-override h5 {
    color: #6fbf4b !important;
}

.career-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b224e;
}

.career-desc-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

.career-graphic-wrap {
    position: relative;
    text-align: center;
}

.career-orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.career-graphic-img {
    position: relative;
    z-index: 2;
    max-height: 400px;
    object-fit: contain;
}

.career-highlight-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.career-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.career-apply-section {
    background-color: #f8fafc;
    padding: 100px 0 80px;
}

.career-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

/* Form Top Badge Style */
.form-header-badge-wrap {
    display: flex;
    justify-content: center;
    margin-top: -80px;
    /* Offset to float the badge at the top boundary */
    margin-bottom: 20px;
}

.form-header-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #eff6ff;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 24px;
}

/* Custom Styled Input Groups */
.custom-input-group {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.custom-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

.custom-input-group .input-group-text {
    background-color: #ffffff;
    border: none;
    border-right: 1px solid #cbd5e1;
    color: #3b82f6;
    padding-left: 5px;
    padding-right: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-input-group .form-control,
.custom-input-group .form-select {
    border: none !important;
    padding: 6px 6px;
    background-color: #ffffff;
    font-size: 12px;
    color: #1e293b;
    border-radius: 0 10px 10px 0 !important;
}

.custom-input-group .form-control::placeholder {
    color: #94a3b8;
}

.custom-input-group .form-control:focus,
.custom-input-group .form-select:focus {
    box-shadow: none !important;
    outline: none !important;
    background-color: #ffffff;
}

/* Suffix Calendar Native Dropdown Arrow Handling for Selects */
.custom-input-group .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233b82f6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px 12px;
}

/* Drag and Drop Resume Area */
.upload-drag-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px 30px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.upload-drag-area:hover,
.upload-drag-area.dragover {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.02);
}

.upload-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Custom Submit Button Style */
.btn-apply-submit {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 6px 40px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.btn-apply-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    filter: brightness(1.1);
    color: #ffffff;
}

/* Highlight Badges Styles */
.highlight-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.badge-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.badge-green {
    background-color: #f0fdf4;
    color: #22c55e;
}

.badge-purple {
    background-color: #faf5ff;
    color: #a855f7;
}

.badge-orange {
    background-color: #fff7ed;
    color: #f97316;
}

/* ==========================================================================
   Redesigned Journey Page (Premium 3i World Style)
   ========================================================================== */

/* Hero Section */
.journey-hero-section {
    position: relative;
    background-image: url(../images/journey_hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 40px;
    z-index: 1;
}


.journey-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 8, 19, 0.6) 0%, rgba(2, 8, 19, 0.9) 100%);
    z-index: -1;
}

.journey-hero-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
}

.journey-hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.journey-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.journey-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-journey-solid {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-journey-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    filter: brightness(1.1);
    color: #ffffff;
}

.btn-journey-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-journey-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Timeline Content Section */
.journey-timeline-body {
    background-color: #f8fafc;
    padding: 80px 0 100px;
    color: #334155;
    position: relative;
}

.journey-timeline-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.journey-badge-centered {
    font-size: 12px;
    font-weight: 700;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.journey-timeline-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.journey-timeline-section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-timeline-section-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Timeline Filter Tabs */
.journey-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.journey-tab-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.journey-tab-item i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.journey-tab-item:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.journey-tab-item:hover i {
    transform: scale(1.15);
}

.journey-tab-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Left Sticky Float Navigation Scrollbar */
.journey-navigator-left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    width: 44px;
    margin: 0 auto;
}

.journey-nav-btn {
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-nav-btn:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.journey-nav-line {
    width: 2px;
    height: 120px;
    background: repeating-linear-gradient(to bottom,
            #e2e8f0,
            #e2e8f0 4px,
            transparent 4px,
            transparent 8px);
    position: relative;
}

.journey-nav-dots-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.journey-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.journey-nav-dot:hover {
    transform: scale(1.3);
    background: var(--primary);
}

.journey-nav-dot.active {
    background: var(--primary);
    border-color: #ffffff;
    box-shadow: 0 0 8px var(--primary);
    transform: scale(1.3);
}

.journey-nav-dot.active.dot-green {
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
}

/* Timeline Layout */
.journey-timeline-container {
    position: relative;
    padding: 20px 0;
}

.journey-timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #cbd5e1;
    transform: translateX(-50%);
    z-index: 1;
}

.journey-row {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
}

.journey-row:last-child {
    margin-bottom: 0;
}

/* Central Node Dots */
.timeline-central-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--primary);
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-row:nth-child(even) .timeline-central-dot {
    border-color: #2ecc71;
}

.journey-row.active .timeline-central-dot {
    background: var(--primary);
    border-color: #ffffff;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.25);
}

.journey-row.active:nth-child(even) .timeline-central-dot {
    background: #2ecc71;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

/* Left & Right Card Columns */
.journey-left-col,
.journey-right-col {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.journey-left-col {
    transform: translateX(-40px);
}

.journey-right-col {
    transform: translateX(40px);
}

.journey-row.visible .journey-left-col,
.journey-row.visible .journey-right-col {
    opacity: 1;
    transform: translate(0);
}

/* Redesigned Clean White Milestone Card */
.journey-card-clean {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.journey-card-clean:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.journey-row:nth-child(even) .journey-card-clean:hover {
    border-color: #2ecc71;
}

.journey-card-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    padding: 5px 12px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 20px;
    margin-bottom: 16px;
}

.journey-row:nth-child(even) .journey-card-badge {
    color: #27ae60;
    background: rgba(46, 204, 113, 0.08);
}

.journey-card-clean h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
}

.journey-card-clean p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Statistics Grid Inside Cards */
.journey-stats-grid {
    display: flex;
    gap: 3px;
    margin-top: 24px;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.journey-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.journey-stat-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.journey-row:nth-child(even) .journey-stat-icon-circle {
    background-color: #f0fdf4;
    color: #2ecc71;
}

.journey-stat-text-wrap {
    display: flex;
    flex-direction: column;
}

.journey-stat-count {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.journey-stat-label {
    font-size: 10px;
    color: #64748b;
}

/* Video / Image Display Cards */
.journey-image-card {
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    position: relative;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.3s ease;
}

.journey-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.journey-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Glowing Play Video Overlay Button */
.has-play-overlay {
    position: relative;
}

.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.play-overlay-btn i {
    margin-left: 3px;
}

.journey-image-card:hover .play-overlay-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Right Sticky Glance Sidebar panel */
.journey-sidebar-glance {
    position: sticky;
    top: 120px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.journey-sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.journey-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.journey-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.journey-sidebar-item-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.2s ease;
}

.journey-sidebar-item:hover {
    color: var(--primary);
}

.journey-sidebar-item.active {
    color: var(--primary);
    font-weight: 700;
}

.journey-sidebar-item.active .journey-sidebar-item-bullet {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--primary);
}

.journey-sidebar-item.active:nth-child(even) {
    color: #2ecc71;
}

.journey-sidebar-item.active:nth-child(even) .journey-sidebar-item-bullet {
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
}

/* Green Box Quotes block */
.journey-sidebar-quote-box {
    background-color: rgba(46, 204, 113, 0.06);
    border-left: 4px solid #2ecc71;
    border-radius: 0 12px 12px 0;
    padding: 16px;
    position: relative;
}

.journey-sidebar-quote-box p {
    font-size: 13px;
    color: #27ae60;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.journey-sidebar-quote-box p i {
    font-size: 11px;
    opacity: 0.5;
}

.journey-sidebar-quote-box p i.quote-left {
    margin-right: 4px;
}

.journey-sidebar-quote-box p i.quote-right {
    margin-left: 4px;
}

/* Gradient Green CTA Banner */
.journey-cta-banner {
    background: linear-gradient(135deg, #0d6efd 0%, #157347 100%);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 80px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(21, 115, 71, 0.15);
    position: relative;
    overflow: hidden;
}

.journey-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.journey-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.journey-cta-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey-cta-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
}

.journey-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

.journey-cta-right {
    display: flex;
    gap: 16px;
}

.btn-cta-white {
    background: #ffffff;
    color: #157347;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cta-white:hover {
    background: #f8fafc;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Media Queries */
@media screen and (max-width: 1020px) {
    .journey-hero-title {
        font-size: 42px;
    }

    .journey-hero-subtitle {
        font-size: 26px;
    }

    .journey-card-clean {
        padding: 20px;
    }

    .journey-card-clean h3 {
        font-size: 18px;
    }

    .journey-image-card {
        height: 200px;
    }

    .journey-cta-banner {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .journey-cta-left {
        flex-direction: column;
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .journey-hero-section {
        height: 409px;
    }

    .journey-hero-title {
        font-size: 32px;
    }

    .journey-hero-subtitle {
        font-size: 22px;
    }

    .journey-hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .journey-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-journey-solid,
    .btn-journey-outline {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .journey-timeline-body {
        padding: 50px 0 60px;
    }

    .journey-timeline-section-header h2 {
        font-size: 28px;
    }

    .journey-tabs-container {
        margin-bottom: 40px;
    }

    /* Center vertical line pushes to left on mobile */
    .journey-timeline-container::before {
        left: 20px;
        transform: none;
    }

    .journey-row {
        margin-bottom: 40px;
    }

    .journey-left-col,
    .journey-right-col {
        width: 100% !important;
        transform: translateX(20px) !important;
        opacity: 0;
    }

    .journey-row.visible .journey-left-col,
    .journey-row.visible .journey-timeline ul li.visible .content {
        transform: translateX(0) !important;
    }
}

/* ==========================================================================
   Why Choose Us Section (who-we.html)
   ========================================================================== */
.why-us-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.why-us-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 30px;
}

.why-us-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.why-us-breadcrumb a:hover {
    color: var(--primary);
}

.why-us-breadcrumb i {
    font-size: 10px;
    color: #94a3b8;
}

.why-us-breadcrumb span.current {
    color: #94a3b8;
}

/* Subtitle Badge */
.why-us-badge {
    font-size: 12px;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

/* Main Typography */
.why-us-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b224e;
    line-height: 1.25;
    margin-bottom: 24px;
}

.why-us-title span.highlight {
    color: #2ecc71;
}

.why-us-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Actions */
.why-us-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-why-us-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #2ecc71 100%);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-why-us-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
    filter: brightness(1.05);
}

.btn-why-us-outline {
    background: #ffffff;
    color: #0b224e !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-why-us-outline:hover {
    border-color: #0d6efd;
    color: #0d6efd !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.06);
}

.btn-why-us-outline i {
    color: #0d6efd;
    font-size: 16px;
}

/* Image Custom Container */
.why-us-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1;
}

.why-us-image-wrapper {
    background: linear-gradient(135deg, #0d6efd 0%, #2ecc71 100%);
    border-radius: 150px 16px 150px 16px;
    padding: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.why-us-image-inner {
    background: #ffffff;
    border-radius: 147px 12px 147px 12px;
    padding: 8px;
    overflow: hidden;
}

.why-us-image-inner img {
    width: 100%;
    height: auto;
    border-radius: 140px 8px 140px 8px;
    display: block;
    object-fit: cover;
}

/* Floating Stats Card Overlay */
.why-us-stats-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    overflow: hidden;
}

.why-us-stats-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd 0%, #3b82f6 100%);
    border-radius: 0 0 16px 16px;
}

.why-us-stats-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-us-stats-content {
    display: flex;
    flex-direction: column;
}

.why-us-stats-value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us-stats-number {
    font-size: 24px;
    font-weight: 800;
    color: #0b224e;
    line-height: 1;
}

.why-us-stats-chart-icon {
    color: #0d6efd;
    font-size: 16px;
}

.why-us-stats-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

/* Blue dot grid decoration */
.why-us-dots-pattern {
    position: absolute;
    width: 90px;
    height: 110px;
    background-image: radial-gradient(#0d6efd 20%, transparent 20%);
    background-size: 12px 12px;
    bottom: 0px;
    left: -20px;
    opacity: 0.15;
    z-index: -1;
}

/* Responsiveness */
@media screen and (max-width: 1024px) {
    .why-us-title {
        font-size: 36px;
    }

    .why-us-stats-card {
        left: -10px;
        bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .why-us-section {
        padding: 50px 0 60px;
    }

    .why-us-title {
        font-size: 32px;
    }

    .why-us-image-container {
        margin-top: 50px;
        max-width: 400px;
    }

    .why-us-stats-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: calc(100% - 40px);
        max-width: 320px;
        justify-content: center;
    }

    .why-us-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-why-us-gradient,
    .btn-why-us-outline {
        justify-content: center;
    }

    /* Make center dot align left */
    .journey-center-col {
        position: absolute !important;
        left: 10px !important;
        top: 15px !important;
        width: auto !important;
        padding: 0 !important;
        justify-content: flex-start !important;
    }

    .timeline-central-dot {
        width: 18px;
        height: 18px;
    }

    /* Reorder columns so text is always showing stacked cleanly on mobile */
    .journey-left-col {
        margin-bottom: 16px;
        padding-left: 45px !important;
    }

    .journey-right-col {
        padding-left: 45px !important;
    }

    /* Hide Left Navigator & Right Sidebar on Mobile */
    .journey-navigator-col,
    .journey-sidebar-col {
        display: none !important;
    }
}

/* ==========================================================================
   What Sets Us Apart Section (who-we.html)
   ========================================================================== */
.apart-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.apart-badge {
    font-size: 13px;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.apart-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b224e;
    text-align: center;
    margin-bottom: 40px;
}

/* Comparison wrapper columns container */
.apart-comparison-wrapper {
    position: relative;
    z-index: 2;
}

/* Dark Card (Traditional Vendors) */
.apart-card-dark {
    background-color: #1e293b;
    border-radius: 24px 0 24px 24px;
    padding: 48px 50px 48px 48px;
    height: 100%;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Diagonal clip-path shape on desktop screens */
@media screen and (min-width: 992px) {
    .apart-card-dark {
        clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
        padding-right: 90px;
        /* Extra padding to prevent clipping of text on the slanted edge */
    }
}

.apart-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.apart-card-dark h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Light Card (3i Solutions) */
.apart-card-light {
    background-color: #ffffff;
    border: 2px solid #2ecc71;
    border-radius: 24px;
    padding: 48px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.04);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.apart-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(46, 204, 113, 0.1);
}

.apart-card-light-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.apart-card-light-icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    font-size: 20px;
}

.apart-card-light h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
    margin: 0;
}

/* Green ribbon star flag on the top right corner */
.apart-ribbon-tag {
    position: absolute;
    top: 0;
    right: 40px;
    width: 36px;
    height: 52px;
    background: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.2);
    z-index: 2;
}

.apart-ribbon-tag i {
    margin-bottom: 8px;
    animation: ribbonStarPulse 2s infinite ease-in-out;
}

@keyframes ribbonStarPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

/* Bullet Items List styling */
.apart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.apart-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.5;
}

.apart-card-dark .apart-list li {
    color: rgba(255, 255, 255, 0.85);
}

.apart-card-light .apart-list li {
    color: #334155;
    font-weight: 500;
}

.apart-list li i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.apart-card-dark .apart-list li i {
    color: #64748b;
}

.apart-card-light .apart-list li i {
    color: #0d6efd;
}

/* Floating VS circle badge in center */
.apart-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d6efd 0%, #2ecc71 100%);
    border: 5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.apart-comparison-wrapper:hover .apart-vs-badge {
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .apart-card-dark {
        border-radius: 24px;
        padding-right: 48px;
    }

    .apart-vs-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        margin: 30px auto;
    }

    .apart-comparison-wrapper:hover .apart-vs-badge {
        transform: scale(1.1) rotate(360deg) !important;
    }
}

@media screen and (max-width: 768px) {
    .apart-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .apart-card-dark,
    .apart-card-light {
        padding: 32px;
    }

    .apart-ribbon-tag {
        right: 24px;
    }
}

/* ==========================================================================
   How We Do It Section (who-we.html)
   ========================================================================== */
.how-we-do-section {
    background-color: #ffffff;
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.how-we-do-header {
    margin-bottom: 50px;
}

.how-we-do-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 20px;
}

.how-we-do-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    max-width: 820px;
}

.how-we-do-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual list item */
.how-we-do-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    transition: all 0.3s ease;
}

.how-we-do-item:hover {
    transform: translateX(5px);
}

.how-we-do-text {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
}

/* Color icon wraps with matching backgrounds and checks */
.how-we-do-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.how-we-do-icon-wrap.bg-coral-glow {
    background-color: #ff5e5b;
    /* Coral/salmon */
    box-shadow: 0 4px 12px rgba(255, 94, 91, 0.2);
}

.how-we-do-icon-wrap.bg-blue-glow {
    background-color: #3b82f6;
    /* Blue */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.how-we-do-icon-wrap.bg-green-glow {
    background-color: #2ecc71;
    /* Green */
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .how-we-do-section {
        padding: 60px 0;
    }

    .how-we-do-title {
        font-size: 32px;
    }

    .how-we-do-item {
        gap: 12px;
    }
}

/* ==========================================================================
   Complete Rebuild - who-we.html Page Styles
   ========================================================================== */

/* 1. Dark Globe Hero Section */
.whowe-hero {
    background-color: #070e1b;
    padding: 140px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.apart-list li span {
    color: #000;
}

.whowe-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating Card widget */
.whowe-hero-card {
    background: rgba(8, 16, 33, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 5;
    transition: all 0.3s ease;
    max-width: 260px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whowe-hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.whowe-hero-card i {
    font-size: 24px;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whowe-hero-card.card-green i {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.whowe-hero-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.whowe-hero-card-desc {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
}

/* Float card positioning */
.whowe-hero-card-1 {
    top: 15%;
    left: 10%;
}

.whowe-hero-card-2 {
    top: 5%;
    right: 5%;
}

.whowe-hero-card-3 {
    bottom: 15%;
    right: 10%;
}

/* Globe graphic */
.whowe-hero-globe-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.whowe-hero-globe-wrap img {
    width: 100%;
    height: auto;
    animation: rotateGlobe 120s linear infinite;
    filter: drop-shadow(0 0 30px rgba(13, 110, 253, 0.25));
}

@keyframes rotateGlobe {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Bottom hero stats */
.whowe-hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 40px;
}

.whowe-hero-stat-node {
    text-align: center;
}

.whowe-hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.whowe-hero-stat-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* 2. Our Story Section */
.whowe-story-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.whowe-story-badge {
    font-size: 12px;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.whowe-story-title {
    font-size: 40px;
    font-weight: 800;
    color: #0b224e;
    line-height: 1.25;
    margin-bottom: 20px;
}

.whowe-story-title span.highlight {
    color: #2ecc71;
}

.whowe-story-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 30px;
}

.whowe-story-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 27px;
}

.whowe-story-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.whowe-story-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.whowe-story-item:nth-child(2) .whowe-story-icon {
    background: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

.whowe-story-item:nth-child(3) .whowe-story-icon {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.whowe-story-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b224e;
    margin-bottom: 4px;
}

.whowe-story-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Image styling with left arch shape */
.whowe-story-image-wrap {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.whowe-story-img {
    width: 100%;
    height: auto;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.whowe-story-quote-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.whowe-story-quote-card p {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.whowe-story-quote-card i {
    color: #2ecc71;
    font-size: 20px;
    margin-right: 8px;
}

/* 3. Redesigned Comparison Card Styles */
.whowe-comparison-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.whowe-card-red {
    background-color: #ffffff;
    border: 1.5px solid #ef4444;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.02);
    transition: all 0.3s ease;
}

.whowe-card-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.06);
}

.whowe-card-red h3 {
    color: #ef4444;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.whowe-card-green {
    background-color: #ffffff;
    border: 1.5px solid #2ecc71;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.02);
    transition: all 0.3s ease;
}

.whowe-card-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.06);
}

.whowe-card-green h3 {
    color: #2ecc71;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* 4. Our Pillars of Excellence */
.whowe-pillars-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.whowe-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.whowe-pillar-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.whowe-pillar-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.whowe-pillar-card:hover .whowe-pillar-icon-wrap {
    background: #0d6efd;
    color: #ffffff;
    transform: rotateY(180deg);
}

.whowe-pillar-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b224e;
    margin-bottom: 12px;
}

.whowe-pillar-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 5. Pillars of Framework (Connected Process) */
.whowe-framework-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.whowe-flow-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 30px 10px;
}

.whowe-flow-node {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 120px;
    z-index: 2;
}

.whowe-flow-icon-wrap {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px dashed #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 20px;
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.whowe-flow-node:hover .whowe-flow-icon-wrap {
    border-style: solid;
    border-color: #2ecc71;
    color: #2ecc71;
    transform: scale(1.1);
}

.whowe-flow-step {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whowe-flow-node h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0b224e;
    margin-bottom: 8px;
}

.whowe-flow-node p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    padding: 0 8px;
}

/* Connecting arrows on desktop */
@media screen and (min-width: 992px) {
    .whowe-flow-node::after {
        content: '\f105';
        /* FontAwesome Chevron-Right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 22px;
        right: -30px;
        color: #cbd5e1;
        font-size: 16px;
        z-index: 1;
    }

    .whowe-flow-node:last-child::after {
        display: none;
    }
}

/* 6. Why Clients Trust Us Banner */
.whowe-trust-banner {
    background-color: #0b224e;
    padding: 40px 0;
    color: #ffffff;
}

.whowe-trust-banner h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}

/* 7. Industries We Empower */
.whowe-ind-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.whowe-ind-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.whowe-ind-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: #2ecc71;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.08);
}

.whowe-ind-icon {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 12px;
    display: inline-block;
}

.whowe-ind-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0b224e;
    margin: 0;
}

/* 8. Success Stories & Testimonials */
.whowe-stories-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.whowe-success-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.whowe-success-img-wrap {
    position: relative;
    height: 240px;
}

.whowe-success-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whowe-success-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(13, 110, 253, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.whowe-success-body {
    padding: 30px;
}

.whowe-success-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b224e;
    margin-bottom: 12px;
}

.whowe-success-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 24px;
}

.whowe-success-metrics {
    display: flex;
    gap: 30px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.whowe-metric-val {
    font-size: 20px;
    font-weight: 800;
    color: #2ecc71;
    display: block;
}

.whowe-metric-lbl {
    font-size: 11px;
    color: #94a3b8;
}

/* Quote bubble testimonials card */
.whowe-testimonial-box {
    background: rgba(13, 110, 253, 0.03);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.whowe-testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 30px;
}

.whowe-testimonial-quote i {
    color: #0d6efd;
    opacity: 0.2;
    font-size: 28px;
}

.whowe-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whowe-author-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.whowe-author-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.whowe-author-profile h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b224e;
    margin: 0 0 2px 0;
}

.whowe-author-profile span {
    font-size: 12px;
    color: #64748b;
}

.whowe-rating {
    color: #ffc107;
    font-size: 12px;
}

/* 9. Accordion FAQ Styling */
.whowe-faq-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.whowe-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.whowe-accordion .accordion-button {
    font-size: 15px;
    font-weight: 600;
    color: #0b224e;
    padding: 18px 24px;
    background: #ffffff;
    box-shadow: none !important;
}

.whowe-accordion .accordion-button:not(.collapsed) {
    background: rgba(13, 110, 253, 0.02);
    color: #0d6efd;
}

.whowe-accordion .accordion-body {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    padding: 20px 24px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

/* 10. Gradient CTA */
.whowe-cta-section {
    background: linear-gradient(135deg, #0b224e 0%, #2ecc71 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.whowe-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.whowe-cta-desc {
    font-size: 15px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 36px;
}

.whowe-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whowe-cta-white {
    background-color: #ffffff;
    color: #0b224e !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-whowe-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    filter: brightness(1.02);
}

.btn-whowe-cta-outline {
    background-color: transparent;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-whowe-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Tablet & Mobile Breakpoints for Hero floats and workflow nodes */
@media screen and (max-width: 1024px) {
    .whowe-hero-card {
        max-width: 220px;
    }

    .whowe-hero-card-1 {
        left: 2%;
    }

    .whowe-hero-card-3 {
        right: 2%;
    }
}

@media screen and (max-width: 991px) {
    .whowe-hero-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 16px auto;
        max-width: 320px;
    }

    .whowe-hero-globe-wrap {
        margin-top: 40px;
    }

    .whowe-story-img {
        border-radius: 20px;
        margin-top: 40px;
    }

    .whowe-story-quote-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        max-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .whowe-hero {
        padding: 100px 0 60px;
    }

    .whowe-hero-stat-node {
        margin-bottom: 24px;
    }

    .whowe-comparison-section,
    .whowe-pillars-section,
    .whowe-framework-section,
    .whowe-ind-section,
    .whowe-stories-section,
    .whowe-faq-section {
        padding: 60px 0;
    }

    .whowe-story-section {
        padding: 10px 0px;
    }
}

.whowe-story-title,
.whowe-pillar-card h3,
.whowe-ind-card h3 {
    font-size: 28px;
}

.whowe-cta-title {
    font-size: 26px;
}
}

/* ==========================================================================
   Contact Us Section (contact.html)
   ========================================================================== */
.contact-body-section {
    background-color: #ffffff;
    padding: 80px 0 0px;
    position: relative;
    z-index: 1;
}

.contact-text-col {
    padding-right: 30px;
}

.contact-text-col h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 24px;
}

.contact-text-col img.contact-img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 30px;
    display: block;
}

.contact-text-col p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Contact form card */
.contact-form-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
}

.contact-form-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #27ae60;
    /* Theme green */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
}

.contact-form-card .form-subtitle {
    font-size: 20px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 36px;
    text-align: center;
    line-height: 1.3;
}

/* Labels and controls */
.contact-form-card label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

.contact-form-card label span.required {
    color: #ef4444;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    font-size: 12px;
    padding: 12px 9px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) inset;
    transition: all 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* Custom Flag Selector Input Group */
.contact-phone-group .input-group-text {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-phone-group .form-control {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

/* Privacy checkbox */
.contact-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 24px;
}

.contact-privacy-check input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
}

.contact-privacy-check span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.contact-privacy-check a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.contact-privacy-check a:hover {
    text-decoration: underline;
}

/* Mock reCAPTCHA Widget */
.recaptcha-widget {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recaptcha-left input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    cursor: pointer;
    background: #fff;
}

.recaptcha-left span {
    font-size: 13px;
    font-family: Roboto, helvetica, arial, sans-serif;
    color: #000000;
    font-weight: 500;
}

.recaptcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-right img {
    width: 32px;
    height: auto;
}

.recaptcha-right span {
    font-size: 8px;
    color: #555555;
    margin-top: 2px;
    text-align: center;
    line-height: 1.1;
}

.recaptcha-right a {
    color: #555555;
    text-decoration: none;
}

.recaptcha-right a:hover {
    text-decoration: underline;
}

/* Submit gradient button */
.btn-contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #2ecc71 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    filter: brightness(1.05);
}

/* Responsiveness */
@media screen and (max-width: 1024px) {
    .contact-text-col {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .contact-body-section {
        padding: 50px 0 60px;
    }

    .contact-text-col h2 {
        font-size: 32px;
    }

    .contact-form-card {
        padding: 30px 24px;
    }

    .contact-form-card .form-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

/* ==========================================================================
   India Offices Section (contact.html)
   ========================================================================== */
.office-section {
    background-color: #ffffff;
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.office-title {
    font-size: 32px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 40px;
    text-align: left;
}

.office-card {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.office-card:hover {
    transform: translateY(-3px);
}

.office-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 8px;
}

.office-flag-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.office-flag-row img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.office-flag-row span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.office-details {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.office-details strong {
    color: #0b224e;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .office-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

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

/* ==========================================================================
   Strength Grid Section (why-us.html)
   ========================================================================== */
.strength-grid-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.strength-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.strength-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 34, 78, 0.06);
    border-color: #cbd5e1;
}

.strength-icon-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-icon-circle.icon-red {
    background-color: #ff5c5c;
}

.strength-icon-circle.icon-green {
    background-color: #2ecc71;
}

.strength-icon-circle.icon-blue {
    background-color: #3498db;
}

.strength-icon-circle i {
    color: #ffffff;
    font-size: 18px;
}

.strength-card-text {
    font-size: 15px;
    font-weight: 700;
    color: #0b224e;
    line-height: 1.45;
}

@media screen and (max-width: 768px) {
    .strength-grid-section {
        padding: 50px 0 60px;
    }

    .strength-card {
        padding: 20px 24px;
        gap: 16px;
    }

    .strength-card-text {
        font-size: 14px;
    }
}



/* ==========================================
   Career Page - Job Listing Card
   ========================================== */

.job-listing-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;

}

.job-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #e53935, #ff1744);
    width: 100%;
}

.job-card-body {
    padding: 30px 35px 35px;
}

.job-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.job-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    margin-bottom: 20px;
}

.job-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.job-detail-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.job-detail-value {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.job-card-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 22px 0;
}

.job-responsibilities-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.job-responsibilities-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: justify;
}

.btn-show-interest {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
    letter-spacing: 0.3px;
}

.btn-show-interest:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
    transform: translateY(-2px);
}

.btn-show-interest i {
    font-size: 17px;
}

/* Responsive adjustments for job listing card */
@media (max-width: 991px) {
    .job-listing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .job-card-body {
        padding: 20px 22px 28px;
    }

    .job-card-title {
        font-size: 19px;
    }

    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .job-responsibilities-text {
        font-size: 13px;
    }
}


/* ==========================================
   Enquiry Popup Modal
   ========================================== */

/* Overlay */
.enquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

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

/* Modal */
.enquiry-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 92%;
    max-width: 494px;
    /* max-height: 90vh; */
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.enquiry-popup-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Top Accent */
.enquiry-popup-accent {
    height: 5px;
    background: linear-gradient(90deg, #e53935, #ff1744, #e53935);
    border-radius: 16px 16px 0 0;
}

/* Close Button */
.enquiry-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.enquiry-popup-close:hover {
    background: #e53935;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal Body */
.enquiry-popup-body {
    padding: 10px 23px 23px;
}

/* Icon */
.enquiry-popup-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce4ec, #ffcdd2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.enquiry-popup-icon i {
    font-size: 26px;
    color: #e53935;
}

/* Title */
.enquiry-popup-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #0b224e;
    margin-bottom: 4px;
}

.enquiry-popup-title span {
    background: linear-gradient(135deg, #e53935, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.enquiry-popup-subtitle {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

/* Textarea */
.enquiry-textarea {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 16px !important;
    font-size: 13px;
    color: #1e293b;
    resize: vertical;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-textarea:focus {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1) !important;
    outline: none;
}

/* Submit Button */
.btn-enquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(229, 57, 53, 0.35);
    letter-spacing: 0.3px;
}

.btn-enquiry-submit:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    box-shadow: 0 6px 22px rgba(229, 57, 53, 0.5);
    transform: translateY(-2px);
}

.btn-enquiry-submit:active {
    transform: translateY(0);
}

/* Custom scrollbar for modal */
.enquiry-popup-modal::-webkit-scrollbar {
    width: 6px;
}

.enquiry-popup-modal::-webkit-scrollbar-track {
    background: transparent;
}

.enquiry-popup-modal::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 576px) {
    .enquiry-popup-modal {
        width: 95%;
        max-height: 85vh;
    }

    .enquiry-popup-body {
        padding: 22px 20px 28px;
    }

    .enquiry-popup-title {
        font-size: 20px;
    }

    .btn-enquiry-submit {
        padding: 10px 32px;
        font-size: 13px;
    }
}


/* ==========================================
   Career Page - Sticky Right Form
   ========================================== */

/* Ensure the parent row doesn't restrict sticky behavior */
.career-apply-section .row {
    align-items: flex-start !important;
}

/* Disable sticky on mobile/tablet - stack normally */
@media (max-width: 991px) {
    .career-apply-section .col-lg-5 {
        position: relative;
        top: 0;
    }
}


/* ==========================================================================
   AI & Automation (Chatbot Page) Scoped Styles
   ========================================================================== */

/* --- Custom Colors and Variables --- */
:root {
    --cb-primary: #0d6efd;
    --cb-green: #6fbf4b;
    --cb-green-hover: #5fa83c;
    --cb-navy: #0b224e;
    --cb-dark-bg: #020813;
    --cb-light-bg: #f8fafc;
    --cb-card-border: #e2e8f0;
    --cb-text-muted: #64748b;
}

/* --- Common Page Formatting --- */
.section-padding-large {
    padding: 80px 0;
}

.section-subtitle-cb {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0d9488;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title-cb {
    font-size: 32px;
    font-weight: 800;
    color: var(--cb-navy);
    line-height: 1.25;
}

/* --- CTA Button Customizations --- */
.btn-cb-green {
    background-color: var(--cb-green);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 191, 75, 0.25);
}

.btn-cb-green:hover {
    background-color: var(--cb-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 191, 75, 0.4);
    color: #ffffff;
}

.btn-cb-outline {
    background: #ffffff;
    color: var(--cb-primary);
    border: 1px solid rgba(13, 110, 253, 0.2);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.05);
}

.btn-cb-outline:hover {
    border-color: var(--cb-primary);
    background: rgba(13, 110, 253, 0.02);
    transform: translateY(-2px);
    color: var(--cb-primary);
}

/* --- Hero Banner Section --- */
.cb-hero-section {
    padding: 40px 0 40px;
    background:
        radial-gradient(circle at 80% 20%,
            rgba(13, 110, 253, 0.04) 0%,
            transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.cb-breadcrumb {
    font-size: 12px;
    font-weight: 500;
    color: var(--cb-text-muted);
    gap: 6px;
}

.cb-breadcrumb a {
    color: var(--cb-text-muted);
    transition: all 0.3s ease;
}

.cb-breadcrumb a:hover {
    color: var(--cb-primary);
}

.cb-breadcrumb i {
    font-size: 8px;
}

.cb-breadcrumb .current {
    color: var(--cb-navy);
    font-weight: 600;
}

.cb-pill-badge {
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.15);
    color: #ed3237;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
}

.cb-hero-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--cb-navy);
}

.cb-hero-title span {
    background: var(--gradient-primary,
            linear-gradient(90deg,
                rgba(42, 123, 155, 1) 0%,
                rgba(87, 199, 133, 1) 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cb-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--cb-text-muted);
    max-width: 500px;
}

/* Hero Visuals Center Column */
.cb-hero-visual-area {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-robot-svg-wrap {
    width: 240px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float-bot 6s ease-in-out infinite;
}

@keyframes float-bot {

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

    50% {
        transform: translateY(-10px);
    }
}

/* 3D Chat Messages Floating */
.cb-chat-bubble {
    position: absolute;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    max-width: 160px;
    line-height: 1.35;
    z-index: 3;
    animation: float-bubble 5s ease-in-out infinite alternate;
}

.cb-bubble-1 {
    top: 8%;
    left: 2%;
    background: #ed3237;
    color: #ffffff;
    border-bottom-left-radius: 2px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
    animation-delay: 0s;
}

.cb-bubble-2 {
    top: 22%;
    right: 2%;
    background: #ffffff;
    color: var(--cb-navy);
    border-bottom-right-radius: 2px;
    box-shadow: 0 10px 25px rgba(2, 8, 19, 0.08);
    border: 1px solid #f1f5f9;
    animation-delay: 0.5s;
}

.cb-bubble-3 {
    bottom: 25%;
    right: 4%;
    background: #ed3237;
    color: #ffffff;
    border-bottom-left-radius: 2px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
    animation-delay: 1s;
}

.cb-bubble-4 {
    bottom: 12%;
    left: 6%;
    background: #ffffff;
    color: var(--cb-navy);
    border-bottom-left-radius: 2px;
    box-shadow: 0 10px 25px rgba(2, 8, 19, 0.08);
    border: 1px solid #f1f5f9;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 3px;
    animation-delay: 1.5s;
}

@keyframes float-bubble {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-6px) scale(1.02);
    }
}

/* Typing Loading dots */
.cb-dot {
    width: 5px;
    height: 5px;
    background: #64748b;
    border-radius: 50%;
    animation: cb-dot-pulse 1.2s infinite ease-in-out;
}

.cb-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.cb-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes cb-dot-pulse {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Hero Stats Stack on right */
.cb-stats-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.cb-stat-card {
    background: #ffffff;
    border: 1px solid var(--cb-card-border);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(2, 8, 19, 0.02);
    transition: all 0.3s ease;
}

.cb-stat-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.06);
    border-color: rgba(13, 110, 253, 0.15);
}

.cb-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: var(--cb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cb-stat-card:nth-child(1) .cb-stat-icon {
    background: rgba(13, 110, 253, 0.08);
    color: #ed3237;
}

.cb-stat-card:nth-child(2) .cb-stat-icon {
    background: rgba(111, 191, 75, 0.08);
    color: var(--cb-green);
}

.cb-stat-card:nth-child(3) .cb-stat-icon {
    background: rgba(13, 110, 253, 0.08);
    color: var(--cb-primary);
}

.cb-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--cb-navy);
    line-height: 1.1;
    margin: 0;
}

.cb-stat-lbl {
    font-size: 11px;
    font-weight: 500;
    color: var(--cb-text-muted);
    margin: 0;
}

/* Hero Bottom Sub-badges bar */
.cb-subbadges-bar {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    margin-top: 20px;
}

.cb-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cb-navy);
    margin-right: 25px;
    margin-bottom: 10px;
}

.cb-badge-item i {
    color: var(--cb-primary);
    font-size: 14px;
}

/* --- Trusted Partners --- */
.trusted-section {
    padding: 30px 0;
    background: #ffffff;
    border-top: 1px solid #f8fafc;
    border-bottom: 1px solid #f8fafc;
}

.trusted-title-cb {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cb-text-muted);
    text-align: center;
    margin-bottom: 20px;
}

/* --- Features Grid Section --- */
.cb-features-section {
    background-color: var(--cb-light-bg);
}

.cb-feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
    height: 100%;
}

.cb-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.05);
    border-color: rgba(13, 110, 253, 0.15);
}

.cb-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cb-feature-card:hover .cb-feature-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.cb-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cb-navy);
    margin-bottom: 12px;
}

.cb-feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--cb-text-muted);
    margin: 0;
}

/* --- Split Action Section --- */
.cb-split-section {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

/* How it Works - Timeline flowchart list */
.flow-steps-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    position: relative;
    flex-wrap: nowrap;
}

.flow-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 18%;
    z-index: 2;
}

.flow-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(13, 110, 253, 0.2);
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.flow-step-item:hover .flow-step-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--cb-primary);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.flow-step-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--cb-navy);
    margin-bottom: 4px;
    white-space: nowrap;
}

.flow-step-desc {
    font-size: 9px;
    line-height: 1.35;
    color: var(--cb-text-muted);
    margin: 0;
}

/* Flowchart arrows connect line */
.flow-connector-line {
    position: absolute;
    top: 23px;
    left: 5%;
    right: 5%;
    height: 1px;
    border-top: 1px dashed rgba(13, 110, 253, 0.2);
    z-index: 1;
}

/* Channels Integration Grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.channel-card {
    background: #ffffff;
    border: 1px solid var(--cb-card-border);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(2, 8, 19, 0.01);
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 8, 19, 0.04);
    border-color: rgba(13, 110, 253, 0.15);
}

.channel-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ch-web {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.ch-wa {
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
}

.ch-fb {
    background: rgba(24, 119, 242, 0.08);
    color: #1877f2;
}

.ch-ig {
    background: rgba(225, 48, 108, 0.08);
    color: #e1306c;
}

.ch-tg {
    background: rgba(0, 136, 204, 0.08);
    color: #0088cc;
}

.ch-em {
    background: rgba(100, 116, 139, 0.08);
    color: #64748b;
}

.channel-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--cb-navy);
}

/* --- CTA Banner --- */
.cb-cta-section {
    padding: 60px 0;
    background-color: var(--cb-light-bg);
}

.cb-cta-card {
    background: linear-gradient(135deg, #0b224e 0%, #020813 100%);
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 15px 35px rgba(2, 8, 19, 0.2);
    position: relative;
    overflow: hidden;
}

.cb-cta-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(111, 191, 75, 0.2) 0%,
            transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.cb-cta-robot-glow {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.cb-cta-info {
    position: relative;
    z-index: 2;
}

.cb-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.cb-cta-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.cb-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-cta-green {
    background-color: var(--cb-green);
    color: #ffffff;
    border: none;
}

.btn-cta-green:hover {
    background-color: var(--cb-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-white {
    background: #ffffff;
    color: var(--cb-navy);
    border: none;
}

.btn-cta-white:hover {
    background: #f1f5f9;
    color: var(--cb-navy);
    transform: translateY(-2px);
}


/* ==========================================================================
   AI & Automation (Blog Page) Scoped Styles
   ========================================================================== */

/* --- Custom Variables & Hero Banner --- */
.blog-hero-section {
    padding: 150px 0 60px;
    background: radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.04) 0%, transparent 50%), #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.blog-breadcrumb {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    gap: 8px;
}

.blog-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--cb-navy);
}

.blog-breadcrumb i {
    font-size: 9px;
    color: var(--text-muted-light);
}

.blog-breadcrumb .current {
    color: var(--cb-navy);
    font-weight: 600;
}

.blog-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--cb-navy);
    line-height: 1.2;
}

.blog-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    max-width: 540px;
}

/* Robot Animation Right Column */
.blog-hero-visual-area {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-robot-svg-wrap {
    width: 240px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float-blog-robot 6s ease-in-out infinite;
}

@keyframes float-blog-robot {

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

    50% {
        transform: translateY(-8px);
    }
}

/* Floating App Cards */
.blog-floating-card {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(2, 8, 19, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: float-blog-card 4s ease-in-out infinite alternate;
}

.blog-floating-card.card-chat {
    top: 15%;
    left: 15%;
    color: #0d6efd;
    animation-delay: 0s;
}

.blog-floating-card.card-chart {
    bottom: 20%;
    left: 20%;
    color: #6fbf4b;
    animation-delay: 0.8s;
}

.blog-floating-card.card-doc {
    top: 25%;
    right: 15%;
    color: #0d6efd;
    animation-delay: 1.6s;
}

@keyframes float-blog-card {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* --- Search & Filter Bar --- */
.blog-filter-section {
    background: #ffffff;
    position: relative;
}

.blog-filter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(2, 8, 19, 0.02);
}

.blog-search-wrap {
    position: relative;
}

.blog-search-input {
    padding-right: 44px !important;
    border-radius: 12px !important;
    border: 1.5px solid #cbd5e1 !important;
    font-size: 14px;
    height: 44px;
}

.blog-search-input:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
}

.search-icon-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon-btn:hover {
    color: #0d6efd;
}

.blog-filter-select {
    border-radius: 12px !important;
    border: 1.5px solid #cbd5e1 !important;
    font-size: 14px;
    height: 44px;
    color: #0f172a;
}

.blog-filter-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
}

.sort-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* --- Main Layout Feed --- */
.blog-post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 8, 19, 0.01);
}

.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(2, 8, 19, 0.05);
    border-color: rgba(13, 110, 253, 0.15);
}

.blog-card-thumbnail {
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
}

.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-card-thumbnail img {
    transform: scale(1.05);
}

.blog-card-thumbnail.bg-blue-tint {
    background: #eff6ff;
}

.blog-card-thumbnail.bg-green-tint {
    background: #f0fdf4;
}

.blog-card-thumbnail.bg-orange-tint {
    background: #fff7ed;
}

.blog-card-thumbnail.bg-purple-tint {
    background: #faf5ff;
}

.blog-card-thumbnail.bg-indigo-tint {
    background: #f5f3ff;
}

.blog-card-thumbnail.bg-teal-tint {
    background: #f0fdfa;
}

.blog-card-content {
    padding: 12px 16px 12px 24px;
}

.badge-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-cat.bg-cat-blue {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.15);
}

.badge-cat.bg-cat-green {
    color: #25d366;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.badge-cat.bg-cat-orange {
    color: #f97316;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.badge-cat.bg-cat-purple {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.badge-cat.bg-cat-indigo {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.badge-cat.bg-cat-teal {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--cb-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #0d6efd;
}

.blog-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #64748b;
}

.blog-card-meta i {
    color: #0d6efd;
}

.blog-readmore-btn {
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s;
}

.blog-readmore-btn:hover {
    color: #0b5ed7;
    transform: translateX(4px);
}

/* --- Pagination Styles --- */
.blog-pagination-nav .page-link {
    border-radius: 8px !important;
    color: var(--cb-navy);
    font-weight: 600;
    border: 1px solid #cbd5e1;
    padding: 8px 14px;
}

.blog-pagination-nav .page-item.active .page-link {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #ffffff;
}

/* --- Sidebar Widgets --- */
.blog-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(2, 8, 19, 0.01);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cb-navy);
    border-left: 3px solid #0d6efd;
    padding-left: 10px;
    margin-bottom: 20px;
}

.widget-categories-list .list-group-item {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 1px dashed #e2e8f0;
    transition: all 0.3s;
}

.widget-categories-list .list-group-item:hover {
    color: #0d6efd;
    padding-left: 6px;
}

.widget-categories-list .list-group-item.active {
    color: #0d6efd !important;
    background: transparent !important;
    border-bottom-color: #0d6efd;
}

.widget-categories-list .list-group-item.active .badge {
    background-color: #0d6efd !important;
    color: #ffffff !important;
}

.icon-cat {
    color: #0d6efd;
}

/* Popular Posts */
.popular-post-item {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.popular-post-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-title a {
    color: var(--cb-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-title a:hover {
    color: #0d6efd;
}

.popular-post-date {
    font-size: 11px;
    color: #64748b;
}

/* Subscribe Widget */
.widget-desc {
    font-size: 13px;
    color: #64748b;
}

.subscribe-visual {
    border-top: 1px solid #f1f5f9;
    margin-top: 15px;
}

/* --- Bottom CTA Email Banner --- */
.blog-bottom-newsletter-card {
    background: linear-gradient(135deg, #0b224e 0%, #020813 100%);
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 15px 35px rgba(2, 8, 19, 0.15);
    position: relative;
    overflow: hidden;
}

.blog-cta-robot {
    flex-shrink: 0;
    opacity: 0.9;
}

.blog-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.blog-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.blog-cta-input-group {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.blog-cta-email {
    border: none;
    height: 48px;
    font-size: 13px;
    padding: 12px 18px !important;
    border-radius: 10px 0 0 10px !important;
}

.btn-cta-submit {
    background: #0d6efd;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 0 24px;
    border-radius: 0 10px 10px 0 !important;
    transition: all 0.3s;
}

.btn-cta-submit:hover {
    background: #0b5ed7;
    color: #ffffff;
}


/* ==========================================================================
   AI & Automation (Blog Details Page) Scoped Styles
   ========================================================================== */

/* --- Hero Banner Section --- */
.blog-details-hero {
    padding: 150px 0 60px;
    background: radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.04) 0%, transparent 50%), #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.blog-author-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: 20px;
}

.author-info-wrap img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.author-meta-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--cb-navy);
    margin: 0;
}

.author-meta-title {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.meta-item {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #0d6efd;
}

/* --- Floating Share Bar --- */
.blog-share-bar {
    position: absolute;
    left: -70px;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.share-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.share-btn.btn-fb {
    background: #f0f6ff;
    border: 1.5px solid #e2eaf8;
    color: #1877f2;
}

.share-btn.btn-fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-btn.btn-tw {
    background: #f0faff;
    border: 1.5px solid #e2f3fe;
    color: #1da1f2;
}

.share-btn.btn-tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-btn.btn-ln {
    background: #f0f7fe;
    border: 1.5px solid #e2effd;
    color: #0a66c2;
}

.share-btn.btn-ln:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-btn.btn-lk {
    background: #f0f6ff;
    border: 1.5px solid #e2eafc;
    color: #0d6efd;
}

.share-btn.btn-lk:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Article Contents --- */
.blog-article-content-wrap .blog-article-banner {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-article-content-wrap .blog-article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-text-p {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
}

.blog-detail-h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--cb-navy);
    margin-top: 40px;
}

/* --- Metrics Circular Cards --- */
.stats-circle-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(2, 8, 19, 0.01);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-circle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(2, 8, 19, 0.04);
}

.stats-circle-card.border-green:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.stats-circle-card.border-orange:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.stats-circle-card.border-purple:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.stat-circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.stat-circle-icon.icon-green {
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
}

.stat-circle-icon.icon-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.stat-circle-icon.icon-purple {
    background: rgba(168, 85, 247, 0.08);
    color: #a855f7;
}

.stat-circle-val {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-circle-val.val-green {
    color: #25d366;
}

.stat-circle-val.val-orange {
    color: #f97316;
}

.stat-circle-val.val-purple {
    color: #a855f7;
}

.stat-circle-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* --- Benefits List --- */
.benefits-custom-list {
    list-style: none;
    padding: 0;
}

.benefits-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.benefits-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Styled Blockquote --- */
.blockquote-custom {
    position: relative;
    padding: 24px 30px 24px 44px;
    border-radius: 16px;
    background: #f8fafc;
    border-left: 4px solid #0d6efd;
    margin-bottom: 30px;
}

.quote-mark-icon {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 28px;
    opacity: 0.12;
    color: #0d6efd;
}

.blockquote-text {
    font-style: italic;
    font-size: 15px;
    color: var(--cb-navy);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* --- Consultation Mid Promo Card --- */
.middle-promo-card {
    background: linear-gradient(135deg, #0b224e 0%, #020813 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(2, 8, 19, 0.12);
    color: #ffffff;
}

.promo-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.promo-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.promo-mascot-img {
    max-height: 100px;
    animation: float-blog-robot 6s ease-in-out infinite;
}

/* --- Previous/Next Nav controls --- */
.blog-prev-next-nav {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.nav-control-box {
    display: flex;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
}

.nav-control-box:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

.arrow-ctrl {
    font-size: 20px;
    color: #0d6efd;
    align-self: center;
}

.ctrl-sublbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ctrl-title-lbl {
    font-size: 13px;
    font-weight: 700;
    color: var(--cb-navy);
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s;
}

.nav-control-box:hover .ctrl-title-lbl {
    color: #0d6efd;
}

/* --- Sidebar Author Widget --- */
.author-widget-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #cbd5e1;
}

.author-widget-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--cb-navy);
}

.author-widget-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.author-widget-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.author-widget-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-widget-socials a:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Table of Contents --- */
.toc-navigation-list {
    border-left: 2px solid #e2e8f0;
}

.toc-item {
    padding: 6px 16px;
    position: relative;
    margin-left: -2px;
}

.toc-item a {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.toc-item:hover a,
.toc-item.active a {
    color: #0d6efd;
}

.toc-item.active {
    border-left: 2px solid #0d6efd;
}

/* --- Career Sticky Enquiry Form --- */
@media (min-width: 992px) {

    .career-apply-section,
    .career-apply-section .container,
    .career-apply-section .row {
        overflow: visible !important;
    }

    .career-sticky-column {
        position: -webkit-sticky;
        position: sticky;
        top: 110px;
        align-self: flex-start;
        z-index: 10;
    }
}

/* ==========================================
   Leadership Final Section (Technology Backbone)
   ========================================== */
.leadership-final {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.tech-sub-title {
    color: #75c160;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tech-main-title {
    color: #0b224e;
    font-size: 32px;
    font-weight: 800;
    margin-top: 6px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.tech-lead-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    max-width: 780px;
}

.tech-header-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.tech-leader-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 32px 30px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 100%;
    box-shadow: 0 6px 24px rgba(11, 34, 78, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 34, 78, 0.08);
}

.tech-card-bar {
    width: 6px;
    min-width: 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

.green-bar {
    background-color: #75c160;
}

.blue-bar {
    background-color: #3b82f6;
}

.tech-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tech-img-wrapper {
    flex-shrink: 0;
}

.tech-leader-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.green-border {
    border: 3px solid #75c160;
}

.blue-border {
    border: 3px solid #3b82f6;
}

.tech-leader-name {
    font-size: 22px;
    font-weight: 800;
    color: #0b224e;
    margin-bottom: 3px;
    line-height: 1.2;
}

.tech-leader-role {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.tech-exp-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.green-badge {
    background-color: #75c160;
}

.blue-badge {
    background-color: #3b82f6;
}

.tech-leader-bio {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 18px;
}

.tech-bullet-list {
    padding-left: 0;
    margin-bottom: 22px;
}

.tech-bullet-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.green-dot {
    background-color: #75c160;
}

.blue-dot {
    background-color: #3b82f6;
}

.tech-past-experience {
    font-size: 13.5px;
    line-height: 1.65;
    color: #475569;
    margin-top: auto;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .tech-main-title {
        font-size: 25px;
    }

    .tech-leader-card {
        padding: 24px 18px;
        gap: 14px;
        border-radius: 20px;
    }

    .tech-leader-img {
        width: 80px;
        height: 80px;
    }

    .tech-profile-header {
        gap: 14px;
    }
}

.popup-leader li {
    color: #75c160;
}