:root {
    --primary-navy: #ffffff;
    --primary-dark: #061325;
    --primary-blue: #0066f5;
    --primary-light-blue: #38bdf8;
    --accent-blue: #0070f3;
    --accent-cyan: #00a3ff;
    --text-dark: #ffffff;
    --text-muted: #94a3b8;
    --text-body: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-bg: #0c1e36;
    --section-bg-light: #081a30;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #061325;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* -------------------------------------------------------------
   Logo Preloader
------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #061325;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-logo-wrap {
    text-align: center;
    padding: 10px;
}

.preloader-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 245, 0.4));
}

.preloader-spinner-bar {
    width: 160px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-spinner-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #0066f5, #38bdf8);
    border-radius: 10px;
    animation: preloaderProgress 1.4s ease-in-out infinite;
}

@keyframes preloaderProgress {
    0% {
        left: -50%;
        width: 30%;
    }
    50% {
        left: 25%;
        width: 60%;
    }
    100% {
        left: 100%;
        width: 30%;
    }
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* -------------------------------------------------------------
   Header & Navbar
------------------------------------------------------------- */
.site-header {
    background-color: rgba(6, 19, 37, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1030;
}

.brand-logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Styled Navigation Menu Tiles */
.nav-link-custom {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #e2e8f0 !important;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 9px 18px !important;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-link-custom .nav-tile-icon {
    font-size: 13px;
    color: #38bdf8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link-custom:hover {
    background-color: #0066f5 !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 245, 0.4);
}

.nav-link-custom:hover .nav-tile-icon {
    color: #ffffff !important;
    transform: scale(1.15);
}

.nav-link-custom.active {
    background: linear-gradient(135deg, #0056d6 0%, #0070f3 100%) !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 112, 243, 0.45);
}

.nav-link-custom.active .nav-tile-icon {
    color: #ffffff !important;
}

/* -------------------------------------------------------------
   Buttons
------------------------------------------------------------- */
.btn-primary-blue {
    background-color: #0066f5;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #0066f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(0, 102, 245, 0.4);
}

.btn-primary-blue:hover {
    background-color: #0052cc;
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 245, 0.55);
}

.btn-primary-blue i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-primary-blue:hover i {
    transform: translateX(4px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #061325;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.btn-outline-white:hover i {
    transform: translateX(4px);
}

.btn-outline-navy {
    background: transparent;
    color: #e2e8f0;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-navy:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 243, 0.3);
}

/* -------------------------------------------------------------
   Full-Width Background Video Hero & Carousel
------------------------------------------------------------- */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #040d1a;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 19, 37, 0.88) 0%, rgba(3, 10, 21, 0.82) 50%, rgba(0, 70, 180, 0.45) 100%);
    z-index: 2;
}

.hero-carousel-content {
    z-index: 3;
    width: 100%;
}

.min-vh-60 {
    min-height: 48vh;
}

.max-w-650 {
    max-width: 650px;
}

.text-accent-cyan {
    color: #38bdf8 !important;
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.extra-small {
    font-size: 11px;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.bg-dark-glass {
    background-color: rgba(6, 19, 37, 0.65) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-glass-tile {
    background: rgba(12, 30, 54, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-glass-tile:hover {
    background: rgba(0, 102, 245, 0.35);
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 112, 243, 0.4);
}

/* Hero Carousel Indicators & Controls */
.carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 50px;
    background-color: #38bdf8;
}

.carousel-control-prev, .carousel-control-next {
    width: 4%;
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.hero-badge {
    background-color: rgba(0, 102, 245, 0.2);
    color: #38bdf8;
    font-size: 13px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    backdrop-filter: blur(8px);
    padding: 10px 20px !important;
}

/* -------------------------------------------------------------
   Message From Managing Partner Section
------------------------------------------------------------- */
.partner-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #061325 0%, #081a30 100%);
}

.partner-card-wrapper {
    background-color: #0c1e36;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.partner-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.partner-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #38bdf8;
    margin-bottom: 8px;
}

.partner-headline {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.partner-paragraph {
    font-size: 13.5px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 14px;
    text-align: justify;
}

.partner-quote-block {
    background: linear-gradient(135deg, #09203f 0%, #0066f5 100%);
    border-radius: 14px;
    padding: 18px 24px;
    color: #ffffff;
    margin-top: 18px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 102, 245, 0.3);
}

.partner-quote {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 2px;
}

.partner-signature-block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.partner-signature-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(2) contrast(1.1);
}

.partner-info-name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.partner-info-title {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.3;
}

.partner-info-sub {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

/* -------------------------------------------------------------
   Section Titles with Accents
------------------------------------------------------------- */
.section-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.section-accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0066f5, #38bdf8);
    border-radius: 2px;
}

.section-accent-line.line-left {
    background: linear-gradient(90deg, rgba(255,255,255,0.1), #0066f5);
}

.section-accent-line.line-right {
    background: linear-gradient(90deg, #0066f5, rgba(255,255,255,0.1));
}

.section-title-main {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
}

/* -------------------------------------------------------------
   Page Header Banner (Inner Pages)
------------------------------------------------------------- */
.page-header-banner {
    background: linear-gradient(135deg, #040d1a 0%, #061325 50%, #0052cc 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header-banner .page-header-title {
    color: #ffffff !important;
}

.page-header-banner .text-muted {
    color: #94a3b8 !important;
}

/* -------------------------------------------------------------
   Our Services Section
------------------------------------------------------------- */
.services-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(180deg, #081a30 0%, #061325 100%);
}

.service-card {
    background-color: #0c1e36;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid #0066f5;
    border-radius: 16px;
    padding: 26px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 102, 245, 0.3);
    border-color: #38bdf8;
    background-color: #102644;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #0066f5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px auto;
    box-shadow: 0 4px 14px rgba(0, 102, 245, 0.4);
}

.service-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-tagline {
    font-size: 10.5px;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 14px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: #cbd5e1;
    margin-top: 8px;
    margin-bottom: 4px;
    text-align: center;
}

.service-why-header {
    font-size: 11px;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.service-why-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 11.5px;
    line-height: 1.45;
    color: #cbd5e1;
}

.service-why-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.service-why-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #38bdf8;
    font-weight: 800;
    font-size: 14px;
}

.service-why-list strong {
    color: #ffffff;
    font-weight: 700;
}

.service-card-btn-wrap {
    text-align: center;
    margin-top: auto;
}

.service-card .btn-primary-blue {
    font-size: 11px;
    padding: 8px 18px;
    width: 85%;
}

/* Consultation Card (Dark Theme) */
.consultation-card {
    background: linear-gradient(145deg, #06162d 0%, #0043a8 100%);
    border: 1px solid rgba(0, 102, 245, 0.4);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.consult-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.consult-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.consult-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 200px;
}

/* -------------------------------------------------------------
   Blog Section
------------------------------------------------------------- */
/* -------------------------------------------------------------
   Blog Section
------------------------------------------------------------- */
.blog-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(180deg, #061325 0%, #081a30 100%);
}

.blog-card {
    background-color: #0c1e36;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 102, 245, 0.25);
    border-color: #38bdf8;
    background-color: #102644;
}

.blog-img-container {
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #08192e;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.blog-card-body {
    padding: 16px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 42px;
}

.blog-card-date {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 14px;
}

.blog-read-more {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    color: #38bdf8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    color: #60a5fa;
    gap: 10px;
}

/* -------------------------------------------------------------
   Footer Section
------------------------------------------------------------- */
.site-footer {
    background-color: #030a15;
    background-image: linear-gradient(rgba(4, 12, 26, 0.96), rgba(3, 10, 21, 0.98)), url('../images/FB Cover Image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 102, 245, 0.15), transparent 70%);
    pointer-events: none;
}

.footer-section-title {
    font-size: 20px;
    letter-spacing: -0.01em;
    color: #ffffff !important;
}

.footer-title-line {
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-brand-main {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #38bdf8 !important;
}

.footer-brand-sub {
    font-size: 13px;
    letter-spacing: 1px;
    color: #38bdf8 !important;
}

.footer-contact-list {
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-icon-wrapper {
    color: #38bdf8;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-contact-text a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-contact-text a:hover {
    color: #38bdf8 !important;
}

.contact-indent {
    margin-left: 62px;
}

.footer-logo-badge {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 380px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background-color: #0066f5;
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 245, 0.4);
}

.footer-bottom-bar {
    background-color: rgba(2, 6, 14, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* -------------------------------------------------------------
   Mobile Bottom Navigation Bar
------------------------------------------------------------- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(6, 19, 37, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 6px 12px 8px 12px;
}

.mobile-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 480px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.mobile-nav-icon {
    font-size: 18px;
    margin-bottom: 2px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #38bdf8;
}

.mobile-nav-item.active .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-highlight {
    color: #38bdf8;
    font-weight: 700;
}

.mobile-nav-highlight .mobile-nav-icon {
    width: 32px;
    height: 32px;
    background-color: #0066f5;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 2px;
    box-shadow: 0 4px 10px rgba(0, 102, 245, 0.4);
}

.mobile-nav-highlight:hover .mobile-nav-icon {
    background-color: #0052cc;
}

/* -------------------------------------------------------------
   Modal and Form Enhancements
------------------------------------------------------------- */
.custom-modal-header {
    background: linear-gradient(135deg, #061325 0%, #0066f5 100%) !important;
    color: #ffffff;
}

/* -------------------------------------------------------------
   Responsive Breakpoints
------------------------------------------------------------- */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 65px;
    }

    .brand-logo {
        width: 120px;
        max-width: 120px;
        height: auto;
        object-fit: contain;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-banner-img {
        height: 300px;
    }
    
    .partner-photo {
        height: 380px;
        margin-bottom: 24px;
    }
    
    .contact-indent {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 120px;
        max-width: 120px;
        height: auto;
        object-fit: contain;
    }

    .hero-section {
        padding: 35px 0 45px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-banner-img {
        height: 240px;
    }
    
    .section-title-main {
        font-size: 26px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
}

/* -------------------------------------------------------------
   Client Testimonials & Scrolling Animation
------------------------------------------------------------- */
.testimonials-section {
    background: linear-gradient(180deg, #081a30 0%, #061325 50%, #081a30 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 245, 0.15) 0%, rgba(6, 19, 37, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(6, 19, 37, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Gradient fade masks removed to fix visual glitch on dark gradient background */

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonialScroll 40s linear infinite;
    will-change: transform;
}

.testimonial-marquee-wrapper:hover .testimonial-track,
.testimonial-track.is-paused {
    animation-play-state: paused;
}

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

/* Testimonial Card Styling */
.testimonial-card {
    width: 380px;
    min-width: 380px;
    background: #0c1e36;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066f5, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 86, 214, 0.12);
    border-color: rgba(0, 86, 214, 0.25);
}

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

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-service-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(0, 102, 245, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.testimonial-quote-icon {
    font-size: 26px;
    color: rgba(56, 189, 248, 0.25);
    margin-bottom: 12px;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
    font-weight: 400;
    flex-grow: 1;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056d6, #0070f3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 245, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author-info {
    flex-grow: 1;
    overflow: hidden;
}

.testimonial-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-verified-badge {
    color: #34d399;
    font-size: 13px;
    cursor: help;
}

.testimonial-author-company {
    font-size: 12.5px;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Interactive Controls Bar */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0c1e36;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-nav-btn:hover {
    background: #0066f5;
    color: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 245, 0.4);
}

.testimonial-nav-btn:active {
    transform: translateY(0);
}

.testimonial-pause-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0c1e36;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-pause-toggle:hover {
    background: #102644;
    border-color: #38bdf8;
    color: #38bdf8;
}

/* Testimonial Trust Metrics Strip */
.testimonials-trust-strip {
    background: linear-gradient(135deg, #0c1e36 0%, #081628 100%);
    border-radius: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 102, 245, 0.15);
    margin-top: 45px;
    position: relative;
    overflow: hidden;
}

.trust-strip-ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trust-strip-ticker-wrapper::before,
.trust-strip-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 3;
    pointer-events: none;
}

.trust-strip-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0c1e36 0%, rgba(12, 30, 54, 0) 100%);
}

.trust-strip-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0c1e36 0%, rgba(12, 30, 54, 0) 100%);
}

.trust-strip-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: trustStripScroll 25s linear infinite;
    will-change: transform;
}

.trust-strip-ticker-wrapper:hover .trust-strip-track,
.trust-strip-track.is-paused {
    animation-play-state: paused;
}

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

.trust-metric-card {
    min-width: 260px;
    flex-shrink: 0;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.trust-metric-card:hover {
    background: rgba(0, 102, 245, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 245, 0.2);
}

.trust-metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 102, 245, 0.3) 0%, rgba(56, 189, 248, 0.15) 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 245, 0.2);
}

.trust-metric-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.trust-metric-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* -------------------------------------------------------------
   Interactive Service Cards & Multi-Select Checkboxes
------------------------------------------------------------- */
.service-card-interactive {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    user-select: none;
    border-top: 4px solid #0066f5 !important;
}

.service-card-interactive:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 18px 36px rgba(0, 102, 245, 0.3) !important;
    border-color: #38bdf8 !important;
    background-color: #102644 !important;
}

.service-card-interactive:hover .service-icon-box {
    transform: scale(1.1);
    background-color: #0052cc !important;
}

.service-card-interactive:hover .service-card-action {
    color: #38bdf8 !important;
}

.service-card-interactive:hover .service-card-action i {
    transform: translateX(5px);
}

.service-card-action i {
    transition: transform 0.2s ease;
}

/* Custom Multi-Select Checkbox Pills */
.custom-service-checkbox {
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #cbd5e1 !important;
    user-select: none;
}

.custom-service-checkbox:hover {
    border-color: #38bdf8 !important;
    background-color: rgba(56, 189, 248, 0.12) !important;
    color: #ffffff !important;
}

.custom-service-checkbox input:checked + label {
    color: #38bdf8 !important;
    font-weight: 700 !important;
}

.custom-service-checkbox:has(input:checked) {
    background-color: rgba(0, 102, 245, 0.2) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 4px 12px rgba(0, 102, 245, 0.3);
}

/* Modal Dark Theme Overrides */
.modal-content {
    background-color: #08192e !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
}

.custom-modal-header {
    background: linear-gradient(135deg, #040d1a 0%, #0066f5 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-control, .form-select {
    background-color: #061325 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.form-control:focus, .form-select:focus {
    background-color: #061325 !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.25) !important;
}

.form-control::placeholder {
    color: #64748b !important;
}

/* -------------------------------------------------------------
   Utility & Service Card Badge Styling Fixes
------------------------------------------------------------- */
.text-primary-blue {
    --bs-badge-color: #38bdf8 !important;
    color: #38bdf8 !important;
}

.text-navy {
    color: #ffffff !important;
}

.bg-light-blue {
    --bs-badge-bg: rgba(0, 102, 245, 0.15) !important;
    background-color: rgba(0, 102, 245, 0.15) !important;
}

.px-2\.5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
}

.py-1\.5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}

.service-card-tagline {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 14px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-tagline .badge,
.badge.bg-light-blue,
.badge.text-primary-blue {
    --bs-badge-color: #38bdf8 !important;
    --bs-badge-bg: rgba(0, 102, 245, 0.2) !important;
    background-color: rgba(0, 102, 245, 0.2) !important;
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    padding: 5px 12px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    white-space: normal !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* -------------------------------------------------------------
   Bootstrap Dark Navy Theme Utility Overrides
------------------------------------------------------------- */
.bg-white {
    background-color: #0c1e36 !important;
}

.bg-light {
    background-color: #08192e !important;
}

.bg-light-blue {
    background-color: rgba(0, 102, 245, 0.15) !important;
}

.border, .border-top, .border-bottom, .border-start, .border-end {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.text-navy, .text-dark {
    color: #ffffff !important;
}

.text-muted {
    color: #94a3b8 !important;
}

.text-body {
    color: #cbd5e1 !important;
}

#sdModalWhyChooseUs .bg-light {
    background-color: #0c1e36 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

#sdModalWhyChooseUs .small.text-muted {
    color: #cbd5e1 !important;
}/* -------------------------------------------------------------
   KuruAI Chatbot Widget - Floating AI Assistant
------------------------------------------------------------- */
.kuru-bot-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 991.98px) {
    .kuru-bot-wrapper {
        bottom: 75px;
        right: 15px;
    }
}

/* Floating Greeting Teaser Bubble */
.kuru-bot-teaser {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 260px;
    background: rgba(12, 30, 54, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 102, 245, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: kuruPulseBounce 0.5s ease-out;
    transition: all 0.3s ease;
}

.kuru-bot-teaser.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}

.kuru-teaser-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #38bdf8;
    flex-shrink: 0;
}

.kuru-teaser-content {
    flex: 1;
    font-size: 12px;
    color: #e2e8f0;
    line-height: 1.4;
}

.kuru-teaser-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.kuru-teaser-close:hover {
    color: #ffffff;
}

/* Floating Trigger Button */
.kuru-bot-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066f5 0%, #0041a8 100%);
    border: 2px solid rgba(56, 189, 248, 0.6);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 102, 245, 0.5), 0 0 20px rgba(56, 189, 248, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kuru-bot-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 102, 245, 0.7), 0 0 25px rgba(56, 189, 248, 0.6);
}

.kuru-bot-trigger-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.kuru-bot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 2px solid #08192e;
    border-radius: 50%;
}

.kuru-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.6);
    animation: kuruRingPulse 2s infinite;
    pointer-events: none;
}

