/* ===================================
   Saathi Investment - Main Stylesheet
   =================================== */

/* ===================================
   CSS Variables / Design Tokens
   =================================== */
:root {
    /* Saathi Investment palette (derived from provided logo) */
    --brand-navy: #0d1f42;
    --brand-navy-dark: #081632;
    --brand-blue: #2f86cf;
    --brand-blue-light: #44a7e7;
    --brand-gold: #f2c316;
    --brand-gold-dark: #d39a05;
    --brand-pink: #f06a8c;

    --primary: var(--brand-navy);
    --secondary: var(--brand-blue);
    --accent: var(--brand-gold);

    --gradient: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    --gradient-reverse: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    --gradient-cta: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    --gradient-highlight: linear-gradient(135deg, var(--brand-blue-light), var(--brand-pink));
    --gradient-surface: linear-gradient(135deg, #eff6ff, #fff7db);
    --bg: #f8f9fa;
    --bg-dark: #1f2937;
    --text-dark: #1f2937;
    --text-muted: #6c757d;
    --white: #ffffff;
    --card-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
    --card-shadow-hover: 0 20px 56px rgba(30, 58, 138, 0.16);
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --transition: all 0.3s ease;
    --section-padding: 80px 0;

    /* Bootstrap tokens (moved from inline <style> for SEO/perf) */
    --bs-primary: var(--brand-navy);
    --bs-primary-rgb: 13, 31, 66;
    --bs-link-color: var(--brand-navy);
    --bs-link-hover-color: var(--brand-navy-dark);
    --bs-danger: var(--brand-gold);
    --bs-danger-rgb: 242, 195, 22;
}

/* ===================================
   Base Reset & Typography
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-x: clip;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 23px;
}

/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    height: 48px;
    margin-bottom: 20px;
    animation: logoPulse 1.2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(30, 58, 138, 0.12);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 4px;
    animation: loaderFill 1s ease forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* ===================================
   Utility / Helper Classes
   =================================== */
.gradient-text {
    background: #9b7a16;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: var(--gradient);
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(30, 58, 138, 0.12);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.gradient-divider {
    height: 3px;
    background: var(--gradient);
    border-radius: 4px;
    width: 56px;
    margin-bottom: 20px;
}

/* ===================================
   Buttons
   =================================== */
.btn-gradient {
    background: var(--gradient-cta);
    color: var(--brand-navy-dark) !important;
    border: none;
    border-radius: 50px;
    padding: 13px 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Footer inline links (removed inline styles from PHP templates) */
.footer .footer-contact-link {
    color: inherit;
    text-decoration: none;
}

.footer .footer-contact-link:hover {
    color: white;
    text-decoration: underline;
}

.footer .footer-legal-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer .footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* About / Blog / Case small text (removed inline styles) */
.team-cert-line {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-author-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.case-client-attrib {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-hero-image {
    border-radius: 16px;
    width: 100%;
    box-shadow: var(--card-shadow-hover);
}

.about-story-text {
    font-size: 0.97rem;
    line-height: 1.85;
}

/* Partners */
.partners-type-icon {
    color: #ffffff;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
    border-radius: 50px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.38);
}

.btn-gradient:hover::after {
    opacity: 1;
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 11px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gradient:hover {
    background: var(--gradient);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.28);
}

.btn-white {
    background: white;
    color: var(--primary) !important;
    border: none;
    border-radius: 50px;
    padding: 13px 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    padding: 11px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary) !important;
    border-color: white;
    transform: translateY(-2px);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.07);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(30, 58, 138, 0.1);
    padding: 6px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.navbar-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
}

@media (min-width: 992px) {
    .navbar-brand .brand-name { display: inline-block; }
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(30, 58, 138, 0.06);
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.14);
    padding: 8px;
    margin-top: 0;
    animation: dropdownFade 0.22s ease;
    border: 1px solid rgba(30, 58, 138, 0.06);
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.navbar-nav .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(30, 58, 138, 0.06);
    color: var(--primary);
}

.navbar-nav .dropdown-item i {
    width: 18px;
    color: var(--primary);
    font-size: 0.85rem;
}

.navbar-toggler {
    border: none;
    padding: 6px 10px;
    background: rgba(30, 58, 138, 0.06);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 138, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    min-height: 100svh;
    min-height: calc(var(--vh, 1vh) * 100);
    background:
        radial-gradient(1200px 600px at 80% 10%, rgba(242, 195, 22, 0.16), transparent 60%),
        radial-gradient(900px 500px at 10% 90%, rgba(68, 167, 231, 0.18), transparent 55%),
        linear-gradient(135deg, #050d1a 0%, var(--brand-navy) 40%, #071a33 70%, #040c18 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 82px;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 167, 231, 0.28), transparent 62%);
    top: -20%;
    right: -5%;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 195, 22, 0.22), transparent 62%);
    bottom: -10%;
    left: -5%;
    animation: orbFloat 8s ease-in-out infinite 3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 106, 140, 0.18), transparent 62%);
    top: 40%;
    left: 30%;
    animation: orbFloat 6s ease-in-out infinite 1.5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.08); }
}

