:root {
    --accent-color: #e06d20;
    --accent-hover: #f17827;
    --bg-main: #f8fafc;
    /* Refreshed Light Background */
    --bg-card: #ffffff;
    /* Crisp White Cards */
    --border-color: #e2e8f0;
    /* Soft Gray Border */
    --fsi-navy: #0e2340;
    --fsi-navy-2: #14315a;
    --fsi-orange: #26489f;
    --fsi-orange-dark: #042068;
    --fsi-white: #ffffff;
    --fsi-cream: #fef6f0;
    --fsi-gray: #64748b;
    --fsi-line: #cbd5e1;
    --crimson: #8b1a2e;
    --crimson-d: #6b1223;
    --crimson-l: #a82238;
    --navy: #162740;
    --navy-l: #1f3a5f;
    --gold: #c9a84c;
    --gold-l: #e8cc7a;
    --offwhite: #f1f5f9;
    --text-muted: #475569;
    --text-dark: #0f172a;
    /* Dark Text for High Contrast */
    --fsi-font-nav: "Poppins", sans-serif;
    --fsi-font-body: "Inter", sans-serif;
    --fsi-skew: -12deg;
    --wa-green: #25d366;
    --wa-dark-green: #075e54;
    --wa-teal: #128c7e;
    --wa-chat-bg: #e5ddd5;
    --fsi-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --blue-icon-bg: #0088cc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

.fs-7 {
    font-size: 0.75rem;
}


/* --- Top Bar --- */

.top-bar {
    background-color: #050607;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 0;
}

.top-bar-item {
    color: #a0a5ad;
}

.social-icon {
    color: #a0a5ad;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

/* --- Navbar --- */
.navbar {
    background-color: #fff;
    backdrop-filter: blur(10px);
    padding: 0px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.mobile-logo-img {
    height: 32px;
    width: auto;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #323232 !important;
    padding: 35px 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* --- Buttons --- */
.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 109, 32, 0.3);
    text-decoration: none;
    padding: 10px 20px;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(224, 109, 32, 0.5);
    transform: translateY(-1px);
}

.dropdown-toggle::after {
    display: none !important;
}

/* --- Megamenu Styles --- */
.dropdown-hover {
    position: static !important;
}

.megamenu {
    top: 100%;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color) !important;
    border-bottom: 2px solid var(--border-color) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.megamenu-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.3;
}

.megamenu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.megamenu-link {
    font-size: 0.825rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.megamenu-icon {
    font-size: 0.75rem;
    color: #0f172a;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.megamenu-link:hover {
    color: var(--accent-color);
}

.megamenu-link:hover .megamenu-icon {
    color: var(--accent-color);
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .dropdown-hover:hover > .megamenu {
        display: block;
        animation: fadeIn 0.25s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Custom Mobile Drawer (Fail-Proof Vanilla CSS/JS) --- */

.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.custom-mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.custom-mobile-drawer.open {
    right: 0;
}

.mobile-nav-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    padding: 0.9rem 0;
}

.mobile-subnav-link {
    color: #8a9099;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.mobile-subnav-link:hover {
    color: var(--accent-color);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
}

.toggle-btn i {
    transition: transform 0.3s ease;
}

.toggle-btn.active i {
    transform: rotate(45deg);
}

.mobile-collapse {
    display: none;
}

.mobile-collapse.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 


/* --- About Section Base Styles --- */

.about-section {
    /* background:linear-gradient(90deg, #000000cc, #000000e0), url(https://static.vecteezy.com/system/resources/previews/025/457/739/non_2x/tv-show-led-screen-stage-and-lcd-wall-background-free-vector.jpg) center / cover no-repeat; */
    background: #ffebde;
    color: #d1d5db;
    overflow: hidden;
}

.text-accent {
    color: var(--accent-color, #e06d20) !important;
}
.about-section p{
    color:rgb(33 37 41);
}
.extra-p{
    margin-left: 218px;
}

.fw-extrabold {
    font-weight: 800;
}

.sub-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.main-title {
    font-size: clamp(1.8rem, 3.2vw, 2.19rem);
    line-height: 1.2;
    color: #000;
    letter-spacing: 0.5px;
}

.section-desc {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* --- Professional 3-Image Grid Layout --- */

.about-grid-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 16px;
    height: 520px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color, #1f242b);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}


/* Precise Image Grid Positions */

.grid-main {
    grid-column: 1 / 8;
    grid-row: 1 / 13;
}

.grid-sub-1 {
    grid-column: 8 / 13;
    grid-row: 1 / 7;
}

.grid-sub-2 {
    grid-column: 8 / 13;
    grid-row: 7 / 13;
}


/* Floating Glassmorphism Badge Positioned Over Grid */

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: 20px;
    z-index: 3;
    background: rgba(18, 21, 25, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 109, 32, 0.4);
    padding: 0.85rem 1.4rem;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.badge-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    line-height: 1.2;
    color: #e5e7eb;
}


/* Custom Nav Pills Tabs */

.custom-tabs .nav-link {
    background: var(--bg-card, #121519);
    color: #fff;
    border: 1px solid var(--border-color, #1f242b);
    border-radius: 4px;
    font-size: 0.8rem;
    padding: 0.6rem 1.4rem !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    color: #ffffff;
    border-color: var(--accent-color, #e06d20);
}

.custom-tabs .nav-link.active {
    background-color: var(--accent-color, #e06d20) !important;
    color: #ffffff !important;
    border-color: var(--accent-color, #e06d20) !important;
}

.custom-tab-content {
    background: var(--bg-card, #121519);
    border: 1px solid var(--border-color, #1f242b);
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-item {
    font-size: 0.875rem;
    color: #000000;
}


/* --- Reveal on Scroll Animations --- */

.reveal-element {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-element.active {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive Grid Adjustments */

@media (max-width: 768px) {
    .about-grid-container {
        height: 400px;
        gap: 10px;
    }

    .experience-badge {
        bottom: 12px;
        left: 12px;
        padding: 0.6rem 1rem;
    }

    .badge-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-grid-container {
        height: 320px;
    }
}

/* --- Features Section Base --- */
.features-section {
    background-color: #fff;
    color: #d1d5db;
    position: relative;
    overflow: hidden;
}

.max-w-700 {
    max-width: 700px;
}

/* --- Feature Card Container --- */
.feature-card {
    position: relative;
    background: var(--bg-card, #121519);
    /* border: 1px solid var(--border-color, #1f242b); */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    cursor: pointer;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    /* padding: 25px; */
}

/* --- Animated Glowing Hover Border & Background --- */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(224, 109, 32, 0.15),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(224, 109, 32, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(224, 109, 32, 0.2);
}

.feature-card:hover .card-glow {
    opacity: 1;
}

/* --- Icon Box Animation --- */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(224, 109, 32, 0.1);
    border: 1px solid rgba(224, 109, 32, 0.3);
    color: var(--accent-color, #e06d20);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    background: var(--accent-color, #e06d20);
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 0 15px rgba(224, 109, 32, 0.5);
}

/* --- Card Typography & Links --- */
.card-title {
    color: #000;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.feature-card:hover .card-title {
    color: var(--accent-color, #e06d20);
}

.card-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-footer-link {
    font-size: 0.78rem;
    color: #9ca3af;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.card-footer-link i {
    transition: transform 0.3s ease;
}

.feature-card:hover .card-footer-link {
    color: var(--accent-color, #e06d20);
}

.feature-card:hover .card-footer-link i {
    transform: translateX(6px);
}

/* --- Scroll Reveal Animations --- */
.reveal-element {
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay staggered triggers */
.delay-1 {
    transition-delay: 0.5s;
}

.delay-2 {
    transition-delay: 0.7s;
}

.delay-3 {
    transition-delay: 0.9s;
}


/* --- Products Section Base --- */
.products-section {
    background-color: #fff;
    color: #d1d5db;
}

/* --- Category Filter Buttons --- */
.filter-btn {
    background: var(--bg-card, #121519);
    color: #9ca3af;
    border: 1px solid var(--border-color, #1f242b);
    padding: 0.6rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.filter-btn:hover {
    color: #e06d20;
    border-color: var(--accent-color, #e06d20);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--accent-color, #e06d20);
    color: #ffffff;
    border-color: var(--accent-color, #e06d20);
    box-shadow: 0 4px 15px rgba(224, 109, 32, 0.35);
}

/* --- Product Card Container & Image Hover Effects --- */
.product-card {
    background: var(--bg-card, #121519);
    border: 1px solid var(--border-color, #1f242b);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 109, 32, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.product-img-wrapper {
    position: relative;
    /* height: 220px; */
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(10, 12, 14, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent-color, #e06d20);
    border: 1px solid rgba(224, 109, 32, 0.3);
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
    border-radius: 2px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 14, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* --- Card Body & Badges --- */
.product-title {
    color: #e06d20;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--accent-color, #e06d20);
}

.product-desc {
    font-size: 0.85rem;
    color: #000;
    line-height: 1.5;
}

.spec-badge {
    background: #000000e0;
    border: 1px solid var(--border-color, #1f242b);
    color: #d1d5db;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.product-price {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.details-link {
    color: #9ca3af;
    font-size: 0.75rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.details-link i {
    transition: transform 0.3s ease;
}

.product-card:hover .details-link {
    color: var(--accent-color, #e06d20);
}

.product-card:hover .details-link i {
    transform: translateX(4px);
}

/* Tab Filtering Smooth Animations */
.product-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.achievements-section {
    position: relative;
    background-color: var(--bg-main);
    color: var(--fsi-white);
    font-family: var(--fsi-font-body);
    padding: 80px 20px;
    overflow: hidden;
    text-align: center;
}

/* Background image handling */
.achievements-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your image URL */
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.25;
    z-index: 1;
}

.achievements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(0 0 0 / 57%) 0%, #000000d9 90%);
    z-index: 2;
}

.achievements-container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
}

.achievements-header h2 {
    font-family: var(--fsi-font-nav);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fsi-white);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-row {
    margin-bottom: 40px;
}

.stat-card {
    flex: 1 1 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: var(--fsi-white);
    margin-bottom: 12px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--fsi-font-nav);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--fsi-white);
    line-height: 1.1;
}

.stat-line {
    width: 80%;
    height: 1px;
    background-color: var(--fsi-line);
    opacity: 0.3;
    margin: 12px 0;
}

.stat-desc {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    max-width: 220px;
}

.achievements-footer h3 {
    font-family: var(--fsi-font-nav);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fsi-white);
    margin-top: 50px;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .achievements-header h2 {
        font-size: 1.8rem;
    }

    .achievements-footer h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stats-grid {
        gap: 30px;
    }
}

.why-us-section {
    position: relative;
    background-color: #fff;
    color: var(--fsi-white);
    font-family: var(--fsi-font-body);
    padding: 100px 20px;
    overflow: hidden;
}

/* Ambient Background Lights */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-1 {
    width: 400px;
    height: 400px;
    background: #e06d20;
    top: 10%;
    left: -100px;
    opacity: 0.4;
}

.ambient-glow-2 {
    width: 350px;
    height: 350px;
    background: #e06d20;
    bottom: 5%;
    right: -50px;
    opacity: 0.15;
}

.why-us-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.badge-line {
    width: 24px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-badge {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.75rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    /* max-width: 580px; */
    margin: 0 auto;
}

/* Layout Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 32px;
    align-items: center;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Feature Cards */
.feature-card {
    position: relative;
    background-color: #fff4ec;
    /* border: 0.1px solid var(--border-color); */
    border-radius: 8px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-l);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-title-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.left-col .feature-title-group {
    justify-content: space-between;
}

.right-col .feature-title-group {
    justify-content: flex-start;
}

.feature-title-group h3 {
    font-family: var(--fsi-font-nav);
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: var(--navy);
    border: 1px solid var(--navy-l);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--fsi-white);
    border-color: var(--accent-hover);
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.left-col .feature-card {
    text-align: right;
}

.right-col .feature-card {
    text-align: left;
}

/* Center Showcase Stage */
.showcase-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.display-stage {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    padding: 20px 0;
}

.screen-frame {
    position: relative;
    background: #000;
    border: 3px solid #1a1e24;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(224, 109, 32, 0.1);
    transition: transform 0.5s ease;
}

.left-frame {
    transform: perspective(1000px) rotateY(12deg);
}

.right-frame {
    transform: perspective(1000px) rotateY(-12deg);
}

.display-stage:hover .left-frame {
    transform: perspective(1000px) rotateY(4deg) translateY(-6px);
}

.display-stage:hover .right-frame {
    transform: perspective(1000px) rotateY(-4deg) translateY(-6px);
}

.screen-glass {
    position: relative;
    width: 130px;
    height: 320px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #050505;
}

.screen-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stand-base {
    height: 12px;
    width: 80%;
    margin: 4px auto 0 auto;
    background: linear-gradient(180deg, #222730 0%, #0d0f12 100%);
    border-radius: 2px 2px 4px 4px;
}

/* Floating HUD Badge */
.floating-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(18, 21, 25, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--navy-l);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.8rem;
    color: var(--fsi-white);
}

.badge-text small {
    font-size: 0.68rem;
    color: var(--text-muted);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .showcase-col {
        order: -1;
    }

    .left-col .feature-card,
    .right-col .feature-card {
        text-align: left;
    }

    .left-col .feature-title-group {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .screen-glass {
        width: 140px;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .screen-glass {
        width: 110px;
        height: 240px;
    }
}

.testimonial-section {
    background-color: #ffebde;
    font-family: var(--fsi-font-body);
    position: relative;
    overflow: hidden;
}

/* Background LED Grid Pattern */
.bg-led-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(224, 109, 32, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    opacity: 0.6;
}

/* Ambient Glowing Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: #e06d20;
    top: 5%;
    left: -80px;
    opacity: 0.5;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: 0%;
    right: -60px;
    opacity: 0.15;
}

/* Section Title Elements */
.section-tag-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tag-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.section-tag-wrapper .tag-line:last-child {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.section-tag-text {
    font-family: var(--fsi-font-nav);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-main-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-sub-title {
    color: var(--text-muted);
    font-size: 0.95rem;
    /* max-width: 500px; */
    margin: 0 auto;
}

/* Carousel Inner Padding for Pop-out Effect */
.testimonial-carousel .owl-stage-outer {
    padding: 40px 0;
}

/* Base Testimonial Card */
.testimonial-card {
    background-color: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    opacity: 0.5;
    transform: scale(0.88);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.testimonial-card p{
    color:#fff;
}
.card-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Center Active Card Pop-Up Styling */
.testimonial-carousel .owl-item.center .testimonial-card {
    opacity: 1;
    transform: scale(1.08);
    border-color: var(--fsi-navy-2);
    /* box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(224, 109, 32, 0.25); */
    background: #000;
}

.testimonial-carousel .owl-item.center .card-glow-bar {
    opacity: 1;
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--fsi-white);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rating-stars {
    color: var(--gold-l);
    font-size: 0.85rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--fsi-navy-2);
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fsi-white);
    font-size: 1.1rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--fsi-font-nav);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--fsi-white);
}

.client-role {
    font-size: 0.78rem;
    color: #e0e0e0;
}

/* Owl Dots Navigation */
.testimonial-carousel .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--border-color) !important;
    display: inline-block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active span {
    width: 28px;
    background: var(--accent-color) !important;
}

@media (max-width: 768px) {
    .section-main-title {
        font-size: 1.8rem;
    }
}


/* FAQ Outer Wrapper & Background FX */
.faq-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.faq-bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e06d20 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Section Subtitle & Title (No Heading Tags) */
.faq-title-badge {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-main-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-description {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 30px;
}

/* Left Helper Contact Card */
.faq-contact-card {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.faq-contact-btn {
    background-color: var(--accent-color);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.faq-contact-btn:hover {
    background-color: var(--accent-hover);
    color: var(--fsi-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 109, 32, 0.3);
}

/* Accordion Item Styling */
.faq-accordion {
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(224, 109, 32, 0.4);
    transform: translateX(4px);
}

/* Accordion Header/Button Reset */
.faq-button {
    background-color: #000;
    color: var(--fsi-white) !important;
    font-family: var(--fsi-font-nav);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 22px 24px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-button-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(224, 109, 32, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s;
    flex-shrink: 0;
}

/* Active Accordion State */
.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(224, 109, 32, 0.15);
    background: #000;
}

.faq-item.active .faq-icon-box {
    background-color: var(--accent-color);
    color: var(--fsi-white);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background-color: var(--accent-color);
    color: var(--fsi-white);
}

/* Accordion Body Smooth Transition */
.faq-body-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-body-wrapper {
    padding: 0 24px 22px 78px;
    /* Indent to align cleanly with icon */
}

.faq-text {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .faq-item.active .faq-body-wrapper {
        padding: 0 24px 20px 24px;
    }

    .faq-main-title {
        font-size: 2rem;
    }
}

/* Outer Section Wrapper */
.wallx-cta-section {
    position: relative;
    padding: 100px 0;
    background-color: #2a1100;
    overflow: hidden;
}

/* Ambient Lighting Background Effects */
.cta-bg-glow {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--fsi-navy-2) 0%, transparent 75%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(224, 109, 32, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
    pointer-events: none;
}

/* Left Contact Form Card */
.cta-form-card {
    position: relative;
    z-index: 2;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #484848;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-md);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cta-form-card:hover {
    border-color: rgba(224, 109, 32, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(224, 109, 32, 0.1);
}

.section-badge {
    font-family: var(--fsi-font-nav);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-badge i {
    font-size: 0.75rem;
}

.cta-heading {
    font-family: var(--fsi-font-nav);
    font-size: 2.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 12px;
}

.cta-heading span {
    color: var(--accent-color);
}

.location-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-info i {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* Contact Detail Badges */
.contact-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-chip {
    background: #000;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--offwhite);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-chip i {
    color: var(--accent-color);
}

.contact-chip:hover {
    border-color: var(--accent-color);
    color: var(--fsi-white);
    transform: translateY(-2px);
}



.form-label-custom {
    font-family: var(--fsi-font-nav);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    background: #fff1e7;
    border: 1px solid #484848;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--fsi-font-body);
    font-size: 0.92rem;
    color: #101010;
    outline: none;
    transition: all 0.3s ease;
}

.form-control-custom::placeholder {
    color: var(--fsi-gray);
}

.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(224, 109, 32, 0.2);
    background: #0f1217;
    color: #adadad;
}

.form-select-custom option {
    background: #101010;
    color: var(--fsi-white);
}

textarea.form-control-custom {
    resize: none;
    height: 110px;
}

/* Animated Action Button */
.btn-wallx-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    padding: 16px 28px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(224, 109, 32, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-wallx-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(224, 109, 32, 0.45);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #f3863a 100%);
}

.btn-wallx-submit i {
    transition: transform 0.3s ease;
}

.btn-wallx-submit:hover i {
    transform: translateX(5px);
}

/* Right Side Interactive Map & Experience Display */
.map-preview-container {
    position: relative;
    height: 100%;
    min-height: 580px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border: 0;
    /* filter: grayscale(100%) invert(92%) contrast(83%); */
    transition: filter 0.5s ease;
}



/* Floating Badge Overlay on Map */
.map-floating-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(18, 21, 25, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    padding: 16px 20px;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.map-badge-title {
    font-family: var(--fsi-font-nav);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fsi-white);
}

.map-badge-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .cta-form-card {
        padding: 30px 24px;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .map-preview-container {
        min-height: 400px;
        margin-top: 30px;
    }
}

/* Footer Main Container */
.wallx-footer {
    position: relative;
    background-color: #06080a;
    color: var(--fsi-white);
    padding-top: 0;
    overflow: hidden;
}


/* Laser Accent Line Below Pattern */
.footer-laser-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    box-shadow: 0 0 12px var(--accent-color);
    position: relative;
    z-index: 2;
}

/* Ambient Background Lighting */
.footer-glow-left {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fsi-navy-2) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.footer-glow-right {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(224, 109, 32, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Footer Content Grid */
.footer-main-content {
    position: relative;
    z-index: 2;
    padding: 70px 0 50px 0;
}

/* Section Column Titles (No Heading Tags) */
.footer-col-title {
    font-family: var(--fsi-font-nav);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--fsi-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Brand Column Styling */
.wallx-footer-brand {
    font-family: var(--fsi-font-nav);
    font-size: 2rem;
    font-weight: 800;
    color: var(--fsi-white);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    margin-bottom: 16px;
}

.wallx-footer-brand span {
    color: var(--accent-color);
}

.footer-brand-desc {
    color: #d7d7d7;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social Icons Row */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent-color);
    color: var(--fsi-white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(224, 109, 32, 0.3);
}

/* Link Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #d7d7d7;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.65rem;
    color: var(--accent-color);
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-link:hover {
    color: var(--fsi-white);
    transform: translateX(4px);
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Contact Details Block */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(224, 109, 32, 0.1);
    border: 1px solid rgba(224, 109, 32, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.footer-contact-label {
    font-family: var(--fsi-font-nav);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.footer-contact-value {
    color: var(--offwhite);
    font-size: 0.88rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.footer-contact-value:hover {
    color: var(--accent-color);
}

/* Bottom Copyright Strip */
.footer-bottom-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    background-color: #000;
    padding: 20px 0;
}

.footer-bottom-text {
    color: var(--fsi-gray);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: var(--fsi-gray);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-color);
}

/* Floating Scroll Top Button */
.btn-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-color);
    color: var(--fsi-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(224, 109, 32, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .footer-main-content {
        padding: 50px 0 30px 0;
    }
}



/* Floating Widget Trigger Button */
.wa-widget-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: none;
}

.wa-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

/* Unread Badge */
.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid var(--bg-main); */
}

/* Chatbot Window Wrapper */
.wa-chat-box {
    position: fixed;
    bottom: 96px;
    left: 24px;
    width: 350px;
    max-width: calc(100vw - 48px);
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.wa-header {
    background-color: var(--wa-dark-green);
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--wa-dark-green);
    font-size: 18px;
}

.wa-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: var(--wa-green);
    border-radius: 50%;
    border: 2px solid var(--wa-dark-green);
}

.wa-user-info {
    flex: 1;
}

.wa-user-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.wa-user-status {
    font-size: 12px;
    opacity: 0.85;
}

.wa-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.wa-close-btn:hover {
    opacity: 1;
}

/* Chat Body */
.wa-body {
    background-color: var(--wa-chat-bg);
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
    background-size: 12px 12px;
    padding: 20px 16px;
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Message Bubbles */
.wa-bubble {
    background-color: #ffffff;
    padding: 10px 14px;
    border-radius: 0px 12px 12px 12px;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    position: relative;
}

.wa-bubble p {
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.45;
}

.wa-time {
    font-size: 10px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
    display: block;
}

/* Footer Action Area */
.wa-footer {
    background-color: #f0f2f5;
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-start-btn {
    width: 100%;
    background-color: var(--wa-green);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wa-start-btn:hover {
    background-color: var(--wa-teal);
    transform: translateY(-1px);
}

.product-details-page {
    padding: 50px 0;
    background: #ffebde;
}

/* Product Section Containers */
.pdp-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--fsi-shadow);
    margin-bottom: 30px;
}

/* Image Gallery */
.product-gallery-frame {
    background-color: var(--offwhite);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    height: 100%;
}

.product-gallery-frame img {
    max-width: 100%;
    /* max-height: 360px; */
    object-fit: cover;
    border-radius: 6px;
}

/* Product Titles & Meta */
.pdp-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 8px;
}

.pdp-price-availability {
    color: var(--accent-color);
    font-family: var(--fsi-font-nav);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pdp-short-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.pdp-short-desc a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.pdp-short-desc a:hover {
    text-decoration: underline;
}

.pdp-meta-list {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--offwhite);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.pdp-meta-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pdp-meta-item strong {
    color: var(--text-dark);
}

/* Primary Action CTA */
.btn-contact-action {
    background-color: var(--accent-color);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 38px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(224, 109, 32, 0.25);
}

.btn-contact-action:hover {
    background-color: var(--accent-hover);
    color: var(--fsi-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(224, 109, 32, 0.35);
}

/* Tab Switchers */
.pdp-tabs-nav {
    display: flex;
    gap: 24px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 24px;
}

.pdp-tab-btn {
    background: none;
    border: none;
    color: var(--fsi-gray);
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pdp-tab-btn:hover {
    color: var(--text-dark);
}

.pdp-tab-btn.active {
    color: var(--accent-color);
}

.pdp-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ===================================================================
       DYNAMIC CONTENT AREA & ULTRA-RESPONSIVE TABLE / UL LI STYLING
       =================================================================== */
.dynamic-content-area {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.dynamic-content-area p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dynamic-content-area strong {
    color: var(--text-dark);
}

/* DYNAMIC UL / LI LISTS */
.dynamic-content-area ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.dynamic-content-area ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.dynamic-content-area ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 0.88rem;
}

.dynamic-content-area ul li strong {
    color: var(--text-dark);
}

/* DYNAMIC TABLE WRAPPER (Horizontal Scroll Support) */
.dynamic-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-card);
}

/* DYNAMIC TABLE STYLING */
.dynamic-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: var(--bg-card);
}

.dynamic-content-area table th,
.dynamic-content-area table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    text-align: left;
}

.dynamic-content-area table th {
    background-color: var(--fsi-navy);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
}

.dynamic-content-area table tr:last-child td {
    border-bottom: none;
}

.dynamic-content-area table td:first-child {
    color: var(--text-dark);
    font-weight: 600;
    width: 35%;
    background-color: var(--offwhite);
}

.dynamic-content-area table td:last-child {
    color: var(--text-muted);
}

.dynamic-content-area table tr:hover td {
    background-color: #f1f5f9;
}

/* RESPONSIVE TABLE TRANSFORMATION FOR MOBILE (CARD STACK) */
@media (max-width: 768px) {
    .pdp-container {
        padding: 20px;
    }

    .pdp-title {
        font-size: 1.75rem;
    }

    /* Stack Table Layout into Mobile Cards */
    .dynamic-table-wrapper {
        border: none;
        overflow-x: visible;
    }

    .dynamic-content-area table,
    .dynamic-content-area thead,
    .dynamic-content-area tbody,
    .dynamic-content-area th,
    .dynamic-content-area td,
    .dynamic-content-area tr {
        display: block;
    }

    /* Hide Table Header visually on mobile */
    .dynamic-content-area table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .dynamic-content-area table tr {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 16px;
        padding: 8px;
        box-shadow: var(--shadow-sm);
    }

    .dynamic-content-area table td:first-child {
        width: 100%;
        background-color: transparent;
        color: var(--accent-color);
        font-size: 0.95rem;
        padding-bottom: 4px;
        border-bottom: 1px dashed var(--border-color);
    }

    .dynamic-content-area table td:last-child {
        width: 100%;
        padding-top: 8px;
        border-bottom: none;
    }
}

/* Hero Banner & Breadcrumb Styles using Project Tokens */
.pdp-hero-banner {
    background: linear-gradient(180deg, var(--fsi-cream) 0%, rgba(254, 246, 240, 0.4) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 75px 20px;
    /* margin-bottom: 35px; */
}

.pdp-hero-banner .hero-page-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Breadcrumb Structure */
.pdp-hero-banner .breadcrumb {
    padding: 0;
    align-items: center;
    background: transparent;
}

.pdp-hero-banner .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--fsi-font-body);
    display: flex;
    align-items: center;
}

/* Breadcrumb Links */
.pdp-hero-banner .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pdp-hero-banner .breadcrumb-item a:hover {
    color: var(--accent-color);
}

/* Custom Separator Arrow */
.pdp-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    /* FontAwesome Angle Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--fsi-gray);
    font-size: 0.75rem;
    padding: 0 10px;
}

/* Pill-Style Badge for Current Active Page */
.pdp-hero-banner .breadcrumb-badge {
    background-color: #e06d20;
    color: var(--fsi-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--fsi-font-nav);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(139, 26, 46, 0.25);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .pdp-hero-banner {
        padding: 32px 15px;
    }

    .pdp-hero-banner .hero-page-title {
        font-size: 1.65rem;
    }

    .pdp-hero-banner .breadcrumb-item {
        font-size: 0.8rem;
    }

    .pdp-hero-banner .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 6px;
    }
}



/* Section Frame */
.about-section-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* ===================================================================
       SINGLE PARENT CLASS FOR ALL DYNAMIC CKEDITOR CONTENT
       =================================================================== */

/* Clearfix to encapsulate floated content */
.ck-dynamic-content::after {
    content: "";
    display: table;
    clear: both;
}

/* FLOAT-BASED IMAGE MEDIA WRAPPER */
.ck-dynamic-content .float-image-container {
    float: right;
    width: 42%;
    margin-left: 30px;
    margin-bottom: 24px;
    position: relative;
}

.ck-dynamic-content .float-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: block;
}

/* Floating Image Badge Accent */
.ck-dynamic-content .float-image-container .float-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: var(--fsi-navy);
    color: var(--fsi-white);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--fsi-shadow);
}

.ck-dynamic-content .float-image-container .float-badge i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.ck-dynamic-content .float-image-container .float-badge span {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

/* NON-HEADING SUBTITLE & TITLE CLASSES */
.ck-dynamic-content .editor-subtitle {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ck-dynamic-content .editor-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

/* PARAGRAPHS & LEAD TEXT */
.ck-dynamic-content p.lead-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fsi-navy);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ck-dynamic-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.ck-dynamic-content strong {
    color: var(--text-dark);
}

/* DYNAMIC UNORDERED LISTS (UL / LI) */
.ck-dynamic-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 24px;
}

.ck-dynamic-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* FontAwesome Icon for dynamic lists */
.ck-dynamic-content ul li::before {
    content: "\f00c";
    /* FontAwesome Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.ck-dynamic-content ul li strong {
    color: var(--text-dark);
}

/* DYNAMIC TABLES */
.ck-dynamic-content .table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.ck-dynamic-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: var(--bg-card);
}

.ck-dynamic-content table th,
.ck-dynamic-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    text-align: left;
}

.ck-dynamic-content table th {
    background-color: var(--fsi-navy);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ck-dynamic-content table td {
    color: var(--text-muted);
}

.ck-dynamic-content table td:first-child {
    color: var(--text-dark);
    font-weight: 600;
    background-color: var(--offwhite);
}

.ck-dynamic-content table tr:hover td {
    background-color: var(--fsi-cream);
}

/* DYNAMIC BLOCKQUOTE */
.ck-dynamic-content blockquote {
    border-left: 4px solid var(--accent-color);
    background-color: var(--offwhite);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-dark);
}

/* RESPONSIVE LAYOUT adjustments */
@media (max-width: 991px) {
    .ck-dynamic-content .float-image-container {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 28px;
    }

    .ck-dynamic-content .float-image-container .float-badge {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 576px) {
    .about-section-card {
        padding: 24px;
    }

    .ck-dynamic-content .editor-title {
        font-size: 1.6rem;
    }
}

/* MAIN SITEMAP SECTION CONTAINER */
.sitemap-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP MAIN SITEMAP TITLE */
.sitemap-header-title {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 2.8rem;
    color: #e06d20;
    text-align: center;
    margin-bottom: 40px;
}

/* CATEGORY SUBTITLES (e.g., Products) */
.sitemap-category-title {
    font-family: var(--fsi-font-nav);
    font-size: 1.5rem;
    font-weight: 700;
    color: #e06d20;
    margin-bottom: 12px;
    display: inline-block;
}

.sitemap-divider {
    width: 100%;
    height: 2px;
    background-color: #e06d20;
    margin-bottom: 30px;
    border: none;
    opacity: 1;
}

/* SITEMAP BUTTON CARD LINKS */
.sitemap-card-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 20px;
    background-color: var(--bg-card);
    border: 1.5px solid #e06d20;
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--fsi-font-nav);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 58px;
    box-shadow: var(--shadow-sm);
}

/* Hover State Animation */
.sitemap-card-link:hover {
    background-color: #e06d20;
    color: var(--fsi-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(139, 26, 46, 0.25);
}

.sitemap-card-link i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: #e06d20;
    transition: color 0.3s ease;
}

.sitemap-card-link:hover i {
    color: var(--fsi-white);
}

/* SECTION SPACING */
.sitemap-group {
    margin-bottom: 45px;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 768px) {
    .sitemap-wrapper {
        padding: 30px 20px;
    }

    .sitemap-header-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .sitemap-category-title {
        font-size: 1.3rem;
    }

    .sitemap-card-link {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 50px;
    }
}

/* SECTION CONTAINER WRAPPER */
/* .projects-section-container {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 48px;
      box-shadow: var(--shadow-md);
    } */

/* SECTION TITLE (No Heading Tags) */
.projects-subtitle {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.projects-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.projects-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 680px;
    margin-bottom: 36px;
}

/* PROJECT CARD STYLING */
.project-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fsi-shadow);
    border-color: var(--fsi-line);
}

/* CARD THUMBNAIL & BADGE */
.project-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--offwhite);
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.06);
}

.project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--fsi-navy);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

/* CARD BODY & CONTENT */
.project-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-meta {
    font-size: 0.82rem;
    color: var(--fsi-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-meta i {
    color: var(--accent-color);
}

.project-card-title {
    font-family: var(--fsi-font-nav);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.project-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ACTION LINK BUTTON */
.project-link {
    color: var(--accent-color);
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.project-link:hover {
    color: var(--accent-hover);
    transform: translateX(3px);
}

/* SECTION VIEW ALL CTA BUTTON */
.btn-view-all-projects {
    background-color: var(--accent-color);
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(224, 109, 32, 0.25);
}

.btn-view-all-projects:hover {
    background-color: var(--accent-hover);
    color: var(--fsi-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(224, 109, 32, 0.35);
}

/* RESPONSIVE LAYOUT ADJUSTMENTS */
@media (max-width: 768px) {
    .projects-section-container {
        padding: 28px 20px;
    }

    .projects-title {
        font-size: 1.7rem;
    }

    .project-thumb {
        height: 180px;
    }
}

/* SECTION HEADER DECORATION */
.app-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.app-header-tag .arrow-left {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid var(--fsi-orange);
}

.app-header-tag .arrow-right {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--fsi-orange);
}

.app-title {
    font-family: var(--fsi-font-nav);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* APPLICATION CARD CONTAINER */
.app-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 72px;
}

.app-card:hover {
    border-color: var(--fsi-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* BLUE ICON BOX */
.app-icon-box {
    background-color: var(--fsi-orange);
    color: var(--fsi-white);
    width: 52px;
    height: 52px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.app-card:hover .app-icon-box {
    background-color: var(--fsi-orange-dark);
}

/* CARD TITLE */
.app-card-label {
    font-family: var(--fsi-font-nav);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    padding-right: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .app-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .app-card {
        padding: 6px;
        gap: 12px;
        min-height: 64px;
    }

    .app-icon-box {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .app-card-label {
        font-size: 0.88rem;
    }
}

/* SECTION BACKGROUND WITH PROVIDED OVERLAY IMAGE */
.pan-india-section {
    background: linear-gradient(90deg, rgba(14, 35, 64, 0.94) 0%, rgba(14, 35, 64, 0.8) 50%, rgba(14, 35, 64, 0.4) 100%),
        url('https://assets.weforum.org/article/image/wLQSqMLCi6Fp5u5V75aIkuQweZFT0bU4-9Nq7yRFgY4.jpg') center/cover no-repeat;
    padding: 70px 0;
    position: relative;
}

/* SUBTITLE TAG WITH ARROWS */
.presence-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.presence-tag .arrow-left {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 9px solid var(--accent-color);
}

.presence-tag .arrow-right {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid var(--accent-color);
}

.presence-title {
    font-family: var(--fsi-font-nav);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--fsi-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.presence-quote {
    font-family: var(--fsi-font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--fsi-line);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 35px;
}

/* STATS ROW */
.stat-number {
    font-family: var(--fsi-font-nav);
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--fsi-line);
    font-weight: 500;
}

/* MAP CONTAINER (RIGHT ALIGNED MATCHING REFERENCE) */
.india-map-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.india-map-img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

/* CAROUSEL SECTION HEADERS */
.carousel-section-header {
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-l);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CAROUSEL CARD - STATES */
.state-card {
    background: rgba(14, 35, 64, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}

.state-card:hover {
    border-color: var(--accent-color);
    background: rgba(22, 39, 64, 0.9);
    /* transform: translateY(-3px); */
}

.state-icon-box {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.state-name {
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fsi-white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.state-count {
    font-size: 0.75rem;
    color: var(--fsi-line);
    font-weight: 500;
}

/* CAROUSEL PILL - CITIES (PHASE 2) */
.city-pill {
    background: rgba(14, 35, 64, 0.8);
    border: 1px solid rgba(203, 213, 225, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--fsi-white);
    font-family: var(--fsi-font-nav);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.city-pill i {
    color: var(--accent-color);
    font-size: 0.6rem;
}

.city-pill:hover {
    border-color: var(--accent-color);
    background: var(--navy-l);
}

/* OWL CAROUSEL TICKER OVERRIDES */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

.owl-carousel .owl-item {
    float: none;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 991px) {
    .presence-title {
        font-size: 2.3rem;
    }

    .india-map-wrapper {
        justify-content: center;
        margin-top: 30px;
    }

    .india-map-img {
        max-height: 400px;
    }
}


/* --- Left Main Content --- */
        .sub-tagline {
            color: var(--accent-color);
            font-family: var(--fsi-font-nav);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .main-page-title {
            font-family: var(--fsi-font-nav);
            font-weight: 800;
            font-size: 1.85rem;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.25;
        }

        .main-hero-img-box {
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .main-hero-img-box img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .description-text {
            color: #333333;
            font-size: 0.925rem;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .section-subheading {
            font-family: var(--fsi-font-nav);
            font-weight: 800;
            font-size: 1.5rem;
            color: #000000;
            margin-top: 30px;
            margin-bottom: 16px;
        }

        /* Features Cards Box */
        .feature-box-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .feature-box-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon-box {
            width: 44px;
            height: 44px;
            background-color: var(--blue-icon-bg);
            color: var(--fsi-white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .feature-box-title {
            font-family: var(--fsi-font-nav);
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            margin: 0;
        }

        /* --- Right Sidebar Styling --- */
        .sidebar-wrapper {
            background-color: #e2e8f0;
            border-radius: 6px;
            padding: 16px;
        }

        .sidebar-header {
            background-color: #007bb6;
            color: var(--fsi-white);
            font-family: var(--fsi-font-nav);
            font-weight: 700;
            font-size: 1.2rem;
            padding: 14px 20px;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            margin: -16px -16px 16px -16px;
        }

        .sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-item-link {
            background-color: var(--bg-card);
            border-radius: 4px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: #000000;
            font-weight: 700;
            font-size: 0.875rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }

        .sidebar-item-link .icon-chevron {
            color: var(--accent-color);
            font-size: 0.85rem;
            transition: transform 0.2s ease;
        }

        .sidebar-item-link:hover {
            background-color: #ffffff;
            color: var(--accent-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .sidebar-item-link:hover .icon-chevron {
            transform: translateX(3px);
        }

        .sidebar-item-link.active {
            border-left: 4px solid var(--accent-color);
        }
        
        
        
        
        
        .abt-section {
    background: var(--bg-main);
    padding: 100px 0;
  }

  .abt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: var(--fsi-cream);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
  }

  .abt-eyebrow i { font-size: 12px; }

  .abt-heading {
    font-family: var(--fsi-font-nav);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .abt-heading span { color: var(--accent-color); }

  .abt-lead {
    font-family: var(--fsi-font-body);
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
    letter-spacing: 0.2px;
    margin-bottom: 0;
  }

  .abt-stats-row {
    margin-top: 36px;
  }

  .abt-stat {
    padding-right: 20px;
  }

  .abt-stat .abt-stat-num {
    font-family: var(--fsi-font-nav);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--fsi-navy);
    margin-bottom: 2px;
  }

  .abt-stat .abt-stat-label {
    font-family: var(--fsi-font-body);
    font-size: 0.82rem;
    color: var(--fsi-gray);
    letter-spacing: 0.3px;
  }

  .abt-media {
    position: relative;
  }

  .abt-media-frame {
    border-radius: var(--abt-radius);
    overflow: hidden;
    box-shadow: var(--fsi-shadow);
    border: 1px solid var(--border-color);
  }

  .abt-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .abt-media-accent {
    position: absolute;
    inset: auto -18px -18px auto;
    width: 55%;
    height: 55%;
    background: var(--fsi-navy);
    border-radius: var(--abt-radius);
    z-index: -1;
  }

  .abt-media-badge {
    position: absolute;
    left: -24px;
    bottom: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
  }

  .abt-media-badge i {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
  }

  .abt-media-badge-text {
    font-family: var(--fsi-font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* Mission / Vision cards */
  .abt-mv-row {
    margin-top: 90px;
  }

  .abt-mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--abt-radius);
    padding: 40px 34px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }

  .abt-mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--fsi-line);
  }

  .abt-mv-icon {
    width: var(--abt-icon-size);
    height: var(--abt-icon-size);
    border-radius: 12px;
    background: var(--fsi-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .abt-mv-icon i {
    font-size: 22px;
    color: var(--accent-color);
  }

  .abt-mv-card.abt-mv-alt .abt-mv-icon {
    background: var(--offwhite);
  }

  .abt-mv-card.abt-mv-alt .abt-mv-icon i {
    color: var(--fsi-navy);
  }

  .abt-mv-title {
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .abt-mv-text {
    font-family: var(--fsi-font-body);
    font-size: 0.94rem;
    color: var(--fsi-gray);
    line-height: 1.75;
    letter-spacing: 0.2px;
  }

  /* Values strip */
  .abt-values-row {
    margin-top: 30px;
  }

  .abt-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 4px;
  }

  .abt-value i {
    color: var(--fsi-white);
    background: var(--accent-color);
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .abt-value-title {
    font-family: var(--fsi-font-nav);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .abt-value-text {
    font-family: var(--fsi-font-body);
    font-size: 0.85rem;
    color: var(--fsi-gray);
    line-height: 1.6;
  }

  /* Scroll reveal */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  [data-reveal].abt-in-view {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 991px) {
    .abt-mv-row { margin-top: 60px; }
    .abt-media-accent, .abt-media-badge { display: none; }
    .abt-heading { font-size: 2rem; }
  }