/*
Broadband Fabric Partners - Telecom Consulting Theme
Professional theme for telecom consulting and engineering firm
Version: 2.0 - Enhanced Visual Design

Color Palette - Dark Blue & Neon Blue Style:
Primary Dark Blue: #0f172a (Very dark blue)
Secondary Dark Blue: #1e293b (Dark slate blue)
Neon Blue: #00d4ff (Bright cyan/neon blue)
Neon Blue Light: #33dfff (Lighter neon blue)
Accent Blue: #0ea5e9 (Sky blue)
Light Background: #f8fafc (Off white)
Text Dark: #0f172a (Very dark blue)
Text Light: #64748b (Medium gray)

Enhanced Features:
- Improved typography with Google Fonts
- Subtle animations and hover effects
- Better visual hierarchy and spacing
- Enhanced gradients and shadows
- Professional icons and graphics
*/

/* Google Fonts Import - High-Tech Telecom Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Critical CSS - Above the fold styles */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* High-Tech Telecom Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes techGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
                    0 0 40px rgba(0, 212, 255, 0.2),
                    0 0 60px rgba(0, 212, 255, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5),
                    0 0 60px rgba(0, 212, 255, 0.3),
                    0 0 90px rgba(0, 212, 255, 0.2);
    }
}

/* Contact Button Animations */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 212, 255, 0.3),
            0 0 20px rgba(0, 212, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmerContact {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 
            0 4px 15px rgba(0, 212, 255, 0.3),
            0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        box-shadow: 
            0 4px 15px rgba(0, 212, 255, 0.3),
            0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(0, 212, 255, 0.3),
            0 0 0 0 rgba(0, 212, 255, 0);
    }
}


@keyframes dataFlow {
    0% { 
        background-position: 0% 50%;
        transform: scaleX(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scaleX(1.1);
    }
    100% { 
        background-position: 0% 50%;
        transform: scaleX(1);
    }
}

@keyframes circuitPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes networkScan {
    0% { 
        transform: rotate(0deg) translateX(0);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: rotate(360deg) translateX(20px);
        opacity: 0;
    }
}

@keyframes matrixRain {
    0% { 
        transform: translateY(-100vh);
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #0f172a;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* High-Tech Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(0, 212, 255, 0.02) 49%, rgba(0, 212, 255, 0.02) 51%, transparent 52%);
    background-size: 400px 400px, 600px 600px, 20px 20px;
    pointer-events: none;
    z-index: -1;
    animation: dataFlow 20s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* High-Tech Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #0f172a 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    border-radius: 2px;
    animation: techGlow 3s ease-in-out infinite;
}

h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

h2::before {
    content: '▶';
    color: #00d4ff;
    margin-right: 10px;
    font-size: 0.8em;
    animation: circuitPulse 2s ease-in-out infinite;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #00d4ff;
    position: relative;
}

h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #00d4ff, #0ea5e9);
    border-radius: 2px;
    animation: techGlow 2s ease-in-out infinite;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: pulseGlow 3s ease-in-out infinite, pulseRing 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmerContact 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: 6px;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #33dfff 0%, #00d4ff 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulseGlow 1.5s ease-in-out infinite, bounceSubtle 2s ease-in-out infinite;
}

.btn-secondary {
    background-color: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: #00d4ff;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    font-weight: 700;
}

.btn-outline:hover {
    background-color: #00d4ff;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 20px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #00d4ff, transparent) 1;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    min-height: 45px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-branding .site-title {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
}

.site-branding .site-title a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-branding .site-title a:hover {
    color: #00d4ff;
    transition: color 0.3s ease;
}

.site-branding .site-description {
    margin: 2px 0 0 0;
    font-size: 0.75rem;
    color: #e2e8f0;
    font-weight: 500;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.main-navigation .nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu a.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.main-navigation .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.phone-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #00d4ff;
}

/* High-Tech Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #00d4ff, transparent) 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.03) 100px
        );
    animation: dataFlow 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #00d4ff, #33dfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #0ea5e9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-content h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-subhead {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header - Hyperion Partners Inspired */
.page-header {
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #0f172a 50%, #1e293b 75%, #0f172a 100%),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.03) 100px
        ),
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: dataFlow 15s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    animation: circuitPulse 12s ease-in-out infinite;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Grid Layouts */
.serve-grid, .services-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.serve-item, .service-item, .feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.serve-item:hover, .service-item:hover, .feature-item:hover {
    transform: translateY(-5px);
}

.serve-item h3, .service-item h3, .feature-item h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

/* Service Sections */
.service-section {
    background-color: #f8fafc;
}

.service-section:nth-child(even) {
    background-color: white;
}

.service-content h2 {
    color: #00d4ff;
    margin-bottom: 30px;
}

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

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list strong {
    color: #0f172a;
}

/* Industry Sections */
.industry-section {
    margin-bottom: 40px;
}

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

.industry-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.industry-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leader-item h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

.leader-item .title {
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
}

/* Certifications */
.cert-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.cert-list li {
    padding: 15px;
    background: white;
    border-left: 4px solid #00d4ff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.consultation-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Section Styling */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-section h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-detail {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    animation: techGlow 3s ease-in-out infinite;
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

.contact-detail h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-detail p {
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-detail .btn {
    width: 100%;
    max-width: 200px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    animation: techGlow 3s ease-in-out infinite;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

.contact-method h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-method .btn {
    width: 100%;
    max-width: 250px;
}

.response-time {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    text-align: center;
}

.response-time h2 {
    color: #00d4ff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.response-time p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.response-time a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.response-time a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Contact Info */
.contact-details {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Lists */
.serve-list, .offer-list, .areas-list, .features-list, .benefits-list,
.categories-list, .use-cases-list {
    list-style: none;
    padding: 0;
}

.serve-list li, .offer-list li, .areas-list li, .features-list li,
.benefits-list li, .categories-list li, .use-cases-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.serve-list li:before, .offer-list li:before, .areas-list li:before,
.features-list li:before, .benefits-list li:before, .categories-list li:before,
.use-cases-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Product Features */
.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Product Items */
.product-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-item h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    color: #0f172a;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #33dfff 0%, #00d4ff 100%);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Footer Styles */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info a {
    color: #e2e8f0;
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

.footer-copyright p {
    margin: 5px 0;
    color: #e2e8f0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* Enhanced Section Styling */
.who-we-serve {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.who-we-serve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.who-we-serve h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

.who-we-serve h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    border-radius: 2px;
    animation: techGlow 3s ease-in-out infinite;
}

.our-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    position: relative;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.02) 100px
        );
    animation: dataFlow 20s ease-in-out infinite;
    pointer-events: none;
}

.our-services h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

.our-services h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    border-radius: 2px;
    animation: techGlow 3s ease-in-out infinite;
}

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    animation: circuitPulse 10s ease-in-out infinite;
}

.why-choose-us h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

.why-choose-us h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    border-radius: 2px;
    animation: techGlow 3s ease-in-out infinite;
}

.why-choose-us .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-choose-us .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.why-choose-us .feature-item h3 {
    color: #00d4ff;
}

.why-choose-us .feature-item p {
    color: #e2e8f0;
}

/* Enhanced Grid Styling */
.serve-grid, .services-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.serve-item, .service-item, .feature-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.serve-item::before, .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #00d4ff);
    animation: techGlow 3s ease-in-out infinite;
}

