/* =====================================================
   SEO PAGE
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #101d3f;
    background: #ffffff;
}

a {
    text-decoration: none;
}



/* =====================================================
   NAVBAR
===================================================== */

.seo-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edf1f8;
}

.seo-nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 16px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10245f;
}

.seo-logo img {
    width: 55px;
}

.seo-brand {
    display: block;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 2px;
}

.seo-brand-sub {
    display: block;
    color: #1683ff;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: 600;
}

.seo-nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.seo-nav-menu > a,
.seo-dropdown > a {
    color: #10245f;
    font-size: 16px;
    font-weight: 600;
}

.seo-nav-menu a:hover {
    color: #147df5;
}

.seo-dropdown {
    position: relative;
}

.seo-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.seo-dropdown-menu {
    position: absolute;
    top: 35px;
    left: -20px;

    min-width: 230px;

    background: #fff;
    border-radius: 12px;
    padding: 10px;

    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .3s;
}

.seo-dropdown:hover .seo-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.seo-dropdown-menu a {
    display: block;
    padding: 11px 14px;
    color: #16264d;
    border-radius: 8px;
}

.seo-dropdown-menu a:hover {
    background: #eef6ff;
}

.seo-quote-btn {
    background: linear-gradient(90deg,#12337f,#1687ff);
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
}

.seo-menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 30px;
    color: #12337f;
}



/* =====================================================
   HERO
===================================================== */

.seo-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg,#f6faff,#ffffff);
}

.seo-hero-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -150px;

    background: #1685ff;
    opacity: .08;
    border-radius: 50%;
    filter: blur(20px);
}

.seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 18px;

    border-radius: 30px;

    background: #e9f4ff;
    color: #0875ed;

    font-weight: 700;
    font-size: 13px;
}

.seo-hero h1 {
    margin-top: 25px;

    font-size: clamp(42px,5vw,68px);
    line-height: 1.05;
    font-weight: 800;
    color: #101f55;
}

.seo-hero h1 span {
    display: block;
    color: #1685ff;
}

.seo-hero-text {
    max-width: 600px;
    margin-top: 25px;

    font-size: 18px;
    line-height: 1.8;
    color: #61708a;
}

.seo-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.seo-primary-btn,
.seo-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;
    border-radius: 30px;

    font-weight: 700;

    transition: .3s;
}

.seo-primary-btn {
    background: linear-gradient(90deg,#102f7d,#1685ff);
    color: white;
}

.seo-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(22,133,255,.3);
    color: white;
}

.seo-secondary-btn {
    color: #12347f;
    border: 1px solid #cdd9eb;
    background: white;
}

.seo-secondary-btn:hover {
    background: #eef6ff;
}

.seo-trust {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    color: #52627b;
    font-size: 14px;
}

.seo-trust i {
    color: #1685ff;
}



/* =====================================================
   SEO DASHBOARD
===================================================== */

.seo-dashboard {
    position: relative;
    max-width: 500px;
    margin: auto;

    padding: 25px;

    background: rgba(255,255,255,.95);

    border: 1px solid #e4edf8;
    border-radius: 25px;

    box-shadow:
        0 25px 70px rgba(16,54,120,.14);

    animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.dashboard-top {
    display: flex;
    justify-content: space-between;

    font-size: 12px;
    font-weight: 800;
    color: #65738c;
}

.live-status {
    color: #14b86e;
}

.search-preview {
    margin-top: 20px;
    padding: 15px;

    border: 1px solid #e4ebf5;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.google-logo {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #edf5ff;
    color: #1685ff;

    font-size: 22px;
    font-weight: 800;
}

.search-preview small {
    display: block;
    color: #8a96a8;
}

.search-preview strong {
    display: block;
    color: #172b58;
}

.search-preview > i {
    margin-left: auto;
    color: #1685ff;
}

.ranking-box {
    margin-top: 15px;
    padding: 18px;

    border-radius: 15px;
    background: #f6faff;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ranking-box small {
    color: #758299;
}

.ranking-box h3 {
    margin: 3px 0 0;
    font-size: 34px;
    color: #122f77;
}

.ranking-up {
    padding: 8px 13px;
    border-radius: 20px;

    background: #e7fff2;
    color: #0aaf61;

    font-weight: 700;
}

.traffic-box {
    margin-top: 15px;
    padding: 18px;

    border: 1px solid #e6edf6;
    border-radius: 15px;
}

.traffic-header {
    display: flex;
    justify-content: space-between;
}

.traffic-header strong {
    color: #0caf62;
}

.traffic-chart {
    height: 110px;
    margin-top: 15px;

    display: flex;
    align-items: end;
    gap: 8px;
}

.traffic-chart span {
    flex: 1;

    border-radius: 5px 5px 0 0;

    background: linear-gradient(
        to top,
        #12367f,
        #1685ff
    );

    animation: chartGrow 1.5s ease;
}

@keyframes chartGrow {
    from {
        height: 0 !important;
    }
}

.seo-mini-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 15px;
}