/* Hero grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 167, 231, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 167, 231, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(68, 167, 231, 0.10);
    border: 1px solid rgba(68, 167, 231, 0.22);
    color: rgba(235, 246, 255, 0.92);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(242, 195, 22, 0.12);
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
    text-align: left;
}

.hero-stat .h-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .h-label {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero visual panel */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    position: relative;
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.30), rgba(242, 195, 22, 0.22), rgba(240, 106, 140, 0.18));
    opacity: 0.7;
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}

.hero-dashboard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(600px 260px at 20% 0%, rgba(68, 167, 231, 0.12), transparent 55%);
    pointer-events: none;
}

.hero-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.hero-dashboard-icon {
    color: rgba(68, 167, 231, 0.95);
}

.hero-dashboard-badge {
    background: rgba(242, 195, 22, 0.18);
    color: rgba(255, 236, 177, 0.95);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 20px;
}

.hero-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(68, 167, 231, 0.92), rgba(242, 195, 22, 0.52));
    animation: barGrow 1s ease forwards;
    transform-origin: bottom;
    position: relative;
    overflow: hidden;
}

.hero-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-120%);
    animation: heroBarShine 3.6s ease-in-out infinite;
    opacity: 0.55;
}

@keyframes heroBarShine {
    0%, 55% { transform: translateX(-120%); }
    75% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

/* Bar heights + stagger (no inline styles) */
.hero-bar.bar-1 { height: 45%; animation-delay: 0s; }
.hero-bar.bar-2 { height: 65%; animation-delay: 0.08s; }
.hero-bar.bar-3 { height: 55%; animation-delay: 0.16s; }
.hero-bar.bar-4 { height: 80%; animation-delay: 0.24s; }
.hero-bar.bar-5 { height: 60%; animation-delay: 0.32s; }
.hero-bar.bar-6 { height: 90%; animation-delay: 0.40s; }
.hero-bar.bar-7 { height: 72%; animation-delay: 0.48s; }
.hero-bar.bar-8 { height: 85%; animation-delay: 0.56s; }

@keyframes barGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

.hero-dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-dash-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-dash-stat .label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-dash-stat .value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-top: 2px;
}

.hero-dash-stat .change {
    font-size: 0.72rem;
    color: rgba(186, 230, 253, 0.95);
    font-weight: 600;
}

/* Floating cards on hero */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.85), rgba(13, 31, 66, 0.95));
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.float-card-text .title {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.15;
}

.float-card-text .sub {
    color: rgba(255,255,255,0.62);
    font-size: 0.78rem;
    margin-top: 2px;
}

.float-card-icon--secure {
    background: linear-gradient(135deg, rgba(242, 195, 22, 0.95), rgba(68, 167, 231, 0.85));
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .hero-orb,
    .hero-bar,
    .hero-bar::after,
    .float-card,
    .hero-badge .badge-dot {
        animation: none !important;
    }
}

.float-card-1 {
    top: -20px;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite;
}

.float-card-2 {
    bottom: -20px;
    right: -20px;
    animation: floatCard 4s ease-in-out infinite 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.float-card-text .title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.float-card-text .sub {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===================================
   FEATURE HIGHLIGHT SECTION (Owl Carousel)
   =================================== */
.feature-section {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(30, 58, 138, 0.06);
}

.feature-carousel.owl-carousel {
    position: relative;
    padding: 0 48px;
    max-width: 100%;
    overflow: hidden;
}

.feature-carousel.owl-carousel .owl-stage-outer {
    padding: 8px 0 12px;
    overflow: hidden;
}

.feature-carousel .feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border-radius: var(--border-radius);
    background: #fff;
    border: 1px solid rgba(30, 58, 138, 0.07);
    transition: var(--transition);
    height: 100%;
    margin: 0 2px;
}

.feature-carousel .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(30, 58, 138, 0.15);
}

