* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --dark-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navbar */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.3);
}

/* Statistics Section */
.statistics {
    background: var(--white);
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5ff 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

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

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

/* Services Section */
.services {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.services h2,
.pricing h2,
.team h2,
.testimonials h2,
.case-studies h2,
.blog h2,
.about h2,
.contact h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: var(--white);
    padding: 80px 20px;
}

.pricing-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    color: var(--text-light);
}

.description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    color: var(--text-light);
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.plan-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.plan-btn.primary {
    background: var(--secondary-color);
}

.plan-btn.primary:hover {
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.3);
}

/* Team Section */
.team {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.team-photo {
    font-size: 60px;
    margin-bottom: 20px;
}

.team-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 5px;
}

.position {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

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

/* Testimonials Section */
.testimonials {
    background: var(--white);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.quote {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

/* Case Studies Section */
.case-studies {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.case-study-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.case-study-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.case-study-content strong {
    color: var(--text-dark);
}

/* Blog Section */
.blog {
    background: var(--white);
    padding: 80px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-meta {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

/* About Section */
.about {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content > p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.highlight h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    padding: 80px 20px;
}

.contact h2 {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.info-item p {
    opacity: 0.9;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    opacity: 0.8;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services h2,
    .pricing h2,
    .team h2,
    .testimonials h2,
    .case-studies h2,
    .blog h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
        font-size: 12px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}