﻿/* Default for desktop */
section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Smaller font for mobile screens */
@media (max-width: 768px) {
    section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}



/* SECTION BACKGROUND */
.strength-section {
    background: linear-gradient(135deg, #d0f2f0 0%, #ffffff 100%);
    filter: brightness(90%);
    position: relative;
    overflow: hidden;
}



    /* Decorative floating shapes background */
    .strength-section::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -60px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, #b2f2ef 0%, transparent 70%);
        opacity: 0.3;
        z-index: 0;
        border-radius: 50%;
    }

    .strength-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, #a0e5dd 0%, transparent 70%);
        opacity: 0.25;
        z-index: 0;
        border-radius: 50%;
    }


/* Floating gradient shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite alternate;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #b2f2ef 0%, transparent 70%);
    top: 20px;
    left: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #cdeeed 0%, transparent 70%);
    top: 100px;
    right: -60px;
}

.shape-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #a0e0d8 0%, transparent 70%);
    bottom: 20px;
    left: 10%;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}





/* GLASS EFFECT CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 200, 200, 0.25);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

/* SVG ICONS */
.service-svg {
    filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.08));
    transition: transform 0.4s ease, filter 0.4s ease;
    z-index: 1;
}

    .service-svg:hover {
        transform: translateY(-8px) scale(1.05);
        filter: drop-shadow(0px 12px 20px rgba(0,0,0,0.15));
    }

/* BUTTON STYLING */
.btn-teal {
    background: linear-gradient(135deg, #18998E, #11776f);
    color: #fff;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 12px rgba(24, 153, 142, 0.3);
    text-decoration: none;
}

    .btn-teal:hover {
        background: linear-gradient(135deg, #11776f, #0d5e57);
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0px 6px 16px rgba(24, 153, 142, 0.4);
    }



p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .svg-wrapper {
        order: -1 !important; /* force SVG first on mobile */
    }
}


<!-- HEADER STYLING -->
.gradient-text {
    background: linear-gradient(90deg, #18998E, #11776f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem; /* bigger */
    letter-spacing: -1px;
    font-weight: 800;
    position: relative;
    animation: gradientMove 3s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.heading-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #18998E, #11776f);
    border-radius: 10px;
    margin: 10px auto 0;
    transition: all 0.4s ease;
}

.text-center:hover .heading-underline {
    width: 120px;
}

/* SERVICE HEADING */
.service-row h4 {
    font-size: 1.65rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 1;
    background: linear-gradient(90deg, #18998E, #11776f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .service-row h4::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #18998E, #11776f);
        border-radius: 5px;
        margin-top: 6px;
        transition: width 0.4s ease;
    }

    .service-row h4:hover::after {
        width: 90px;
    }


/*FAQ START*/
/* FAQ Header */
.faq-btn {
    background: linear-gradient(90deg, #4FD1C5), #18998E;
    border-radius: 15px;
    color: #4B0082;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .faq-btn:hover {
        background: linear-gradient(90deg, #4FD1C5, #18998E);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

.accordion-button:not(.collapsed) {
    background: #18998E !important;
    color: #fff !important;
}

    .accordion-button:not(.collapsed) .faq-icon {
        transform: rotate(360deg);
        transition: transform 0.5s ease;
    }

.accordion-body {
    background: #f0fdfd;
    border-left: 5px solid #18998E;
    border-radius: 0 12px 12px 0;
    animation: fadeIn 0.5s ease-in-out;
}

.faq-icon {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/*FAQ END*/



/* Card hover effect */
.seo-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(24,153,142,0.2);
}

    .seo-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(24,153,142,0.25);
        border-color: rgba(24,153,142,0.5);
    }

/* Floating shapes animation */
@keyframes floatShape {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(20px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.seo-what-is div[style*="position:absolute"] {
    animation: floatShape 12s ease-in-out infinite alternate;
}

/*What-SEO START*/

.hero-header-pill {
    background: linear-gradient(135deg, #18998E, #30d4c7);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

    .hero-header-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

.seo-title .text-gradient {
    background: linear-gradient(90deg, #FFD700, #FFC107); /* golden gradient icon */
    -webkit-background-clip: text;
    color: transparent;
}

.seo-title span {
    color: #fff;
    font-size: 1.6rem;
}

.text-gradient {
    font-weight: 600;
    background: linear-gradient(90deg,#18998E,#30d4c7);
    -webkit-background-clip: text;
    color: transparent;
}

.wave-bg path {
    animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }
}

/*What-SEO END*/