/* CSS Variables & Theme Setup */
:root {
    /* Color Palette */
    --primary-color: #0B1F3A;

    /* Deep Navy */
    --accent-color: #2172c9;
    /* --accent-color: #1367c0;*/

    /* Electric Blue */
    --accent-hover: #0066FF;
    --bg-color: #FFFFFF;
    /* White */
    --bg-light-gray: #F8F9FA;
    /* Very light gray for alternate sections */
    --text-color: #333333;
    /* Dark Gray for body text */
    --text-light: #666666;
    /* Lighter gray for secondary text */
    --white: #FFFFFF;

    /* Navigation & Header */
    --header-height: 80px;
    --header-bg: rgba(255, 255, 255, 0.85);
    --header-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    --glass-blur: 10px;

    /* Spacing & Layout */
    --font-primary: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width-desktop: 1400px;
    --container-width-large: 1800px;
    /* For larger screens */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-xxl: 20px;
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base font size */
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 1.125rem;
    /* Slightly larger for readability */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-dark:hover {
    background-color: #050a14;
    border-color: #050a14;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 95%;
    max-width: var(--container-width-desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Responsive Container for Larger Screens */
@media (min-width: 1600px) {
    .container {
        max-width: var(--container-width-large);
        width: 95%;
    }
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

/* Animation Classes (Generic) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* ===========================
   Header & Navigation 
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-medium);
    border-bottom: 1px solid transparent;
}

/* White header from start for solution pages */
.security-page .header,
.comm-page .header,
.parking-page .header,
.network-page .header,
.av-page .header {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--header-shadow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--header-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Solid white header for solution pages with colorful backgrounds */
.security-page .header.scrolled,
.comm-page .header.scrolled,
.parking-page .header.scrolled,
.network-page .header.scrolled,
.av-page .header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--header-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
    margin-left: 4px;
    vertical-align: middle;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    color: var(--accent-color);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-medium);
}

.dropdown-toggle:hover::after,
.dropdown-toggle.active::after {
    width: 100%;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 260px;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(3px);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light-gray);
    color: var(--accent-color);
}

/* Solution-specific dropdown hover colors */
.dropdown-menu li:nth-child(1) a:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.dropdown-menu li:nth-child(2) a:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-menu li:nth-child(3) a:hover {
    background-color: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.dropdown-menu li:nth-child(4) a:hover {
    background-color: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.dropdown-menu li:nth-child(5) a:hover {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

/* Contact Button in Nav */
.nav-link.btn-contact {
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    transition: all var(--transition-medium);
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
}

/* Mobile Menu */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right 0.4s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    margin-top: 1rem;
    margin-left: 1rem;
    border-left: 2px solid var(--bg-light-gray);
    padding-left: 1rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.8rem;
}

.mobile-dropdown-menu li a {
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

/* Mobile solution-specific dropdown hover colors */
.mobile-dropdown-menu li:nth-child(1) a:hover {
    color: #007bff;
}

.mobile-dropdown-menu li:nth-child(2) a:hover {
    color: #10b981;
}

.mobile-dropdown-menu li:nth-child(3) a:hover {
    color: #fb923c;
}

.mobile-dropdown-menu li:nth-child(4) a:hover {
    color: #06b6d4;
}

.mobile-dropdown-menu li:nth-child(5) a:hover {
    color: #a855f7;
}


/* ===========================
   Hero Section 
   =========================== */
/* ===========================
   Hero Section 
   =========================== */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    /* Increased padding for impact */
    background-image: url('/images/cam2.jpg');
    background-size: cover;

    background-position: 85% center;

    background-repeat: no-repeat;
    /* Removed solid bg color, let image show */
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Optional overlay if text needs help standing out, using existing colors (white with opacity) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Explicitly enforce container width to prevent flex shrinking */
    width: 96%;
    max-width: var(--container-width-desktop);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Removed media query for grid columns since we want single column layout */
.hero-content {
    width: 100%;
    max-width: 800px;
    /* Constrain text width for readability */
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
        /* Larger title for impact */
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--primary-color);
    /* Darker text color (Navy) for contrast on white */
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 500;
    /* slightly bolder for readability */
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===========================
   Stats Section 
   =========================== */
/* ===========================
   Stats Section 
   =========================== */
.stats-section {
    padding: 2rem 0 80px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.stats-container {
    display: grid;
    /* Mobile: 1 Column */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .stats-container {
        /* Tablet/Desktop: 12 Columns for Asymmetry */
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto;
        /* Two Rows */
        gap: 2px;
        /* Slight gap creates the border lines */
        background: rgba(255, 255, 255, 0.1);
        /* The separator line color */
        padding: 2px;
        /* Border around edge */
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        overflow: hidden;
    }
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-color);
    /* Lighter Dark Blue */
    /* Remove individual radius and shadow for seamless look */
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: background-color var(--transition-medium);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .stat-card {
        border-radius: 20px;
        /* Keep rounded on mobile stack */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Asymmetric Grid Spans (Desktop) */
@media (min-width: 768px) {

    /* Row 1 */
    .stat-card:nth-child(1) {
        grid-column: span 7;
    }

    .stat-card:nth-child(2) {
        grid-column: span 5;
    }

    /* Row 2 */
    .stat-card:nth-child(3) {
        grid-column: span 5;
    }

    .stat-card:nth-child(4) {
        grid-column: span 7;
    }
}

.stat-card::after {
    display: none;
}

.stat-card:hover {
    transform: none;
    /* No lift */
    background: #234069;
    /* Slightly lighter blue hover */
    z-index: 2;
}

.stat-icon {
    font-size: 3.5rem;
    /* Larger Icon */
    color: var(--bg-color);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
    gap: 6px;
}

.stat-number,
.stat-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    /* White on dark bg */
    line-height: 1.1;
    margin-bottom: 0;
    -webkit-text-fill-color: var(--white);
    background: none;
}

.stat-text {
    font-size: 1.8rem;
    font-weight: 600;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 0;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    /* Subtle white text */
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ===========================
   About Section 
   =========================== */
/* ===========================
   About Section 
   =========================== */
.about-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1rem;
    /* Smaller font */
    line-height: 1.6;
    /* Tighter line height */
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    /* Reduced spacing */
}

.about-lead {
    font-size: 1.15rem !important;
    /* Smaller lead */
    font-weight: 500;
    color: var(--primary-color) !important;
    margin-bottom: 1.2rem !important;
}

.highlight-year {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.05em;
}

.highlight-location {
    font-weight: 700;
    color: var(--primary-color);
}

/* Creative Image Wrapper */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Square aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background: #f0f2f5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-real {
    transform: scale(1.05);
}

/* Glass Badges */
.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    padding: 8px 12px;
    /* Smaller padding */
    background: rgba(11, 31, 58, 0.4);
    /* Stronger glass effect */
    backdrop-filter: blur(16px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    /* Rounded pill shape */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.3s ease;
}

.about-badge:hover {
    transform: translateY(-3px);
    background: rgba(11, 31, 58, 0.6);
}

.badge-top-left {
    top: 20px;
    left: 20px;
}

.badge-bottom-right {
    bottom: 20px;
    right: 20px;
}

.badge-icon-circle {
    width: auto;
    /* Remove fixed size */
    height: auto;
    background: transparent;
    /* Remove accent bg */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-circle .material-icons {
    color: var(--white);
    font-size: 18px;
    /* Smaller icon */
}

.badge-text {
    color: var(--white);
    font-size: 0.8rem;
    /* Smaller text */
    font-weight: 500;
    line-height: 1.2;
}

.about-image-wrapper:hover .about-image-real {
    transform: scale(1.05);
}

/* ===========================
   Services Section (Side-by-Side + Glass Grid)
   =========================== */
.services-section {
    padding: 40px 0;
    /* Lighter Dark Blue (Slate Navy) - Matching Stats Section Theme */
    background: #1A3050;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.services-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    /* Shifted to right */
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 60%);
    /* Slight increase */
    z-index: 1;
    pointer-events: none;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    /* Center align vertically */
}

@media (min-width: 992px) {
    .services-container {
        grid-template-columns: 0.7fr 1.3fr;
        /* Text narrower than Grid */
        gap: 2rem;
    }
}

/* Left Content Styles */
.services-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.services-section .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.services-intro {
    font-size: 1.2rem;
    color: #e2e8f0;
    /* Brighter / Near White for readability */
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.services-desc p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    /* Increased opacity */
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.services-cta {
    /* Filled Style Default */
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    /* Subtle shadow (less than hover) */
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.services-cta:hover {
    background: var(--primary-color);
    /* Darker on hover? Or same accent with glow */
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
    /* Stronger shadow on hover */
}

/* Right Grid Wrapper */
.services-grid-wrapper {
    position: relative;
    z-index: 2;
}

.services-widget-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-widget-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 3 Rows mimicking the Stats Asymmetry */
        grid-template-rows: repeat(3, auto);
        gap: 1.5rem;
    }

    /* Row 1 */
    .services-widget-grid .service-card:nth-child(1) {
        grid-column: span 7;
    }

    .services-widget-grid .service-card:nth-child(2) {
        grid-column: span 5;
    }

    /* Row 2 */
    .services-widget-grid .service-card:nth-child(3) {
        grid-column: span 5;
    }

    .services-widget-grid .service-card:nth-child(4) {
        grid-column: span 7;
    }

    /* Row 3 - Repeat asymmetry (3 cards) */
    .services-widget-grid .service-card:nth-child(5) {
        grid-column: span 5;
    }

    .services-widget-grid .service-card:nth-child(6) {
        grid-column: span 4;
    }

    .services-widget-grid .service-card:nth-child(7) {
        grid-column: span 3;
    }
}

/* Liquid Glass Cards (Optimized for widget grid) */
.service-card {
    /* Increased visibility before hover */
    background: rgba(255, 255, 255, 0.08);
    /* More opaque: 0.03 -> 0.08 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Slightly stronger border */
    border-radius: 24px;
    padding: 2rem 1.5rem;

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all var(--transition-medium);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

/* Hover - Enhanced Glass */
.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    /* Even brighter hover */
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

/* Shine effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.service-card:hover::after {
    left: 100%;
}

/* Icon Box inside Glass Card */
.service-icon-box {
    width: 50px;
    /* Smaller for grid */
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-icon-box {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

.service-icon-box .material-icons {
    font-size: 24px;
    /* Smaller icon */
    color: var(--accent-color);
    transition: color var(--transition-medium);
}

.service-card:hover .service-icon-box .material-icons {
    color: #ffffff !important;
}

.service-title {
    font-size: 1.15rem;
    /* Smaller for grid */
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Icon Box inside Glass Card */
.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass icon container */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-icon-box {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    /* Glow */
}

.service-icon-box .material-icons {
    font-size: 32px;
    color: var(--accent-color);
    /* Cyan/Accent inside */
    transition: color var(--transition-medium);
}

.service-card:hover .service-icon-box .material-icons {
    color: #0a192f;
    /* Dark icon on bright bg */
}

/* ===========================
   Process Section (Simple & Creative 4-Step)
   =========================== */
.process-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process-header {
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-section .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.process-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Timeline Wrapper */
.process-timeline-wrapper {
    position: relative;
    padding-top: 3rem;
    /* Space for the line */
}

/* The Loading Bar Container */
.process-loading-bar {
    position: absolute;
    top: 55px;
    /* Align with icon center */
    left: 12.5%;
    /* Start from center of first (1/8th) */
    right: 12.5%;
    /* End at center of last */
    height: 4px;
    background: #e2e8f0;
    /* Gray track */
    border-radius: 4px;
    z-index: 1;
}

/* The Dynamic Fill */
.loading-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* Default empty */
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    /* Glowing tip */
}

/* CSS Interaction Magic using :has() */
/* Default hover behavior - fill to hovered item */
.process-timeline-wrapper:has(.process-step:nth-child(1):hover) .loading-fill {
    width: 0%;
}

/* At start */
.process-timeline-wrapper:has(.process-step:nth-child(2):hover) .loading-fill {
    width: 33%;
}

.process-timeline-wrapper:has(.process-step:nth-child(3):hover) .loading-fill {
    width: 66%;
}

.process-timeline-wrapper:has(.process-step:nth-child(4):hover) .loading-fill {
    width: 100%;
}

/* Grid Layout */
.process-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .process-steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Step Item */
.process-step {
    text-align: center;
    padding: 1rem;
    cursor: default;
    /* Indicate interaction */
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

/* Icon Wrapper */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    /* Gray border default */
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--accent-color);
    background: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

/* Big Number Behind */
.step-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    background: var(--primary-color);
    padding: 2px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-icon-wrapper .material-icons {
    font-size: 36px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.process-step:hover .step-icon-wrapper .material-icons {
    color: var(--white);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .process-loading-bar {
        display: none;
        /* Hide horizontal bar on mobile */
    }

    .process-steps-grid {
        gap: 4rem;
    }

    .process-timeline-wrapper::before {
        content: '';
        /* Vertical line for mobile */
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: #e2e8f0;
        z-index: 1;
    }

    .step-icon-wrapper {
        margin-bottom: 1.5rem;
        background: var(--white);
        /* Ensure it covers line */
    }
}

/* ===========================
   Core Solutions Section (Bento Grid)
   =========================== */
.solutions-section {
    padding: 120px 0;
    background: #f8f9fa;
    /* Light gray background */
    position: relative;
}

.solutions-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solutions-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Bento Grid Layout */
.solutions-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
}

@media (min-width: 992px) {
    .solutions-bento-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* Removed fixed row heights to allow content to flow naturally */
        grid-template-rows: auto auto;
        gap: 2rem;
    }

    /* Layout Specifics */
    /* Row 1: Two Large Cards (6 columns each) */
    .solution-card.large-card:nth-child(1) {
        grid-column: span 6;
    }

    .solution-card.large-card:nth-child(2) {
        grid-column: span 6;
    }

    /* Row 2: Three Medium Cards (4 columns each) */
    .solution-card.medium-card:nth-child(3) {
        grid-column: span 4;
    }

    .solution-card.medium-card:nth-child(4) {
        grid-column: span 4;
    }

    .solution-card.medium-card:nth-child(5) {
        grid-column: span 4;
    }
}

/* Solution Card Styling */
.solution-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Hover Effect */
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f2f5;
}

.card-img-wrapper-big {
    height: 300px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .card-img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

/* Card Badge */
.card-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(33, 114, 201, 0.3);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    color: var(--primary-color);
    transition: color 0.3s ease;
    text-shadow: none;
    /* Removed previous text shadow */
}

.solution-card:hover .solution-title {
    color: var(--accent-color);
}

.solution-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
    text-shadow: none;
    /* Removed previous text shadow */
    max-width: 100%;
}

/* Link Styling */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-bottom: 2px;
}

.solution-link:hover {
    gap: 0.8rem;
    color: var(--accent-hover);
}

.solution-link .material-icons {
    font-size: 1.2rem;
}

/* ===========================
   Sectors Section (Minimalist Grid)
   =========================== */
.sectors-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    border-top: 1px solid #f8f9fa;
    /* Subtle separation */
}

.sectors-header {
    margin-bottom: 4.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sectors-section .section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.sectors-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sector-item {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.sector-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.08);
    /* Minimalist glow */
}

.sector-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* Perfect Circle */
    background: var(--primary-color);
    /* Dark Background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sector-item:hover .sector-icon {
    background: var(--accent-color);
    transform: rotate(10deg);
}

.sector-icon .material-icons {
    font-size: 22px;
    color: #ffffff;
    /* White Icon */
    transition: all 0.3s ease;
}

.sector-item:hover .sector-icon .material-icons {
    color: #ffffff;
}

.sector-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

/* ===========================
   Regional Presence Section
   =========================== */
.presence-section {
    padding: 120px 0;
    background: #fcfcfc;
    overflow: hidden;
}

.presence-flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .presence-flex {
        flex-direction: row;
        align-items: center;
    }

    .presence-content {
        flex: 1;
        padding-right: 5%;
    }

    .presence-image-box {
        background: transparent;
        flex: 1;
    }
}

.presence-badge {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.presence-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.presence-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.presence-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.presence-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.presence-image-wrapper {
    background: transparent;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);*/
}

.presence-img {
    background: transparent;
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.presence-image-wrapper:hover .presence-img {
    transform: scale(1.05);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    /* Reduced Height */
    position: relative;
    background: #050a14;
    /* Darker overall */
    overflow: hidden;
    color: var(--white);
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Subtler imagery */
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.75) 0%, rgba(16, 33, 58, 0.5) 100%);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    color: #ffffff;
    opacity: 0.55;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-btn .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .material-icons {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* ===========================
   Work Preview Section
   =========================== */
.work-preview-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.work-header {
    margin-bottom: 4rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-item:hover .work-img {
    transform: scale(1.1);
}

.work-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.6);
    /* Brand color with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.work-item:hover .work-hover-overlay {
    opacity: 1;
}

.work-hover-overlay .material-icons {
    color: var(--white);
    font-size: 40px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.work-item:hover .work-hover-overlay .material-icons {
    transform: translateY(0);
}

.work-cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ===========================
   Main Footer
   =========================== */
.main-footer {
    padding: 80px 0 30px;
    background: #050a14;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    /* Better alignment for horizontal nav */
    gap: 3rem;
    margin-bottom: 50px;
}

/* Footer Left */
.footer-left {
    flex: 1;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #ffffff;
    /* Explicit White */
}

.footer-logo .accent {
    color: var(--accent-color);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    /* Whiter */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Footer Center */
.footer-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 8rem;
    /* Space between the two lists */
    flex-wrap: wrap;
    /* responsive wrapping */
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Vertical list */
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.footer-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Right */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-quote-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-quote-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-right {
        align-items: center;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        order: 3;
    }

    .footer-nav {
        gap: 1.5rem;
    }
}

/* ===========================
   Portfolio Modal (Lightbox)
   =========================== */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-modal.active .modal-image {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2100;
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
}

/* ===========================
   Contact Page Full
   =========================== */
.contact-section-full {
    padding: 160px 0 100px;
    background: #fcfcfc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 350px 1fr;
        align-items: flex-start;
    }
}

/* Widgets */
.contact-widgets {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-widget-item:hover {
    transform: translateX(10px);
}

.widget-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-icon .material-icons {
    color: var(--white);
    font-size: 24px;
}

.widget-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.widget-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.widget-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.widget-socials a {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.widget-socials a:hover {
    color: var(--accent-color);
}

/* Modern Form */
.contact-form-container {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.modern-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .modern-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group:nth-child(3),
    .form-group:nth-child(4),
    .submit-btn {
        grid-column: span 2;
    }
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--primary-color);
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Label Logic */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid var(--accent-color);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn .material-icons {
    transition: transform 0.3s ease;
}

.submit-btn:hover .material-icons {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-section-full {
        padding-top: 120px;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .about-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .badge-icon-circle {
        width: 32px;
        height: 32px;
    }

    .badge-icon-circle .material-icons {
        font-size: 16px;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .badge-top-left {
        top: 15px;
        left: 15px;
    }

    .badge-bottom-right {
        bottom: 15px;
        right: 15px;
    }
}

/* ===========================
   Projects/Portfolio Page
   =========================== */
.projects-section {
    padding: 160px 0 100px;
    background: #f8fafc;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Masonry Grid (CSS Grid Dense) */
.projects-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    /* Base row height */
    grid-auto-flow: dense;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.project-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .material-icons {
    color: var(--white);
    font-size: 48px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay .material-icons {
    transform: scale(1);
}

/* Random Sizes for Masonry Feel */
/* We apply these classes via JS random logic */
.span-wide {
    grid-column: span 2;
}

.span-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {

    .span-wide,
    .span-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .projects-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 250px;
    }
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-num.active {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-num:hover:not(.active) {
    background: #e2e8f0;
    color: var(--primary-color);
}

/* ===========================
   Security Systems Page
   =========================== */
.security-page {
    background: #050a14;
}

.security-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0b1f3a 0%, #050a14 100%);
    position: relative;
    overflow: hidden;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.security-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.security-hero-icon {
    font-size: 80px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.security-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.security-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Category Header */
.security-category-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.security-header-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}

.security-header-split-left {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.security-header-split-right {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    max-height: 250px;
}

.security-header-split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .security-header-split {
        grid-template-columns: 1fr;
    }

    .security-header-split-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.security-category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.security-category-icon-wrapper .material-icons {
    font-size: 40px;
    color: var(--white);
}

.security-category-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.security-category-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Section */
.security-section {
    padding: 80px 0;
    background: #050a14;
}

.security-section-alt {
    background: #0a1220;
}

/* Subsection */
.security-subsection {
    margin-bottom: 5rem;
}

.security-subsection-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-subsection-title .material-icons {
    color: var(--accent-color);
    font-size: 28px;
}

/* Products Grid */
.security-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.security-product-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.security-product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a1220;
}

.security-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.security-product-card:hover .security-product-img img {
    transform: scale(1.1);
}

.security-product-info {
    padding: 1.25rem;
}

.security-product-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.security-brand {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.security-product-featured {
    grid-column: span 2;
}

.security-product-featured .security-product-img {
    height: 250px;
}

.security-product-wide {
    grid-column: span 2;
}

.security-product-wide .security-product-img {
    height: 250px;
}

@media (max-width: 768px) {

    .security-product-featured,
    .security-product-wide {
        grid-column: span 1;
    }
}

/* Software Grid */
.security-software-grid {
    display: grid;
    gap: 2rem;
}

.security-software-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.security-software-card.security-featured {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.security-software-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background: #0a1220;
}

.security-software-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.security-software-content {
    padding: 2.5rem;
}

.security-software-name {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.security-software-origin {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.security-software-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.security-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.security-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.security-features-list .material-icons {
    font-size: 18px;
    color: #10b981;
}

.security-integration-note {
    padding: 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Infrastructure Grid */
.security-infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-infrastructure-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.security-infrastructure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.security-infrastructure-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a1220;
}

.security-infrastructure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.security-infrastructure-card:hover .security-infrastructure-img img {
    transform: scale(1.05);
}

.security-infrastructure-content {
    padding: 1.5rem;
}

.security-infrastructure-content h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.security-infra-origin {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.security-infra-feature {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Featured Solution */
.security-featured-solution {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    align-items: center;
}

.security-featured-img {
    border-radius: 16px;
    overflow: hidden;
}

.security-featured-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

@media (min-width: 1800px) {
    .security-header-split-right {
        max-height: 350px;
    }

    .security-featured-img img {
        min-height: 350px;
    }
}

@media (max-width: 620px) {
    .security-featured-img img {
        min-height: 160px;
    }
}

@media (max-width: 440px) {
    .security-featured-img img {
        min-height: 120px;
    }
}

.security-featured-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.security-featured-brand {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.security-featured-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
    .security-hero-title {
        font-size: 2.5rem;
    }

    .security-category-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .security-category-title {
        font-size: 2rem;
    }

    .security-software-card.security-featured {
        grid-template-columns: 1fr;
    }

    .security-featured-solution {
        grid-template-columns: 1fr;
    }

    .security-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .security-hero {
        padding: 140px 0 60px;
    }

    .security-hero-icon {
        font-size: 60px;
    }

    .security-hero-title {
        font-size: 2rem;
    }

    .security-hero-subtitle {
        font-size: 1rem;
    }

    .security-section {
        padding: 60px 0;
    }

    .security-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Communication Systems Page
   =========================== */
.comm-page {
    background: #0a0e12;
}

.comm-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #064e3b 0%, #0a0e12 100%);
    position: relative;
    overflow: hidden;
}

.comm-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.comm-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comm-hero-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.comm-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.comm-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Section */
.comm-section {
    padding: 80px 0;
    background: #0a0e12;
}

.comm-section-alt {
    background: #0f1419;
}

/* Category Header Alt (Left-aligned) */
.comm-category-header-alt {
    text-align: left;
    margin-bottom: 3rem;
}

.comm-category-icon {
    font-size: 50px;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.comm-category-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.comm-category-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
}

/* Category Header Center */
.comm-category-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.comm-center-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.comm-category-header-center .comm-category-desc {
    max-width: 800px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.comm-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.comm-bento-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.comm-bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.comm-bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.comm-bento-tall {
    grid-row: span 2;
}

.comm-bento-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comm-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.comm-bento-item:hover .comm-bento-img img {
    transform: scale(1.1);
}

.comm-bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.comm-bento-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.comm-bento-brand {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

@media (max-width: 768px) {
    .comm-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .comm-bento-large,
    .comm-bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Split Section Layout */
.comm-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comm-split-icon {
    font-size: 50px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.comm-split-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.comm-split-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.comm-product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comm-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comm-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(5px);
}

.comm-list-item .material-icons {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.comm-list-item h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.comm-list-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.comm-split-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.comm-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .comm-split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Horizontal Cards */
.comm-horizontal-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comm-horizontal-card {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comm-horizontal-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.comm-horizontal-img {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    background: #0a0e12;
}

.comm-horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.comm-horizontal-card:hover .comm-horizontal-img img {
    transform: scale(1.05);
}

.comm-horizontal-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comm-horizontal-content h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.comm-horizontal-brand {
    font-size: 1rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 600;
}

.comm-horizontal-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .comm-horizontal-card {
        grid-template-columns: 1fr;
    }
}

/* Featured Category */
.comm-featured-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comm-featured-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.comm-featured-icon-box .material-icons {
    font-size: 36px;
    color: var(--white);
}

.comm-featured-products {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.comm-featured-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.comm-featured-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #0a0e12;
}

.comm-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comm-featured-info {
    padding: 2rem;
}

.comm-featured-info h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.comm-featured-brand {
    font-size: 0.95rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 600;
}

.comm-featured-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.comm-accessory-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.comm-accessory-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a0e12;
}

.comm-accessory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comm-accessory-content {
    padding: 1.5rem;
}

.comm-accessory-content h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.comm-accessory-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .comm-hero-title {
        font-size: 2.5rem;
    }

    .comm-featured-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comm-featured-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .comm-hero {
        padding: 140px 0 60px;
    }

    .comm-hero-icon {
        font-size: 60px;
    }

    .comm-hero-title {
        font-size: 2rem;
    }

    .comm-hero-subtitle {
        font-size: 1rem;
    }

    .comm-section {
        padding: 60px 0;
    }
}

/* ===========================
   Parking & Entrance Solutions Page
   =========================== */
.parking-page {
    background: #0c0a09;
}

.parking-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #78350f 0%, #0c0a09 100%);
    position: relative;
    overflow: hidden;
}

.parking-hero::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.parking-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.parking-hero-icon {
    font-size: 80px;
    color: #fb923c;
    margin-bottom: 1.5rem;
}

.parking-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.parking-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Section */
.parking-section {
    padding: 80px 0;
    background: #0c0a09;
}

.parking-section-alt {
    background: #1c1917;
}

/* System Header */
.parking-system-header {
    text-align: center;
    margin-bottom: 3rem;
}

.parking-system-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 50px;
    color: #fb923c;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.parking-system-badge .material-icons {
    font-size: 20px;
}

.parking-system-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.parking-system-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.parking-brand-tag {
    font-size: 1rem;
    color: #fb923c;
    font-weight: 600;
}

/* Image Wrapper */
.parking-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 25px 60px rgba(251, 146, 60, 0.15);
}

.parking-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Grid */
.parking-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.parking-feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.parking-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 15px 40px rgba(251, 146, 60, 0.2);
}

.parking-feature-icon {
    font-size: 40px;
    color: #fb923c;
    margin-bottom: 1rem;
}

.parking-feature-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.parking-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Payment System */
.parking-payment-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.parking-payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.parking-payment-icon {
    font-size: 60px;
    color: #fb923c;
    margin-bottom: 1.5rem;
}

.parking-category-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.parking-category-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.parking-payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.parking-payment-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.parking-payment-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.parking-payment-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 146, 60, 0.3);
}

.parking-payment-feature .material-icons {
    font-size: 24px;
    color: #fb923c;
    flex-shrink: 0;
}

.parking-payment-feature h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.parking-payment-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .parking-payment-content {
        grid-template-columns: 1fr;
    }
}

/* Automation Header */
.parking-automation-header {
    margin-bottom: 3rem;
}

.parking-auto-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.parking-auto-icon {
    font-size: 60px;
    color: #fb923c;
    flex-shrink: 0;
}

/* Products Showcase */
.parking-products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.parking-product-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.15);
    transition: all 0.3s ease;
}

.parking-product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(251, 146, 60, 0.25);
    border-color: rgba(251, 146, 60, 0.4);
}

.parking-product-visual {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.parking-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.parking-product-item:hover .parking-product-visual img {
    transform: scale(1.1);
}

.parking-product-label {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.parking-product-label h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

/* Queue Management Systems */
.parking-qms-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.parking-qms-icon {
    font-size: 60px;
    color: #fb923c;
    margin-bottom: 1.5rem;
}

.parking-qms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.parking-qms-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.parking-qms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 146, 60, 0.2);
    border-color: rgba(251, 146, 60, 0.3);
}

.parking-qms-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0c0a09;
}

.parking-qms-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.parking-qms-card:hover .parking-qms-img img {
    transform: scale(1.1);
}

.parking-qms-content {
    padding: 1.5rem;
    text-align: center;
}

.parking-qms-content .material-icons {
    font-size: 32px;
    color: #fb923c;
    margin-bottom: 0.75rem;
}

.parking-qms-content h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.parking-qms-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 992px) {
    .parking-hero-title {
        font-size: 2.5rem;
    }

    .parking-auto-title-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .parking-features-grid {
        grid-template-columns: 1fr;
    }

    .parking-products-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .parking-hero {
        padding: 140px 0 60px;
    }

    .parking-hero-icon {
        font-size: 60px;
    }

    .parking-hero-title {
        font-size: 2rem;
    }

    .parking-hero-subtitle {
        font-size: 1rem;
    }

    .parking-section {
        padding: 60px 0;
    }
}

/* ===========================
   Network & Infrastructure Page
   =========================== */
.network-page {
    background: #0a0f14;
}

.network-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #164e63 0%, #0a0f14 100%);
    position: relative;
    overflow: hidden;
}

.network-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.network-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.network-hero-icon {
    font-size: 80px;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.network-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.network-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Section */
.network-section {
    padding: 80px 0;
    background: #0a0f14;
}

.network-section-alt {
    background: #0f1419;
}

/* Header Inline */
.network-header-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.network-inline-icon {
    font-size: 60px;
    color: #06b6d4;
    flex-shrink: 0;
}

.network-section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.network-section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.network-brand {
    font-size: 1rem;
    color: #06b6d4;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Product Showcase */
.network-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    overflow: hidden;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.network-showcase-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.network-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.network-product-name {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.network-product-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.network-specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.network-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.08);
    border-left: 3px solid #06b6d4;
    border-radius: 8px;
}

.network-spec-item .material-icons {
    font-size: 28px;
    color: #06b6d4;
    flex-shrink: 0;
}

.network-spec-item h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.network-spec-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Switch Card */
.network-switch-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    align-items: center;
}

.network-switch-image {
    border-radius: 12px;
    overflow: hidden;
}

.network-switch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-switch-info h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.network-switch-info p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

@media (max-width: 992px) {

    .network-product-showcase,
    .network-switch-card {
        grid-template-columns: 1fr;
    }
}

/* Category Center */
.network-category-center {
    text-align: center;
    margin-bottom: 3rem;
}

.network-center-icon {
    font-size: 60px;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

/* Systems Grid */
.network-systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.network-system-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.network-system-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.network-system-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.network-system-icon-box .material-icons {
    font-size: 40px;
    color: var(--white);
}

.network-system-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.network-system-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* BMS Wrapper */
.network-bms-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.network-bms-icon {
    font-size: 60px;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.network-bms-solution {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
}

.network-bms-solution h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.network-bms-brand {
    font-size: 0.95rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.network-bms-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.network-integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.95rem;
}

.network-integration-badge .material-icons {
    font-size: 20px;
}

.network-bms-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-bms-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .network-bms-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Infrastructure */
.network-infra-header {
    text-align: center;
    margin-bottom: 3rem;
}

.network-infra-icon {
    font-size: 60px;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.network-infra-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.network-infra-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.network-infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.network-infra-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0f14;
}

.network-infra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.network-infra-content {
    padding: 2rem;
}

.network-infra-content h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.network-infra-origin {
    font-size: 0.95rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.network-infra-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.network-infra-card-logiq {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
}

.network-infra-card-pivot3 {
    display: grid;
    grid-template-columns: 600px 1fr;
    align-items: start;
}

@media (max-width: 992px) {

    .network-infra-card-logiq,
    .network-infra-card-pivot3 {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .network-infra-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .network-hero-title {
        font-size: 2.5rem;
    }

    .network-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .network-switch-card {
        grid-template-columns: 1fr;
    }

    .network-systems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .network-hero {
        padding: 140px 0 60px;
    }

    .network-hero-icon {
        font-size: 60px;
    }

    .network-hero-title {
        font-size: 2rem;
    }

    .network-hero-subtitle {
        font-size: 1rem;
    }

    .network-section {
        padding: 60px 0;
    }
}

/* ===========================
   AV & Display Solutions Page
   =========================== */
.av-page {
    background: #0d0a12;
}

.av-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #581c87 0%, #0d0a12 100%);
    position: relative;
    overflow: hidden;
}

.av-hero::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.av-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.av-hero-icon {
    font-size: 80px;
    color: #a855f7;
    margin-bottom: 1.5rem;
}

.av-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.av-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Section */
.av-section {
    padding: 80px 0;
    background: #0d0a12;
}

.av-section-alt {
    background: #1a1625;
}

/* Mount Feature */
.av-mount-feature {
    max-width: 1200px;
    margin: 0 auto;
}

.av-mount-header {
    text-align: center;
    margin-bottom: 3rem;
}

.av-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    color: #c084fc;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.av-brand-badge .material-icons {
    font-size: 22px;
}

.av-feature-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.av-feature-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.av-mount-visual {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 30px 70px rgba(168, 85, 247, 0.2);
}

.av-mount-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.av-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.av-feature-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.av-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.av-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateX(5px);
}

.av-feature-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.av-feature-icon-wrap .material-icons {
    font-size: 26px;
    color: var(--white);
}

.av-feature-text h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.av-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .av-features-columns {
        grid-template-columns: 1fr;
    }
}

/* Interactive Section */
.av-interactive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.av-interactive-icon {
    font-size: 60px;
    color: #a855f7;
    margin-bottom: 1.5rem;
}

.av-section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.av-section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Product Card */
.av-product-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    overflow: hidden;
    padding: 2.5rem;
}

.av-product-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.av-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.av-product-details {
    display: flex;
    flex-direction: column;
}

.av-product-name {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.av-product-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.av-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.av-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.av-benefit-item .material-icons {
    font-size: 28px;
    color: #a855f7;
    flex-shrink: 0;
}

.av-benefit-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.av-benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.av-use-cases {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
}

.av-use-title {
    font-size: 1.15rem;
    color: #c084fc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.av-use-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.av-use-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.av-use-list .material-icons {
    font-size: 20px;
    color: #a855f7;
}

@media (max-width: 992px) {
    .av-product-card {
        grid-template-columns: 1fr;
    }

    .av-benefits-grid {
        grid-template-columns: 1fr;
    }

    .av-use-list {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .av-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .av-hero {
        padding: 140px 0 60px;
    }

    .av-hero-icon {
        font-size: 60px;
    }

    .av-hero-title {
        font-size: 2rem;
    }

    .av-hero-subtitle {
        font-size: 1rem;
    }

    .av-section {
        padding: 60px 0;
    }

    .av-feature-title {
        font-size: 2rem;
    }
}