﻿/*==========================================================
                        01. CSS Variables (Dark & Light Theme)
                        ==========================================================*/

/*----------------------------------------------------------
                        Primary Theme Colors (Default Dark Theme)
                        ----------------------------------------------------------*/
:root {
    --primary: #072a5d;
    /*#0A192F*/
    /* Navy Blue */
    --accent: #1d57b3;
    /* Blue */
    --cyan-color: #00b4d8;
    /* Cyan */
    --bg-color: #ffffff;
    /* White background */
    --text-color: #0d1527;
    /* Dark Navy text */
    --navbar-bg: rgba(255, 255, 255, .85);
    --glass-bg: rgba(255, 255, 255, .75);
    --glass-border: rgba(10, 25, 47, .08);
    --card-bg: #F8FAFC;
    /* Light gray card background (Slate 50) */
    --secondary: #64748b;
    /* Slate 500 */
    --glass-blur: blur(16px);
    --transition: all .3s ease;
    --hero-overlay-1: rgba(10, 25, 47, .08);
    --hero-overlay-2: rgba(0, 180, 216, .06);
    --hero-card-bg: rgba(255, 255, 255, .85);
    --hero-card-border: rgba(0, 180, 216, .15);
    --hero-card-text: #0A192F;
    --hero-btn-outline-bg: rgba(0, 180, 216, .06);
    --hero-btn-outline-hover: rgba(0, 180, 216, .12);
    /* Input & Hub Specific Overrides */
    --input-bg: #FFFFFF;
    --input-border: rgba(10, 25, 47, 0.12);
    --tab-nav-bg: #F1F5F9;
    --hud-grid-bg: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
    --hud-grid-dots: rgba(0, 180, 216, 0.08);
    --border-radius: 1rem;
}

/*==========================================================
                        02. Reset & Global Styles
                        ==========================================================*/
/* Add this right below your :root variables in style.css */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

img,
video {
    max-width: 100%;
    height: auto;
}

footer img {
    max-width: 60%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: .35s;
}

a {
    text-decoration: none;
    color: inherit;
}



/*==========================================================
                        03. Typography & Gradients
                        ==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Dynamic Text Gradients */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--cyan-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#heroSlider .text-gradient {
    background: linear-gradient(90deg, var(--cyan-color), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #F3E5AB, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-logo {
    height: 41px;
    width: auto;
    object-fit: contain;
}

/*==========================================================
                        04. Utility & Structural Glass Panels
                        ==========================================================*/

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/*==========================================================
                        05. Buttons
                        ==========================================================*/

/* Primary CTA Button */
.btn-premium {
    background: linear-gradient(135deg, var(--primary), #0043A8);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(11, 110, 253, 0.4);
    color: white;
}

.btn-hero {
    background: #fff;
    color: linear-gradient(135deg, var(--primary), #0043A8);
    /*#004dc7*/
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(11, 110, 253, 0.4);
    color: white;
}

/* Glass Outline Secondary Button */
.btn-outline-glass {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/*==========================================================
                        06. Navigation Bar
                        ==========================================================*/


.navbar-glass {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 15px 0;
}

/* Modifier state when window is scrolled */
.navbar-glass.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    color: var(--text-color) !important;
}

.logo-img {
    height: 40px;
}

/* --- Navbar Navigation Links Base Styling --- */
.navbar-nav .nav-link {
    color: #475569 !important;
    /* Default Color */
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.25s ease-in-out;
}

/* --- Hover State --- */
.navbar-nav .nav-link:hover {
    color: #0B6EFD !important;
    /* Hover Color */
}

/* --- Active / Active Accent States --- */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active-accent {
    color: #004dc7 !important;
    /* Active Color */
    font-weight: 600;
    /* Subtle weight bump to emphasize the current page */
}

/* --- Optional: Elegant Bottom Line Indicator (Matches modern dashboards) --- */
/*.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #004dc7;
    
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}*/
/* Matches active color */

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link.active-accent::after {
    transform: scaleX(1);
}

/* Mobile Toggler Reset */
.navbar-toggler {
    color: var(--text-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/*==========================================================
                        07. Theme Toggle Switch (Dark / Light Icons)
                        ==========================================================*/

/* Modern Premium Navigation Style Updates */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 0;
}

.navbar-glass.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 30px rgba(29, 87, 179, 0.08);
}

.navbar-logo {
    height: 42px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.03);
}

.navbar-nav .nav-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(29, 87, 179, 0.05);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active-accent {
    color: var(--primary) !important;
    background: rgba(29, 87, 179, 0.08);
}

/* Responsive Hamburger Animated Button */
.navbar-toggler {
    width: 44px;
    height: 44px;
    position: relative;
    border: none;
    background: rgba(29, 87, 179, 0.05);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.navbar-toggler:hover {
    background: rgba(29, 87, 179, 0.1);
}

.navbar-toggler i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] i {
    transform: rotate(90deg);
}

/*==========================================================
                        08. SPA View Management
                        ==========================================================*/

.page-view {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    padding-top: 65px;
}

.page-view.active {
    display: block;
}

/*==========================================================
                        09. Hero Section
                        ==========================================================*/

/* ===========================
                           HERO SECTION
                        =========================== */

#hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0f172a;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-zoom-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 87, 179, 0.35) 0%, rgba(15, 23, 42, 0.45) 100%);
    z-index: 1;
}

/* Carousel */

#heroSlider {
    position: relative;
    width: 100%;
    z-index: 2;
}

#heroSlider .carousel-inner {
    overflow: visible;
    padding: 0px 20px;
}

#heroSlider .carousel-item {
    min-height: calc(100vh - 90px);
}

#heroSlider .container {
    height: 100%;
}

.hero-row {
    min-height: calc(100vh - 90px);
    align-items: center;
}

/* Left Content */

.hero-content {
    z-index: 5;
}

.carousel-item {
    min-height: 100vh;
}

.carousel-item>.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-item .row {
    width: 100%;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 560px;
    color: var(--text-color);
    opacity: .8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#hero .btn-outline-glass {
    background: var(--hero-btn-outline-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

#hero .btn-outline-glass:hover {
    background: var(--hero-btn-outline-hover);
}

#hero h1,
#hero h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    /*var(--text-color);*/
    line-height: 1.15;
}

#hero p {
    color: #fff;
    /*var(--text-color);*/
    opacity: .8;
    font-size: 1.1rem;
    margin: 25px 0 35px;
}

/* Right Image */

.dashboard-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 620px;
    border-radius: 20px;
    animation: floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 35px 55px rgba(0, 0, 0, .35));
    box-shadow: 0 35px 80px rgba(0, 0, 0, .18);
}