.feature-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.feature-card .icon.blue {
    background: var(--gradient);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.3);
}

.feature-card .icon.red {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28);
}

.feature-card .icon i {
    font-size: 1.25rem;
    color: #fff;
}

.feature-carousel .feature-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-carousel .feature-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Owl nav — premium fintech */
.feature-carousel .owl-nav {
    margin-top: 0;
}

.feature-carousel .owl-nav button.owl-prev,
.feature-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(30, 58, 138, 0.12) !important;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.12);
    color: #1e3a8a !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    transition: var(--transition);
}

.feature-carousel .owl-nav button.owl-prev:hover,
.feature-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.feature-carousel .owl-nav .owl-prev {
    left: -12px;
}

.feature-carousel .owl-nav .owl-next {
    right: -12px;
}

@media (max-width: 575px) {
    .feature-carousel.owl-carousel {
        padding: 0 42px;
    }

    .feature-carousel .owl-nav .owl-prev {
        left: 4px;
    }

    .feature-carousel .owl-nav .owl-next {
        right: 4px;
    }
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.3);
}

.feature-icon-box i {
    font-size: 1.25rem;
    color: white;
}

.feature-card-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card-body p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background:
        radial-gradient(900px 420px at 15% 15%, rgba(68, 167, 231, 0.14), transparent 60%),
        radial-gradient(700px 380px at 85% 85%, rgba(242, 195, 22, 0.16), transparent 58%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 45%, #fff9e6 100%);
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    padding: 42px 34px;
    border: 1px solid rgba(13, 31, 66, 0.10);
    box-shadow: 0 10px 30px rgba(13, 31, 66, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.40), rgba(242, 195, 22, 0.34), rgba(240, 106, 140, 0.26));
    opacity: 0;
    filter: blur(18px);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background:
        radial-gradient(600px 220px at 15% 0%, rgba(68, 167, 231, 0.14), transparent 55%),
        radial-gradient(520px 220px at 85% 110%, rgba(242, 195, 22, 0.12), transparent 60%);
    opacity: 0.95;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 70px rgba(13, 31, 66, 0.14);
    border-color: rgba(68, 167, 231, 0.26);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.14), rgba(242, 195, 22, 0.10));
    border: 1px solid rgba(13, 31, 66, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.95), rgba(242, 195, 22, 0.88));
    box-shadow: 0 18px 44px rgba(13, 31, 66, 0.18);
    transform: translateY(-2px) rotate(-2deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.35);
}

.service-icon i {
    font-size: 1.9rem;
    color: var(--brand-navy);
    transition: transform 0.35s ease, color 0.35s ease;
}

.service-card:hover .service-icon i {
    color: #ffffff;
    transform: translateY(-1px);
}

.service-card h4 {
    font-size: 1.24rem;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    color: rgba(13, 31, 66, 0.06);
    line-height: 1;
    user-select: none;
    letter-spacing: -1px;
    z-index: 0;
}

.service-card .btn-gradient {
    position: relative;
    z-index: 1;
}

/* Mobile polish */
@media (max-width: 575px) {
    .service-card { padding: 34px 24px; }
    .service-number { font-size: 3.1rem; }
}

/* ===================================
   GOALS SECTION (Home)
   =================================== */
.goals-section {
    background: var(--bg);
}

.goal-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 28px 22px;
    border: 1px solid rgba(30, 58, 138, 0.07);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    height: 100%;
}

.goal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(30, 58, 138, 0.18);
}

.goal-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.25);
}

.goal-card:hover .goal-icon {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.35);
}

.goal-icon i {
    font-size: 1.5rem;
    color: white;
}

.goal-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.goal-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-section {
    background: white;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--border-radius);
    background: white;
    border: 1px solid rgba(30, 58, 138, 0.07);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(220, 38, 38, 0.06));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.28);
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: white;
}

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================================
   PROCESS / TIMELINE SECTION
   =================================== */
