* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f63f8c;
    --secondary-color: #FFFFFF;
    --tertiary-color: #fec233;
    --accent: #7732c3;
    --dark-bg: #FFFFFF;
    --dark-card: #F5F5F5;
    --light-text: #f63f8c;
    --gray-text: #666666;
    --success: #51CF66;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #FAFAFA 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #fec233;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.nav-menu a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f63f8c, #fec233);
    transition: width 0.3s;
}

.nav-menu a:not(.cta-btn):hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #f63f8c, #7732c3);
    padding: 10px 20px;
    border-radius: 25px;
    color: #FFFFFF !important;
    transition: 0.3s;
    font-weight: 600;
    border: 2px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 63, 140, 0.5);
    background: linear-gradient(135deg, #7732c3, #f63f8c);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f63f8c, #fec233, #7732c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}}

.hero-content p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #f63f8c, #7732c3);
    color: #FFFFFF;
    font-weight: 700;
    border: 2px solid transparent;
}}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(246, 63, 140, 0.4);
    background: linear-gradient(135deg, #7732c3, #f63f8c);
}}

.btn-secondary {
    background: transparent;
    color: #fec233;
    border: 2px solid #fec233;
}}

.btn-secondary:hover {
    background: #fec233;
    color: #7732c3;
}}

.btn-outline {
    background: transparent;
    color: #f63f8c;
    border: 2px solid #f63f8c;
}}

.btn-outline:hover {
    background: linear-gradient(135deg, #f63f8c, #7732c3);
    color: #FFFFFF;
}}

.hero-banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 15px;

    transition: 0.3s;
}

.banner-image:hover {
    transform: scale(1.02);
    
}

.stat {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
    transition: 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.stat h3 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat p {
    color: var(--gray-text);
    font-size: 14px;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--dark-bg);
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f63f8c, #7732c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 18px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 15px;
    border-top: 3px solid transparent;
    background-image: linear-gradient(var(--dark-card), var(--dark-card)), linear-gradient(90deg, #f63f8c, #fec233);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(246, 63, 140, 0.2);
}}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 40px;
    background: linear-gradient(135deg, #f63f8c, #fec233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.service-link {
    color: #f63f8c;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: #7732c3;
    gap: 12px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, #F0F0F0 100%);
}

.how-it-works h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f63f8c, #fec233, #7732c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}}

.methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.method-step {
    text-align: center;
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.method-step:hover {
    border-color: #fec233;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(254, 194, 51, 0.15);
}}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #7732c3, #fec233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}}

.method-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.method-step p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: var(--dark-bg);
}

.why-us h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fec233, #f63f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.feature-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #f63f8c, #7732c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, #F5F5F5 100%);
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7732c3, #f63f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #fec233;
    transition: 0.3s;
}}

.testimonial:hover {
    border-left-color: #f63f8c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(246, 63, 140, 0.15);
}}

.stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonial p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--light-text);
    font-size: 15px;
}

.testimonial-author span {
    color: #f63f8c;
    font-size: 12px;
}}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f63f8c 0%, #fec233 50%, #7732c3 100%);
    text-align: center;
}}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4D 100%);
    padding: 60px 0 20px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #f63f8c, #fec233, #7732c3) 1;}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #CCCCCC;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-desc {
    color: var(--gray-text) !important;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fec233;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #f63f8c;
}

.footer-section i {
    color: #f63f8c;
    margin-right: 10px;
        margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #fec233;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fec233;
    font-size: 18px;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border: 2px solid #fec233;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    border-color: #f63f8c;
    color: #f63f8c;
    background: linear-gradient(135deg, rgba(246, 63, 140, 0.1), rgba(119, 50, 195, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--dark-card);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-overview h2,
    .how-it-works h2,
    .why-us h2,
    .testimonials h2,
    .cta h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta p {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .services-overview h2,
    .how-it-works h2,
    .why-us h2,
    .testimonials h2,
    .cta h2 {
        font-size: 24px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .method-step {
        padding: 20px;
    }

    .step-number {
        font-size: 36px;
    }

    .footer-content {
        gap: 30px;
    }
}