/* Floating Cards */

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    padding: 5px 15px;
    background: var(--hero-card-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--hero-card-border);
    border-radius: 10px;
    color: var(--hero-card-text);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    transition: .35s;
    animation: floatCard 5s ease-in-out infinite;
    z-index: 10;
}

.floating-card i {
    font-size: 18px;
}

.card-one {
    top: 8%;
    right: -35px;
}

.card-two {
    bottom: 15%;
    left: -35px;
}

.card-three {
    top: 48%;
    right: -55px;
}

.card-four {
    top: 15%;
    left: 38px;
}

/* HODOS ERP Custom Floating Cards */
.erp-card-1 {
    top: 5%;
    right: -40px;
}

.erp-card-2 {
    top: 15%;
    left: -50px;
}

.erp-card-3 {
    top: 40%;
    right: -60px;
}

.erp-card-4 {
    top: 50%;
    left: -75px;
}

.erp-card-5 {
    bottom: 8%;
    right: -30px;
}

.erp-card-6 {
    bottom: 5%;
    left: -40px;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(11, 110, 253, .20);
}

.floating-card strong {
    color: inherit;
    font-size: 13px;
    font-weight: 600;
}



/* Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #30b4f3;
    background-size: 18px;
    color: #ffffff;
}

/*==========================================================
                        10. Client TRUST SECTION
         (Marquee Logobar)
                        ==========================================================*/
.trusted-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Background */

.trusted-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(11, 110, 253, .08);
    border-radius: 50%;
    filter: blur(90px);
    left: -150px;
    top: -120px;
}

.trusted-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(97, 168, 255, .08);
    border-radius: 50%;
    filter: blur(80px);
    right: -120px;
    bottom: -100px;
}

/* Heading */

.trust-tag {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-weight: 600;
    color: var(--primary);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
}

.section-subtitle {
    max-width: 750px;
    margin: auto;
    color: var(--text-color);
    opacity: .75;
}

/*==================================================
        STATISTICS
        ==================================================*/

.trust-card {
    padding: 35px 20px;
    text-align: center;
    background: #ffffff !important;
    border: 1px solid rgba(7, 42, 93, 0.08) !important;
    border-radius: var(--border-radius);
    transition: .35s;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(7, 42, 93, 0.03);
    color: var(--text-color) !important;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 42, 93, 0.08);
    background: #ffffff !important;
    border-color: rgba(29, 87, 179, 0.2) !important;
}

.trust-card-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 87, 179, 0.06);
    border-radius: 50%;
    transition: .35s;
}

.trust-card-icon-wrap i {
    transition: .35s;
}

.trust-card:hover .trust-card-icon-wrap {
    background: var(--accent);
}

.trust-card:hover .trust-card-icon-wrap i {
    color: #ffffff !important;
}

.trust-card h3,
.style-css-trust-card-counter-selector .counter {
    /* Support overriding any other class overrides styles */
    font-size: 42px;
    color: var(--primary) !important;
    font-weight: 700;
}

.trust-card h3 .counter {
    color: var(--primary) !important;
}

.trust-card p {
    margin-top: 5px;
    font-weight: 500;
    color: var(--text-color) !important;
    opacity: .85;
}

/* Dark mode support for trust-card */
[data-theme="dark"] .trust-card {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .trust-card:hover {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(0, 180, 216, 0.3) !important;
}

[data-theme="dark"] .trust-card h3,
[data-theme="dark"] .trust-card h3 .counter {
    color: var(--cyan-color) !important;
}

[data-theme="dark"] .trust-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/*==================================================
        LOGO SLIDER
        ==================================================*/

.logo-slider {
    overflow: hidden;
    position: relative;
    padding: 25px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogo 30s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    width: auto;
    /* height: 120px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    /* border: 1px solid var(--glass-border); */
    backdrop-filter: blur(15px);
    transition: .35s;
    padding: 15px 0px;
}

.logo-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(11, 110, 253, .2);
}

.logo-item img {
    /*width: 140px;*/
    max-width: 170px;
    max-height: 60px;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    opacity: 1;
    /*.8*/
    transition: .35s;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

/*==================================================
        Animation
        ==================================================*/

@keyframes scrollLogo {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*==================================================
        Responsive
        ==================================================*/

@media(max-width:768px) {

    .logo-item {
        width: 170px;
        height: 90px;
    }

    .section-title {
        font-size: 34px;
    }
}

/*==========================================================
                        11. Statistics Section
                        ==========================================================*/

.stat-card {
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    color: #A0ABC0;
    font-size: 1.1rem;
}

/*==========================================================
                        12. About Timeline Module
                        ==========================================================*/

.about-timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    border-left: 2px solid rgba(11, 110, 253, 0.3);
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}


/*==================================================
        Enterprise Workflow Timeline
        ==================================================*/

.workflow-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Heading */

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(11, 110, 253, .12);
    color: var(--primary);
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    max-width: 760px;
    margin: auto;
    opacity: .8;
}

/* Timeline */

.workflow-timeline {
    position: relative;
    padding: 30px 0;
}

/* Center Line */

.workflow-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, .08);
    transform: translateX(-50%);
    border-radius: var(--border-radius);
}

/* Animated Progress */

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0B6EFD, #61A8FF);
    transform: translateX(-50%);
    border-radius: var(--border-radius);
    z-index: 2;
}

/* Timeline Item */

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 70px 0;
    width: 50%;
}

/* Left */

.timeline-item.left {
    left: 0;
    justify-content: flex-end;
    padding-right: 70px;
}

/* Right */

.timeline-item.right {
    left: 50%;
    padding-left: 70px;
}

/* Icon */

.timeline-icon {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B6EFD, #61A8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    z-index: 5;
    box-shadow: 0 0 30px rgba(11, 110, 253, .5);
    animation: pulseIcon 2s infinite;
}

.timeline-item.right .timeline-icon {
    left: 0;
}

/* Card */

.timeline-card {
    padding: 35px;
    max-width: 420px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    transform: translateY(-8px);
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, #0B6EFD, #61A8FF);
}

/* Step Number */

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: rgba(11, 110, 253, .18);
    display: block;
    margin-bottom: 10px;
}

/* Hover Glow */

.timeline-card:hover {
    box-shadow: 0 25px 60px rgba(11, 110, 253, .25);
}

/* Floating animation */

@keyframes pulseIcon {

    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.08);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Mobile */

