/* ===================================
   SYNERGY ENVIRO - MODERN BLUE THEME
   =================================== */

/* CSS Variables */
:root {
    /* Blue Theme Colors */
    --primary-blue: #0066CC;
    --primary-blue-dark: #004C99;
    --primary-blue-light: #3385D6;
    --secondary-blue: #00A3E0;
    --accent-blue: #0077BE;
    --deep-blue: #003366;
    --sky-blue: #87CEEB;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    --gradient-secondary: linear-gradient(135deg, #003366 0%, #0066CC 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 102, 204, 0.85) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #E2E8F0;
    --gray: #94A3B8;
    --dark-gray: #475569;
    --darker-gray: #1E293B;
    --black: #0F172A;

    /* Functional Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Typography */
    --font-primary: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Public Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 102, 204, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 102, 204, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 102, 204, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--darker-gray);
    background-color: var(--off-white);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 102, 204, 0.08);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

/* Top Bar - Ultra Compact */
.top-bar {
    background: linear-gradient(135deg, #0066CC 0%, #0077BE 100%);
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 0.75rem;
    max-height: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: var(--transition-fast);
    font-size: 0.8125rem;
}

.contact-info a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.contact-info i {
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition-base);
    font-size: 0.75rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Navbar - Ultra Modern Design */
.navbar {
    padding: 0.6rem 0;
    background: transparent;
    transition: var(--transition-base);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateX(3px);
    opacity: 0.9;
}

.logo img {
    height: 42px;
    width: auto;
    max-height: 48px;
    transition: var(--transition-base);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066CC;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-top: 0.1rem;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--darker-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2.5px;
    background: linear-gradient(90deg, #0066CC 0%, #00A3E0 100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.05);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active {
    color: var(--white);
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.nav-menu a.active::before {
    display: none;
}

.nav-menu a.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.mobile-toggle:hover {
    background: rgba(0, 102, 204, 0.05);
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   HERO SECTION - MODERN TWO-COLUMN LAYOUT
   =================================== */

.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) 0 0;
    margin-top: 70px;
    overflow: hidden;
    background: #0f1844;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%);
    z-index: -1;
}

/* Floating Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(135, 206, 235, 0.1);
    backdrop-filter: blur(20px);
}

.shape-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(91, 108, 242, 0.15) 0%, transparent 70%);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.12) 0%, transparent 70%);
    animation: floatShape 15s ease-in-out infinite 2s;
}

.shape-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 5%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    animation: floatShape 18s ease-in-out infinite 4s;
}

.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    right: 25%;
    animation: floatParticle 10s ease-in-out infinite 1s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    animation: floatParticle 12s ease-in-out infinite 2s;
}

.particle-4 {
    top: 40%;
    right: 15%;
    animation: floatParticle 9s ease-in-out infinite 3s;
}

/* Hero Grid */
.hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.hero-content-left {
    color: var(--white);
}

.badge-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
    font-weight: 500;
}

.badge-primary {
    background: var(--gradient-primary);
    border-color: transparent;
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.15);
}

.badge i {
    font-size: 0.875rem;
}

