/* Custom Variables */
:root {
    --primary-bg: #0E1F3D;
    --secondary-bg: #0a1629;
    --accent-blue: #00D1FF;
    --accent-blue-light: rgba(0, 209, 255, 0.2);
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-lighter: #9CA3AF;
    --card-bg: #1A2B4A;
    --card-hover: #22375f;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --section-padding: 100px 0;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-bg) !important;
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Override Bootstrap container padding */
.container {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Navigation */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background-color: var(--primary-bg) !important;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white) !important;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

.contact-btn {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.5rem;
}

.contact-btn:hover {
    background-color: rgba(0, 163, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-bg);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.5rem 0;
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

/* Decorative Elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-blue) !important;
    position: relative;
}

.nav-link.active:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 0 80px;
    background: linear-gradient(135deg, #0a1629 0%, #0E1F3D 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--accent-blue-light) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, var(--accent-blue-light) 0%, transparent 15%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #FFFFFF;
}

.hero h1 span {
    color: #00D1FF;
    background: none;
    -webkit-text-fill-color: #00D1FF;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #7d7e81;
    margin: 0 0 40px 0;
    max-width: 600px;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 0 40px 0;
}

.stat-item {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #00D1FF;
    line-height: 1.2;
}

.stat-item span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 4px;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00D1FF 0%, #00A3CC 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: rgba(0, 209, 255, 0.1);
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button {
    background: transparent;
    color: var(--text-white) !important;
    border: 1px solid var(--accent-blue);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: rgba(0, 209, 255, 0.1);
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button {
    background-color: var(--accent-blue);
    color: var(--text-white) !important;
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 163, 255, 0.3);
}

.cta-button i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1F2937;
}

.hero h1 span {
    color: var(--accent-blue);
    position: relative;
    display: inline;
    background: linear-gradient(90deg, #00A3FF 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
    display: flex;
    align-items: center;
}

.stat-item span {
    color: var(--text-lighter);
    font-weight: 400;
    margin-left: 6px;
}

.divider {
    width: 1px;
    height: 16px;
    background-color: var(--border-color);
}

.cta-button {
    background-color: var(--accent-blue);
    color: var(--text-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 163, 255, 0.3);
}

.cta-button i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    background-color: #0088cc;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding);
    background: #FFFFFF;
    position: relative;
    z-index: 1;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #FFFFFF 50%);
    z-index: -1;
}

.stats-section h2 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.stats-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    border-radius: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--primary-bg);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero {
        padding: 96px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.stats-section h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1F2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: transparent !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-title {
    font-size: 1rem;
    color: var(--text-lighter);
    font-weight: 400;
}

/* New Hero Section Styles */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    display: none; /* Remove previous hero gradient */
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-white);
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-blue);
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0088cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-lighter);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-description {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 209, 255, 0.1);
}

.section-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.description-text {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Button - Updated */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #22375f 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #22375f 0%, #1a2b4a 100%);
    color: var(--text-white);
    text-decoration: none;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Hero Visual - Grid Pattern */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 209, 255, 0.1) 0px, rgba(0, 209, 255, 0.1) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(90deg, rgba(0, 209, 255, 0.1) 0px, rgba(0, 209, 255, 0.1) 1px, transparent 1px, transparent 25px);
    background-size: 25px 25px;
    animation: gridFloat 20s ease-in-out infinite;
    position: relative;
}

.grid-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Fire Solutions Badge */
.badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.badge-text {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3);
    }
    to {
        box-shadow: 0 4px 30px rgba(255, 71, 87, 0.6);
    }
}

/* Remove old hero styles from the existing CSS */
.hero .container,
.hero-content,
.hero h1,
.hero-subtitle,
.stats-container,
.stat-item,
.divider,
.bubble {
    /* These will be overridden by new hero styles */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        min-height: 300px;
        order: -1; /* Move visual above content on mobile */
    }
    
    .badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px; /* Adjusted for navbar */
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-description {
        padding: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .badge {
        position: static;
        margin-top: 30px;
        text-align: center;
        display: block;
    }
}

/* Fix existing sections spacing */
.stats-section {
    padding-top: 60px;
}

/* Ensure navbar works with new hero */
.navbar {
    background-color: var(--primary-bg) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body {
    padding-top: 60px; /* Adjust based on your navbar height */
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .divider {
        display: none;
    }
}

.stats-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1F2937; /* Dark text on white background */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-title {
    font-size: 18px;
    color: #E5E7EB; /* Lighter text on dark blue */
}

/* Services Section */
.ser {
    padding: 100px 0;
    background-color: #0E1F3D; /* Dark blue */
    color: #FFFFFF; /* White text */
}

.ser h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF; /* White text on dark blue */
}