@media(max-width:992px) {

    .workflow-timeline::before {
        left: 35px;
    }

    .timeline-progress {
        left: 35px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 90px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-icon {
        left: 35px !important;
    }

    .timeline-card {
        max-width: 100%;
    }
}


/*==========================================================
                        13. Services Grid (Asymmetrical Tiles)
                        ==========================================================*/

.service-tile {
    padding: 30px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-tile:hover {
    transform: translateY(-10px);
    border-color: rgba(11, 110, 253, 0.4);
}

/* Inner subtle radial lighting aura on hover */
.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(11, 110, 253, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-tile:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/*==========================================================
                        14. Featured Product Presentation
                        ==========================================================*/

.featured-product-bg {
    background: url('img/bg_black.jfif') center/cover;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.featured-product-overlay {
    background: linear-gradient(90deg, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.7) 100%);
    padding: 80px;
    height: 100%;
}

/*==========================================================
                        15. Product Bento Grid Elements
                        ==========================================================*/

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}

.bento-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}



/*==========================================================
    Dark Header Split Overrides
==========================================================*/
/* Deep dark base representing the upper panel of Web Development Company, Web Design Agency Services India_2.jpg */
#industry-expertise-section .dark-hero-canvas {
    background-color: var(--primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Headings adjustment inside the dark header zone */
#industry-expertise-section .header-dark-zone h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Solid Purple Cards Layout Theme remains uniform across the horizon line */
#industry-expertise-section .expertise-card {
    background-color: #003580;
    /*#3f3b6c*/
    border-radius: var(--border-radius);
    border: none;
    min-height: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    will-change: transform, box-shadow;
}

/* Square Icon Presentation Wrapper */
#industry-expertise-section .expertise-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

#industry-expertise-section .expertise-card:hover .expertise-icon-box {
    background-color: rgba(255, 255, 255, 0.12);
}

/* Action Trigger Settings */
#industry-expertise-section .btn-more {
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#industry-expertise-section .btn-more:hover {
    opacity: 1;
    color: #ffffff !important;
}

/* Layout Helper utilities */
.max-w-600 {
    max-width: 600px;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

#industry-expertise-section .text-white-50 {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 62%) !important;
}

/*==========================================================
                        17. Why Us Structural Bento Layout
                        ==========================================================*/

.why-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-bento .glass-panel {
    padding: 40px;
}

.why-bento .span-2 {
    grid-column: span 2;
}

/*==========================================================
                        18. Tech Stack Orbit Rings System
                        ==========================================================*/

/*  .orbit-container {
                    position: relative;
                    width: 500px;
                    height: 500px;
                    margin: 0 auto;
                    border-radius: 50%;
                    border: 1px dashed rgba(255,255,255,0.1);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    animation: rotateOrbit 40s linear infinite;
                }

                .orbit-center {
                    position: absolute;
                    width: 100px;
                    height: 100px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 0 30px rgba(11,110,253,0.3);
                    z-index: 10;
                    animation: counterRotateOrbit 40s linear infinite;
                }

                .orbit-item {
                    position: absolute;
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5rem;
                    border: 1px solid rgba(255,255,255,0.1);
                    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
                    animation: counterRotateOrbit 40s linear infinite;
                }*/

/* Node Placements & Customized Branding Colors */
/* .orbit-item:nth-child(2) {
                        top: -30px;
                        left: 220px;
                        color: #5C2D91;
                    }*/
/* .NET */
/*.orbit-item:nth-child(3) {
                        top: 220px;
                        right: -30px;
                        color: #0089D6;
                    }*/
/* Azure */
/*.orbit-item:nth-child(4) {
                        bottom: -30px;
                        left: 220px;
                        color: #FF9900;
                    }*/
/* AWS */
/*.orbit-item:nth-child(5) {
                        top: 220px;
                        left: -30px;
                        color: #61DAFB;
                    }*/
/* React */
/*.orbit-item:nth-child(6) {
                        top: 40px;
                        left: 60px;
                        color: #02569B;
                    }*/
/* Flutter */
/*.orbit-item:nth-child(7) {
                        bottom: 40px;
                        right: 60px;
                        color: #CC292B;
                    }*/
/* SQL */
/*.orbit-item:nth-child(8) {
                        bottom: 40px;
                        left: 60px;
                        color: #F7DF1E;
                    }*/
/* JS */
/*.orbit-item:nth-child(9) {
                        top: 40px;
                        right: 60px;
                        color: #7952B3;
                    }*/
/* Bootstrap */


/*==========================================================
        18. Tech Stack Orbit Rings System (Enhanced Labels)
==========================================================*/

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateOrbit 40s linear infinite;
}

.orbit-center {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /*background: #0b1220;*/
    border: 1px solid rgba(11, 110, 253, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(11, 110, 253, 0.25);
    z-index: 10;
    animation: counterRotateOrbit 40s linear infinite;
}

/* Expanded individual nodes to handle stacked text elements safely */
.orbit-item {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    /*background: #0b1220;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    animation: counterRotateOrbit 40s linear infinite;
}

.orbit-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(11, 110, 253, 0.15);
}

/* Core Icon Formatting */
.orbit-item i {
    font-size: 1.37rem;
    margin-bottom: 2px;
}

/* Technical Label Formatting Engine */
.orbit-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #4c4d4e;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    text-align: center;
    pointer-events: none;
}

/* Node Positioning Inversions for 76px Elements */
.orbit-item:nth-child(2) {
    top: -38px;
    left: 212px;
    color: #5C2D91;
}

/* .NET */
.orbit-item:nth-child(3) {
    top: 212px;
    right: -38px;
    color: #0089D6;
}

/* Azure */
.orbit-item:nth-child(4) {
    bottom: -38px;
    left: 212px;
    color: #FF9900;
}

/* AWS */
.orbit-item:nth-child(5) {
    top: 212px;
    left: -38px;
    color: #61DAFB;
}

/* React */
.orbit-item:nth-child(6) {
    top: 36px;
    left: 36px;
    color: #02569B;
}

/* Flutter */
.orbit-item:nth-child(7) {
    bottom: 36px;
    right: 36px;
    color: #CC292B;
}

/* SQL Server */
.orbit-item:nth-child(8) {
    bottom: 36px;
    left: 36px;
    color: #F7DF1E;
}

/* JavaScript */
.orbit-item:nth-child(9) {
    top: 36px;
    right: 36px;
    color: #7952B3;
}

/* Bootstrap */

/* Keyframe Animations */
@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/*==========================================================
                        19. Testimonials 4-Column Masonry (Vertical Scroll)
                        ==========================================================*/

.testimonials-wrapper {
    display: flex;
    gap: 75px;
    height: 600px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    margin: 5px 50px;
}

.testimonial-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scroll-up {
    animation: scrollVerUp 30s linear infinite;
}

.scroll-down {
    animation: scrollVerDown 35s linear infinite;
}

.testimonials-wrapper:hover .testimonial-col {
    animation-play-state: paused;
}

.testi-card {
    padding: 24px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-text {
    /*font-size: 0.95rem;
                    color: #A0ABC0;*/
    font-size: 0.71rem;
    color: #444444;
    font-style: italic;
    margin-bottom: 15px;
}

/*==========================================================
20. Global Presence Map Dot Nodes & Right Side Panels
==========================================================*/

/* .map-container {
                    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') no-repeat center center;
                    background-size: contain;
                    height: 400px;
                    position: relative;
                    opacity: 0.6;
                }

                .map-pin {
                    position: absolute;
                    width: 16px;
                    height: 16px;
                    background: var(--primary);
                    border-radius: 50%;
                    box-shadow: 0 0 0 0 rgba(11, 110, 253, 0.7);
                    animation: pulse 2s infinite;
                    cursor: pointer;
                }

                .pin-uae {
                    top: 45%;
                    left: 63%;
                }

                .pin-india {
                    top: 55%;
                    left: 70%;
                }*/


.map-container {
    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') no-repeat center center;
    background-size: contain;
    height: 380px;
    position: relative;
    opacity: 0.85;
    /* Increased visibility to match map text clarity */
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.05));
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #0B6EFD;
    /* var(--primary) fallback placement */
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(11, 110, 253, 0.7);
    animation: pulse 2s infinite;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease;
}