@keyframes kuruRingPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
}

@keyframes kuruPulseBounce {
    0% { transform: translateY(20px) scale(0.9); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Chat Window Box */
.kuru-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 540px;
    max-height: 80vh;
    background: #081628;
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 102, 245, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kuru-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
    .kuru-chat-window {
        width: calc(100vw - 30px);
        right: 0;
        bottom: 70px;
        height: 500px;
    }
}

/* Header */
.kuru-chat-header {
    background: linear-gradient(135deg, #0c2340 0%, #061528 100%);
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Interactive Question Selector Bar */
.kuru-select-bar {
    padding: 10px 14px;
    background: #091a2e;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.kuru-question-select {
    width: 100%;
    background: rgba(0, 102, 245, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.kuru-question-select:hover, .kuru-question-select:focus {
    background: rgba(0, 102, 245, 0.35);
    border-color: #38bdf8;
    color: #ffffff;
}

.kuru-question-select option {
    background: #081628;
    color: #e2e8f0;
    padding: 8px;
}

.kuru-question-select optgroup {
    background: #0c2340;
    color: #38bdf8;
    font-weight: 800;
}

.kuru-bot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kuru-bot-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #38bdf8;
}

.kuru-bot-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.kuru-bot-status {
    font-size: 11px;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kuru-status-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.kuru-header-actions {
    display: flex;
    gap: 8px;
}

.kuru-header-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94a3b8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.kuru-header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Chat Body */
.kuru-chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.kuru-chat-body::-webkit-scrollbar {
    width: 5px;
}

.kuru-chat-body::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.2);
    border-radius: 10px;
}

/* Message Bubbles */
.kuru-msg {
    display: flex;
    gap: 10px;
    max-width: 88%;
    animation: kuruMsgFade 0.3s ease-out;
}

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

.kuru-msg-bot {
    align-self: flex-start;
}

.kuru-msg-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.kuru-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.kuru-msg-user .kuru-msg-avatar {
    display: none;
}

.kuru-msg-bubble {
    padding: 12px 15px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.kuru-msg-bot .kuru-msg-bubble {
    background: rgba(15, 34, 60, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border-top-left-radius: 4px;
}

.kuru-msg-user .kuru-msg-bubble {
    background: linear-gradient(135deg, #0066f5 0%, #0052c7 100%);
    color: #ffffff;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 102, 245, 0.3);
}

.kuru-msg-time {
    font-size: 10px;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

.kuru-msg-bot .kuru-msg-time {
    text-align: left;
}

.kuru-msg-user .kuru-msg-time {
    text-align: right;
}

/* Quick Suggestion Pills */
.kuru-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.kuru-chip {
    background: rgba(0, 102, 245, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    text-align: left;
}

.kuru-chip:hover {
    background: #0066f5;
    color: #ffffff;
    border-color: #0066f5;
    transform: translateY(-1px);
}

/* Embedded Action Buttons in Bot Messages */
.kuru-bot-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #0066f5 0%, #0041a8 100%);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.kuru-bot-action-btn:hover {
    background: #38bdf8;
    color: #081628 !important;
}

/* Typing Indicator */
.kuru-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: rgba(15, 34, 60, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: fit-content;
}

.kuru-typing-indicator span {
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    animation: kuruBounce 1.4s infinite ease-in-out both;
}

.kuru-typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.kuru-typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes kuruBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Footer Input Area */
.kuru-chat-footer {
    padding: 12px 14px;
    background: #061222;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kuru-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: all 0.2s;
}

.kuru-chat-input::placeholder {
    color: #64748b;
}

.kuru-chat-input:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.kuru-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0066f5;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.kuru-send-btn:hover {
    background: #38bdf8;
    color: #081628;
    transform: scale(1.05);
}

/* -------------------------------------------------------------
   Comprehensive Scroll Animation Engine & Reveal System
------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

/* Top Reading Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066f5 0%, #38bdf8 50%, #10b981 100%);
    z-index: 99999;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

/* Scroll Reveal Base Animations */
.reveal-on-scroll,
[data-scroll],
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left,
[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right,
[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-scroll="fade-down"] {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-zoom,
[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active Trigger Class */
.reveal-on-scroll.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible,
[data-scroll].is-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Section Header Accent Animations */
.section-header-accent {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-header-accent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header-accent .section-accent-line {
    width: 0;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header-accent.is-visible .section-accent-line {
    width: 60px;
}

/* Floating Animation Utility */
@keyframes kuruFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.kuru-floating-element {
    animation: kuruFloat 4s ease-in-out infinite;
}


