* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafb;
}

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

header {
    background: linear-gradient(90deg, #1a1a2e, #2c2c54);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #a5b4fc;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    margin-top: 0; /* Changed from margin-top: 80px */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.logo-box {
    display: flex;
    justify-content: center;
}

.logo {
    width: 300px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: contain; /* Added to prevent stretching */
}

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

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    background: #6f42c1;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #5a32a3;
    transform: translateY(-3px);
}

.about, .service-what-is, .reviews, .pricing, .contact {
    padding: 80px 20px;
}

.about h2, .service-what-is h2, .reviews h2, .pricing h2, .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a1a2e;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover; /* Updated to ensure no stretching */
    border: 3px solid #6f42c1;
}

.service-grid, .reviews-grid, .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.service-box, .what-is-box, .testimonial-box, .pricing-description {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-box:hover, .what-is-box:hover, .testimonial-box:hover, .pricing-description:hover {
    transform: translateY(-5px);
}

.what-is-box ul.features {
    list-style: none;
    margin-top: 20px;
}

.what-is-box ul.features li {
    font-weight: 600;
    color: #6f42c1;
    margin-bottom: 10px;
}

.org-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.org-logo {
    width: 225px;
    height: auto;
    object-fit: contain; /* Added to prevent stretching */
}

.client-pic {
    max-width: 80%; /* Changed from width: 80% */
    height: auto;
    border-radius: 1%;
    margin: 0 auto 10px;
    border: 2px solid #6f42c1;
    display: block;
    object-fit: contain; /* Added to prevent stretching */
}

.testimonial-box h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
}

.testimonial-box .title {
    font-size: 1rem;
    color: #6f42c1;
    margin-bottom: 10px;
}

.testimonial-box .quote {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-box .duration {
    font-size: 0.9rem;
    color: #666;
}

.pricing-table {
    display: flex;
    align-items: center;
    justify-content: center;
}

stripe-pricing-table {
    max-width: 100%;
}

.pricing-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-description ul {
    list-style: disc;
    margin: 15px 0 15px 20px;
}

.pricing-description p {
    margin-bottom: 15px;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.contact-button {
    display: flex;
    justify-content: center;
    background: #6f42c1;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin: 2rem auto;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    max-width: 300px; /* Added to limit width */
}
.contact-button:hover {
    background: #5a32a3;
    transform: translateY(-3px);
}
.faq {
    padding: 80px 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a1a2e;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.faq-item p, .faq-item ul {
    font-size: 1.1rem;
    color: #333;
}

.faq-item ul {
    list-style: disc;
    margin: 15px 0 15px 20px;
}

.faq-item a {
    color: #6f42c1;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    color: #5a32a3;
}
footer {
    background: linear-gradient(90deg, #1a1a2e, #2c2c54);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #2c2c54;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        padding: 15px;
        text-align: center;
    }

    .hero {
        padding: 100px 20px;
        min-height: 60vh;
        margin-top: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .logo {
        margin: 0 auto;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profile-pic {
        margin-bottom: 20px;
    }

    .service-grid, .reviews-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .org-logo-box, .pricing-table {
        justify-content: center;
    }

    .client-pic {
        max-width: 80%;
        object-fit: contain; /* Added to ensure no stretching */
    }

    .contact-button {
        max-width: 250px; /* Added to limit width on mobile */
    }
    .faq {
		padding: 60px 20px;
	}

	.faq-item {
		padding: 20px;
	}
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .about h2, .service-what-is h2, .reviews h2, .pricing h2, .contact h2 {
        font-size: 2rem;
    }

    .cta-button, .contact-button {
        padding: 10px 20px;
        max-width: 200px; /* Adjusted for smaller screens */
    }

    .logo {
        width: 250px;
        object-fit: contain; /* Added to ensure no stretching */
    }

    .org-logo {
        width: 200px;
        object-fit: contain; /* Added to ensure no stretching */
    }

    .client-pic {
        max-width: 80%;
        object-fit: contain; /* Added to ensure no stretching */
    }
    .faq h2 {
		font-size: 2rem;
	}

	.faq-item h3 {
		font-size: 1.3rem;
	}

	.faq-item p, .faq-item ul {
		font-size: 1rem;
	}
}