.process-section {
    background: linear-gradient(135deg, #050d1a 0%, #0d1f42 100%);
    position: relative;
    overflow: hidden;
}

.process-section .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #93c5fd;
    border-color: rgba(255, 255, 255, 0.1);
}

.process-section .section-title {
    color: white;
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Desktop timeline */
.process-steps {
    position: relative;
    padding: 60px 0 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 96px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.4;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(30, 58, 138, 0.15), 0 8px 24px rgba(30, 58, 138, 0.4);
}

.process-step-icon {
    font-size: 1.8rem;
    color: var(--brand-blue-soft);
    margin-bottom: 16px;
}

/* Ensure handshake icon is white in the process steps */
.process-step-icon i.fa-handshake {
    color: #ffffff !important;
}

/* Ensure specific process icons are white */
.process-step-icon i.fa-lightbulb,
.process-step-icon i.fa-gears,
.process-step-icon i.fa-chart-bar {
    color: #ffffff !important;
}

.process-step h5 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.87rem;
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    background: var(--gradient-surface);
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 4px;
}

.testimonial-inner {
    background: white;
    border-radius: var(--border-radius);
    padding: 44px 48px;
    border: 1px solid rgba(30, 58, 138, 0.07);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 7rem;
    font-family: Georgia, serif;
    color: rgba(30, 58, 138, 0.06);
    line-height: 1;
    font-weight: 900;
    user-select: none;
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 20px;
    font-size: 0.9rem;
    gap: 2px;
    display: flex;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 3px solid rgba(30, 58, 138, 0.12);
}

.t-info h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 3px;
}

.t-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(30, 58, 138, 0.18);
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.slider-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.18);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--gradient);
    width: 24px;
    border-radius: 4px;
}

/* Dynamic testimonials (Owl carousel) */
.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-carousel .testimonial-card {
    width: 100%;
}

.testimonial-carousel .testimonial-inner {
    height: 100%;
    padding: 36px 32px;
}

.t-avatar-img {
    width: 56px !important;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(30, 58, 138, 0.12);
    flex-shrink: 0;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    border: 2px solid rgba(30, 58, 138, 0.18) !important;
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
    background: var(--gradient) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 4px;
    background: rgba(30, 58, 138, 0.18);
    transition: var(--transition);
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    width: 22px;
    border-radius: 4px;
    background: var(--brand-navy);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: var(--gradient);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-box {
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-box:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* ===================================
   CTA BANNER SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #050d1a 0%, #0d1f42 50%, #050d1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section .cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.cta-section .cta-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -30%;
    right: 5%;
}

.cta-section .cta-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -20%;
    left: 5%;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #080f1d;
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 0;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    height: 42px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 270px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    gap: 12px;
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-contact-icon i {
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-contact-item .text {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-contact-item .text strong {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.88rem;
}

.social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 56px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ===================================
   PAGE HEADER BANNER
   =================================== */
.page-header {
    background: linear-gradient(135deg, #050d1a 0%, #0d1f42 60%, #0a3258 100%);
    padding: 130px 0 72px;
    position: relative;
    overflow: hidden;
}

.page-header .header-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.page-header .header-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 138, 0.2);
    top: -30%;
    right: -5%;
}

.page-header .header-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(220, 38, 38, 0.12);
    bottom: -30%;
    left: 20%;
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    max-width: 560px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: var(--accent);
    font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.25);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-img-wrapper {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.about-img-wrapper img {
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: var(--card-shadow-hover);
    position: relative;
    z-index: 1;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 75%;
    background: var(--gradient);
    border-radius: var(--border-radius);
    opacity: 0.12;
}

.about-experience-badge {
    position: absolute;
    bottom: 10px;
    left: -20px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
    z-index: 2;
}

.about-experience-badge .exp-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-experience-badge .exp-text {
    font-size: 0.78rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #374151;
}

.check-list li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.mv-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(30, 58, 138, 0.07);
    height: 100%;
    transition: var(--transition);
}

.mv-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(30, 58, 138, 0.15);
    transform: translateY(-4px);
}

.mv-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.28);
}

.mv-icon i {
    font-size: 1.6rem;
    color: white;
}