.map-pin:hover {
    transform: scale(1.3);
}

/* Geographically Exact Map Positions using GPS Bounding Box Vectors */
.pin-uae {
    top: 44.43%;
    left: 71.21%;
    background: #61A8FF;
}

.pin-india {
    top: 47.88%;
    left: 66.42%;

}

/* Country Flag Sizing styling */
.country-flag {
    width: 32px;
    height: auto;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Side Card Enhancements linking smoothly into your javascript configuration engine */
.office-interactive-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-interactive-card:hover,
.office-interactive-card.active {
    transform: translateX(5px);
    background: rgba(11, 110, 253, 0.04);
    border-color: rgba(11, 110, 253, 0.2);
}

/* Responsive adjustments for mid-range maps framework devices */
@media (max-width: 991.98px) {
    .map-container {
        height: 300px;
        margin-bottom: 20px;
    }
}

/*==========================================================
                        21. Interactive CTA Banner & Global Footer
                        ==========================================================*/

.cta-banner {
    background: linear-gradient(135deg, var(--primary), #002255);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none !important;
}

.cta-banner>* {
    position: relative;
    z-index: 2;
}



.footer-link {
    color: #A0ABC0;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

/*==========================================================
                        22. Keyframe Animations
                        ==========================================================*/

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotateOrbit {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes counterRotateOrbit {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes scrollVerUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollVerDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, -40px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 110, 253, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(11, 110, 253, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 110, 253, 0);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/*==========================================================
                        23. Responsive Media Queries
                        ==========================================================*/

/* Large Desktop Screens */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .orbit-container {
        width: 400px;
        height: 400px;
    }
}

/* Tablets and Small Desktops */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .why-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 3;
    }

    .testimonials-wrapper {
        height: 500px;
    }

    .orbit-container {
        display: none;
    }

    /* Complex structural items fall back on lists */
}

/* Specific Target for Media Interface Overlap */

@media(max-width:991px) {

    #hero {
        padding-top: 90px;
        min-height: auto;
    }

    .carousel-item {
        min-height: auto;
    }

    .carousel-item>.container {
        min-height: auto;
        padding: 40px 0;
    }

    #hero h1,
    #hero h2 {
        font-size: 2.6rem;
        text-align: center;
    }

    #hero p {
        text-align: center;
    }

    #hero .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .dashboard-mockup {
        margin-top: 40px;
    }

    /* .floating-card {
        display: none;
    } */
}

/* Handheld Smartphones & Small Devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide,
    .bento-tall,
    .why-bento .span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .why-bento {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        flex-direction: column;
        overflow: visible;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .testimonial-col {
        animation: none !important;
    }

    .client-logo {
        margin: 0 20px;
        height: 30px;
    }
}

@media(max-width:991px) {

    #hero {
        padding-top: 80px;
    }

    .hero-row {
        text-align: center;
        min-height: auto;
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: auto auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dashboard-mockup {
        min-height: auto;
        margin-top: 50px;
    }

    .floating-card {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 100%;
        max-width: 300px;
        margin: 15px auto;
    }
}


.product-menu {
    padding: 25px;
}

.product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    background: transparent;
    border-radius: 15px;
    color: var(--text-color);
    transition: .4s;
    font-weight: 600;
    font-size: 14px;
}

.product-btn i {
    font-size: 24px;
    width: 40px;
    color: var(--primary);
}

.product-btn:hover {
    background: rgba(11, 110, 253, .08);
    transform: translateX(10px);
}

.product-btn.active {
    background: linear-gradient(135deg, #0B6EFD, #61A8FF);
    color: #fff;
}

.product-btn.active i {
    color: #fff;
}

.product-display {
    padding: 40px;
    min-height: 500px;
}

#productImage {
    animation: floatImage 5s ease-in-out infinite;
}

.feature-item {
    margin: 15px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 500;
}

.feature-item i {
    color: #16c784;
    font-size: 18px;
}

/*==========================================
Interactive Service Hub
==========================================*/

.service-menu {
    padding: 25px;
}

.service-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 15px;
    background: none;
    border: none;
    border-radius: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: .4s;
}

.service-btn i {
    font-size: 24px;
    width: 40px;
    color: var(--primary);
    transition: .3s;
}

.service-btn:hover {
    background: rgba(11, 110, 253, .08);
    transform: translateX(10px);
}

