/* Base Styles */
:root {
    --primary-color: #0047AB;
    --secondary-color: #0066CC;
    --accent-color: #00BFFF;
    --dark-blue: #001F3F;
    --light-blue: #E6F2FF;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-blue);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--light-gray);
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 31, 63, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    padding: 150px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/grid-pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-text h1 span {
    color: var(--light-blue);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-features {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.feature-icon img {
    max-height: 80px;
}

.trusted-section {
    margin-top: 80px;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.trusted-section h3 {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    margin: 0 20px 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* Innovation Section */
.innovation {
    padding: 100px 0;
    background-color: var(--dark-blue);
}

.case-studies {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.case-card {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.case-card p {
    padding: 0 20px 20px;
    color: var(--light-gray);
    opacity: 0.8;
}

/* Turbo Products Section */
.turbo-products {
    padding: 100px 0;
    background-color: #000;
    position: relative;
}

.turbo-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/tech-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.product-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: rgba(0, 31, 63, 0.7);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
}

.product-header {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
}

.product-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-header h3 span {
    color: var(--accent-color);
    font-style: italic;
}

.product-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
    margin-bottom: 20px;
    min-height: 80px;
}

.check-now {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

.check-now:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--dark-blue);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-gray);
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, #000 100%);
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: rgba(0, 31, 63, 0.7);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
}

.benefit-icon {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon img {
    max-height: 120px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
    text-align: center;
}

/* Footer */
footer {
    background-color: #000;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .navbar {
        position: relative;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-200%);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text, .hero-features {
        flex: 100%;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .case-card, .product-card, .benefit-card {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-logos img {
        height: 30px;
        margin: 0 10px 15px;
    }
    
    .feature-card, .case-card, .product-card, .benefit-card {
        padding: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.dark-mode-toggle i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Additional Responsive Enhancements */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .hero-text {
        padding-right: 0;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color);
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Print Styles */
@media print {
    body {
        background-color: var(--white);
        color: var(--black);
    }
    
    header, footer, .scroll-to-top, .dark-mode-toggle {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: var(--black);
    }
    
    a {
        color: var(--primary-color);
        text-decoration: underline;
    }
    
    .hero, .innovation, .turbo-products, .about, .why-choose {
        padding: 20px 0;
        background: none;
    }
    
    .feature-card, .case-card, .product-card, .benefit-card {
        break-inside: avoid;
        page-break-inside: avoid;
        background-color: transparent;
        box-shadow: none;
        border: 1px solid var(--gray);
    }
}
/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: #000;
    position: relative;
}

.solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.solutions h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-blue);
}

.solutions-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.solution-card {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background-color: rgba(0, 31, 63, 0.7);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solution-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.solution-image img {
    max-height: 100%;
    max-width: 100%;
}

.solution-card h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.solution-feature {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.solution-feature h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #000;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: rgba(0, 31, 63, 0.7);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark-blue);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-form p {
    color: var(--light-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-content p {
    color: var(--light-gray);
    margin-bottom: 5px;
}

/* Footer Styles */
footer {
    background-color: #000;
    padding: 50px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 20px;
    background-color: rgba(0, 71, 171, 0.2);
    border-radius: 30px;
    padding: 5px;
}

.stat-item {
    padding: 8px 20px;
    border-radius: 25px;
}

.stat-item:first-child {
    background-color: var(--primary-color);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-brand p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    flex: 2;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Additional Responsive Styles for New Sections */
@media (max-width: 992px) {
    .solutions h2 {
        font-size: 2.2rem;
    }
    
    .solutions h3 {
        font-size: 1.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions h2 {
        font-size: 2rem;
    }
    
    .solutions h3 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .solutions h2 {
        font-size: 1.8rem;
    }
    
    .solutions h3 {
        font-size: 1.4rem;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
}