/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c2f732;
}

.contact-btn {
    background-color: #c2f732;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #a6d628;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 80px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(194, 247, 50, 0.2), transparent 60%);
    z-index: 1;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.stars {
    color: #c2f732;
    font-size: 1.2rem;
    margin-right: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: #c2f732;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.primary-btn {
    background-color: #c2f732;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #a6d628;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #c2f732;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: rgba(194, 247, 50, 0.1);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #fff;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    max-width: 250px;
    margin: 0 auto;
}

.stat-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.stat-label img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Features Section */
.features {
    padding: 60px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Services Section */
.services {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.active {
    background-color: #c2f732;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin: 30px 0;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-content {
    padding: 0 30px 30px;
}

.service-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-title img {
    margin-left: 10px;
    width: 16px;
    height: 16px;
}

.service-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    max-width: 500px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    color: #666;
    margin-bottom: 30px;
}

.cta-image {
    width: 45%;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
}

/* Form Section */
.contact-form {
    padding: 60px 10%;
    text-align: center;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #c2f732;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn img {
    margin-left: 10px;
    width: 16px;
    height: 16px;
}

.submit-btn:hover {
    background-color: #a6d628;
    transform: translateY(-2px);
}

.company-info {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.company-info p {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 10%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c2f732;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c2f732;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c2f732;
    transform: translateY(-3px);
}

.social-links img {
    width: 18px;
    height: 18px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .stats {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        flex-direction: column;
    }

    .cta-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .cta-image {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 15px 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 5%;
    }

    .services {
        padding: 60px 5%;
    }

    .cta {
        padding: 60px 5%;
    }

    .contact-form {
        padding: 40px 5%;
    }
}