/* 
================================================================
   FINANCITY - PREMIUM BUSINESS & FINANCIAL CONSULTING WEBSITE
   DESIGN SYSTEM & CUSTOM STYLESHEET (VANILLA CSS)
================================================================
*/

/* --- CSS Variables & Design Tokens --- */
:root {
    --primary-color: #0c2240;
    /* Deep Navy Blue */
    --primary-light: #163663;
    /* Light Navy Blue */
    --accent-color: #d1a153;
    /* Premium Gold */
    --accent-hover: #b98e43;
    /* Darker Gold */
    --topbar-bg: #091a32;
    /* Dark Navy for Topbar */
    --text-dark: #22252a;
    /* Main Dark Text */
    --text-muted: #6b778d;
    /* Muted Gray Text */
    --text-light: #ffffff;
    /* Pure White */
    --bg-light: #f7f9fc;
    /* Soft Gray Background */
    --bg-white: #ffffff;
    /* Pure White Background */
    --border-color: #e5eaf2;
    /* Soft Border Color */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Poppins', sans-serif;
}

/* --- Reset & Global Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(209, 161, 83, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 161, 83, 0.4);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 161, 83, 0.3);
}

/* Disable hover effect for CTA button in the contact/CTA section */
.cta-section .btn,
.cta-section .btn-white {
    transition: none;
}

.cta-section .btn:hover,
.cta-section .btn-white:hover {
    background-color: inherit;
    color: inherit;
    transform: none;
    box-shadow: none;
}

/* Section Title Styling */
.section-title-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.subtitle-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
    line-height: 1.25;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title-wrapper:hover .section-title::after {
    width: 100px;
}

/* ================================================================
   HEADER & NAVBAR
================================================================ */

/* --- Top Bar --- */
.topbar {
    background-color: var(--topbar-bg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--accent-color);
}

/* Dropdown styling */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.dropdown-toggle:hover {
    color: var(--text-light);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    min-width: 150px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    border-top: 2px solid var(--accent-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    padding-left: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 1.5rem;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.telegram-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: -0.125em;
}

/* --- Main Navbar --- */
.header-navigation {
    position: absolute;
    top: 37px;
    /* Heights matching topbar */
    left: 0;
    width: 100%;
    z-index: 99;
    background: transparent;
    transition: var(--transition-smooth);
}

/* Scrolling navbar state */
.header-navigation.sticky {
    position: fixed;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header-navigation.sticky .nav-link {
    color: var(--primary-color);
}

.header-navigation.sticky .nav-link:hover,
.header-navigation.sticky .nav-item.active .nav-link {
    color: var(--accent-color);
}

.header-navigation.sticky .nav-controls {
    color: var(--primary-color);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.header-navigation.sticky .navbar-wrapper {
    padding: 0.8rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.header-navigation.sticky .logo-img {
    height: 36px;
    filter: none;
}

.footer-logo-img {
    height: 36px;
}

/* Menu Items */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--accent-color);
}

/* Right Nav Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-light);
}

.btn-demo {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-fast);
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(209, 161, 83, 0.15);
}

.btn-demo:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(209, 161, 83, 0.22);
}

.header-navigation.sticky .btn-demo {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.header-navigation.sticky .btn-demo:hover {
    background-color: var(--accent-hover);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Dropdown Menu styling */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-width: 320px;
    padding: 1rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    width: 100%;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #2c3e50;
    transition: var(--transition-fast);
    border-bottom: none;
    line-height: 1.4;
}

.nav-dropdown-menu li a:hover {
    background-color: #f8f9fc;
    color: var(--accent-color);
    padding-left: 2.2rem;
}

.nav-dropdown-menu .dropdown-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.8rem 0.3rem 1.8rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.4rem;
}

/* ================================================================
   HERO SLIDER SECTION
================================================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.slide-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide backgrounds & Overlays */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
    filter: brightness(1.05);
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(9, 26, 50, 0.85) 0%, rgba(9, 26, 50, 0) 30%),
        linear-gradient(to right, rgba(9, 26, 50, 0.8) 0%, rgba(9, 26, 50, 0.45) 50%, rgba(9, 26, 50, 0.15) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Typography & Animations */
.slide-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    display: block;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.slide-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1.2rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(209, 161, 83, 0.4);
}

.slider-arrow-left {
    left: 2rem;
}

.slider-arrow-right {
    right: 2rem;
}

/* Slider Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    width: 25px;
    border-radius: 10px;
}

/* ================================================================
   SERVICES GRID SECTION
================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 3rem 2.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    background-color: var(--accent-color);
    height: 6px;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--accent-color);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--text-light);
    transform: rotateY(180deg);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link {
    color: var(--accent-color);
}

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

/* ================================================================
   ABOUT US SECTION
================================================================ */
.about-section-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-media {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* Background visual elements behind image */
.about-media::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    opacity: 0.15;
    border-radius: 8px;
    z-index: 1;
}

.about-media::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--accent-color) 20%, transparent 20%);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    left: -1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border-left: 4px solid var(--accent-color);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

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

    50% {
        transform: translateY(-10px);
    }
}

.experience-years {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}

.experience-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    flex: 1.1;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Feature Checkbox List */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-feature-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(209, 161, 83, 0.15);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ================================================================
   PORTFOLIO/CASES SECTION