.seo-mini-metrics div {
    padding: 14px;
    background: #f7faff;
    border-radius: 12px;
    text-align: center;
}

.seo-mini-metrics i {
    display: block;
    color: #1685ff;
}

.seo-mini-metrics strong {
    display: block;
    color: #172e66;
}

.seo-mini-metrics small {
    color: #7c8799;
}



/* =====================================================
   SECTION HEADINGS
===================================================== */

.seo-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.seo-section-heading span,
.seo-small-title {
    color: #1685ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.seo-section-heading h2 {
    margin-top: 12px;
    font-size: 42px;
    font-weight: 800;
    color: #102354;
}

.seo-section-heading h2 strong,
.why-seo h2 strong {
    color: #1685ff;
}

.seo-section-heading p {
    margin-top: 15px;
    color: #6c7890;
    line-height: 1.8;
}



/* =====================================================
   INTRO
===================================================== */

.seo-intro {
    padding: 100px 0;
    background: white;
}

.seo-feature-card {
    height: 100%;
    padding: 35px;

    text-align: center;

    border: 1px solid #e7edf5;
    border-radius: 20px;

    transition: .35s;
}

.seo-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(23,72,140,.12);
    border-color: #bcdcff;
}

.seo-feature-icon {
    width: 70px;
    height: 70px;

    margin: auto auto 20px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: #eaf5ff;
    color: #1685ff;

    font-size: 30px;
}

.seo-feature-card h4 {
    font-weight: 750;
    color: #172b58;
}

.seo-feature-card p {
    color: #728096;
    line-height: 1.7;
}



/* =====================================================
   SEO SERVICES
===================================================== */

.seo-services {
    padding: 100px 0;
    background: #f7faff;
}

.seo-service-card {
    position: relative;

    height: 100%;

    padding: 35px;

    background: white;

    border: 1px solid #e4ebf4;
    border-radius: 22px;

    overflow: hidden;

    transition: .35s;
}

.seo-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24,73,140,.13);
}

.seo-service-card.featured {
    border: 2px solid #1685ff;
}

.service-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    background: #eaf5ff;
    color: #1685ff;

    border-radius: 17px;

    font-size: 28px;
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #d9e7f8;
    font-size: 42px;
    font-weight: 900;
}

.seo-service-card h3 {
    margin-top: 25px;
    color: #152c61;
    font-weight: 800;
}

.seo-service-card p {
    color: #718097;
    line-height: 1.7;
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.seo-service-card li {
    margin: 10px 0;
    color: #596981;
}

.seo-service-card li i {
    color: #1685ff;
    margin-right: 8px;
}



/* =====================================================
   PROCESS
===================================================== */

.seo-process {
    padding: 100px 0;
    background: white;
}

.process-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.process-number {
    width: 50px;
    height: 50px;

    margin: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #12377f;
    color: white;

    font-weight: 800;
}

.process-card > i {
    display: block;

    margin: 20px 0;

    font-size: 35px;
    color: #1685ff;
}

.process-card h4 {
    font-weight: 800;
    color: #172c60;
}

.process-card p {
    color: #718097;
    line-height: 1.7;
}



/* =====================================================
   STATS
===================================================== */

.seo-stats {
    padding: 75px 0;

    background: linear-gradient(
        100deg,
        #102d70,
        #1685ff
    );

    color: white;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 30px;
    opacity: .9;
}

.stat-box h2 {
    margin: 10px 0 5px;
    font-size: 42px;
    font-weight: 800;
}

.stat-box p {
    margin: 0;
    opacity: .85;
}



/* =====================================================
   WHY SEO
===================================================== */

.why-seo {
    padding: 110px 0;
}

.why-seo h2 {
    margin: 15px 0;

    font-size: 45px;
    font-weight: 800;

    color: #12275b;
}

.why-seo p {
    color: #6c7890;
    line-height: 1.8;
}

.why-list {
    margin: 25px 0;
}

.why-list div {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 14px 0;

    color: #334568;
}

.why-list i {
    color: #1685ff;
}



/* SEO Visual */

.seo-visual {
    position: relative;

    height: 450px;

    display: grid;
    place-items: center;
}

.circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid #cce3ff;
}

.circle-one {
    width: 350px;
    height: 350px;

    animation: rotateCircle 15s linear infinite;
}

.circle-two {
    width: 250px;
    height: 250px;

    border-style: dashed;

    animation: rotateCircleReverse 10s linear infinite;
}