.serve-item:hover, .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

.serve-item h3, .service-item h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Services Page Styling */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
}

.service-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.02) 100px
        );
    animation: dataFlow 25s ease-in-out infinite;
    pointer-events: none;
}

.service-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-content h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.service-content h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, #00d4ff, #0ea5e9);
    border-radius: 3px;
    animation: techGlow 3s ease-in-out infinite;
}

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

.service-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.service-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8em;
    animation: circuitPulse 2s ease-in-out infinite;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list strong {
    color: #0f172a;
    font-weight: 600;
}

/* Industries Page Styling */
.sectors-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.sectors-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.industry-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.industry-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
}

.industry-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.industry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.02) 100px
        );
    animation: dataFlow 30s ease-in-out infinite;
    pointer-events: none;
}

.industry-section h2 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.industry-section h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, #00d4ff, #0ea5e9);
    border-radius: 3px;
    animation: techGlow 3s ease-in-out infinite;
}

.industry-section p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #64748b;
    line-height: 1.8;
}

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

.industry-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.industry-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8em;
    animation: circuitPulse 2s ease-in-out infinite;
}

.industry-list li:last-child {
    border-bottom: none;
}

/* Mobile Solutions Page Styling - Hyperion Partners Inspired */
.consulting-services {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #f1f5f9 75%, #ffffff 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.consulting-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 212, 255, 0.05) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(14, 165, 233, 0.05) 100px
        );
    pointer-events: none;
    animation: dataFlow 20s ease-in-out infinite;
}

.consulting-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
    animation: circuitPulse 15s ease-in-out infinite;
}

.featured-products {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%),
        radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 60% 40%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 49px,
            rgba(0, 212, 255, 0.04) 50px,
            rgba(0, 212, 255, 0.04) 51px,
            transparent 52px
        );
    pointer-events: none;
    animation: dataFlow 25s ease-in-out infinite;
}

.featured-products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: circuitPulse 18s ease-in-out infinite;
}

.product-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9, #33dfff, #00d4ff);
    background-size: 200% 100%;
    animation: techGlow 4s ease-in-out infinite;
}

.product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-item:hover::after {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-item h3 {
    color: #00d4ff;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.7em;
    animation: circuitPulse 2s ease-in-out infinite;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-navigation .nav-menu {
        gap: 15px;
    }
    
    .main-navigation .nav-menu a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        min-height: auto;
    }
    
    .site-branding {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .main-navigation {
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        width: 100%;
    }
    
    .main-navigation .nav-menu a {
        padding: 10px 20px;
        margin: 0;
        background: rgba(0, 212, 255, 0.05);
        border-radius: 8px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    
    .site-branding .site-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .serve-grid, .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