.ser-subtitle {
    text-align: center;
    color: #E5E7EB; /* Lighter text on dark blue */
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
}

.ser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ser-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.ser-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.ser-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-blue);
    font-size: 24px;
}

.ser-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF; /* White text on dark blue */
}

.ser-card p {
    color: #E5E7EB; /* Lighter text on dark blue */
    margin-bottom: 24px;
    line-height: 1.7;
}

.learn-more {
    color: var(--accent-blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.learn-more i {
    font-size: 12px;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 10px;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .ser-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .ser-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ser, 
    .stats-section {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ser-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.ser-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ser-card:nth-child(3) {
    animation-delay: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--background-light);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    margin-top: 5rem;
    background-color: var(--background-light);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
}

.trusted-by p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logos img {
    height: 2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.company-logos img:hover {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #00A3FF 0%, #00D1FF 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #FFFFFF;
    color: #00A3FF;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.contact-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #1F2937;
}

.contact-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A3FF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #00A3FF 0%, #00D1FF 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 163, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .contact-form {
        padding: 20px;
    }
}

/* Projects Section */
.pro {
    padding: 100px 0;
    background: #FFFFFF;
    color: #1F2937;
}

.pro h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2937;
}

.pro-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pro-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pro-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pro-card:hover .pro-image img {
    transform: scale(1.05);
}

.pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 163, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro-card:hover .pro-overlay {
    opacity: 1;
}

.view-pro {
    background: #FFFFFF;
    color: #00A3FF;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pro-content {
    padding: 30px;
}

.pro-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.pro-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 20px;
}

.pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #F3F4F6;
    color: #4B5563;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #E5E7EB;
}

.pro-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0E1F3D 0%, #1a2b4a 100%);
    border-radius: 15px;
    color: #FFFFFF;
}

.pro-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pro-cta .cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pro {
        padding: 80px 0;
    }
    
    .pro h2 {
        font-size: 2rem;
    }
    
    .pro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pro-content {
        padding: 20px;
    }
    
    .pro-tags {
        gap: 8px;
    }
    
    .pro-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .pro-cta p {
        font-size: 1.1rem;
    }
}

/* Team Section */
.tea {
    padding: 100px 0;
    background: #F9FAFB;
    color: #1F2937;
}

.tea h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2937;
}

.tea-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.tea-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tea-mem {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.tea-mem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mem-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F3F4F6;
}

.mem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mem-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1F2937;
}

.mem-role {
    font-size: 1rem;
    font-weight: 600;
    color: #00A3FF;
    margin-bottom: 15px;
}

.mem-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 20px;
}

.mem-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mem-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mem-social a:hover {
    background: #00A3FF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.tea-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 15px;
    color: #FFFFFF;
}

.tea-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.tea-cta .cta-primary {
    background: #FFFFFF;
    color: #1F2937;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.tea-cta .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
}

.trusted-by p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logos img {
    height: 2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.company-logos img:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tea {
        padding: 80px 0;
    }
    
    .tea h2 {
        font-size: 2rem;
    }
    
    .tea-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .tea-mem {
        padding: 25px 20px;
    }
    
    .mem-image {
        width: 100px;
        height: 100px;
    }
    
    .tea-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .tea-cta p {
        font-size: 1.1rem;
    }

    .trusted-by {
        padding: 60px 0;
    }

    .trusted-by h2 {
        font-size: 2rem;
    }

    .trusted-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
    }

    .partner-logo {
        padding: 15px;
        min-height: 80px;
    }

    .partner-logo img {
        max-height: 50px;
    }
}

/* Testimonials Section */
.test {
    padding: 100px 0;
    background: linear-gradient(135deg, #0E1F3D 0%, #1a2b4a 100%);
    color: #FFFFFF;
}

.test h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.test-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.test-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
}

.test-content {
    margin-bottom: 20px;
}

.test-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #E5E7EB;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.test-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--accent-blue);
    font-family: Georgia, serif;
}

.test-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #9CA3AF;
}

.rating {
    color: #FFD700;
}

.rating i {
    font-size: 0.9rem;
    margin-left: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .test {
        padding: 80px 0;
    }
    
    .test h2 {
        font-size: 2rem;
    }
    
    .test-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .test-card {
        padding: 25px 20px;
    }
    
    .test-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-item i {
    color: #00A3FF;
    width: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00A3FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.875rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00A3FF;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-links a:hover {
    background: #00A3FF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.newsletter {
    text-align: right;
}

.newsletter p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
    width: 200px;
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #00A3FF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0095EE;
    transform: translateY(-1px);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-bottom-right {
        align-items: flex-start;
    }
    
    .newsletter {
        text-align: left;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
        margin-top: 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .company-logos {
        gap: 1.5rem;
    }
}