/*
Theme Name: SEOChamp
Theme URI: https://seochamp.com
Author: SEOChamp Team
Author URI: https://seochamp.com
Description: A modern, responsive SEO services landing page theme with gradient designs and smooth animations
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seochamp
Tags: business, portfolio, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
`
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-blue: #2C48AC;
    --secondary-blue: #2E47AC;
    --orange: #FE5800;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #666;
    --success-green: #28a745;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(44, 72, 172, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.hero{
	padding:0px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--orange), #ff6b1a);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(254, 88, 0, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-blue), #3a56c4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 72, 172, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff6b1a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 88, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e54d00, var(--orange));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(254, 88, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 30px;
    background: var(--light-gray);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FE5800" opacity="0.1"/><circle cx="80" cy="60" r="2" fill="%232C48AC" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23FE5800" opacity="0.1"/></svg>');
    z-index: 0;
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--primary-blue));
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-item h4 {
    color: var(--orange);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 72, 172, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 72, 172, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--primary-blue));
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(44, 72, 172, 0.2);
}

.service-card:hover::after {
    top: -30%;
    right: -30%;
    transform: scale(1.2);
}


.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.3;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1rem;
}

.stars {
    color: var(--orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23FE5800" fill-opacity="0.1" points="0,0 1000,1000 0,1000"/></svg>');
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

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

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(254, 88, 0, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--orange), #ff6b1a);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 88, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), #3a56c4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 72, 172, 0.4);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-details {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item strong {
    color: var(--primary-blue);
    margin-right: 1rem;
    min-width: 100px;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 4rem 0 1rem;
    text-align: left;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23FE5800" fill-opacity="0.05" points="0,0 1000,500 0,1000"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--orange);
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-section.company-info p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 88, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Newsletter Section in Footer */
.newsletter {
    background: rgba(254, 88, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.newsletter h4 {
    color: var(--orange);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    min-width: 200px;
}

.newsletter button {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-to-top.show {
    display: flex;
    animation: slideInUp 0.3s ease;
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ============================================ */

/* Tablet Devices */
@media (max-width: 991px) {
    /* Navigation */
    nav {
        padding: 0.8rem 4%;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 60px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 3rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form,
    .contact-details {
        padding: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Devices - Large */
@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 2rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Typography */
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    /* About Section */
    .about {
        padding: 50px 15px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        padding-left: 15px;
    }
    
    .about-text h3::before {
        height: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    /* Contact */
    .contact-form h3,
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form,
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .contact-item strong {
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter button {
        width: 100%;
    }
}

/* Mobile Devices - Small */
@media (max-width: 480px) {
    /* Navigation */
    nav {
        padding: 0.8rem 4%;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Sections */
    section {
        padding:  20px;
    }
    
    .container {
        padding: 0 4%;
    }
    
    /* Typography */
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title h2::after {
        width: 40px;
        height: 2px;
    }
    
    .section-title p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about {
        padding: 40px 10px;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        padding-left: 12px;
    }
    
    .about-text h3::before {
        width: 3px;
        height: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    /* Services */
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.8rem 1.2rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Testimonials */
    .testimonial-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.8rem 1.2rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        left: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
    }
    
    .stars {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form,
    .contact-details {
        padding: 1.3rem;
    }
    
    .contact-form h3,
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        height: 100px;
    }
    
    .submit-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-section.company-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 1.5rem;
    }
    
    .newsletter h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter input {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .newsletter button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.85rem;
    }
    
    /* Scroll to top button */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin-right: 6px;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .section-title p {
        font-size: 0.85rem;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form,
    .contact-details {
        padding: 1.2rem 1rem;
    }
}

/* Landscape Mode for Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap target sizes for better touch interaction */
    .nav-links a,
    .cta-button,
    .btn-primary,
    .btn-secondary,
    .submit-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature-item:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Simplify animations on touch devices */
    .logo-icon {
        animation: none;
    }
}