@keyframes rotateCircle {

    to {
        transform: rotate(360deg);
    }

}

@keyframes rotateCircleReverse {

    to {
        transform: rotate(-360deg);
    }

}

.seo-center-icon {
    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #12377f,
        #1685ff
    );

    color: white;

    font-size: 45px;

    box-shadow: 0 20px 50px rgba(20,120,240,.35);
}

.floating-seo-card {
    position: absolute;

    padding: 15px 20px;

    background: white;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,.1);

    display: flex;
    flex-direction: column;
}

.floating-seo-card i {
    color: #1685ff;
}

.floating-seo-card strong {
    font-size: 25px;
    color: #15306d;
}

.floating-seo-card small {
    color: #7a8698;
}

.card-one {
    top: 60px;
    left: 20px;
}

.card-two {
    right: 20px;
    bottom: 60px;
}



/* =====================================================
   FAQ
===================================================== */

.seo-faq {
    padding: 100px 0;
    background: #f7faff;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    margin-bottom: 12px;

    background: white;

    border: 1px solid #e2eaf4;
    border-radius: 14px;

    overflow: hidden;
}

.faq-question {
    width: 100%;

    padding: 20px;

    border: none;
    background: white;

    text-align: left;

    font-size: 17px;
    font-weight: 700;

    color: #172d60;

    display: flex;
    justify-content: space-between;
}

.faq-question i {
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;

    color: #718097;
    line-height: 1.7;
}

.faq-item.active .faq-question {
    color: #1685ff;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}



/* =====================================================
   CTA
===================================================== */

.seo-cta {
    padding: 80px 0;
}

.seo-cta-box {
    padding: 55px;

    border-radius: 25px;

    background: linear-gradient(
        110deg,
        #102d70,
        #1685ff
    );

    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.seo-cta-box span {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.seo-cta-box h2 {
    margin: 10px 0;
    font-size: 42px;
    font-weight: 800;
}

.seo-cta-box p {
    opacity: .85;
}

.seo-cta-btn {
    flex-shrink: 0;

    padding: 15px 25px;

    border-radius: 30px;

    background: white;
    color: #12367d;

    font-weight: 800;

    transition: .3s;
}

.seo-cta-btn:hover {
    transform: translateY(-3px);
    color: #12367d;
}



/* =====================================================
   FOOTER
===================================================== */

.seo-footer {
    padding: 70px 0 25px;

    background: #091a3d;
    color: white;
}

.seo-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-footer-logo img {
    width: 55px;
}

.seo-footer-logo strong,
.seo-footer-logo span {
    display: block;
}

.seo-footer-logo strong {
    font-size: 25px;
}

.seo-footer-logo span {
    color: #3b9cff;
    letter-spacing: 3px;
    font-size: 11px;
}

.seo-footer p {
    color: #aebbd0;
    line-height: 1.7;
}

.seo-footer h5 {
    margin-bottom: 20px;
}

.seo-footer a {
    display: block;
    margin: 10px 0;
    color: #aebbd0;
}

.seo-footer a:hover {
    color: #3b9cff;
}

.seo-footer hr {
    border-color: rgba(255,255,255,.15);
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
    color: #8e9db7;
}



/* =====================================================
   REVEAL ANIMATION
===================================================== */

.seo-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.seo-reveal.show {
    opacity: 1;
    transform: translateY(0);
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .seo-menu-btn {
        display: block;
    }

    .seo-nav-menu {
        position: absolute;

        left: 0;
        right: 0;
        top: 80px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: white;

        box-shadow: 0 20px 30px rgba(0,0,0,.1);
    }

    .seo-nav-menu.show {
        display: flex;
    }

    .seo-dropdown-menu {
        position: static;

        display: none;

        box-shadow: none;
    }

    .seo-dropdown:hover .seo-dropdown-menu {
        display: block;
    }

    .seo-hero {
        padding: 70px 0;
    }

    .seo-dashboard {
        margin-top: 50px;
    }

    .seo-cta-box {
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width: 576px) {

    .seo-nav-container {
        padding: 12px 18px;
    }

    .seo-brand {
        font-size: 21px;
    }

    .seo-brand-sub {
        font-size: 9px;
    }

    .seo-logo img {
        width: 45px;
    }

    .seo-hero h1 {
        font-size: 42px;
    }

    .seo-section-heading h2 {
        font-size: 32px;
    }

    .seo-mini-metrics {
        grid-template-columns: 1fr;
    }

    .seo-trust {
        flex-direction: column;
        gap: 8px;
    }

    .seo-cta-box {
        padding: 35px 20px;
    }

    .seo-cta-box h2 {
        font-size: 32px;
    }

}