:root {
    --text-dark: #2d3047;
    --primary-gradient: linear-gradient(90deg, #f47b5c 0%, #6343ac 100%);
    --bg-gradient: linear-gradient(135deg, #fbe6e0 0%, #e6e9fc 100%);
}

.seo-hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
    padding: 0 5%;
}

/* Subtle background lines */
.seo-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20% 100%;
}

.seo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    z-index: 2;
}

/* Typography */
.main-title {
    font-size: 5rem;
    line-height: 0.9;
    color: var(--text-dark);
    font-weight: 300;
    margin-bottom: 20px;
}

.main-title span {
    font-weight: 800;
}

.description {
    font-size: 1.1rem;
    color: #555;
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* CTA Button Styling */
.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px 12px 30px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 67, 172, 0.3);
}

.arrow-circle {
    background: white;
    color: #6343ac;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Visuals Side */
.content-visual {
    position: relative;
    height: 500px;
}

.rocket-container {
    position: absolute;
    top: -114px;
    right: 7%;
    width: 425px;
    animation: floatRocket 4s ease-in-out infinite;
}

.rocket-img {
    width: 100%;
    height: auto;
}

.target-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    z-index: 5;
}

.target-img {
    width: 100%;
    height: auto;
}

/* Cloud Section */
.cloud-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Simple Animations */
@keyframes floatRocket {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
    .seo-container { grid-template-columns: 1fr; text-align: center; }
    .content-text { order: 1; padding-top: 10px; margin-right: 87px; }
    .content-visual { order: 1; height: 350px; }
    .main-title { font-size: 3.5rem; }
    .description { margin: 0 auto 30px; }
    .rocket-container { position: relative; right: 0; margin: 0 auto; }

    .rocket-img{
        display: none;
    }
    .left-visual{
        display: none;
    }
}

.containers {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.service-item {
    padding: 20px;
    position: relative;
}

/* Subtle vertical dividers between items */
.service-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #f0f0f0;
}

.icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: grayscale(1) opacity(0.8);
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

/* Stats Card */
.stats-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.rating-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #2d3047;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #2d3047;
    max-width: 160px;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: #eee;
}

/* Footer Text */
.trust-footer {
    margin-top: 40px;
    font-size: 0.95rem;
    color: #555;
}

.heart {
    color: #ff4d4d;
    font-size: 1.2rem;
    margin-right: 5px;
}

.trust-footer strong {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-item:after { display: none; }
    .stats-card { flex-direction: column; gap: 30px; }
    .stat-divider { display: none; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}

/* Base Styles */
.seo-services-section {
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
}

/*.container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/

/* Top Header */
.section-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.1;
    margin: 0;
}

.top-description {
    max-width: 400px;
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Layout Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Image */
.left-visual {
    position: sticky; /* Keeps it in view while scrolling the right side */
    top: 20px;
}

.image-placeholder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Right Scrollable Area */
.right-scrollable-list {
    max-height: 600px; /* Adjust this to control how tall the section is */
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for the right side */
.right-scrollable-list::-webkit-scrollbar {
    width: 6px;
}

.right-scrollable-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.right-scrollable-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* Service Item Styling */
.service-item {
    padding: 30px;
    border-bottom: 1px solid #edf2f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-item p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Active/Selected State */
.service-item.active {
    background-color: #2e5cff;
    color: #fff;
    border-radius: 20px;
    border-bottom: none;
    box-shadow: 0 15px 35px rgba(46, 92, 255, 0.2);
}

.service-item.active h3, 
.service-item.active p,
.service-item.active .arrow-icon {
    color: #fff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-icon {
    font-size: 1.5rem;
    color: #1a202c;
}

/* Responsive */
@media (max-width: 992px) {
    .section-top-header { flex-direction: column; }
    .content-grid { grid-template-columns: 1fr; }
    .right-scrollable-list { max-height: none; overflow-y: visible; }
}

.service-item .icon-box {
    display: flex;
    justify-content: center;
}

/* FAQ Section Styles */
.st-seo-faq-wrapper {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.st-seo-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.st-seo-faq-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.st-seo-faq-list {
    border-top: 1px solid #f0f0f0;
}

.st-seo-faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.st-seo-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-seo-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

/* Custom +/- Icon */
.st-seo-faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.st-seo-faq-icon::before,
.st-seo-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #1a1a1a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal bar (always visible) */
.st-seo-faq-icon::before {
    width: 18px;
    height: 2px;
}

/* Vertical bar (hidden when active to show minus) */
.st-seo-faq-icon::after {
    width: 2px;
    height: 18px;
}

.st-seo-active .st-seo-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Collapsible Content Area */
.st-seo-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.st-seo-active .st-seo-faq-content {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
}

.st-seo-faq-answer {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    max-width: 85%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .st-seo-faq-main-title { font-size: 2.2rem; }
    .st-seo-faq-question { font-size: 1.1rem; }
    .st-seo-faq-answer { max-width: 100%; }
}

/* CTA Section Styles */
.st-seo-cta-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.st-seo-cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.st-seo-cta-inner {
    position: relative;
    /* High-quality blue gradient matching the image */
    background: linear-gradient(135deg, #4477ff 0%, #2d5bff 100%);
    padding: 80px 40px;
    border-radius: 40px; /* Highly rounded corners as seen in image */
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 91, 255, 0.15);
}

/* Subtle geometric background pattern overlay */
.st-seo-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 100px 100px;
    pointer-events: none;
}

.st-seo-cta-heading {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.st-seo-cta-actions {
    position: relative;
    z-index: 1;
}

.st-seo-cta-button {
    display: inline-block;
    background-color: #1a1a1a; /* Dark button color */
    color: #ffffff;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px; /* Slightly rounded button */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.st-seo-cta-button:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .st-seo-cta-inner {
        padding: 60px 20px;
        border-radius: 25px;
    }
    .st-seo-cta-heading {
        font-size: 1.8rem;
    }
    .st-seo-cta-button {
        width: 100%;
        max-width: 250px;
    }
}