================================================================ */
/* ================================================================
   PORTFOLIO/CASES SECTION
================================================================ */
.cases-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.case-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 10px 30px rgba(12, 34, 64, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(12, 34, 64, 0.25);
}

.case-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

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

.case-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(9, 26, 50, 0.95) 0%,
            rgba(9, 26, 50, 0.65) 50%,
            rgba(9, 26, 50, 0.2) 100%);
    transition: background 0.4s ease;
    z-index: 2;
}

.case-card:hover .case-card-overlay {
    background: linear-gradient(to top,
            rgba(9, 26, 50, 0.98) 0%,
            rgba(9, 26, 50, 0.75) 50%,
            rgba(9, 26, 50, 0.35) 100%);
}

.case-card-content {
    position: relative;
    z-index: 3;
    padding: 2.2rem 1.8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card-content {
    transform: translateY(-5px);
}

.case-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px dashed rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card-icon {
    background-color: #ffffff;
    color: #007bff;
    border-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.case-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    min-height: 52px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    transition: color 0.3s ease;
}

.case-card:hover .case-card-title {
    color: #007bff;
}

.case-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* ================================================================
   STATS COUNTER SECTION (PARALLAX)
================================================================ */
.stats-section {
    position: relative;
    background-image: url('../images/hero_bg_2.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 6rem 0;
    color: var(--text-light);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 34, 64, 0.9);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.quote-icon {
    font-size: 3.5rem;
    color: rgba(209, 161, 83, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    overflow: hidden;
}

.author-meta {
    text-align: left;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonial dot controls */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* ================================================================
   CALL TO ACTION SECTION
================================================================ */
.cta-section {
    position: relative;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -20px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    max-width: 700px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    flex-shrink: 0;
}

/* ================================================================
   FOOTER SECTION
================================================================ */
.footer {
    background-color: #08162b;
    color: rgba(255, 255, 255, 0.65);
    padding-top: 5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Widget 1: About */
.footer-about .footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Widget 2: Links */
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Widget 3: Services */
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-services a {
    font-size: 0.9rem;
}

.footer-services a:hover {
    color: var(--accent-color);
}

/* Widget 4: Contact */
.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact span {
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

/* ================================================================
   FLOATING STATS BANNER
================================================================ */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-stats-banner {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    /* Overlaps with the bottom of the hero banner */
    margin-bottom: -35px;
    /* Pulls up the section below */
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stats-banner-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.stats-banner-item {
    position: relative;
    padding: 0 1rem;
    transition: transform 0.3s ease;
}

.stats-banner-item:hover {
    transform: translateY(-3px);
}

.stats-banner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(12, 34, 64, 0.1);
    transition: background-color 0.3s ease;
}

.stats-banner-item:hover:not(:last-child)::after {
    background-color: rgba(0, 123, 255, 0.3);
}

.stats-banner-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0c2240;
    /* High contrast primary dark blue */
    line-height: 1.1;
    margin-bottom: 0.6rem;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.stats-banner-item:hover .stats-banner-number {
    color: #007bff;
    /* Turns into corporate blue on hover */
}

.stats-banner-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #334155;
    /* Higher contrast slate-700 color */
    letter-spacing: 0.8px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.stats-banner-item:hover .stats-banner-label {
    color: #0c2240;
}

/* ================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
================================================================ */

/* --- Tablet / Large Mobile (1024px) --- */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-section-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .slide-title {
        font-size: 3rem;
    }

    .stats-banner-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
        padding: 2rem 1rem;
    }

    .stats-banner-item:not(:last-child)::after {
        display: none;
    }
}

/* --- Mobile Navigation Drawer (768px) --- */
@media screen and (max-width: 768px) {
    .navbar-wrapper {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .topbar {
        display: none;
        /* Hide topbar on mobile for cleaner viewport */
    }

    .header-navigation {
        top: 0;
        background-color: var(--primary-color);
        box-shadow: var(--shadow-sm);
    }

    .logo-img {
        height: 30px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-navigation.sticky {
        background-color: var(--bg-white);
    }

    .header-navigation.sticky .mobile-nav-toggle {
        color: var(--primary-color);
    }

    .header-navigation.sticky .logo-img {
        filter: none;
    }

    .header-navigation.sticky .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .header-navigation.sticky .nav-link:hover {
        color: var(--accent-color);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: inset 0 10px 15px -3px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .nav-controls {
        gap: 1.5rem;
    }

    .btn-demo {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.03);
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0.5rem 0;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-dropdown-menu li a {
        padding: 0.5rem 1.5rem;
        color: rgba(255, 255, 255, 0.75);
    }

    .nav-dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--accent-color);
        padding-left: 1.8rem;
    }

    .nav-dropdown-menu .dropdown-header {
        padding: 0.5rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.4);
    }

    .slide-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .slider-arrow {
        display: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cases-carousel {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* --- Extra Small Devices (480px) --- */
@media screen and (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .slide-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonials-wrapper {
        height: 400px;
    }

    .floating-stats-banner {
        margin-top: -45px;
        margin-bottom: -20px;
    }

    .stats-banner-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        padding: 1.5rem 0.5rem;
    }

    .stats-banner-number {
        font-size: 2rem !important;
    }

    .stats-banner-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px;
    }
}

/* ================================================================
   BENEFITS ROADMAP SECTION (STAGGERED ALTERNATING TIMELINE)
================================================================ */
.benefits-roadmap {
    position: relative;
    padding-bottom: 2rem;
}

/* Central Horizontal Axis Line */
.roadmap-axis {
    position: absolute;
    top: 55%;
    left: 8%;
    right: 8%;
    height: 4px;
    background-color: rgba(0, 123, 255, 0.15);
    border-radius: 4px;
    z-index: 1;
    transform: translateY(-50%);
}

.roadmap-axis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #007bff 0%, var(--accent-color) 100%);
    border-radius: 4px;
    opacity: 0.85;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    min-height: 520px;
    margin-top: 2rem;
}

.roadmap-column {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
}

/* Central Milestone Nodes */
.roadmap-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseNode 2.5s infinite;
}

@keyframes pulseNode {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.roadmap-column:hover .roadmap-node {
    background-color: #007bff;
    color: var(--text-light);
    border-color: #007bff;
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.5);
    animation: none;
}

/* Staggered Alternating Cards */
.roadmap-card {
    position: absolute;
    width: 320px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Vertical dashed connection lines between cards and nodes */
.roadmap-card::after {
    content: '';
    position: absolute;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #007bff, #007bff 4px, transparent 4px, transparent 8px);
    z-index: 1;
    transition: all 0.3s ease;
}

/* Above items (Step 1, 3) */
.roadmap-card.above {
    bottom: calc(45% + 40px);
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
    flex-direction: row;
}

.roadmap-card.above::after {
    bottom: -40px;
    left: 50%;
    height: 40px;
    transform: translateX(-50%);
}

/* Below items (Step 2, 4) */
.roadmap-card.below {
    top: calc(55% + 40px);
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    flex-direction: row;
}

.roadmap-card.below::after {
    top: -40px;
    left: 50%;
    height: 40px;
    transform: translateX(-50%);
}

.roadmap-column:hover .roadmap-card::after {
    background: #007bff;
}

/* Staggered text formatting styled as clean floating text with no card box */
.roadmap-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    z-index: 3;
}

.roadmap-column:hover .roadmap-text {
    /* Clean floating text with no background container */
}

.roadmap-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007bff;
}

.roadmap-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.roadmap-num span {
    color: #007bff;
}

.roadmap-desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.roadmap-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    width: fit-content;
}

.roadmap-card.above .roadmap-badge {
    align-self: flex-end;
}

.roadmap-card.below .roadmap-badge {
    align-self: flex-start;
}

/* Circular Images */
.roadmap-image {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 3.5px solid var(--bg-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-column:hover .roadmap-image {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.roadmap-column:hover .roadmap-card {
    transform: translateX(-50%) translateY(-5px);
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
    .roadmap-card {
        width: 240px;
    }

    .roadmap-image {
        width: 75px;
        height: 75px;
    }

    .roadmap-num {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 992px) {
    .benefits-roadmap {
        height: auto;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .roadmap-axis {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 3px;
        height: auto;
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        min-height: auto;
        margin-top: 3rem;
    }

    .roadmap-column {
        justify-content: flex-start;
        padding-left: 70px;
    }

    .roadmap-node {
        left: 30px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .roadmap-column:hover .roadmap-node {
        transform: translate(-50%, -50%) scale(1.12);
    }

    .roadmap-card.above,
    .roadmap-card.below {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        text-align: left !important;
        flex-direction: row-reverse !important;
        gap: 1.5rem;
    }

    .roadmap-card.above .roadmap-badge,
    .roadmap-card.below .roadmap-badge {
        align-self: flex-start;
    }

    .roadmap-column:hover .roadmap-card {
        transform: translateY(-3px);
    }
}

@media screen and (max-width: 576px) {
    .roadmap-column {
        padding-left: 55px;
    }

    .roadmap-axis {
        left: 20px;
    }

    .roadmap-node {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .roadmap-card.above,
    .roadmap-card.below {
        flex-direction: column-reverse !important;
        align-items: flex-start;
        gap: 1rem;
    }

    .roadmap-image {
        width: 80px;
        height: 80px;
    }
}

/* ================================================================
   RECONCILIATION MODULES SECTION (PREMIUM GRID)
   ================================================================ */
.modules-section {
    padding: 6.5rem 0;
    /* background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); */
    position: relative;
    background-color: aliceblue;
    overflow: hidden;
}

.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(209, 161, 83, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.modules-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-top: 3.5rem;
}

.module-card {
    background: var(--bg-white);
    border: 1px solid rgba(12, 34, 64, 0.07);
    border-radius: 24px;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(12, 34, 64, 0.02), 0 2px 4px rgba(12, 34, 64, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    /* Allows overlapping badges/icons to overflow nicely */
    z-index: 2;
}

/* Premium Top Border Accent on Hover */
.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

/* Premium Bottom Gold Light Leak Glow on Hover */
.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(120px circle at 50% 100%, rgba(209, 161, 83, 0.06) 0%, transparent 100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.module-card:hover::before,
.module-card:hover::after {
    opacity: 1;
}

.module-img-wrapper {
    width: calc(100% + 2.7rem);
    margin: -1.35rem -1.35rem 1.2rem -1.35rem;
    height: 180px;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    position: relative;
    background-color: #f8fafc;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
    z-index: 2;
}

/* Image Vignette Overlay on Hover */
.module-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 34, 64, 0) 50%, rgba(12, 34, 64, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.module-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Floating Badge with Status Dot */
.module-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(12, 34, 64, 0.8);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.module-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-color);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
        box-shadow: 0 0 12px var(--accent-color);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

.module-card:hover .module-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.module-card:hover .module-badge::before {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    animation-play-state: paused;
}

/* Floating Overlapping Icon Badge */
.module-card-icon {
    position: absolute;
    top: 140px;
    /* Overlaps bottom of img-wrapper */
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(12, 34, 64, 0.18);
    border: 3px solid var(--bg-white);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.module-card-icon i {
    font-size: 1.15rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-content-box {
    padding: 1.85rem 0.4rem 0.4rem 0.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.module-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.module-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.6rem;
}

.module-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    padding-bottom: 4px;
    width: fit-content;
}

.module-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: width 0.3s ease;
}

.module-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(12, 34, 64, 0.05);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-link-arrow i {
    font-size: 0.72rem;
    transition: transform 0.4s ease;
}

/* Hover States */
.module-card:hover {
    transform: translateY(-10px);
    border-color: rgba(209, 161, 83, 0.25);
    box-shadow: 0 25px 50px rgba(12, 34, 64, 0.08), 0 6px 18px rgba(209, 161, 83, 0.03);
}

.module-card:hover .module-img-wrapper::after {
    opacity: 1;
}

.module-card:hover .module-card-img {
    transform: scale(1.08);
}

.module-card:hover .module-card-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--primary-color);
    transform: scale(1.08) rotate(360deg);
    box-shadow: 0 8px 22px rgba(209, 161, 83, 0.4);
    border-color: var(--bg-white);
}

.module-card:hover .module-title {
    color: var(--primary-light);
}

.module-card:hover .module-link {
    color: var(--accent-color);
}

.module-card:hover .module-link::after {
    width: 100%;
}

.module-card:hover .module-link-arrow {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.08);
}

.module-card:hover .module-link-arrow i {
    transform: translateX(3px);
}

/* Responsive Overrides */
@media screen and (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

@media screen and (max-width: 900px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .modules-section {
        padding: 4.5rem 0;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-top: 2.5rem;
    }

    .module-card {
        padding: 1.15rem;
        border-radius: 20px;
    }

    .module-card::before {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .module-card::after {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .module-img-wrapper {
        width: calc(100% + 2.3rem);
        margin: -1.15rem -1.15rem 1.2rem -1.15rem;
        height: 190px;
        border-top-left-radius: 19px;
        border-top-right-radius: 19px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .module-card-icon {
        top: 150px;
    }
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS (PREMIUM INTERACTIVE DECK)
   ================================================================ */
.reveal-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade-in.animated {
    opacity: 1;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

.delay-400 {
    transition-delay: 0.4s !important;
}

.delay-500 {
    transition-delay: 0.5s !important;
}

.delay-600 {
    transition-delay: 0.6s !important;
}

.delay-700 {
    transition-delay: 0.7s !important;
}

.delay-800 {
    transition-delay: 0.8s !important;
}

/* ================================================================
   BREADCRUMB HEADER BANNER
   ================================================================ */
.breadcrumb-banner {
    position: relative;
    padding: 9.5rem 0 7rem 0;
    /* Extra top padding to clear header-navigation height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    min-height: 300px;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 26, 50, 0.92) 0%, rgba(9, 26, 50, 0.78) 100%);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    text-transform: capitalize;
    letter-spacing: 1.5px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb-trail a:hover {
    color: var(--accent-color);
}

.breadcrumb-trail i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-trail span {
    color: var(--accent-color);
}

/* ================================================================
   ABOUT DEDICATED SUBPAGE SECTION
   ================================================================ */
.about-page-section {
    padding: 6.5rem 0;
    background-color: var(--bg-light);
}

.about-page-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.about-page-text p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 1.8rem;
}

.about-page-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-page-media {
    position: relative;
}

.about-page-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(12, 34, 64, 0.08);
    transition: var(--transition-smooth);
    background-color: #f7f9fc;
}

.about-page-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.about-page-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-page-img-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(12, 34, 64, 0.12);
}

.about-page-img-wrapper:hover .about-page-img {
    transform: scale(1.05);
}

/* Premium Floating Badge overlay on Images */
.about-experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(12, 34, 64, 0.85);
    border: 1px solid rgba(209, 161, 83, 0.35);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-page-img-wrapper:hover~.about-experience-badge,
.about-experience-badge:hover {
    transform: translateY(-4px);
    background: rgba(12, 34, 64, 0.95);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(209, 161, 83, 0.2);
}

.about-experience-badge i {
    font-size: 1.15rem;
    color: var(--accent-color);
}

.about-experience-badge .experience-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ================================================================
   GLOBAL FLOATING WHATSAPP CHAT WIDGET
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float i {
    font-size: 2.1rem;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
    color: #ffffff;
}

@media screen and (max-width: 991px) {
    .about-page-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .breadcrumb-title {
        font-size: 2.2rem;
    }

    .breadcrumb-banner {
        padding: 8.5rem 0 6rem 0;
        min-height: 240px;
    }
}

/* ================================================================
   ABOUT PRODUCT AREAS & ACCORDION CARDS
   ================================================================ */
.product-areas-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-area-item {
    background: var(--bg-white);
    border: 1px solid rgba(12, 34, 64, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.6rem;
    box-shadow: 0 4px 15px rgba(12, 34, 64, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.product-area-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    user-select: none;
}

.product-area-header i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

.product-area-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.product-area-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
    padding-left: 2.2rem;
    border-left: 2px solid rgba(209, 161, 83, 0.25);
    margin-top: 0;
}

.product-area-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Hover States for Product Area Items */
.product-area-item:hover {
    border-color: rgba(209, 161, 83, 0.3);
    box-shadow: 0 10px 25px rgba(12, 34, 64, 0.04);
}

.product-area-item.active {
    border-color: rgba(209, 161, 83, 0.4);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(209, 161, 83, 0.02) 100%);
    box-shadow: 0 12px 30px rgba(12, 34, 64, 0.05);
}

.product-area-item.active .product-area-header i {
    transform: scale(1.1) rotate(180deg);
    /* Rotate checking checkmark as visual cue */
    color: var(--accent-hover);
}

.product-area-item.active .product-area-header h4 {
    color: var(--primary-light);
}

.product-area-item.active .product-area-body {
    max-height: 180px;
    /* Expand accordion smooth */
    opacity: 1;
    margin-top: 0.85rem;
}

/* ================================================================
   GLASSMORPHIC CALLOUT CARD
   ================================================================ */
.about-callout-card {
    background: linear-gradient(135deg, rgba(12, 34, 64, 0.04) 0%, rgba(12, 34, 64, 0.01) 100%);
    border: 1px solid rgba(12, 34, 64, 0.06);
    border-left: 5px solid var(--accent-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(12, 34, 64, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-callout-card:hover {
    border-color: rgba(209, 161, 83, 0.2);
    border-left-color: var(--accent-hover);
    box-shadow: 0 25px 55px rgba(12, 34, 64, 0.05);
}

.callout-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.callout-collage-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-container {
    position: relative;
    width: 280px;
    height: 240px;
}

.collage-img {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(12, 34, 64, 0.14);
    border: 3.5px solid var(--bg-white);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image 1: Main (Center/Background) */
.img-main {
    width: 220px;
    height: 150px;
    top: 50px;
    left: 30px;
    z-index: 1;
}

/* Image 2: Top Right */
.img-secondary {
    width: 160px;
    height: 110px;
    top: -15px;
    right: -40px;
    z-index: 2;
}

/* Image 3: Bottom Left */
.img-tertiary {
    width: 150px;
    height: 105px;
    bottom: -20px;
    left: -40px;
    z-index: 3;
}

/* Hover Shifts */
.callout-collage-wrapper:hover .img-main {
    transform: scale(1.02);
}

.callout-collage-wrapper:hover .img-secondary {
    transform: translate(10px, -10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(12, 34, 64, 0.22);
}

.callout-collage-wrapper:hover .img-tertiary {
    transform: translate(-10px, 10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(12, 34, 64, 0.22);
}

.callout-content {
    display: flex;
    flex-direction: column;
}

.callout-main-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.callout-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.callout-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.callout-detail-item i {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.callout-detail-item p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.95;
}

.callout-detail-item p strong {
    color: var(--primary-color);
}

@media screen and (max-width: 991px) {
    .callout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .callout-collage-wrapper {
        height: 260px;
        margin-bottom: 1.5rem;
    }

    .about-callout-card {
        padding: 2.5rem;
    }
}

/* ================================================================
   ABOUT EXPERTISE LIST (CARD CHECKLIST)
   ================================================================ */
.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 1px solid rgba(12, 34, 64, 0.05);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 4px 15px rgba(12, 34, 64, 0.005);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-list li i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.expertise-list li:hover {
    transform: translateX(6px);
    border-color: rgba(209, 161, 83, 0.28);
    box-shadow: 0 10px 25px rgba(12, 34, 64, 0.04);
}

.expertise-list li:hover i {
    transform: scale(1.15);
}

/* ================================================================
   ROBOTICS PAGE INTERACTIVE ORBIT DIAGRAM
   ================================================================ */
.robotics-intro-section {
    background-color: var(--bg-light);
    padding: 6.5rem 0;
}

.rpa-orbit-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Orbit Visual Container */
.orbit-visual-wrapper {
    position: relative;
    width: 650px;
    height: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Hub */
.orbit-center-hub {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: hubFloat 4.5s ease-in-out infinite;
}

.hub-core {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2.2rem;
    box-shadow: 0 12px 35px rgba(12, 34, 64, 0.25);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pulsing radar waves for central hub */
.pulse-ring {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(209, 161, 83, 0.35);
    animation: hubPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

.pulse-ring.ring-2 {
    inset: -30px;
    animation-delay: 0.8s;
    border-color: rgba(209, 161, 83, 0.15);
}

@keyframes hubPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Orbit Path Dotted Ring */
.orbit-track-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(12, 34, 64, 0.09);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

/* Orbit Satellite Node */
.satellite-node {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Math-based transform: rotates, translates out by radius 250px, then counter-rotates */
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(250px) rotate(calc(var(--angle) * -1));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
    border: 3.5px solid var(--bg-white);
    box-shadow: 0 8px 25px rgba(12, 34, 64, 0.12);
    animation: floatBob 4s ease-in-out infinite;
}

.node-inner {
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.node-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.85;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
}

/* Individual Gradient Node Assignments */
.node-email {
    background: linear-gradient(135deg, #3a86ff 0%, #002df3 100%);
    animation-delay: 0s;
}

.node-portal {
    background: linear-gradient(135deg, #00d2ff 0%, #0088a8 100%);
    animation-delay: 0.5s;
}

.node-enrichment {
    background: linear-gradient(135deg, #7209b7 0%, #4f0381 100%);
    animation-delay: 1s;
}

.node-audit {
    background: linear-gradient(135deg, #e4a853 0%, #b8860b 100%);
    animation-delay: 1.5s;
}

.node-matching {
    background: linear-gradient(135deg, #ff0844 0%, #cc0033 100%);
    animation-delay: 2s;
}

.node-standardization {
    background: linear-gradient(135deg, #f77f00 0%, #d66400 100%);
    animation-delay: 2.5s;
}

.node-folder {
    background: linear-gradient(135deg, #11998e 0%, #0c7a71 100%);
    animation-delay: 3s;
}

/* Active & Hover States */
.satellite-node:hover,
.satellite-node.active {
    animation-play-state: paused;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(250px) rotate(calc(var(--angle) * -1)) scale(1.1);
    border-color: var(--bg-white);
}

.satellite-node:hover .node-inner {
    transform: scale(1.15);
}

.satellite-node.node-email:hover,
.satellite-node.node-email.active {
    box-shadow: 0 12px 30px rgba(58, 134, 255, 0.45);
}

.satellite-node.node-portal:hover,
.satellite-node.node-portal.active {
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.45);
}

.satellite-node.node-enrichment:hover,
.satellite-node.node-enrichment.active {
    box-shadow: 0 12px 30px rgba(114, 9, 183, 0.45);
}

.satellite-node.node-audit:hover,
.satellite-node.node-audit.active {
    box-shadow: 0 12px 30px rgba(228, 168, 83, 0.45);
}

.satellite-node.node-matching:hover,
.satellite-node.node-matching.active {
    box-shadow: 0 12px 30px rgba(255, 8, 68, 0.45);
}

.satellite-node.node-standardization:hover,
.satellite-node.node-standardization.active {
    box-shadow: 0 12px 30px rgba(247, 127, 0, 0.45);
}

.satellite-node.node-folder:hover,
.satellite-node.node-folder.active {
    box-shadow: 0 12px 30px rgba(17, 153, 142, 0.45);
}

.satellite-node:hover .node-label,
.satellite-node.active .node-label {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 800;
}

/* Responsive Orbit Layout */
@media screen and (max-width: 991px) {
    .orbit-visual-wrapper {
        width: 360px;
        height: 360px;
    }

    .orbit-track-ring {
        width: 250px;
        height: 250px;
    }

    .orbit-center-hub {
        width: 80px;
        height: 80px;
    }

    .hub-core {
        font-size: 1.6rem;
    }

    .satellite-node {
        width: 52px;
        height: 52px;
        border-width: 2.5px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translate(125px) rotate(calc(var(--angle) * -1));
    }

    .satellite-node:hover,
    .satellite-node.active {
        transform: translate(-50%, -50%) rotate(var(--angle)) translate(125px) rotate(calc(var(--angle) * -1)) scale(1.08);
    }

    .node-label {
        font-size: 0.65rem;
        bottom: -22px;
    }

    .node-inner {
        font-size: 1rem;
    }
}

/* ================================================================
   ROBOTICS PAGE MEDIA DECORATIVE BACKDROP
   ================================================================ */
.media-background-shapes {
    position: absolute;
    inset: -30px;
    z-index: 1;
    pointer-events: none;
}

/* Gold background glow */
.shape-glow {
    position: absolute;
    bottom: -15px;
    right: -25px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(209, 161, 83, 0.16) 0%, transparent 70%);
    filter: blur(20px);
}

/* Dotted grid pattern overlay */
.shape-dots {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(rgba(209, 161, 83, 0.35) 1.5px, transparent 1.5px);
    background-size: 11px 11px;
    opacity: 0.6;
}

/* Offset gold frame outline */
.shape-square {
    position: absolute;
    inset: 15px -15px -15px 15px;
    border: 2.5px solid var(--accent-color);
    border-radius: 24px;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .about-page-img-wrapper {
        height: 360px !important;
    }

    .media-background-shapes {
        inset: -20px;
    }
}

@media screen and (max-width: 575px) {
    .about-page-img-wrapper {
        height: 280px !important;
    }

    .media-background-shapes {
        inset: -15px;
    }
}

/* ================================================================
   ORBIT STATIC CONTAINER
   ================================================================ */
.orbit-satellites-ring {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   ROBOTICS DIAGRAM BOBBING/FLOATING ANIMATIONS
   ================================================================ */
@keyframes floatBob {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translate(250px) rotate(calc(var(--angle) * -1)) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translate(250px) rotate(calc(var(--angle) * -1)) translateY(-8px);
    }
}

@keyframes hubFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-6px);
    }
}

/* ================================================================
   RECONCILIARE PAGE STICKY SPLIT LAYOUT
   ================================================================ */
.reconciliare-split-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.split-layout-wrapper {
    display: flex;
    gap: 5.5rem;
    align-items: stretch;
    position: relative;
}

/* Sticky Left Side Column */
.split-sticky-column {
    width: 44%;
    position: sticky;
    top: 120px;
    z-index: 10;
    height: fit-content;
}

.sticky-media-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(12, 34, 64, 0.05);
    box-shadow: 0 25px 60px rgba(12, 34, 64, 0.08);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.sticky-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(12, 34, 64, 0.12);
}

.media-glow-effect {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 161, 83, 0.12) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
}

.sticky-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    position: relative;
    z-index: 2;
}

/* Scrollable Right Side Column */
.split-scrollable-column {
    width: 56%;
}

.scroll-intro-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.scroll-body-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 1.8rem;
}

/* Cards & Panel Styling */
.highlights-card-panel {
    background: var(--bg-light);
    border: 1px solid rgba(12, 34, 64, 0.05);
    border-radius: 24px;
    padding: 2.8rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(12, 34, 64, 0.015);
}

.recon-products-list-panel {
    background: var(--bg-white);
    border: 1px solid rgba(12, 34, 64, 0.06);
    border-radius: 24px;
    padding: 2.8rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(12, 34, 64, 0.010);
}

.panel-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    line-height: 1.4;
}

.highlights-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highlights-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.highlights-checklist li i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlights-checklist li span {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-dark);
    opacity: 0.95;
    font-weight: 500;
}

.products-ticklist li i {
    color: var(--primary-light);
    font-size: 1.05rem;
    margin-top: 0.35rem;
}

/* Responsive Sticky Grid */
@media screen and (max-width: 991px) {
    .split-layout-wrapper {
        flex-direction: column;
        gap: 3.5rem;
    }

    .split-sticky-column,
    .split-scrollable-column {
        width: 100%;
    }

    .split-sticky-column {
        position: relative;
        top: 0;
        height: auto;
    }

    .sticky-product-img {
        max-height: 380px;
    }
}

/* ================================================================
   BANK RECONCILIATIONS ACCORDION STYLES
   ================================================================ */
.bank-accordion-section {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 40px; */
}

.bank-accordion-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
}

.bank-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease;
}

.bank-accordion-item.active {
    border-bottom-color: var(--accent-color);
}

.bank-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: pointer;
    user-select: none;
}

.bank-accordion-header .header-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-main);
    margin-right: 1.5rem;
    opacity: 0.9;
}

.bank-accordion-header .header-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.bank-accordion-item.active .bank-accordion-header .header-text {
    color: var(--accent-color);
}

.bank-accordion-header .header-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bank-accordion-item.active .bank-accordion-header .header-icon {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Accordion Collapsible Body */
.bank-accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.bank-accordion-item.active .bank-accordion-body {
    max-height: 500px;
    opacity: 1;
}

.accordion-body-inner {
    padding: 0.5rem 0 2rem 2.8rem;
}

/* Bullets Grid */
.accordion-bullets-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 2.5rem;
}

.accordion-bullets-grid li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.accordion-bullets-grid li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    top: -0.15rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .accordion-bullets-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bank-accordion-header .header-text {
        font-size: 1.15rem;
    }

    .accordion-body-inner {
        padding-left: 1.5rem;
    }
}

/* ================================================================
   MOBILE VIEW & RESPONSIVE LAYOUT OVERRIDES
   ================================================================ */

/* Responsive helper classes for Bank Reconciliation Features */
.flex-row-reverse-desktop {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    flex-direction: row-reverse;
}

.two-column-grid-desktop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 991px) {
    .flex-row-reverse-desktop {
        flex-direction: column !important;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .two-column-grid-desktop {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* Mobile-only menu item & demo button controls */
.mobile-only-demo {
    display: none;
}

@media screen and (max-width: 768px) {

    /* Hide topbar Schedule Demo button on mobile header */
    .nav-controls .btn-demo {
        display: none !important;
    }

    /* Display Schedule Demo button inside side-slide drawer menu only */
    .mobile-only-demo {
        display: block !important;
        padding: 1.5rem 1.25rem !important;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .btn-demo-mobile {
        display: inline-block;
        width: 100%;
        padding: 0.95rem 1.5rem;
        background-color: var(--accent-color);
        color: var(--primary-color) !important;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(209, 161, 83, 0.15);
        transition: all 0.3s ease;
    }

    .btn-demo-mobile:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
    }
}

/* ============================================================
   BLOG PAGE — blog.php
   ============================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 34, 64, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(12, 34, 64, 0.08);
}

.blog-card-img-wrapper {
    position: relative;
    height: 230px;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(12, 34, 64, 0.15);
    z-index: 2;
}

.blog-card-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-card-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 1.1rem;
}

.blog-card-title a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-color);
}

.blog-card-link:hover i {
    transform: translateX(6px);
}

@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card-body {
        padding: 1.8rem;
    }
}

/* ============================================================
   BLOG DETAIL PAGE — blog-detail.php
   ============================================================ */

.blog-detail-wrapper {
    display: block;
    width: 100%;
}

.blog-detail-main {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    box-shadow: 0 10px 35px rgba(12, 34, 64, 0.04);
    border: 1px solid var(--border-color);
}

.blog-detail-hero-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 40px rgba(12, 34, 64, 0.08);
}

.blog-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 1rem 0 1.2rem;
}

.blog-detail-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
}

.blog-detail-body {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-detail-body h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.blog-detail-body p {
    margin-bottom: 1.5rem;
}

.blog-blockquote {
    border-left: 4px solid var(--accent-color);
    background-color: rgba(209, 161, 83, 0.06);
    padding: 1.8rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
}

.blog-blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-blockquote cite {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.blog-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.blog-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.blog-feature-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.blog-cta-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c3460 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0 2rem;
    color: #ffffff;
}

.blog-cta-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.blog-cta-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.btn-blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-blog-cta:hover {
    background-color: var(--accent-hover);
    transform: translateX(4px);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-back-link i {
    transition: transform 0.3s ease;
}

.blog-back-link:hover {
    color: var(--accent-color);
}

.blog-back-link:hover i {
    transform: translateX(-6px);
}

@media screen and (max-width: 1024px) {
    .blog-detail-main {
        padding: 2.5rem 3rem;
    }
}

@media screen and (max-width: 768px) {
    .blog-detail-main {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-detail-hero-img {
        height: 240px;
    }
}

/* ============================================================
   CONTACT PAGE — contact.php
   ============================================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-detail-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-detail-card:hover {
    transform: translateX(6px);
    border-color: var(--accent-color);
}

.detail-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(209, 161, 83, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.detail-card-content p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.form-container-card {
    background-color: var(--bg-light);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(12, 34, 64, 0.03);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.interactive-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(209, 161, 83, 0.12);
}

.btn-submit-message {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 12px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(209, 161, 83, 0.15);
    transition: all 0.3s ease;
}

.btn-submit-message:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .form-container-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* contact us  */


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-detail-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-detail-card:hover {
    transform: translateX(6px);
    border-color: var(--accent-color);
}

.detail-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(209, 161, 83, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.detail-card-content p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Form Styles */
.form-container-card {
    background-color: var(--bg-light);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(12, 34, 64, 0.03);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.interactive-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(209, 161, 83, 0.12);
}

.btn-submit-message {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 12px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(209, 161, 83, 0.15);
    transition: all 0.3s ease;
}

.btn-submit-message:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .form-container-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ================================================================
   GLOBAL FLOATING GOOGLE REVIEWS RATING BADGE
   ================================================================ */
.google-review-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #ffffff;
    color: #22252a;
    border: 1px solid rgba(12, 34, 64, 0.08);
    border-radius: 50px;
    padding: 0.6rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(12, 34, 64, 0.08);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.google-review-float:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(12, 34, 64, 0.15);
    border-color: rgba(209, 161, 83, 0.35);
}

.google-float-icon {
    width: 32px;
    height: 32px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #4285F4;
    /* Google Blue */
    transition: all 0.3s ease;
}

.google-review-float:hover .google-float-icon {
    background-color: #4285F4;
    color: #ffffff;
}

.google-float-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.google-float-stars {
    font-size: 0.72rem;
    color: #f1c40f;
    /* Gold Star */
    display: flex;
    gap: 1px;
}

.google-float-text {
    font-size: 0.75rem;
    font-weight: 550;
    color: var(--text-dark);
}

@media screen and (max-width: 576px) {
    .google-review-float {
        bottom: 20px;
        left: 20px;
        padding: 0.5rem 0.9rem;
        gap: 0.6rem;
    }

    .google-float-text {
        font-size: 0.7rem;
    }
}
}

/* ================================================================
   DEMO BOOKING SECTION STYLE RULES
   ================================================================ */
.demo-section-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.demo-input {
    outline: none;
}

.demo-input:focus {
    border-color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(209, 161, 83, 0.2) !important;
}

@media screen and (max-width: 991px) {
    .demo-section-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .demo-content-block {
        text-align: center;
    }

    .demo-content-block .section-title {
        text-align: center !important;
        font-size: 2.2rem !important;
    }

    .demo-bullets {
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .demo-bullets>div {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .demo-content-block .section-title {
        font-size: 1.8rem !important;
    }

    .demo-form-block .form-container-card {
        padding: 1.8rem 1.2rem !important;
    }
}

.quick-talk-card {
    transition: all 0.3s ease;
}

@media screen and (max-width: 576px) {
    .quick-talk-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.5rem !important;
        gap: 1.2rem !important;
    }
}

/* ================================================================
   DIFFERENTIATION SECTION
================================================================ */
.differentiation-section {
    background-color: var(--bg-light);
    position: relative;
    z-index: 5;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.diff-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 2rem;
    align-items: start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(12, 34, 64, 0.05);
    border-color: rgba(209, 161, 83, 0.2);
}

.diff-card:hover::before {
    background: var(--accent-color);
}

.diff-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.robotics-icon {
    background-color: rgba(209, 161, 83, 0.1);
    color: var(--accent-color);
}

.matching-icon {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.diff-card:hover .robotics-icon {
    background-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(209, 161, 83, 0.3);
}

.diff-card:hover .matching-icon {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.diff-content {
    flex-grow: 1;
}

.diff-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.diff-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.95;
    margin: 0;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

.highlight-warning {
    color: #ea4335;
    font-weight: 700;
}

@media screen and (max-width: 991px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .diff-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.2rem;
    }

    .diff-card-title {
        font-size: 1.25rem;
    }
}