﻿/*===========intro===============*/

/* SEO Introduction Section */
.seo-intro {
    background: linear-gradient(135deg, #43a5b4, #dadada);
    padding: 60px 20px;
    text-align: center;
    color: #333;
    transition: background 0.4s ease;
}

    .seo-intro:hover {
        background: linear-gradient(129deg, #43b484, #dadada);
    }

.intro-cont {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a237e;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.intro-highlight {
    font-style: italic;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1e88e5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .cta-button:hover {
        background-color: #1565c0;
        transform: scale(1.05);
    }

/* Services Section */
.seo-services {
    padding: 80px 20px;
    background-color: #dedede;
    text-align: center;
}

.services-title {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 10px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #5b5c5d;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card h3 {
        font-size: 1.25rem;
        color: #f4f4f4;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.95rem;
        color: #b9b9b9;
        line-height: 1.5;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        background-color: #5c92c9;
        color:white;
    }
.service-cont {
    max-width: 800px;
    margin: 0 auto;
}
/*-----faqs------*/

.seo-faq {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d47a1;
    padding: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .faq-question:hover {
        color: #1565c0;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #eef5fb;
    padding: 0 15px;
}

    .faq-answer p {
        margin: 15px 0;
        font-size: 0.95rem;
        color: #444;
    }

/* Active Class */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 15px 15px;
}

/* Final CTA Section */
.seo-cta {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-subtext {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #e3f2fd;
}

.cta-final-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0d47a1;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .cta-final-button:hover {
        background-color: #e3f2fd;
        transform: scale(1.05);
    }