/* Hero Title - New */
.hero-title-new {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Hero Subtitle - New */
.hero-subtitle-new {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Feature Badges */
.hero-features-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9375rem;
}

.feature-badge i {
    color: var(--sky-blue);
    font-size: 1.125rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 1s backwards;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #5b6cf2 0%, #4c5de6 100%);
    box-shadow: 0 8px 24px rgba(91, 108, 242, 0.4);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 108, 242, 0.5);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.rating-text strong {
    color: var(--white);
    font-weight: 700;
}

/* Right Illustration */
.hero-illustration {
    position: relative;
    animation: fadeIn 1s ease 0.5s backwards;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Circuit Grid Pattern */
.circuit-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circuit-svg {
    opacity: 0.3;
}

.circuit-line {
    stroke: rgba(91, 108, 242, 0.5);
    stroke-width: 1;
    stroke-dasharray: 10, 5;
    animation: circuitFlow 3s linear infinite;
}

.circuit-node {
    fill: rgba(91, 108, 242, 0.8);
    stroke: rgba(135, 206, 235, 0.6);
    stroke-width: 2;
}

.node-pulse {
    animation: nodePulse 2s ease-in-out infinite;
}

.circuit-node:nth-child(7) {
    animation-delay: 0s;
}

.circuit-node:nth-child(8) {
    animation-delay: 0.2s;
}

.circuit-node:nth-child(9) {
    animation-delay: 0.4s;
}

.circuit-node:nth-child(10) {
    animation-delay: 0.6s;
}

.circuit-node:nth-child(11) {
    animation-delay: 0.8s;
}

.circuit-node:nth-child(12) {
    animation-delay: 1s;
}

.circuit-node:nth-child(13) {
    animation-delay: 1.2s;
}

.circuit-node:nth-child(14) {
    animation-delay: 1.4s;
}

.circuit-node:nth-child(15) {
    animation-delay: 1.6s;
}

/* Floating Stat Cards */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 180px;
}

.floating-stat-1 {
    top: 10%;
    left: -10%;
    animation: floatStat 4s ease-in-out infinite;
}

.floating-stat-2 {
    top: 15%;
    right: -5%;
    animation: floatStat 5s ease-in-out infinite 0.5s;
}

.floating-stat-3 {
    bottom: 20%;
    left: 5%;
    animation: floatStat 4.5s ease-in-out infinite 1s;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5b6cf2 0%, #4c5de6 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-icon.success {
    background: rgba(255, 255, 255, 0.2);
}

.stat-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-content p {
    font-size: 0.8125rem;
    color: var(--dark-gray);
    margin: 0;
}

.floating-stat-3 .stat-content p {
    color: var(--white);
    font-weight: 600;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* ===================================
   SECTIONS
   =================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-gray);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-compact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-intro-column .section-tag {
    margin-bottom: var(--spacing-xs);
}

.compact-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.lead-text-compact {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

/* Mini Stats Row */
.about-stats-mini {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 102, 204, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 204, 0.05);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.mini-stat .num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.mini-stat .lab {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Pillar Mini Cards */
.pillar-mini-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 102, 204, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    margin-bottom: var(--spacing-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-mini-card:hover {
    background: linear-gradient(135deg, #f8fbff 0%, rgba(0, 102, 204, 0.05) 100%);
    border-color: var(--primary-blue);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.08);
}

.p-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 163, 224, 0.08) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.pillar-mini-card:hover .p-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.p-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 2px;
}

.p-info p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* Feature Mini Tags */
.features-mini-list {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.f-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--off-white);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
}

.f-tag i {
    color: var(--success);
}

@media (max-width: 992px) {
    .about-compact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}






/* About Stats Grid */


/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.service-card-modern {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.sc-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-modern:hover .sc-image img {
    transform: scale(1.1);
}

.sc-icon {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-modern:hover .sc-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.sc-content {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sc-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.sc-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.sc-features {
    margin-bottom: var(--spacing-lg);
    border-top: 1px solid var(--light-gray);
    padding-top: var(--spacing-md);
}

.sc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.sc-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.sc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: transparent;
    border-radius: 0;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.sc-link:hover {
    background: var(--deep-blue);
    color: var(--white);
    border-color: var(--deep-blue);
}

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

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

@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   WHY CHOOSE US SECTION - PREMIUM CARDS
   =================================== */

.why-choose-section {
    padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + var(--spacing-xl));
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 163, 224, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Premium Grid */
.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Card Size Variations */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Base Bento Card */
.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 102, 204, 0.05) 0%,
            rgba(0, 163, 224, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-lg);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

/* Animated Glow Effect */
.bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.bento-card:hover .bento-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Featured Card Special Styling */
.bento-featured {
    background: linear-gradient(135deg,
            rgba(0, 102, 204, 0.08) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(0, 163, 224, 0.08) 100%);
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.bento-featured:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 80px rgba(0, 102, 204, 0.25);
}

/* Content Styling */
.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Icon Styling */
.bento-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.bento-card:hover .bento-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.3);
}

.bento-small .bento-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
}