.mv-card h4 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(30, 58, 138, 0.07);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 28px;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-info .designation {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.team-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* About page — enhanced content sections */
.about-hero-section {
    min-height: 58vh;
    background:
        linear-gradient(135deg, rgba(5, 13, 26, 0.86), rgba(13, 31, 66, 0.84), rgba(10, 50, 88, 0.84)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 90px;
}

.about-hero-title {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero-subheading {
    color: rgba(255, 255, 255, 0.78);
    max-width: 860px;
    margin: 0 auto 28px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-story-section {
    background: #fff;
}

.about-story-image {
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: var(--card-shadow-hover);
}

.about-text {
    font-size: 0.97rem;
    line-height: 1.85;
}

.about-stat-card {
    background: #fff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.about-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.about-stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 4px;
}

.about-foundation-section {
    background: linear-gradient(135deg, #eff6ff 0%, #fef2f2 100%);
}

.founder-section {
    background: #fff;
}

.founder-image {
    width: 100%;
    max-height: 560px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow-hover);
    object-fit: cover;
}

@media (min-width: 992px) {
    .founder-image {
        min-height: 420px;
    }
}

.founder-quote {
    border-left: 4px solid var(--brand-red);
    background: rgba(220, 38, 38, 0.06);
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    margin: 18px 0;
    color: #1f2937;
    font-style: italic;
    font-weight: 500;
}

.about-team-section {
    background: #fff;
}

.team-carousel .team-card {
    margin: 4px;
}

.team-carousel .owl-nav button.owl-prev,
.team-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    border: 2px solid rgba(30, 58, 138, 0.18) !important;
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: var(--card-shadow);
}

.team-carousel .owl-nav button.owl-prev:hover,
.team-carousel .owl-nav button.owl-next:hover {
    background: var(--gradient) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.team-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(30, 58, 138, 0.18);
}

.team-carousel .owl-dots .owl-dot.active span {
    background: var(--brand-navy);
    width: 22px;
    border-radius: 4px;
}

.about-difference-section {
    background: linear-gradient(135deg, #eff6ff 0%, #fef2f2 100%);
}

/* ===================================
   SERVICES PAGE
   =================================== */
.service-detail-block {
    padding: 80px 0;
}

.service-detail-block:nth-child(even) {
    background: var(--gradient-surface);
}

.service-detail-image {
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: var(--card-shadow-hover);
    transition: var(--transition);
}

.service-detail-image:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 64px rgba(30, 58, 138, 0.2);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.07);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-bullet-list {
    list-style: none;
    padding: 0;
}

.service-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: #374151;
}

.bullet-icon {
    width: 28px;
    height: 28px;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-icon i {
    font-size: 0.75rem;
    color: var(--primary);
}

/* ===================================
   GOALS PAGE
   =================================== */
.goal-card-lg {
    background: white;
    border-radius: var(--border-radius);
    padding: 36px 28px;
    border: 1px solid rgba(30, 58, 138, 0.07);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.goal-card-lg:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(30, 58, 138, 0.2);
}

.goal-bg-number {
    position: absolute;
    top: 8px;
    right: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.04);
    line-height: 1;
    user-select: none;
}

.goal-icon-lg {
    width: 84px;
    height: 84px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.28);
}

.goal-card-lg:hover .goal-icon-lg {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
}

.goal-icon-lg i {
    font-size: 2rem;
    color: white;
}

.goal-card-lg h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.goal-card-lg p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.goal-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 600;
    transition: var(--transition);
}

.goal-card-lg:hover .goal-learn-more {
    gap: 10px;
}

/* Goal Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.modal-header-gradient {
    background: var(--gradient);
    padding: 28px 36px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-gradient .modal-title {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.modal-header-gradient .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
}

.modal-body {
    padding: 36px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-form-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 48px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(30, 58, 138, 0.07);
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1.5px solid rgba(30, 58, 138, 0.1);
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fafbff;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.form-control.is-valid {
    border-color: var(--secondary);
    box-shadow: none;
}

.form-control::placeholder {
    color: #b0b8c8;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-info-sidebar {
    background: linear-gradient(160deg, #0a1628 0%, #0d2252 100%);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    color: white;
    /* height: 100%; */
}

/* ===================================
   Home Quick Enquiry Section
   =================================== */
.contact-home-section {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 380px at 15% 20%, rgba(68, 167, 231, 0.18), transparent 60%),
        radial-gradient(700px 340px at 90% 90%, rgba(242, 195, 22, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(239, 246, 255, 1) 0%, rgba(254, 242, 242, 1) 100%);
}