.service-btn.active {
    background: linear-gradient(135deg, #0B6EFD, #61A8FF);
    color: #fff;
}

.service-btn.active i {
    color: #fff;
}

.service-display {
    padding: 45px;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.service-circle {
    width: 220px;
    height: 220px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B6EFD, #61A8FF);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 60px rgba(11, 110, 253, .35);
    animation: pulseService 4s infinite;
}

.service-circle i {
    font-size: 80px;
    color: #fff;
}

.feature-item {
    display: flex;
    gap: 12px;
    margin: 14px 0;
    font-weight: 500;
}

.feature-item i {
    color: #15c26b;
}

.counter {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

@keyframes pulseService {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/*==================================================
Gallery Section
==================================================*/

.gallery-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}


/*==================================================
Filter Buttons
==================================================*/

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: #f5f5f5;
    font-weight: 600;
    transition: .35s;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, #0d6efd, #2563eb);
    color: #fff;
    transform: translateY(-3px);
}


/*==================================================
Gallery Card
==================================================*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .7s;
}

.gallery-card:hover img {
    transform: scale(1.15);
}


/*==================================================
Overlay
==================================================*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    opacity: 0;
    transition: .4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: .95rem;
    margin-bottom: 15px;
}


/*==================================================
View Icon
==================================================*/

.gallery-view {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0d6efd;
    font-size: 20px;
    transition: .4s;
    text-decoration: none;
}

.gallery-view:hover {
    transform: rotate(180deg);
}


/*==================================================
Dark Mode
==================================================*/

[data-theme="dark"] .filter-btn {
    background: #1d2939;
    color: #fff;
}

[data-theme="dark"] .gallery-card {
    background: #162032;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
}

/*==================================================
BLOG SECTION
==================================================*/

.blog-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/*==================================================
CATEGORY FILTER
==================================================*/

.blog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.blog-filter-btn {
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    background: #eef4ff;
    transition: .4s;
    cursor: pointer;
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
    background: linear-gradient(90deg, #0d6efd, #2563eb);
    color: #fff;
    transform: translateY(-4px);
}

/*==================================================
BLOG CARD
==================================================*/

.blog-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.featured {
    border: 2px solid #0d6efd;
}

/*==================================================
IMAGE
==================================================*/

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    transition: .6s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    background: #0d6efd;
    color: #fff;
    font-size: 13px;
}

/*==================================================
BODY
==================================================*/

.blog-body {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #6c757d;
}

.blog-meta i {
    color: #0d6efd;
    margin-right: 6px;
}

.blog-body h4 {
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

.blog-body p {
    color: #6c757d;
    margin-bottom: 25px;
}

/*==================================================
BUTTON
==================================================*/

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    transition: .3s;
}

.blog-btn:hover {
    gap: 18px;
}

/*==================================================
DARK MODE
==================================================*/

[data-theme="dark"] .blog-card {
    background: #162032;
    color: #fff;
}

[data-theme="dark"] .blog-body p {
    color: #b5bfd0;
}

[data-theme="dark"] .blog-filter-btn {
    background: #263445;
    color: #fff;
}

/*==========================================================
  31. MODERN INTERACTIVE CAREER HUB ENGINE
==========================================================*/
.career-hero {
    background: radial-gradient(circle at top center, rgba(11, 110, 253, 0.08), transparent 60%);
}

.search-hub-wrap {
    border-color: rgba(255, 255, 255, 0.08);
}

.search-hub-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-hub-wrap input:focus {
    color: #fff;
    background: transparent;
}

.custom-job-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-job-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(11, 110, 253, 0.15) !important;
}

.category-btn {
    padding: 6px 16px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    opacity: 1;
}

/* Application Modal Overlay Styling */
.custom-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 16, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-color: rgba(255, 255, 255, 0.12);
}

.custom-modal-backdrop.active .modal-box {
    transform: scale(1);
}

.btn-close-custom {
    opacity: 0.6;
    transition: transform 0.2s;
}

.btn-close-custom:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/*----------------------------------------------------------
        Interactive Hub Responsive Styling Structure
----------------------------------------------------------*/
.max-w-600 {
    max-width: 600px;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

.fw-extrabold {
    font-weight: 800;
}

.text-xs {
    font-size: 0.785rem;
}

.text-sm {
    font-size: 0.9rem;
}

.text-mono {
    font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
}

.bg-dark-soft {
    background-color: var(--tab-nav-bg);
    border: 1px solid var(--glass-border);
}

.nav-tab-btn {
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.nav-tab-btn:hover {
    color: var(--text-color);
}

.nav-tab-btn.active {
    background-color: var(--card-bg) !important;
    color: var(--primary) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .nav-tab-btn.active {
    background-color: rgba(13, 110, 253, 0.15) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.premium-input {
    background-color: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    color: var(--text-color) !important;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: all 0.2s linear;
}

.premium-input:focus {
    background-color: var(--card-bg) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.15) !important;
}

.datacenter-map-container {
    background: var(--hud-grid-bg);
    position: relative;
    overflow: hidden;
    border-color: var(--glass-border) !important;
}

.datacenter-map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--hud-grid-dots) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.7;
}

.office-interactive-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border) !important;
    cursor: pointer;
}

.office-interactive-card:hover {
    border-color: var(--primary) !important;
    transform: translateX(4px);
}

.office-interactive-card.active {
    background: linear-gradient(90deg, rgba(11, 110, 253, 0.04) 0%, var(--card-bg) 100%);
    border-color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: signalPulse 1.8s infinite ease-in-out;
}

@keyframes signalPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/*==========================================================
        03. Enterprise About Section Styling UI
==========================================================*/

#page-about {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

/* Structural Override Helpers to tie Text components cleanly to the theme mapping variables */
#page-about .text-dark {
    color: var(--text-color) !important;
}

#page-about .text-secondary {
    color: var(--text-color) !important;
    opacity: 0.72;
}

/* Glass panel background setup referencing standard shared vars */
#page-about .glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* Hero Profiler Card Abstract Matrix Overlay Background effect */
.main-profile-hero {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
}

.main-profile-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: var(--hero-overlay-1);
    filter: blur(90px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Philosophy Component Matrix Cards Transitions */
.philosophy-card {
    border-bottom: 3px solid transparent !important;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
    background: var(--card-bg) !important;
    box-shadow: 0 10px 25px rgba(11, 110, 253, 0.05) !important;
}

.philosophy-icon-wrap {
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon-wrap {
    transform: scale(1.1);
    color: var(--accent) !important;
}

/* Global Presence Network Node Elements Grid */
.presence-matrix-box {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
}

.presence-node-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    transition: var(--transition);
}

.presence-node-card:hover {
    background-color: var(--glass-bg) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transform: scale(1.02);
}

.node-indicator-badge {
    transition: var(--transition);
}

.presence-node-card:hover .node-indicator-badge {
    transform: rotate(15deg) scale(1.1);
    color: var(--accent) !important;
}

/* Keep the view layered above ambient blur blobs */
#page-about .container {
    position: relative;
    z-index: 2;
}

/*service*/

/*==========================================================
        04. Interactive Services Orbit Ecosystem
==========================================================*/
#page-services-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow: hidden;
    width: 100%;
}

/* Color routing matching your theme tokens */
#page-services-section .text-dark {
    color: var(--text-color) !important;
}

#page-services-section .text-secondary {
    color: var(--text-color) !important;
    opacity: 0.75;
}

/* VIEWPORT POSITIONING FIX: Added explicit dimensions and containment blocks */
.services-orbit-viewport {
    width: 100%;
    height: 700px;
    /* Forces enough layout height on the home page so elements can render */
    position: relative;
    margin: 4rem auto 2rem auto;
    max-width: 1200px;
}

#page-services-section .glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* Central Routing Node Element Base */
.central-hub-router {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 165px;
    height: 165px;
    border-radius: 50% !important;
    z-index: 10;
    border-color: var(--primary) !important;
    background: var(--card-bg) !important;
    box-shadow: 0 0 35px rgba(11, 110, 253, 0.18) !important;
}

