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

:root {
    --primary-color: #1e88e5;
    --primary-dark: #005cb2;
    --primary-light: #6ab7ff;
    --secondary-color: #ff6d00;
    --text-color: #333;
    --text-light: #757575;
    --background-color: #f8f9fa;
    --card-color: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wide-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

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

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

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

.btn-secondary:hover {
    background-color: rgba(30, 136, 229, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-white:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 26px;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding-bottom: 5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 120px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8), rgba(0, 92, 178, 0.8));
    opacity: 0.8;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 109, 0, 0.2), transparent 60%);
    z-index: 1;
}

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

.hero-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-light);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-card i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Support Section */
#support {
    background-color: #f0f7ff;
    position: relative;
}

#support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e88e5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.support-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 600;
}

.support-text h3:first-child {
    margin-top: 0;
}

.support-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.support-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.support-image img:hover {
    transform: scale(1.02);
}

/* Contact Section */
#contact {
    background-color: #f0f5ff;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(30, 136, 229, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

#contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(30, 136, 229, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background-color: var(--card-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: absolute;
    top: 12px;
    left: 15px;
    background-color: transparent;
    padding: 0 3px;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    background-color: white;
    color: var(--primary-color);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: 600;
    top: 12px;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animation Classes */
.animate {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.success-message p {
    margin-bottom: 25px;
    color: var(--text-light);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .support-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container, .wide-container {
        width: 100%;
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .logo h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    nav.active {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Logo Style Update */
.logo h1 span {
    color: var(--secondary-color);
    font-weight: 700;
}

/* About Section */
#about {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(30, 136, 229, 0.05);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .lead-text {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background-color: rgba(30, 136, 229, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-10px);
}

.stat-item span {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item:hover span {
    color: white;
}

.stat-item p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
}

.stat-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: perspective(500px) rotateY(-5deg);
    filter: brightness(0.95);
}

.about-image img:hover {
    transform: perspective(500px) rotateY(0);
    filter: brightness(1);
}

/* Testimonials Section */
#testimonials {
    background-color: #f0f7ff;
    position: relative;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32-63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e88e5' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid rgba(30, 136, 229, 0.2);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

.rating {
    color: #ffc107;
}

.rating i {
    margin-left: 2px;
}

/* Support section updates */
.support-content {
    position: relative;
    z-index: 1;
}

/* Contact section updates */
.contact-item small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
}

/* Footer updates */
.footer-description {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.7;
}

.social-text {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 0 calc(33.333% - 30px);
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex: 1 0 calc(50% - 15px);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .about-text .lead-text {
        font-size: 18px;
    }
}

/* Desktop Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    /* Header improvements */
    header .container {
        padding: 15px 30px;
    }
    
    .logo h1 {
        font-size: 32px;
    }
    
    nav ul li {
        margin-left: 40px;
    }
    
    nav ul li a {
        font-size: 18px;
    }
    
    /* Hero section */
    #hero {
        padding: 220px 0 180px;
        background-attachment: fixed;
    }
    
    .hero-content h2 {
        font-size: 64px;
        margin-bottom: 30px;
    }
    
    .hero-content p {
        font-size: 24px;
        max-width: 800px;
    }
    
    .cta-buttons {
        margin-top: 50px;
    }
    
    .btn {
        padding: 16px 34px;
        font-size: 16px;
    }
    
    /* Section spacing */
    section {
        padding: 120px 0;
    }
    
    .section-title {
        font-size: 42px;
        margin-bottom: 80px;
    }
    
    /* Services section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .service-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 30px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transition: var(--transition);
        opacity: 0;
    }
    
    .service-card:hover::after {
        opacity: 1;
    }
    
    .service-card:nth-child(1) {
        transform: translateY(20px);
    }
    
    .service-card:nth-child(3) {
        transform: translateY(20px);
    }
    
    .service-card:nth-child(1):hover,
    .service-card:nth-child(3):hover {
        transform: translateY(5px);
    }
    
    .service-card:nth-child(2):hover,
    .service-card:nth-child(4):hover {
        transform: translateY(-15px);
    }
    
    .service-card i {
        font-size: 64px;
        margin-bottom: 30px;
    }
    
    .service-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-card p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* About section */
    .about-content {
        gap: 80px;
    }
    
    .about-text .lead-text {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 1.8;
    }
    
    .stats-container {
        margin-top: 60px;
    }
    
    .stat-item {
        padding: 30px;
    }
    
    .stat-item span {
        font-size: 54px;
    }
    
    .about-image img {
        transform: perspective(1000px) rotateY(-8deg);
        box-shadow: var(--shadow-lg), 20px 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    /* Testimonials section */
    .testimonials-slider {
        position: relative;
        padding: 40px 0;
    }
    
    .testimonial-card {
        position: relative;
        height: 100%;
        min-height: 320px;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-15px) scale(1.03);
        z-index: 10;
    }
    
    .testimonial-content {
        flex: 1;
    }
    
    .testimonial-content i {
        font-size: 32px;
        position: absolute;
        top: -20px;
        left: 30px;
        background: var(--primary-color);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        box-shadow: var(--shadow-md);
    }
    
    .author-image {
        width: 60px;
        height: 60px;
        margin-right: 20px;
        border: 4px solid rgba(30, 136, 229, 0.2);
    }
    
    .rating {
        font-size: 18px;
    }
    
    /* Support section */
    .support-content {
        gap: 80px;
    }
    
    .support-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .support-text p {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .support-image img {
        box-shadow: var(--shadow-lg), -20px 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    /* Contact section */
    .contact-content {
        gap: 60px;
    }
    
    .contact-item {
        padding: 40px;
    }
    
    .contact-item i {
        font-size: 44px;
    }
    
    .contact-item h3 {
        font-size: 22px;
    }
    
    .contact-item p {
        font-size: 18px;
    }
    
    .contact-form {
        padding: 50px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 17px;
    }
    
    /* Footer section */
    footer {
        padding: 80px 0 30px;
    }
    
    .footer-content {
        gap: 80px;
    }
    
    .footer-logo h2 {
        font-size: 32px;
    }
    
    .footer-description {
        max-width: 400px;
        font-size: 16px;
    }
    
    .footer-links h3,
    .footer-social h3 {
        font-size: 22px;
    }
    
    .footer-links ul li a {
        font-size: 16px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .testimonial-card {
        padding: 40px;
    }
    
    .testimonial-content p {
        font-size: 17px;
    }
}

/* Desktop Media Query Fixes */
@media (min-width: 1200px) {
    .wide-container {
        width: 90%;
        max-width: 1600px;
    }
    
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .testimonial-card {
        padding: 40px;
    }
    
    .testimonial-content p {
        font-size: 17px;
    }
}

/* High-resolution displays */
@media (min-width: 1800px) {
    .wide-container {
        max-width: 1800px;
    }
    
    .hero-content h2 {
        font-size: 72px;
    }
    
    .hero-content p {
        font-size: 28px;
        max-width: 900px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .about-content,
    .support-content {
        gap: 100px;
    }
}

#hero, #support, #contact, #testimonials, #about {
    overflow: hidden;
}

.support-image img, .about-image img, .contact-info, .contact-form, .testimonial-card {
    max-width: 100%;
    box-sizing: border-box;
}

.services-grid, .footer-content, .about-content, .support-content, .testimonials-slider, .contact-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
} 