.contact-home-section::before {
    content: '';
    position: absolute;
    inset: -200px;
    background: radial-gradient(circle at 20% 10%, rgba(242, 195, 22, 0.18), transparent 45%),
        radial-gradient(circle at 80% 90%, rgba(68, 167, 231, 0.18), transparent 45%);
    animation: contactHomeGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.contact-home-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.06), rgba(242, 195, 22, 0.06));
    pointer-events: none;
}

@keyframes contactHomeGlow {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    50% { transform: translate3d(20px, -16px, 0) scale(1.03); opacity: 1; }
    100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
}

.contact-home-form-col {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(13, 31, 66, 0.12);
    box-shadow: 0 18px 60px rgba(13, 31, 66, 0.10);
    backdrop-filter: blur(14px);
}

.contact-home-form-col::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(68, 167, 231, 0.40), rgba(242, 195, 22, 0.30), rgba(240, 106, 140, 0.22));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.contact-home-form-col:hover::before {
    opacity: 0.9;
}

.contact-home-form-msg {
    display: none;
}

.contact-home-form .form-control {
    border-radius: 14px;
    border: 1px solid rgba(13, 31, 66, 0.10);
    background: rgba(255, 255, 255, 0.95);
    padding-left: 14px;
    padding-right: 14px;
}

.contact-home-form .form-control:focus {
    border-color: rgba(68, 167, 231, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(68, 167, 231, 0.14);
    background: #ffffff;
}

.contact-home-submit-btn {
    padding: 14px 16px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

/* Works with .btn-gradient's existing styles */
.contact-home-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 45%, transparent 60%);
    transform: translateX(-120%);
    animation: contactHomeBtnShine 2.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactHomeBtnShine {
    0%, 45% { transform: translateX(-120%); opacity: 0; }
    55% { opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

.contact-home-sidebar {
    position: relative;
    z-index: 1;
}

.contact-home-strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
}

.contact-home-hours-row {
    margin-bottom: 0 !important;
}

@media (max-width: 991px) {
    .contact-home-form-col {
        margin-bottom: 22px;
        padding: 26px 18px;
    }
    .contact-home-section {
        padding: 34px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-home-section::before,
    .contact-home-submit-btn::after {
        animation: none !important;
    }
}

.contact-info-sidebar h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.contact-info-sidebar > .lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-item-icon i {
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-item-text label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact-item-text p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.working-hours h6 {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}

.working-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.87rem;
    margin: 0 0 6px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #e8efff 0%, #ffe4e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 58, 138, 0.08);
    position: relative;
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content .map-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.map-placeholder-content .map-icon-wrap i {
    font-size: 2rem;
    color: white;
}

.map-placeholder-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.map-placeholder-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Success Message */
#formSuccess {
    display: none;
    background: rgba(25, 135, 84, 0.08);
    border: 1px solid rgba(25, 135, 84, 0.2);
    border-radius: 12px;
    color: #166534;
    padding: 18px 24px;
    font-size: 0.92rem;
    font-weight: 500;
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(30, 58, 138, 0.45);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--border-radius-sm);
        margin-top: 5px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(30, 58, 138, 0.06);
    }

    .hero-stats {
        gap: 20px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .about-experience-badge {
        left: 0;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-section {
        padding-top: 80px;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .float-card {
        display: none;
    }

    .section-subtitle {
        margin-bottom: 36px;
    }

    .contact-info-sidebar {
        margin-top: 28px;
        padding: 36px 28px;
    }

    .footer {
        padding: 48px 0 0;
    }

    .stat-box::after {
        display: none;
    }

    .testimonial-inner {
        padding: 32px 24px;
    }

    .testimonial-carousel .testimonial-inner {
        padding: 28px 20px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .about-img-wrapper {
        padding-bottom: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .hero-actions .btn-gradient,
    .hero-actions .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .about-hero-section {
        padding: 110px 0 72px;
        min-height: auto;
    }

    .about-hero-subheading {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .about-stat-card {
        padding: 16px 12px;
    }

    .about-stat-number {
        font-size: 1.15rem;
    }

    .founder-quote {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover tilt on cards */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
}

/* Highlight box */
.highlight-box {
    background: rgba(30, 58, 138, 0.04);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
}