/* Radar Signal Pulses */
.router-pulse-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.ring-pulse {
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: routerPulse 3s infinite linear;
}

.ring-pulse:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes routerPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* SVG Connector Mechanics */
.orbit-svg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    stroke: var(--glass-border);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    transition: var(--transition);
}

.connection-line.active-pulse {
    stroke: var(--primary);
    stroke-width: 3;
    stroke-dasharray: 8 4;
    animation: lineDashMove 0.8s infinite linear;
}

@keyframes lineDashMove {
    to {
        stroke-dashoffset: -20;
    }
}

/* CARDS VISIBILITY FIX: 
   We now place the nodes systematically relative to the layout window grid 
   and scale up their layout stacking contexts (`z-index: 15`).
*/
.orbit-node-card {
    position: absolute;
    width: 330px;
    padding: 1.25rem;
    z-index: 15;
    /* Forces the cards over the canvas layers and backgrounds */
    cursor: pointer;
    border-radius: var(--border-radius);
    display: block !important;
    /* Overrides any unintended hidden parent flags */
}

/* Mathematical Spatial Mapping Matrix around the Center Core */
#node-custom {
    top: 5%;
    left: 2%;
}

#node-mobile {
    top: 5%;
    right: 2%;
}

#node-cloud {
    top: 45%;
    right: 0%;
}

#node-db {
    bottom: 5%;
    right: 2%;
}

#node-ai {
    bottom: 5%;
    left: 2%;
}

#node-staff {
    top: 45%;
    left: 0%;
}

/* Hover States & Fluid Accents */
.orbit-node-card:hover {
    background: var(--card-bg) !important;
    border-color: var(--primary) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(11, 110, 253, 0.15) !important;
}

.orbit-node-card.glow-active {
    border-color: var(--primary) !important;
    box-shadow: 0 0 25px rgba(11, 110, 253, 0.25) !important;
}

.float-icon {
    animation: subtleFloat 4s infinite ease-in-out;
}

#node-mobile .float-icon {
    animation-delay: 0.6s;
}

#node-cloud .float-icon {
    animation-delay: 1.2s;
}

#node-db .float-icon {
    animation-delay: 1.8s;
}

#node-ai .float-icon {
    animation-delay: 2.4s;
}

#node-staff .float-icon {
    animation-delay: 3s;
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.mobile-service-card .glass-panel {
    transition: var(--transition);
}

.mobile-service-card:hover .glass-panel {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03) !important;
}

/* -----------------------------------------------------------------------------------------------*/
/*==========================================================
    Premium Split Dynamic Slider System Layout Module
==========================================================*/
#split-service-slider .mask-text {
    display: block;
    overflow: hidden;
    /* Standard text layout masking rule */
    position: relative;
}

#split-service-slider .mask-text span {
    display: inline-block;
    width: 100%;
}

/* Ensure images maintain clean layout ratios across changing window viewports */
.slide-media-container .media-node {
    transition: filter 0.5s ease;
    will-change: transform, opacity;
}

#split-service-slider .row:hover .media-node.active img {
    transform: scale(1.04);
}

.slide-media-container img {
    transition: transform 6s ease-out;
}

/* Typography styles matching image reference values */
.font-serif {
    font-family: "Georgia", serif;
}

@media (max-width: 767.98px) {
    #split-service-slider .row {
        min-height: auto !important;
    }

    .slide-media-container {
        position: relative !important;
        height: 250px !important;
    }

    .slide-media-container .media-node {
        position: absolute !important;
    }
}

/*==========================================================
        05. Enterprise Product Telemetry Layout Engine
==========================================================*/
#page-products-telemetry {
    background-color: var(--bg-color);
    color: var(--text-color);
}

#page-products-telemetry .text-mono {
    font-family: 'Courier New', Courier, monospace;
}

#page-products-telemetry .text-xs {
    font-size: 0.75rem;
}

#page-products-telemetry .text-sm {
    font-size: 0.875rem;
}

#page-products-telemetry .max-w-600 {
    max-width: 600px;
}

#page-products-telemetry h3#simTitle {
    color: #90c3c3;
}

.product-telemetry-row {
    display: flex;
    align-items: stretch;
}

/* Tab Telemetry Selectable Cards */
.telemetry-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.telemetry-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background-color: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: 3;
}

/* Confinement parameters for individual icons */
#page-products-telemetry .suite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

/* Active Interactions styles matching Zoho & Microsoft layout systems */
.telemetry-card:hover {
    transform: translateX(4px);
    border-color: rgba(11, 110, 253, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.telemetry-card.active {
    background: rgba(11, 110, 253, 0.04) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 10px 25px rgba(11, 110, 253, 0.06);
}

.telemetry-card.active .telemetry-indicator {
    transform: scaleY(1);
}

/* Core Architectural Simulator Visual Frame */
.sandbox-simulator {
    border-radius: var(--border-radius);
    background: #060b13 !important;
    border: 1px solid var(--glass-border);
}

.sim-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.sim-dot.dot-red {
    background-color: #ff5f56;
}

.sim-dot.dot-yellow {
    background-color: #ffbd2e;
}

.sim-dot.dot-green {
    background-color: #27c93f;
}

.simulator-body {
    background: radial-gradient(circle at 50% 20%, #0a1324 0%, #05080e 100%);
}

.sim-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.12) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 5;
}

/* Telemetry Stream Logging System */
.telemetry-stream-console {
    background: rgba(0, 0, 0, 0.5) !important;
}

.stream-terminal-logs {
    line-height: 1.5;
}

/* Responsive Adaptive Column Folding breakpoints */
@media (max-width: 1199.98px) {
    .product-telemetry-row {
        flex-direction: column;
    }

    .sandbox-simulator {
        margin-top: 1rem;
        min-height: 480px;
    }
}

/*==========================================================
        22. Dual Communication Floating Hub Engine
==========================================================*/
.floating-communication-hub {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Precise layout spacing between call and whatsapp links */
    z-index: 1090;
    align-items: flex-end;
}

/* Base Component Rules */
.hub-trigger {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

/* Inner Visual Container Core */
.hub-icon-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

/* Color Brand Variances */
.call-variant .hub-icon-wrap {
    background-color: var(--primary, #0B6EFD);
    box-shadow: 0 8px 24px rgba(11, 110, 253, 0.3);
}

.whatsapp-variant .hub-icon-wrap {
    background-color: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Hover Transformations */
.hub-trigger:hover .hub-icon-wrap {
    transform: scale(1.08);
}

.call-variant:hover .hub-icon-wrap {
    background-color: #0056cc;
}

.whatsapp-variant:hover .hub-icon-wrap {
    background-color: #20ba5a;
}

/* Interactive Notification Waves (WhatsApp) */
.wa-radar-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    animation: hubRadarPropagation 2.5s cubic-bezier(0.12, 0, 0.39, 0) infinite;
    pointer-events: none;
}

.wa-radar-wave.delay-wave {
    animation-delay: 1.2s;
}

/* Enterprise Glassmorphic Label Tooltips */
.hub-tooltip-label {
    position: absolute;
    right: 72px;
    background: #fff;
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-color, #F8FAFC);
    padding: 6px 14px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hub-trigger:hover .hub-tooltip-label {
    opacity: 1;
    transform: translateX(0);
}

/* Micro Animations for Radial Propagation */
@keyframes hubRadarPropagation {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Fluid Grid Breakpoints */
@media (max-width: 767.98px) {
    .floating-communication-hub {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .hub-trigger {
        width: 48px;
        height: 48px;
    }

    .hub-icon-wrap {
        font-size: 1.3rem;
    }

    .hub-tooltip-label {
        display: none !important;
        /* Discards text rendering footprint cleanly on touch layouts */
    }
}


/*==========================================================
        24. Enterprise Location Matrix & Form Engine
==========================================================*/
#page-contact {
    background-color: var(--bg-color);
}

#page-contact .text-mono {
    font-family: 'Courier New', Courier, monospace;
}

#page-contact .text-xs {
    font-size: 0.725rem;
    letter-spacing: 0.05em;
}

#page-contact .text-sm {
    font-size: 0.875rem;
}

#page-contact .max-w-600 {
    max-width: 600px;
}

#page-contact .max-w-400 {
    max-width: 400px;
}

