/* Modern Aixon Website Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #0c1426 0%, #1e3a8a 50%, #312e81 100%);
    --secondary-gradient: linear-gradient(135deg, #ffd60a 0%, #ffbe0b 100%);
    --dark-gradient: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
    --light-gradient: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #4338ca 100%);
    --shadow-light: 0 8px 32px rgba(12, 20, 38, 0.5);
    --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Glassmorphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Modern Gradient Backgrounds */
.bg-gradient-blue { 
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.bg-gradient-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 20%, rgba(99, 102, 241, 0.3) 40%, rgba(139, 92, 246, 0.2) 60%, transparent 80%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-bg { 
    background: linear-gradient(135deg, rgba(12, 20, 38, 0.95), rgba(30, 58, 138, 0.9), rgba(49, 46, 129, 0.85)), url('network.avif'); 
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Text Gradients */
.text-gradient-blue { 
    background: linear-gradient(45deg, #1e40af 0%, #6366f1 25%, #8b5cf6 50%, #3730a3 75%, #1e3a8a 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Modern Button Styles */
.btn-gradient-blue { 
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient-blue::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;
}

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

.btn-gradient-blue:hover { 
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.btn-gradient-yellow { 
    background: var(--secondary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #000;
}

.btn-gradient-yellow::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;
}

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

.btn-gradient-yellow:hover { 
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
    color: #000;
}

/* Enhanced Card Styles */
.card { 
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover { 
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-light);
}

.card:hover i { 
    transform: scale(1.2) rotate(5deg);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card i {
    transition: all 0.3s ease;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Navigation */
.enhanced-navbar {
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, rgba(12, 20, 38, 0.95), rgba(30, 58, 138, 0.9)) !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(12, 20, 38, 0.4);
}

.enhanced-navbar.scrolled {
    background: linear-gradient(135deg, rgba(12, 20, 38, 0.98), rgba(30, 58, 138, 0.95)) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(12, 20, 38, 0.6);
}

.enhanced-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.enhanced-brand:hover {
    transform: scale(1.05);
}

.logo-img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.enhanced-brand:hover .logo-img {
    transform: rotate(-5deg);
}

.brand-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.enhanced-nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-nav-link::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;
}

.enhanced-nav-link:hover::before {
    left: 100%;
}

.enhanced-nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.enhanced-nav-link.active {
    background: var(--secondary-gradient);
    color: #000 !important;
    font-weight: 600;
}

.nav-cta {
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta::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;
}

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

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.enhanced-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.enhanced-toggler:hover {
    border-color: var(--secondary-gradient);
    background: rgba(255,255,255,0.1);
}

.enhanced-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 10, 0.25);
}

/* Navbar animation on page load */
.enhanced-navbar {
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile enhancements */
@media (max-width: 991px) {
    .enhanced-navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        background: rgba(30, 58, 138, 0.98);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .enhanced-nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
}

/* Enhanced Flip Card Styles */
.flip-card { 
    perspective: 1000px; 
    cursor: pointer; 
    min-height: 280px;
    margin-bottom: 30px;
}

.flip-card-inner { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    transition: transform 1.2s ease-in-out; 
    transform-style: preserve-3d; 
    min-height: 280px; 
}

.flip-card.flipped .flip-card-inner { 
    transform: rotateY(180deg); 
}

.flip-card-front, .flip-card-back { 
    backface-visibility: hidden; 
    border-radius: 20px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light); 
    position: absolute; 
    width: 100%; 
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-back { 
    transform: rotateY(180deg); 
    background: var(--primary-gradient);
    color: white;
}

.flip-card-front .card-body, .flip-card-back .card-body { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    height: 100%; 
    text-align: center; 
    padding: 2rem; 
}

.flip-card-back .card-body {
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    padding-left: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

/* Section Spacing */
section {
    padding: 30px 0;
}

/* Adjust for fixed navbar */
body {
    padding-top: 0;
    margin: 0;
}

@media (max-width: 991px) {
    body {
        padding-top: 0;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
        min-height: 70vh;
    }
    
    section {
        padding: 60px 0;
    }
    
    .card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero Section with Images */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(12, 20, 38, 0.85) 30%, rgba(30, 58, 138, 0.8) 70%, rgba(49, 46, 129, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 3;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    opacity: 0.9;
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}

.hero-main-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
}

.tech-icon {
    font-size: 2.5rem;
    animation: floatTechUnified 6s ease-in-out infinite;
    background: var(--primary-gradient);
    padding: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd60a;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 58, 138, 0.4);
    width: 80px;
    height: 80px;
}

@keyframes floatTechUnified {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.tech-icon:nth-child(1) { animation-delay: 0s; }
.tech-icon:nth-child(2) { animation-delay: 0.75s; }
.tech-icon:nth-child(3) { animation-delay: 1.5s; }
.tech-icon:nth-child(4) { animation-delay: 2.25s; }
.tech-icon:nth-child(5) { animation-delay: 3s; }
.tech-icon:nth-child(6) { animation-delay: 3.75s; }
.tech-icon:nth-child(7) { animation-delay: 4.5s; }
.tech-icon:nth-child(8) { animation-delay: 5.25s; }

/* About Section */
.about-image-wrapper {
    position: relative;
}

.main-about-img {
    transition: all 0.3s ease;
}

.main-about-img:hover {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary-gradient);
    color: #000;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

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

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

/* New Service Cards */
.service-card-new {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.service-content {
    position: relative;
}

.service-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon i {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c1426 0%, #1e3a8a 25%, #312e81 50%, #4338ca 75%, #6366f1 100%);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.8));
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Enhanced fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.4s; }

/* Service cards stagger animation */
.service-card-new:nth-child(1) { transition-delay: 0.1s; }
.service-card-new:nth-child(2) { transition-delay: 0.2s; }
.service-card-new:nth-child(3) { transition-delay: 0.3s; }
.service-card-new:nth-child(4) { transition-delay: 0.4s; }
.service-card-new:nth-child(5) { transition-delay: 0.5s; }
.service-card-new:nth-child(6) { transition-delay: 0.6s; }

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(30, 64, 175, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

/* Technology Partners */
.logo-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logo-track {
    display: inline-flex;
    animation: scrollMobile 30s linear infinite;
}

.partner-logo {
    flex: 0 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 120px;
    white-space: nowrap;
}

.brand-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.partner-logo:hover .brand-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.partner-logo:hover .brand-card i {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollMobile {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile optimizations for partners section */
@media (max-width: 768px) {
    .logo-track {
        animation: scrollMobile 40s linear infinite;
    }
    
    .partner-logo {
        padding: 0 1rem;
    }
    
    .brand-card {
        min-width: 90px;
        padding: 0.75rem;
    }
    
    .brand-card i {
        font-size: 1.5rem;
    }
    
    .brand-card span {
        font-size: 0.8rem;
    }
    
    /* Disable hover effects on mobile */
    .partner-logo:hover .brand-card {
        transform: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .partner-logo:hover .brand-card i {
        opacity: 0.7;
        transform: none;
    }
}

/* Footer Styles */
footer {
    margin-top: 0;
    padding: 2rem 0 1rem 0 !important;
    min-height: auto;
}

footer .container {
    max-width: 1200px;
}

footer h5, footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #ffffff;
}

footer .d-flex a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .d-flex a:hover {
    background: var(--secondary-gradient);
    color: #000;
    transform: translateY(-2px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem 0;
}

/* Logo responsive sizing */
@media (max-width: 991px) {
    .logo-img {
        height: 40px !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 35px !important;
    }
}

/* Process Steps */
.process-step {
    position: relative;
    display: inline-block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Mobile Process Horizontal Scroll */
.process-mobile-scroll {
    overflow-x: auto;
    padding: 1rem 0;
}

.process-mobile-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
}

.process-mobile-item {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.process-mobile-scroll::-webkit-scrollbar {
    height: 4px;
}

.process-mobile-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.process-mobile-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Mobile Responsive Optimizations */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 100px !important;
    }
    
    .step-number {
        background: var(--primary-gradient) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3) !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
        text-align: center;
    }
    
    .floating-tech-icons {
        display: none;
    }
    
    .tech-icon {
        font-size: 1.5rem;
        padding: 0.8rem;
        width: 60px;
        height: 60px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .py-5 {
        padding: 3rem 0 !important;
    }
    
    footer {
        padding: 2rem 0 1.5rem 0 !important;
    }
    
    footer .d-flex {
        justify-content: center;
        margin-top: 1rem;
    }
    
    footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-content {
        padding: 1.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
    
    /* Extra small mobile optimizations for partners */
    .logo-track {
        animation: scrollMobile 50s linear infinite;
    }
    
    .brand-card {
        min-width: 85px;
        padding: 0.5rem;
    }
    
    .brand-card i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .brand-card span {
        font-size: 0.75rem;
    }
}
/* Global font color - blue theme */
body, body * {
    color: #1e3a8a !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e3a8a !important;
}

p, span, div, li, a {
    color: #1e3a8a !important;
}

/* Hero sections use blue text */
.hero-section, .hero-section * {
    color: #1e3a8a !important;
}

/* Keep CTA sections white text */
.bg-gradient-blue, .bg-gradient-blue * {
    color: white !important;
}

/* Keep muted text styling */
.text-muted {
    color: #6c757d !important;
}

/* Keep white text classes */
.text-white, .text-white * {
    color: white !important;
}

/* Hero section buttons use blue text */
.hero-section .btn-light {
    color: #1e3a8a !important;
}

/* All other light buttons in hero sections */
.btn-light {
    color: #1e3a8a !important;
    background-color: white !important;
    border-color: white !important;
}