/* Icon Wrapper for Featured Card */
.bento-icon-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.bento-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Typography */
.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.bento-large h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.bento-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.bento-large p {
    font-size: 1.05rem;
}

/* Stats Section (Featured Card) */
.bento-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-number::after {
    content: attr(data-target);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: auto;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.05) 100%);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.expertise-tags span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.expertise-tags i {
    color: var(--success);
    font-size: 0.75rem;
}

/* Documentation Features */
.doc-features {
    display: flex;
    gap: var(--spacing-md);
    margin-top: auto;
}

.doc-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.doc-features i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Floating Particles */
.bento-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-particles {
    opacity: 1;
}

.bento-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: floatParticles 3s ease-in-out infinite;
}

.bento-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.bento-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.bento-particles span:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes floatParticles {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-medium,
    .bento-wide {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: var(--spacing-md);
    }

    .bento-large,
    .bento-medium,
    .bento-wide,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: var(--spacing-lg);
        min-height: 250px;
    }

    .bento-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===================================
   CTA SECTION
   =================================== */

/* ===================================
   CTA SECTION - MODERN SPLIT DESIGN
   =================================== */

.cta-section-modern {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1b2a 100%);
}

.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(91, 108, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 163, 224, 0.12) 0%, transparent 50%);
    z-index: 0;
}

/* Animated Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.cta-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.cta-particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.cta-particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.cta-particle:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.cta-particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

/* Grid Layout */
.cta-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.cta-main-content {
    color: var(--white);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease;
}

.cta-badge i {
    color: var(--sky-blue);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #ffffff 0%, #87CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* Feature Tags */
.cta-features-mini {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.cta-feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(91, 108, 242, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 108, 242, 0.3);
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-feature-tag:hover {
    background: rgba(91, 108, 242, 0.3);
    border-color: rgba(91, 108, 242, 0.5);
    transform: translateY(-2px);
}

.cta-feature-tag i {
    color: #4ade80;
    font-size: 1rem;
}

/* Primary Actions */
.cta-primary-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #5B6CF2 0%, #00A3E0 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(91, 108, 242, 0.4);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(91, 108, 242, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Right Contact Cards */
.cta-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.cta-contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.125rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInRight 0.6s ease backwards;
}

.cta-contact-card:nth-child(1) {
    animation-delay: 0.2s;
}

.cta-contact-card:nth-child(2) {
    animation-delay: 0.3s;
}

.cta-contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

.cta-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 108, 242, 0.5);
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(91, 108, 242, 0.3);
}

/* Card Glow Effect */
.cta-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 108, 242, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.cta-contact-card:hover .cta-card-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

/* Card Icon */
.cta-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 108, 242, 0.3) 0%, rgba(0, 163, 224, 0.3) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-card-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.cta-contact-card:hover .cta-card-icon {
    background: linear-gradient(135deg, rgba(91, 108, 242, 0.5) 0%, rgba(0, 163, 224, 0.5) 100%);
    transform: rotate(10deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Card Content */
.cta-card-content {
    flex: 1;
}

.cta-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cta-card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.cta-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sky-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-card-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.cta-contact-card:hover .cta-card-link {
    color: var(--white);
}

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

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-modern-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .cta-main-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-description {
        max-width: 100%;
    }

    .cta-features-mini {
        justify-content: center;
    }

    .cta-primary-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section-modern {
        padding: var(--spacing-xl) 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .cta-primary-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .cta-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   FOOTER - MODERN PROFESSIONAL DESIGN
   =================================== */

.footer-modern {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    color: var(--white);
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

/* Company Info Column */
.footer-about {
    padding-right: var(--spacing-lg);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

/* Certification Badges */
.footer-certifications {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(91, 108, 242, 0.15);
    border: 1px solid rgba(91, 108, 242, 0.3);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(91, 108, 242, 0.25);
    border-color: rgba(91, 108, 242, 0.5);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--sky-blue);
    font-size: 0.875rem;
}

.footer-unicorn-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-unicorn-badge i {
    color: var(--sky-blue);
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a i {
    font-size: 0.625rem;
    color: var(--sky-blue);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.375rem;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: 1rem;
}

.footer-contact i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 108, 242, 0.15);
    border: 1px solid rgba(91, 108, 242, 0.3);
    border-radius: 50%;
    color: var(--sky-blue);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: rgba(91, 108, 242, 0.25);
    border-color: rgba(91, 108, 242, 0.5);
    transform: scale(1.1);
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact span,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--sky-blue);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(91, 108, 242, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-contact div {
        align-items: center;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    .footer-unicorn-badge {
        display: inline-flex;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-15px, -30px) scale(0.95);
    }

    75% {
        transform: translate(-20px, 15px) scale(1.02);
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -40px);
        opacity: 1;
    }

    50% {
        transform: translate(-20px, -60px);
        opacity: 0.4;
    }

    75% {
        transform: translate(-40px, -20px);
        opacity: 0.8;
    }
}

@keyframes circuitFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 15;
    }
}