/* Custom Text Inputs */
.contact-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-color) !important;
    border-radius: var(--border-radius);
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(11, 110, 253, 0.15) !important;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* Glass Buttons Extensions */
.btn-outline-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgb(195 211 235 / 65%);
    border-color: rgba(255, 255, 255, 0.2);
    /*color: #ffffff;*/
    color: var(--text-color);
}

/* Office Location Icons Boxes Configuration */
.contact-node-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* Success Alert Simulation Window Overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);

    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.form-success-overlay.activated {
    opacity: 1;
    visibility: visible;
}

.success-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Bento Layout Responsiveness --- */
@media (max-width: 991px) {

    /* Converts Bento Grid layout to single stack on tablets/mobiles */
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Forces the interactive side console to display naturally below tiles */
    .bento-console-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* --- Telemetry Suite Layout Responsiveness --- */
@media (max-width: 767px) {
    .telemetry-layout {
        grid-template-columns: 1fr !important;
        /* Forces vertical stacking */
        gap: 1rem;
    }

    .telemetry-selector {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        /* Allows swiping left/right on mobile buttons */
        padding-bottom: 0.5rem;
        white-space: nowrap;
    }

    .telemetry-card {
        min-width: 200px;
        /* Makes cards swipeable side-by-side */
    }
}

@media (max-width: 576px) {

    /* Shrink hero and banner display fonts safely for mobile screens */
    .display-4 {
        font-size: 2.2rem !important;
    }

    h1,
    .fs-1 {
        font-size: 2rem !important;
    }

    h2,
    .fs-2 {
        font-size: 1.6rem !important;
    }

    /* Decrease section gaps so the user doesn't scroll endlessly through blank space */
    section,
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Prevent your particle canvas backdrop from eating mouse click actions */
#particles-js {
    pointer-events: none !important;
}

/* Force CTA buttons to explicitly accept click interactions and show pointers */
.cta-banner {
    position: relative;
    z-index: 5 !important;
}

.cta-banner .btn,
.cta-banner a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/*==========================================================
                        15. Footer (Dark Theme Override)
==========================================================*/
footer {
    background-color: var(--primary) !important;
    /* Navy Blue background */
    color: #ffffff !important;
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

footer h5 {
    color: #ffffff !important;
}

footer p.text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    transition: var(--transition);
}

footer .footer-link:hover {
    color: var(--cyan-color) !important;
    transform: translateX(4px);
}

footer .btn-outline-glass {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

footer .btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--cyan-color) !important;
    border-color: var(--cyan-color) !important;
}

footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding-top: 20px;
}

footer .border-top p.text-secondary {
    color: rgba(255, 255, 255, 0.5) !important;
}

/*==========================================================
                    16. Professional Process Section
==========================================================*/
.process-section {
    background: radial-gradient(circle at 10% 20%, rgba(243, 246, 253, 0.4) 0%, rgba(255, 255, 255, 0.9) 90%);
}

/* Custom 24-column alternate Grid layout for desktop screens */
@media (min-width: 992px) {
    .process-cards-row {
        display: grid !important;
        grid-template-columns: repeat(24, 1fr) !important;
        grid-template-rows: auto auto !important;
        row-gap: 100px !important;
        column-gap: 0 !important;
        position: relative;
        padding: 50px 0;
    }

    .process-cards-row>.col {
        flex: none !important;
        width: auto !important;
        max-width: none !important;
        position: relative;
    }

    /* Top Row: Cards 1-4 (Each spans 6 columns out of 24) */
    .process-cards-row>.col:nth-child(1) {
        grid-row: 1;
        grid-column: 1 / span 6;
    }

    .process-cards-row>.col:nth-child(2) {
        grid-row: 1;
        grid-column: 7 / span 6;
    }

    .process-cards-row>.col:nth-child(3) {
        grid-row: 1;
        grid-column: 13 / span 6;
    }

    .process-cards-row>.col:nth-child(4) {
        grid-row: 1;
        grid-column: 19 / span 6;
    }

    /* Bottom Row: Cards 5-7 (Each spans 6 columns, centered under the gaps) */
    .process-cards-row>.col:nth-child(5) {
        grid-row: 2;
        grid-column: 4 / span 6;
    }

    .process-cards-row>.col:nth-child(6) {
        grid-row: 2;
        grid-column: 10 / span 6;
    }

    .process-cards-row>.col:nth-child(7) {
        grid-row: 2;
        grid-column: 16 / span 6;
    }

    /* Progress Connector Track */
    .process-progress-track {
        top: 50% !important;
        transform: translateY(-50%) !important;
        left: 12.5% !important;
        width: 75% !important;
    }

    /* Connectors for first 4 cards pointing down */
    .process-cards-row>.col:nth-child(-n+4)::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, rgba(0, 180, 216, 0.25) 0%, transparent 100%);
        pointer-events: none;
    }

    /* Connectors for last 3 cards pointing up */
    .process-cards-row>.col:nth-child(n+5)::after {
        content: '';
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: linear-gradient(0deg, rgba(0, 180, 216, 0.25) 0%, transparent 100%);
        pointer-events: none;
    }
}

/* Glass Card styling */
.process-card {
    background: #ffffff !important;
    border: 1px solid rgba(7, 42, 93, 0.08) !important;
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 24px 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: var(--text-color) !important;
}

