
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

html,
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    transition: all 0.3s ease;
    background-color: #1a1a2e !important;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7) !important;
    margin-left: 8px;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6 !important;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 46, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO SECTION */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #0f172a,
        #111827,
        #1e1b4b
    );
    color: white;
}

.hero-overlay {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(139,92,246,0.25);
    filter: blur(120px);
    top: -100px;
    right: -100px;
    z-index: 0;
}

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

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text h1 span {
    color: #8b5cf6;
}

.hero-text p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(139,92,246,0.15);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(139,92,246,0.35);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* HERO STATS */

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    font-size: 28px;
    color: #8b5cf6;
    margin-bottom: 5px;
}

.hero-stats span {
    color: #94a3b8;
    font-size: 14px;
}

/* HERO IMAGE */

.hero-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(139,92,246,0.35));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* SERVICES */

.services-section {
    background: linear-gradient(to bottom, #f8f9fa, #eef3f8);
    padding: 80px 0;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.services-section p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.service-box {
    background: #fff;
    padding: 35px 25px;
    margin: 15px 0;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    min-height: 65px;
    margin-bottom: 14px;
}

.service-box h3 a {
    color: #007bff;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-box:hover h3 a {
    color: #8b5cf6;
}

.service-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* TESTIMONIALS */

.testimonials-section {
    background: white;
    padding: 100px 20px;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.testimonial-heading p {
    max-width: 650px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139,92,246,0.12);
    border-color: #c4b5fd;
}

.stars {
    color: #f59e0b;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    margin: 0;
    font-size: 18px;
    color: #111827;
}

.client-info span {
    color: #64748b;
    font-size: 14px;
}

/* FAQ */

.faq-section {
    background: #f8fafc;
    padding: 100px 20px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.faq-heading p {
    color: #64748b;
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: white;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 24px;
    color: #8b5cf6;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: #64748b;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* NEWSLETTER */

.seo-insights {
    padding: 90px 20px;
    background: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.insights-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.insights-text {
    flex: 1;
    min-width: 300px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.insights-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.insights-text p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.insights-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.insights-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e2e8f0;
}

.insights-form button {
    border: none;
    padding: 18px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.insights-form button:hover {
    transform: translateY(-3px);
}

/* FOOTER */

.footer-section {
    background: linear-gradient(
        135deg,
        #020617,
        #0f172a,
        #111827
    );
    color: white;
    padding: 50px 0 25px;
}

.footer-section h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    line-height: 1.9;
    text-decoration: none;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #8b5cf6;
}

/* THEME TOGGLE */

#theme-toggle {
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

#theme-toggle:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .hero-content,
    .insights-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-text h1,
    .testimonial-heading h2,
    .faq-heading h2,
    .insights-text h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .nav-item {
        margin: 8px 0;
    }

    #theme-toggle {
        margin: auto;
    }

    .hero-section {
        padding: 90px 0 70px;
    }

    .hero-text h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-image img {
        max-width: 90%;
    }

    .testimonial-heading h2,
    .faq-heading h2,
    .insights-text h2 {
        font-size: 36px;
    }

    .insights-form {
        flex-direction: column;
    }

    .insights-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .hero-text h1 {
        font-size: 34px;
    }

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

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px;
    }
}