@keyframes nodePulse {

    0%,
    100% {
        r: 6;
        opacity: 0.8;
    }

    50% {
        r: 8;
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes progressBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes bounce {

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    margin-top: 120px;
    text-align: center;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
}

.page-header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-header-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--sky-blue);
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */

.services-detail-section {
    padding: var(--spacing-3xl) 0;
    background: var(--off-white);
}

.service-detail {
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
}

.service-detail:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.service-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.service-detail-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-detail-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.service-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-stats {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
}

.service-stats .stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.service-stats .stat h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.service-stats .stat p {
    font-size: 0.875rem;
    color: var(--darker-gray);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.feature-box {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.feature-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-xs);
}

.feature-box p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--darker-gray);
    line-height: 1.7;
}

.check-list i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.mission-vision-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.mission-box,
.vision-box {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-gray);
}

.mission-box h3,
.vision-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mission-box h3 i,
.vision-box h3 i {
    color: var(--primary-blue);
    font-size: 2rem;
}

.values-section {
    padding: var(--spacing-3xl) 0;
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--light-gray);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-info-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.contact-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--primary-blue-dark);
}

.contact-form-section {
    padding: var(--spacing-3xl) 0;
    background: var(--off-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.submit-btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-stats-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .info-card {
        grid-column: 1 / -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }

    .contact-info {
        gap: var(--spacing-sm);
    }

    .contact-info a {
        font-size: 0.75rem;
    }

    .social-links a {
        width: 24px;
        height: 24px;
        font-size: 0.6875rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 0;
    }

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

    .nav-menu a {
        width: 100%;
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
    }

    .nav-menu a.active {
        background: var(--gradient-primary);
        color: var(--white);
    }

    .hero {
        margin-top: 70px;
        min-height: 90vh;
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }

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

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

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

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

    .hero-stats-inline {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .stat-inline {
        width: 100%;
        justify-content: center;
    }

    .shape {
        display: none;
    }

    .page-header {
        margin-top: 70px;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .container {
        padding: 0 var(--spacing-sm) !important;
    }

    .hero {
        padding: var(--spacing-lg) 0 var(--spacing-lg) !important;
    }

    /* Mobile Improvements for Index Page */
    .hero-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-content-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge-group {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-illustration {
        display: none;
        /* Hidden on mobile as requested if needed for spacing */
    }

    .about-compact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-intro-column {
        text-align: center;
    }

    .about-stats-mini {
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .about-actions-compact {
        display: flex;
        justify-content: center;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        /* Stack services on mobile */
    }

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

    .section-header {
        text-align: center;
        padding: 0 var(--spacing-md);
    }

    .section-header h2 {
        font-size: 2rem;
        /* Smaller heading on mobile */
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .badge-group {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .service-stats {
        flex-direction: column;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-card-badge {
        position: static;
        align-self: center;
        margin-top: var(--spacing-sm);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #005bb5 0%, #0091c7 100%);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}