.process-card h4 {
    color: var(--primary) !important;
    font-size: 0.9rem;
}

.process-card p {
    color: var(--text-color) !important;
    opacity: 0.85 !important;
}

/* Card Hover glow/elevation */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--cyan-color));
    opacity: 0;
    transition: opacity 0.35s;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 35px rgba(7, 42, 93, 0.06);
    background: #ffffff !important;
    border-color: rgba(29, 87, 179, 0.2) !important;
}

.process-card:hover::before {
    opacity: 1;
}

/* Support dark theme for process section */
[data-theme="dark"] .process-section {
    background: radial-gradient(circle at 10% 20%, rgba(10, 25, 47, 0.5) 0%, rgba(15, 23, 42, 0.9) 90%) !important;
}

[data-theme="dark"] .process-card {
    background: rgba(15, 23, 42, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .process-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .process-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .process-badge {
    background: rgba(0, 180, 216, 0.15) !important;
    color: var(--cyan-color) !important;
}

/* Step badges & Icon wrappers */
.process-badge {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan-color);
    background: rgba(0, 180, 216, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 216, 0.15);
}

.process-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.4s;
}

.process-card:hover .process-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

/* Progress Connector Track for Desktop */
.process-progress-track {
    position: absolute;
    top: 45px;
    left: 8.5%;
    width: 83%;
    height: 2px;
    background: rgba(10, 25, 47, 0.06);
    z-index: 1;
}

.process-progress-bar {
    width: 0;
    /* Animated on Scroll Trigger */
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cyan-color));
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
    transition: width 0.3s ease;
}

/* Bounce Animation for Mobile arrow separator */
@keyframes bounceY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.animate-bounce-y {
    animation: bounceY 2s infinite ease-in-out;
}

/*==========================================================
                    17. About Page Modernization Styles
==========================================================*/
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(7, 42, 93, 0.06);
    border-radius: var(--border-radius);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(7, 42, 93, 0.02);
    transition: var(--transition);
}

.glass-panel.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(29, 87, 179, 0.15);
}

.glass-panel.border-start {
    border-left-width: 4px !important;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(7, 42, 93, 0.06);
    border-color: rgba(29, 87, 179, 0.15) !important;
}

.datacenter-map-container {
    background: #0d1527;
    border: 1px solid rgba(0, 180, 216, 0.15) !important;
    color: #ffffff;
    box-shadow: inset 0 0 20px rgba(0, 180, 216, 0.05);
}

.datacenter-map-container .text-primary {
    color: var(--cyan-color) !important;
}

.philosophy-card {
    padding: 35px 25px !important;
    background: #ffffff !important;
    border: 1px solid rgba(7, 42, 93, 0.06) !important;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    background: #ffffff !important;
    border-color: rgba(29, 87, 179, 0.25) !important;
    box-shadow: 0 22px 35px rgba(7, 42, 93, 0.06);
}

.philosophy-icon-wrap {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(29, 87, 179, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.philosophy-icon-wrap i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon-wrap {
    background: var(--accent);
}

.philosophy-card:hover .philosophy-icon-wrap i {
    color: #ffffff;
}

/* Dark Mode Overrides for About Page Panels */
[data-theme="dark"] .glass-panel {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .glass-panel h2,
[data-theme="dark"] .glass-panel h3,
[data-theme="dark"] .glass-panel h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .glass-panel p,
[data-theme="dark"] .glass-panel span {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .philosophy-card {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .philosophy-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .philosophy-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .philosophy-icon-wrap {
    background: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .philosophy-icon-wrap i {
    color: var(--cyan-color) !important;
}

[data-theme="dark"] #operational-presence-strip {
    background-color: #0f172a !important;
}

[data-theme="dark"] #operational-presence-strip .presence-strip-row {
    background-color: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] #operational-presence-strip .presence-node {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] #operational-presence-strip .node-icon-wrapper i {
    color: var(--cyan-color) !important;
}

[data-theme="dark"] #operational-presence-strip h3 {
    color: #ffffff !important;
}

[data-theme="dark"] #operational-presence-strip p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/*==========================================================
                    18. Product Gallery Modernization Styles
==========================================================*/
.gallery-section-modern {
    background: radial-gradient(circle at 50% 50%, #fafcff 0%, #f1f5fa 100%) !important;
    position: relative;
    overflow: hidden;
}

.gallery-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 110, 253, 0.04) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

.gallery-item-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(11, 110, 253, 0.08) !important;
    border-radius: var(--card-border-radius);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.03);
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img-container img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effects */
.gallery-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(11, 110, 253, 0.25) !important;
    box-shadow: 0 20px 40px rgba(11, 110, 253, 0.08);
}

.gallery-item-card:hover .gallery-img-container img {
    transform: scale(1.06);
}

.gallery-overlay-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    background: rgba(10, 25, 47, 0.9) !important;
    backdrop-filter: blur(6px);
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
    z-index: 2;
}

.gallery-card-body {
    padding: 24px 20px !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(11, 110, 253, 0.06);
    transition: all 0.3s ease;
}

.gallery-item-card:hover .gallery-card-body {
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%) !important;
}

.gallery-card-body h6 {
    color: var(--primary) !important;
    font-size: 1rem;
    font-weight: 700 !important;
    margin-bottom: 6px;
    transition: var(--transition);
}

.gallery-item-card:hover .gallery-card-body h6 {
    color: var(--accent) !important;
}

/* Zoom Hover Indicator */
.gallery-zoom-btn {
    position: absolute;
    width: 46px;
    height: 46px;
    background: rgba(11, 110, 253, 0.9);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.3);
    pointer-events: none;
    z-index: 3;
}

.gallery-img-container:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

/* Dark Mode Overrides for Modern Gallery */
[data-theme="dark"] .gallery-section-modern {
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%) !important;
}

[data-theme="dark"] .gallery-section-modern::before {
    background-image: radial-gradient(rgba(0, 180, 216, 0.08) 1.5px, transparent 1.5px);
}

[data-theme="dark"] .gallery-item-card {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .gallery-item-card:hover {
    border-color: rgba(0, 180, 216, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
}

[data-theme="dark"] .gallery-img-container {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .gallery-overlay-badge {
    background: rgba(15, 23, 42, 0.9) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .gallery-card-body {
    background: #0f172a !important;
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .gallery-item-card:hover .gallery-card-body {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

[data-theme="dark"] .gallery-card-body h6 {
    color: #ffffff !important;
}

[data-theme="dark"] .gallery-item-card:hover .gallery-card-body h6 {
    color: var(--cyan-color) !important;
}

[data-theme="dark"] .gallery-card-body p {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark"] .gallery-zoom-btn {
    background: rgba(0, 180, 216, 0.9);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
}