.app-main-wrapper {
    background-image: url(/img/main-back.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 9%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.app-main-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(37, 37, 37, 0.75),
            rgba(35, 35, 35, 0.75),
            rgba(0, 0, 0, 0.75));

    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    z-index: 0;
    transition: all 0.3s ease;
}

/* ✨ Smooth Gradient Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ✅ Ensure content is above overlay */
.app-main-wrapper>* {
    position: relative;
    z-index: 1;
}




.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}



.app-text {
    max-width: 550px;
}

.app-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-text p {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .app-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .app-lottie dotlottie-wc {
        width: 320px;
        height: 320px;
    }

    .app-text h1 {
        font-size: 60px;
    }

    .app-text p {
        font-size: 18px;
    }
}




/* 🌟 About Section */
.app-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 9%;
    background-color: var(--egg-white);
    position: relative;
}

/* Text Content */
.app-txt {
    flex: 1;
    text-align: left;
    max-width: 550px;
}

.app-txt h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}


.app-txt p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

/* Image Section */
.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.app-image img:hover {
    transform: scale(1.03);
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
    .app-about-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
    }



    .app-txt {
        max-width: 100%;
    }

    .app-image img {
        max-width: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .app-txt h2 {
        font-size: 30px;
    }

    .app-txt p {
        font-size: 16px;
    }

    .app-image img {
        max-width: 300px;
    }
}

/* ------------------------ seo price plan --------------------------------- */


.seo-packages {
    background: var(--white);
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
}

.seo-packages .container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: elevencoders Sans SemiBold;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text);
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.plan-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-box h3 {
    color: var(--primary);
    font-family: elevencoders Sans Medium;
    font-size: 22px;
    margin-bottom: 5px;
}

.plan-box .sub {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.plan-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text);
    font-size: 15px;
}



.full-plan {
    margin-top: 40px;
    background: var(--white);
    border-left: 5px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.full-plan h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.full-plan p {
    color: #555;
    margin: 0;
}




/* ------------------------ seo page end --------------------- */









/* 🌟 Testimonial Section */
.testimonial-wrapper {
    padding: 100px 9%;
    background-color: var(--white);
    text-align: center;
}

/* Heading */
.testimonial-heading h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
}

.testimonial-heading h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #f90404, #c21111, #a90d0d);
    border-radius: 10px;
}

.testimonial-heading p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ⚙️ Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

/* 💠 Card */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* 👤 Image */
.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 20px;
}

/* 💬 Text */
.testimonial-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

/* 🏷️ Name & Designation */
.testimonial-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.testimonial-card span {
    color: var(--btn-darker);
    font-size: 0.9rem;
}

.stars {
    color: #fcbf49;
    font-size: 1.2rem;
    margin-top: 8px;
}


/* 📱 Responsive */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        max-width: 100%;
    }
}