
    /* ============================================ */
    /* GEO SERVICES - COMPLETE CSS                   */
    /* ============================================ */

    /* -------- GEO HERO SECTION -------- */
    .geo-hero {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .geo-hero::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .geo-hero-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .geo-hero-image {
        flex: 1;
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .geo-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.5s;
        border-radius: 24px;
        border: 3px solid #d4a017;
    }

    .geo-hero-image:hover img {
        transform: scale(1.03);
    }

    .geo-hero-badge {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 50px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .geo-hero-badge span {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .geo-hero-badge span::before {
        content: '✦ ';
        color: #d4a017;
    }

    .geo-hero-content {
        flex: 1.2;
        padding: 10px 0;
    }

    .geo-hero-content .section-head {
        margin-bottom: 18px;
    }

    .geo-hero-content .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-hero-content .section-head h1 {
        font-size: clamp(1rem, 4vw, 2rem);
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-hero-content .section-head h1 span {
        color: #d4a017;
    }

    .geo-hero-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 12px;
    }

    .geo-hero-desc.last-desc {
        margin-bottom: 0;
    }

    .geo-hero-desc a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-hero-desc a.internal-gold:hover {
        text-decoration: underline;
    }

    .geo-hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .geo-hero-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .geo-hero-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    @media (max-width: 1024px) {
        .geo-hero-wrapper {
            gap: 40px;
        }
    }

    @media (max-width: 991px) {
        .geo-hero {
            padding: 60px 0;
        }

        .geo-hero-wrapper {
            flex-direction: column;
            gap: 35px;
        }

        .geo-hero-image {
            width: 100%;
        }

        .geo-hero-content {
            padding: 0;
            width: 100%;
        }

        .geo-hero-content .section-head h1 {
            font-size: 26px;
        }

        .geo-hero-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .geo-hero-content .section-head h1 {
            font-size: 22px;
        }

        .geo-hero-desc {
            font-size: 14px;
        }

        .geo-hero-badge {
            bottom: 18px;
            left: 18px;
            padding: 10px 18px;
        }

        .geo-hero-badge span {
            font-size: 12px;
        }

        .geo-hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .geo-hero-btn-primary {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-hero {
            padding: 40px 0;
        }

        .geo-hero-content .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .geo-hero-content .section-head h1 {
            font-size: 20px;
        }

        .geo-hero-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .geo-hero-badge {
            bottom: 12px;
            left: 12px;
            padding: 8px 14px;
        }

        .geo-hero-badge span {
            font-size: 11px;
        }

        .geo-hero-btn-primary {
            font-size: 13px;
            padding: 10px 16px;
        }
    }

    @media (max-width: 380px) {
        .geo-hero-content .section-head h1 {
            font-size: 18px;
        }

        .geo-hero-desc {
            font-size: 12px;
        }
    }

    /* -------- WHAT IS GEO SECTION -------- */
    .geo-what-is {
        background: #000000;
        padding: 50px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-what-is::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .geo-what-is::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.02), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .geo-what-is-wrapper {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        gap: 65px;
        position: relative;
        z-index: 2;
    }

    .geo-what-is-content {
        width: 100%;
    }

    .geo-what-is .section-head {
        text-align: left;
        margin-bottom: 28px;
    }

    .geo-what-is .section-head .sm-title {
        display: inline-block;
        margin-left: 45px;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 14px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-what-is .section-head h2 {
        font-size: 38px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-what-is .section-head h2 span {
        color: #d4a017;
    }

    .geo-what-is-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.85;
        text-align: justify;
        margin: 0 0 18px;
    }

    .geo-signals-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0 24px;
    }

    .geo-signal-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        border-radius: 10px;
        padding: 10px 14px;
        background: black;
        border-top: 1px solid goldenrod;
        border-bottom: 1px solid goldenrod;
        border-right: 1px solid goldenrod;
        border-left: 6px solid #d4a017;
    }

    .geo-signal-icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #d4a017;
        margin-top: 2px;
    }

    .geo-signal-item span {
        color: #d9d9d9;
        font-size: 14px;
        line-height: 1.6;
    }

    .geo-signal-item span strong {
        color: #ffffff;
    }

    .geo-what-is-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .geo-what-is-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        display: block;
        border-radius: 18px;
        object-fit: cover;
        border: 2px solid #d4a017;
    }

    .geo-what-is-image::before {
        content: '';
        position: absolute;
        width: 85%;
        height: 85%;
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 22px;
        z-index: -1;
        transform: translate(18px, 18px);
    }

    .geo-highlight-box {
        background: rgba(212, 175, 55, 0.06);
        border-left: 4px solid #d4a017;
        padding: 22px 26px;
        border-radius: 10px;
        margin: 28px 0;
    }

    .geo-highlight-box p {
        color: black;
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
       
        margin-bottom: 0;
    }

    .geo-highlight-box a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-highlight-box a.internal-gold:hover {
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .geo-what-is {
            padding: 65px 0;
        }

        .geo-what-is-wrapper {
            grid-template-columns: 1fr;
            gap: 45px;
        }

        .geo-what-is-content {
            order: 1;
        }

        .geo-what-is-image {
            order: 2;
        }

        .geo-what-is .section-head {
            text-align: left;
        }

        .geo-what-is .section-head h2 {
            font-size: 30px;
        }

        .geo-what-is-desc {
            font-size: 14px;
        }

        .geo-what-is-image img {
            max-width: 500px;
        }
    }

    @media (max-width: 768px) {
        .geo-what-is {
            padding: 55px 0;
        }

        .geo-what-is-wrapper {
            gap: 35px;
        }

        .geo-what-is .section-head h2 {
            font-size: 26px;
        }

        .geo-what-is .section-head .sm-title {
            font-size: 12px;
            padding: 5px 16px;
        }

        .geo-what-is-desc {
            font-size: 14px;
            line-height: 1.75;
        }

        .geo-signal-item span {
            font-size: 13px;
        }

        .geo-what-is-image img {
            max-width: 100%;
            border-radius: 15px;
        }

        .geo-highlight-box {
            padding: 16px 18px;
        }

        .geo-highlight-box p {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .geo-what-is {
            padding: 45px 0;
        }

        .geo-what-is .section-head {
            margin-bottom: 22px;
        }

        .geo-what-is .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .geo-what-is .section-head h2 {
            font-size: 22px;
        }

        .geo-what-is-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .geo-signal-item {
            padding: 8px 12px;
        }

        .geo-signal-item span {
            font-size: 12px;
        }

        .geo-highlight-box {
            padding: 15px 16px;
        }

        .geo-highlight-box p {
            font-size: 12px;
            line-height: 1.7;
        }

        .geo-what-is-image::before {
            transform: translate(10px, 10px);
        }
    }

    @media (max-width: 380px) {
        .geo-what-is .section-head h2 {
            font-size: 20px;
        }

        .geo-what-is-desc {
            font-size: 12px;
        }
    }

    /* -------- WHY TRICHY SECTION -------- */
    .geo-why-trichy {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-why-trichy .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-why-trichy .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-why-trichy .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-why-trichy .section-head h2 span {
        color: #d4a017;
    }

    .geo-why-trichy-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-examples-grid {
        max-width: 950px;
        margin: 20px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .geo-example-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
    }

    .geo-example-item:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .geo-example-icon {
        flex-shrink: 0;
        width: 34px;
        height: 34px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #d4a017;
        margin-top: 2px;
    }

    .geo-example-item p {
        color: #444;
        font-size: 13.5px;
        line-height: 1.6;
        margin: 0;
        text-align: justify;
    }

    .geo-why-trichy .geo-highlight-box {
        max-width: 950px;
        margin: 25px auto 0;
    }

    @media (max-width: 768px) {
        .geo-examples-grid {
            grid-template-columns: 1fr;
        }

        .geo-why-trichy .section-head h2 {
            font-size: 26px;
        }

        .geo-why-trichy-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-why-trichy {
            padding: 40px 0;
        }

        .geo-why-trichy .section-head h2 {
            font-size: 22px;
        }

        .geo-why-trichy-desc {
            font-size: 13px;
        }

        .geo-example-item {
            padding: 12px 14px;
        }

        .geo-example-item p {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-why-trichy .section-head h2 {
            font-size: 20px;
        }

        .geo-why-trichy-desc {
            font-size: 12px;
        }
    }

    /* -------- HOW HELPS SECTION -------- */
    .geo-how-helps {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-how-helps .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-how-helps .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-how-helps .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-how-helps .section-head h2 span {
        color: #d4a017;
    }

    .geo-how-helps-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-helps-list {
        max-width: 950px;
        margin: 30px auto 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .geo-helps-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 18px 22px;
        border: 1px solid goldenrod;
        border-radius: 16px;
        transition: 0.3s;
    }

    .geo-helps-item:hover {
        border-color: #d4a017;
        transform: translateX(8px);
    }

    .geo-helps-icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #d4a017;
        transition: 0.3s;
        margin-top: 2px;
    }

    .geo-helps-item:hover .geo-helps-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .geo-helps-item h4 {
        font-size: 16.5px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }

    .geo-helps-item p {
        color: #bdbdbd;
        font-size: 13.5px;
        line-height: 1.75;
        text-align: justify;
        margin: 0;
    }

    .geo-how-helps .geo-highlight-box {
        max-width: 950px;
        margin: 28px auto 0;
    }

    @media (max-width: 768px) {
        .geo-how-helps .section-head h2 {
            font-size: 26px;
        }

        .geo-how-helps-desc {
            font-size: 14px;
        }

        .geo-helps-item {
            flex-direction: column;
            gap: 10px;
            padding: 16px 18px;
        }
    }

    @media (max-width: 480px) {
        .geo-how-helps {
            padding: 40px 0;
        }

        .geo-how-helps .section-head h2 {
            font-size: 22px;
        }

        .geo-how-helps-desc {
            font-size: 13px;
        }

        .geo-helps-item {
            padding: 14px 14px;
        }

        .geo-helps-item h4 {
            font-size: 15px;
        }

        .geo-helps-item p {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-how-helps .section-head h2 {
            font-size: 20px;
        }

        .geo-how-helps-desc {
            font-size: 12px;
        }
    }

    /* -------- SERVICES LIST SECTION -------- */
    .geo-services-list {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-services-list .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-services-list .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-services-list .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-services-list .section-head h2 span {
        color: #d4a017;
    }

    .geo-services-list-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-services-list-grid {
        max-width: 1100px;
        margin: 30px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .geo-service-block {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 22px 24px;
        transition: 0.3s;
    }

    .geo-service-block:hover {
        border-color: #d4a017;
        transform: translateY(-4px);
        box-shadow: 0 12px 34px rgba(212, 175, 55, 0.08);
    }

    .geo-service-num {
        flex-shrink: 0;
        font-size: 24px;
        font-weight: 800;
        color: #d4a017;
        line-height: 1;
        min-width: 42px;
    }

    .geo-service-body h3 {
        font-size: 16px;
        font-weight: 700;
        color: #222;
        margin-bottom: 4px;
    }

    .geo-service-body p {
        color: #555;
        font-size: 13.5px;
        line-height: 1.7;
        text-align: justify;
        margin: 0;
    }

    @media (max-width: 991px) {
        .geo-services-list-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .geo-services-list .section-head h2 {
            font-size: 26px;
        }

        .geo-services-list-desc {
            font-size: 14px;
        }

        .geo-service-block {
            flex-direction: column;
            gap: 10px;
            padding: 18px 18px;
        }
    }

    @media (max-width: 480px) {
        .geo-services-list {
            padding: 40px 0;
        }

        .geo-services-list .section-head h2 {
            font-size: 22px;
        }

        .geo-services-list-desc {
            font-size: 13px;
        }

        .geo-service-block {
            padding: 14px 14px;
        }

        .geo-service-body h3 {
            font-size: 15px;
        }

        .geo-service-body p {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-services-list .section-head h2 {
            font-size: 20px;
        }

        .geo-services-list-desc {
            font-size: 12px;
        }
    }

    /* -------- AUDIT SECTION -------- */
    .geo-audit {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-audit .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-audit .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-audit .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-audit .section-head h2 span {
        color: #d4a017;
    }

    .geo-audit-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-audit-grid {
        max-width: 950px;
        margin: 30px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .geo-audit-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 16px;
        border: 2px solid goldenrod;
        border-radius: 10px;
        transition: 0.3s;
    }

    .geo-audit-item:hover {
        border-color: #d4a017;
        background: rgba(212, 175, 55, 0.04);
    }

    .geo-audit-item i {
        color: #d4a017;
        font-size: 14px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .geo-audit-item span {
        color: #d9d9d9;
        font-size: 13.5px;
        line-height: 1.5;
    }

    .geo-audit .geo-highlight-box {
        max-width: 950px;
        margin: 25px auto 0;
    }

    @media (max-width: 768px) {
        .geo-audit-grid {
            grid-template-columns: 1fr;
        }

        .geo-audit .section-head h2 {
            font-size: 26px;
        }

        .geo-audit-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-audit {
            padding: 40px 0;
        }

        .geo-audit .section-head h2 {
            font-size: 22px;
        }

        .geo-audit-desc {
            font-size: 13px;
        }

        .geo-audit-item {
            padding: 10px 12px;
        }

        .geo-audit-item span {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-audit .section-head h2 {
            font-size: 20px;
        }

        .geo-audit-desc {
            font-size: 12px;
        }
    }

    /* -------- COMPARISON SECTION -------- */
    .geo-comparison {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-comparison .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-comparison .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-comparison .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-comparison .section-head h2 span {
        color: #d4a017;
    }

    .geo-comparison-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-comparison-desc.mt-4 {
        margin-top: 30px;
    }

    .geo-comparison-table-wrap {
        max-width: 1000px;
        margin: 30px auto 0;
        overflow-x: auto;
        border-radius: 18px;
        border: 1px solid #eee2c9;
    }

    .geo-comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
    }

    .geo-comparison-table thead th {
        background: #1a1a1a;
        color: #fff;
        padding: 16px 18px;
        font-size: 13px;
        text-align: left;
    }

    .geo-comparison-table thead th.gold-head {
        background: #d4a017;
        color: #000;
    }

    .geo-comparison-table td {
        padding: 15px 18px;
        font-size: 13.5px;
        color: #333;
        border-bottom: 1px solid #f0e5c0;
        vertical-align: top;
    }

    .geo-comparison-table tr:last-child td {
        border-bottom: none;
    }

    .geo-comparison-table td.row-label {
        font-weight: 700;
        color: #222;
        background: #fafafa;
    }

    .geo-comparison-table td.gold-cell {
        background: #ffc10778;
        font-weight: 500;
        color: #333;
    }

    @media (max-width: 768px) {
        .geo-comparison .section-head h2 {
            font-size: 26px;
        }

        .geo-comparison-desc {
            font-size: 14px;
        }

        .geo-comparison-table {
            font-size: 12.5px;
        }

        .geo-comparison-table thead th,
        .geo-comparison-table td {
            padding: 12px 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-comparison {
            padding: 40px 0;
        }

        .geo-comparison .section-head h2 {
            font-size: 22px;
        }

        .geo-comparison-desc {
            font-size: 13px;
        }

        .geo-comparison-table {
            font-size: 11px;
        }

        .geo-comparison-table thead th,
        .geo-comparison-table td {
            padding: 10px 10px;
        }
    }

    @media (max-width: 380px) {
        .geo-comparison .section-head h2 {
            font-size: 20px;
        }

        .geo-comparison-desc {
            font-size: 12px;
        }
    }

    /* -------- PROCESS SECTION -------- */
    .geo-process {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-process .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-process .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-process .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-process .section-head h2 span {
        color: #d4a017;
    }

    .geo-process-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-process-desc strong {
        color: #d4a017;
    }

    @media (max-width: 768px) {
        .geo-process .section-head h2 {
            font-size: 26px;
        }

        .geo-process-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-process {
            padding: 40px 0;
        }

        .geo-process .section-head h2 {
            font-size: 22px;
        }

        .geo-process-desc {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-process .section-head h2 {
            font-size: 20px;
        }

        .geo-process-desc {
            font-size: 12px;
        }
    }

    /* -------- PLATFORMS SECTION -------- */
    .geo-platforms {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-platforms .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-platforms .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-platforms .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-platforms .section-head h2 span {
        color: #d4a017;
    }

    .geo-platforms-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-platforms-grid {
        max-width: 1100px;
        margin: 30px auto 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .geo-platform-card {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 24px 20px;
        text-align: center;
        transition: 0.3s;
    }

    .geo-platform-card:hover {
        transform: translateY(-6px);
        border-color: #d4a017;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.06);
    }

    .geo-platform-icon {
        width: 54px;
        height: 54px;
        margin: 0 auto 14px;
        background: rgba(212, 175, 55, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #d4a017;
        transition: 0.3s;
    }

    .geo-platform-card:hover .geo-platform-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .geo-platform-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: #222;
        margin-bottom: 6px;
    }

    .geo-platform-card p {
        color: #555;
        font-size: 13.5px;
        line-height: 1.7;
        text-align: justify;
        margin: 0;
    }

    .geo-platforms .geo-highlight-box {
    max-width: 1100px;
    border-top: 1px solid goldenrod;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    margin: 28px auto 0;
    }

    @media (max-width: 991px) {
        .geo-platforms-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .geo-platforms-grid {
            grid-template-columns: 1fr;
        }

        .geo-platforms .section-head h2 {
            font-size: 26px;
        }

        .geo-platforms-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-platforms {
            padding: 40px 0;
        }

        .geo-platforms .section-head h2 {
            font-size: 22px;
        }

        .geo-platforms-desc {
            font-size: 13px;
        }

        .geo-platform-card {
            padding: 18px 16px;
        }
    }

    @media (max-width: 380px) {
        .geo-platforms .section-head h2 {
            font-size: 20px;
        }

        .geo-platforms-desc {
            font-size: 12px;
        }
    }

    /* -------- INDUSTRIES SECTION -------- */
    .geo-industries {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-industries .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-industries .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-industries .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-industries .section-head h2 span {
        color: #d4a017;
    }

    .geo-industries-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-industries-grid {
        max-width: 1100px;
        margin: 30px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .geo-industry-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 20px;
        border: 1px solid goldenrod;
        border-radius: 14px;
        transition: 0.3s;
    }

    .geo-industry-card:hover {
        border-color: #d4a017;
        transform: translateX(6px);
    }

    .geo-industry-icon {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #d4a017;
        margin-top: 2px;
        transition: 0.3s;
    }

    .geo-industry-card:hover .geo-industry-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .geo-industry-card h4 {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 2px;
    }

    .geo-industry-card p {
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }

    .geo-industries .geo-highlight-box {
        max-width: 1100px;
        margin: 28px auto 0;
    }

    @media (max-width: 991px) {
        .geo-industries-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .geo-industries .section-head h2 {
            font-size: 26px;
        }

        .geo-industries-desc {
            font-size: 14px;
        }

        .geo-industry-card {
            flex-direction: column;
            gap: 10px;
            align-items: center;
            text-align: center;
            padding: 16px 16px;
        }
    }

    @media (max-width: 480px) {
        .geo-industries {
            padding: 40px 0;
        }

        .geo-industries .section-head h2 {
            font-size: 22px;
        }

        .geo-industries-desc {
            font-size: 13px;
        }

        .geo-industry-card {
            padding: 14px 14px;
        }

        .geo-industry-card h4 {
            font-size: 14px;
        }

        .geo-industry-card p {
            font-size: 12.5px;
        }
    }

    @media (max-width: 380px) {
        .geo-industries .section-head h2 {
            font-size: 20px;
        }

        .geo-industries-desc {
            font-size: 12px;
        }
    }

    /* -------- WHY US SECTION -------- */
    .geo-why-us {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-why-us .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-why-us .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-why-us .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-why-us .section-head h2 span {
        color: #d4a017;
    }

    .geo-why-us-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-why-us-desc a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-why-us-desc a.internal-gold:hover {
        text-decoration: underline;
    }

    .geo-why-us-list {
        max-width: 850px;
        margin: 20px auto 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .geo-why-us-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
    }

    .geo-why-us-item:hover {
        border-color: #d4a017;
        transform: translateX(4px);
    }

    .geo-why-us-item i {
        color: #d4a017;
        font-size: 14px;
        margin-top: 4px;
        flex-shrink: 0;
    }

    .geo-why-us-item span {
        color: #444;
        font-size: 14px;
        line-height: 1.6;
    }

    .geo-why-us-item span strong {
        color: #222;
    }

    .geo-why-us-item a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-why-us-item a.internal-gold:hover {
        text-decoration: underline;
    }

    .geo-why-us .geo-highlight-box {
        max-width: 850px;
        margin: 25px auto 0;
          
    border-top: 1px solid goldenrod;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
   
    }

    @media (max-width: 768px) {
        .geo-why-us .section-head h2 {
            font-size: 26px;
        }

        .geo-why-us-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-why-us {
            padding: 40px 0;
        }

        .geo-why-us .section-head h2 {
            font-size: 22px;
        }

        .geo-why-us-desc {
            font-size: 13px;
        }

        .geo-why-us-item {
            padding: 12px 14px;
        }

        .geo-why-us-item span {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-why-us .section-head h2 {
            font-size: 20px;
        }

        .geo-why-us-desc {
            font-size: 12px;
        }
    }

    /* -------- CONSULTANT SECTION -------- */
    .geo-consultant {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-consultant .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-consultant .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-consultant .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .geo-consultant .section-head h2 span {
        color: #d4a017;
    }

    .geo-consultant-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-consultant-list {
        max-width: 850px;
        margin: 20px auto 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .geo-consultant-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 18px;
        border: 1px solid goldenrod;
        border-radius: 12px;
        transition: 0.3s;
    }

    .geo-consultant-item:hover {
        border-color: #d4a017;
        transform: translateX(4px);
    }

    .geo-consultant-item i {
        color: #d4a017;
        font-size: 14px;
        margin-top: 4px;
        flex-shrink: 0;
    }

    .geo-consultant-item span {
        color: #d9d9d9;
        font-size: 14px;
        line-height: 1.6;
    }

    .geo-consultant .geo-highlight-box {
        max-width: 850px;
        margin: 25px auto 0;
    }

    @media (max-width: 768px) {
        .geo-consultant .section-head h2 {
            font-size: 26px;
        }

        .geo-consultant-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-consultant {
            padding: 40px 0;
        }

        .geo-consultant .section-head h2 {
            font-size: 22px;
        }

        .geo-consultant-desc {
            font-size: 13px;
        }

        .geo-consultant-item {
            padding: 12px 14px;
        }

        .geo-consultant-item span {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-consultant .section-head h2 {
            font-size: 20px;
        }

        .geo-consultant-desc {
            font-size: 12px;
        }
    }

    /* -------- MEASUREMENT SECTION -------- */
    .geo-measurement {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .geo-measurement .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .geo-measurement .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .geo-measurement .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .geo-measurement .section-head h2 span {
        color: #d4a017;
    }

    .geo-measurement-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .geo-measurement-desc a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-measurement-desc a.internal-gold:hover {
        text-decoration: underline;
    }

    .geo-measurement-grid {
        max-width: 1100px;
        margin: 30px auto 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .geo-measurement-card {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 24px 20px;
        transition: 0.35s;
    }

    .geo-measurement-card:hover {
        transform: translateY(-6px);
        border-color: #d4a017;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.06);
    }

    .geo-measurement-icon {
        width: 48px;
        height: 48px;
        background: rgba(212, 175, 55, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #d4a017;
        margin-bottom: 14px;
        transition: 0.3s;
    }

    .geo-measurement-card:hover .geo-measurement-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .geo-measurement-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #222;
        margin-bottom: 6px;
    }

    .geo-measurement-card p {
        color: #555;
        font-size: 13px;
        line-height: 1.7;
        text-align: justify;
        margin: 0;
    }

    .geo-measurement .geo-highlight-box {
        max-width: 1100px;
        margin: 28px auto 0;
          
    border-top: 1px solid goldenrod;
    border-right: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
  
    }

    @media (max-width: 1024px) {
        .geo-measurement-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .geo-measurement-grid {
            grid-template-columns: 1fr;
        }

        .geo-measurement .section-head h2 {
            font-size: 26px;
        }

        .geo-measurement-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-measurement {
            padding: 40px 0;
        }

        .geo-measurement .section-head h2 {
            font-size: 22px;
        }

        .geo-measurement-desc {
            font-size: 13px;
        }

        .geo-measurement-card {
            padding: 18px 16px;
        }
    }

    @media (max-width: 380px) {
        .geo-measurement .section-head h2 {
            font-size: 20px;
        }

        .geo-measurement-desc {
            font-size: 12px;
        }
    }

    /* -------- FAQ SECTION -------- */
    .geo-faq {
        --fq-accent: #D4AF37;
        --fq-accent2: #FFD700;
        --fq-dark: #0d1117;
        --fq-card: #141b22;
        --fq-border: rgba(212, 175, 55, 0.25);
        --fq-text: #c9d1d9;
        --fq-muted: #8b949e;
        --fq-white: #ffffff;
        --fq-radius: 14px;
        --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
        background: #000;
        padding: 72px 0 80px;
        overflow: hidden;
    }

    .geo-faq-wrap {
        max-width: 860px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .geo-faq .section-head {
        text-align: center;
        margin-bottom: 48px;
    }

    .geo-faq .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-faq .section-head h2 {
        color: #ffffff;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 800;
        line-height: 1.22;
        margin: 0;
    }

    .geo-faq .section-head h2 span {
        color: #d4a017;
    }

    .geo-faq-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .geo-faq-item {
        background: var(--fq-card);
        border: 1px solid var(--fq-border);
        border-radius: var(--fq-radius);
        overflow: hidden;
        transition: border-color var(--fq-trans), box-shadow var(--fq-trans);
    }

    .geo-faq-item:hover {
        border-color: #D4AF37;
    }

    .geo-faq-item.geo-faq-open {
        border-color: var(--fq-accent);
        box-shadow: 0 0 0 1px rgba(145, 217, 4, 0.25), 0 8px 32px rgba(0, 0, 0, 0.35);
    }

    .geo-faq-btn {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        text-align: left;
        outline: none;
    }

    .geo-faq-btn:focus-visible {
        outline: 2px solid var(--fq-accent);
        outline-offset: -2px;
    }

    .geo-faq-num {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(145, 217, 4, 0.1);
        border: 1px solid var(--fq-border);
        color: var(--fq-accent);
        font-size: .7rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: .05em;
        transition: background var(--fq-trans), border-color var(--fq-trans);
    }

    .geo-faq-open .geo-faq-num {
        background: var(--fq-accent);
        border-color: var(--fq-accent);
        color: var(--fq-dark);
    }

    .geo-faq-q-text {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        flex: 1;
        color: var(--fq-white);
        transition: color var(--fq-trans);
    }

    .geo-faq-open .geo-faq-q-text {
        color: var(--fq-accent);
    }

    .geo-faq-icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #000;
        border: 1px solid var(--fq-border);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--fq-trans), transform var(--fq-trans);
    }

    .geo-faq-icon svg {
        width: 13px;
        height: 13px;
        stroke: var(--fq-accent);
        transition: transform var(--fq-trans);
    }

    .geo-faq-open .geo-faq-icon {
        background: var(--fq-accent);
    }

    .geo-faq-open .geo-faq-icon svg {
        stroke: var(--fq-dark);
        transform: rotate(45deg);
    }

    .geo-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--fq-trans);
        cursor: pointer;
    }

    .geo-faq-answer-inner {
        padding: 0 22px 20px 70px;
        text-align: justify;
        color: var(--fq-text);
        font-size: .94rem;
        line-height: 1.72;
    }

    .geo-faq-footer {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
    }

    .geo-faq-footer-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin: 0 0 12px;
    }

    .geo-faq-footer-desc a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-faq-footer-desc a.internal-gold:hover {
        text-decoration: underline;
    }

    .geo-faq-footer-cta {
        color: #d9d9d9;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin: 0;
    }

    .geo-faq-footer-cta a.internal-gold {
        color: #d4a017;
        text-decoration: none;
        font-weight: 600;
    }

    .geo-faq-footer-cta a.internal-gold:hover {
        text-decoration: underline;
    }

    @media (max-width: 600px) {
        .geo-faq {
            padding: 52px 0 60px;
        }

        .geo-faq-answer-inner {
            padding-left: 22px;
        }

        .geo-faq-btn {
            padding: 16px 16px;
            gap: 12px;
        }

        .geo-faq-footer-desc {
            font-size: 14px;
        }

        .geo-faq-footer-cta {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .geo-faq-footer-desc {
            font-size: 13px;
        }

        .geo-faq-footer-cta {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .geo-faq-footer-desc {
            font-size: 12px;
        }

        .geo-faq-footer-cta {
            font-size: 12px;
        }
    }











      
                    /* =========================================================
   GEO - WHAT IS GENERATIVE ENGINE OPTIMIZATION
   COMPLETE RESPONSIVE CSS
   ========================================================= */

.geo-what-is {
    width: 100%;
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.geo-what-is-wrapper {
    width: 100%;

    display: grid;

    /*
     * TOP CONTENT
     * Left  = Text
     * Right = Image
     */
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);

    column-gap: 70px;
    row-gap: 0;

    align-items: start;
}


/* =========================================================
   CONTENT WRAPPER
   IMPORTANT
   Allows children to participate in parent grid
   ========================================================= */

.geo-what-is-content {
    display: contents;
}


/* =========================================================
   SECTION HEADING
   LEFT SIDE
   ========================================================= */

.geo-what-is-content .section-head {
    grid-column: 1;
    grid-row: 1;

    width: 100%;
    max-width: 100%;

    margin: 0 0 25px;
}

.geo-what-is-content .section-head .sm-title {
    display: inline-block;
    margin-bottom: 10px;
}

.geo-what-is-content .section-head .title1 {
    width: 100%;
    margin: 0;
    line-height: 1.15;
}


/* =========================================================
   FIRST + SECOND PARAGRAPH
   LEFT SIDE
   ========================================================= */

.geo-what-is-content .geo-what-is-desc {
    grid-column: 1;

    width: 100%;
    max-width: 100%;

    margin: 0 0 18px;

    line-height: 1.75;
}


/*
 * Because there are two paragraphs, place them naturally
 * in the first grid column.
 */

.geo-what-is-content .section-head + .geo-what-is-desc {
    grid-column: 1;
}


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.geo-what-is-image {
    grid-column: 2;
    grid-row: 1 / span 3;

    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    margin: 0;
    padding: 0;
}

.geo-what-is-image img {
    display: block;

    width: 100%;
    max-width: 560px;

    height: auto;

    /*
     * Keeps image proportional
     */
    aspect-ratio: 18 / 10;

    object-fit: cover;

    border-radius: 12px;

    margin: 0 auto;
}


/* =========================================================
   SIGNALS
   FULL WIDTH - LEFT TO RIGHT
   ========================================================= */

.geo-signals-grid {
    grid-column: 1 / -1;

    width: 100% !important;
    max-width: none !important;

    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 25px;
    margin-bottom: 0;

    box-sizing: border-box;
}


/* =========================================================
   INDIVIDUAL SIGNAL BOX
   ========================================================= */

.geo-signal-item {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 13px 17px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 193, 7, 0.85);

    border-radius: 8px;

    line-height: 1.6;

    /*
     * Prevent shrinking
     */
    flex: 0 0 100%;
}


/* =========================================================
   SIGNAL ICON
   ========================================================= */

.geo-signal-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    margin-top: 1px;
}

.geo-signal-icon i {
    font-size: 12px;
}


/* =========================================================
   HIGHLIGHT BOX
   FULL WIDTH - LEFT TO RIGHT
   ========================================================= */

.geo-highlight-box {
    grid-column: 1 / -1;

    width: 100% !important;
    max-width: none !important;

    margin-top: 22px;
    margin-bottom: 0;

    padding: 18px 22px;

    box-sizing: border-box;

    border-radius: 8px;
}

.geo-highlight-box p {
    width: 100%;

    margin: 0;

    line-height: 1.7;

    color: white !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .geo-what-is {
        padding: 110px 0;
    }

    .geo-what-is-wrapper {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(450px, 0.85fr);

        column-gap: 85px;
    }

    .geo-what-is-image img {
        max-width: 620px;
    }

    .geo-signal-item {
        padding: 14px 18px;
    }

    .geo-highlight-box {
        padding: 20px 24px;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) and (min-width: 992px) {

    .geo-what-is {
        padding: 80px 0;
    }

    .geo-what-is-wrapper {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(330px, 0.9fr);

        column-gap: 45px;
    }

    .geo-what-is-image img {
        max-width: 100%;
    }

    .geo-signal-item {
        padding: 11px 14px;
    }

    .geo-signal-icon {
        flex: 0 0 28px;

        width: 28px;
        height: 28px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .geo-what-is {
        padding: 70px 0;
    }

    /*
     * Return to normal block/grid layout
     */
    .geo-what-is-wrapper {
        display: grid;

        grid-template-columns: 1fr;

        column-gap: 0;
        row-gap: 35px;

        align-items: start;
    }

    /*
     * IMPORTANT:
     * Restore normal behavior on mobile/tablet.
     */
    .geo-what-is-content {
        display: contents;
    }

    /*
     * Heading and paragraphs
     */
    .geo-what-is-content .section-head {
        grid-column: 1;
        grid-row: auto;

        width: 100%;

        margin-bottom: 20px;
    }

    .geo-what-is-content .geo-what-is-desc {
        grid-column: 1;

        width: 100%;

        margin-bottom: 16px;
    }

    /*
     * Image
     */
    .geo-what-is-image {
        grid-column: 1;
        grid-row: auto;

        width: 100%;

        order: 10;
    }

    .geo-what-is-image img {
        width: 100%;
        max-width: 650px;

        margin: 0 auto;
    }

    /*
     * Signals
     */
    .geo-signals-grid {
        grid-column: 1;

        width: 100% !important;

        margin-top: 20px;
    }

    /*
     * Highlight
     */
    .geo-highlight-box {
        grid-column: 1;

        width: 100% !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .geo-what-is {
        padding: 55px 0;
    }

    .geo-what-is-wrapper {
        row-gap: 30px;
    }

    .geo-what-is-content .section-head {
        margin-bottom: 18px;
    }

    .geo-what-is-content .section-head .sm-title {
        margin-bottom: 8px;
    }

    .geo-what-is-content .section-head .title1 {
        line-height: 1.2;
    }

    .geo-what-is-content .geo-what-is-desc {
        margin-bottom: 15px;
        line-height: 1.7;
    }

    /*
     * Signal list
     */
    .geo-signals-grid {
        width: 100% !important;

        gap: 9px;

        margin-top: 20px;
    }

    .geo-signal-item {
        width: 100% !important;

        gap: 10px;

        padding: 10px 12px;

        line-height: 1.55;
    }

    .geo-signal-icon {
        flex: 0 0 26px;

        width: 26px;
        height: 26px;
    }

    .geo-signal-icon i {
        font-size: 11px;
    }

    /*
     * Highlight
     */
    .geo-highlight-box {
        width: 100% !important;

        margin-top: 20px;

        padding: 15px 16px;
    }

    .geo-highlight-box p {
        line-height: 1.65;
    }

    /*
     * Image
     */
    .geo-what-is-image {
        width: 100%;
    }

    .geo-what-is-image img {
        width: 100%;
        max-width: 100%;

        aspect-ratio: 16 / 10;

        border-radius: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .geo-what-is {
        padding: 45px 0;
    }

    .geo-what-is-wrapper {
        row-gap: 25px;
    }

    .geo-signal-item {
        padding: 9px 10px;

        gap: 9px;
    }

    .geo-signal-icon {
        flex: 0 0 25px;

        width: 25px;
        height: 25px;
    }

    .geo-highlight-box {
        padding: 14px;
    }
}
                




                
                
                    .new p{ 
                        color: black !important;
                    }
                














                
    /* =========================================================
   HOW OUR GEO PROCESS WORKS
   FULL CSS
   ========================================================= */

#geo-process-section.geo-process {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

#geo-process-section .container {
    position: relative;
    width: 100%;
    z-index: 2;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

#geo-process-section .geo-process-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 10px 20px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

#geo-process-section .section-head {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    z-index: 3;
}


/* Small title */

#geo-process-section .sm-title {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #d7a928;

    font-size: 10px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Small title lines */

#geo-process-section .sm-title::before,
#geo-process-section .sm-title::after {
    content: "";

    display: block;

    width: 38px;
    height: 1px;

    background: #d7a928;
}


/* Main heading */

#geo-process-section .title1 {
    margin: 0;

    color: #fff;

    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
}


/* Gold heading word */

#geo-process-section .title1 span {
    color: #d7a928;
}


/* =========================================================
   VERTICAL TIMELINE
   ========================================================= */

#geo-process-section .geo-process-wrapper::before {
    content: "";

    position: absolute;

    left: 28px;

    top: 145px;
    bottom: 35px;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(215, 169, 40, 0.25) 5%,
        rgba(215, 169, 40, 0.65) 15%,
        rgba(215, 169, 40, 0.65) 85%,
        rgba(215, 169, 40, 0.25) 95%,
        transparent 100%
    );

    z-index: 0;
}


/* =========================================================
   RESET PROCESS PARAGRAPHS
   ========================================================= */

#geo-process-section .geo-process-desc {
    position: relative;

    box-sizing: border-box;

    font-family: inherit;
}


/* =========================================================
   STEP TITLE
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd) {

    position: relative;

    margin-top: 30px !important;
    margin-left: 75px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;

    padding: 20px 28px 7px 28px !important;

    color: #fff !important;

    background: #090909;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-left: 2px solid #d7a928;

    border-bottom: 0;

    border-radius: 7px 7px 0 0;

    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;

    z-index: 2;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   STEP DESCRIPTION
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(even) {

    position: relative;

    margin-top: 0 !important;
    margin-left: 75px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;

    padding: 3px 28px 22px 28px !important;

    color: #bdbdbd !important;

    background: #090909;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-left: 2px solid #d7a928;

    border-top: 0;

    border-radius: 0 0 7px 7px;

    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;

    z-index: 2;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   MAKE TITLE + DESCRIPTION LOOK LIKE ONE BOX
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd) {
    border-right-color: rgba(255, 255, 255, 0.10);
    border-left-color: #d7a928;
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(even) {
    border-right-color: rgba(255, 255, 255, 0.10);
    border-left-color: #d7a928;
}


/* =========================================================
   NUMBER CIRCLE
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::before {

    content: "";

    position: absolute;

    left: -70px;
    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    box-sizing: border-box;

    background: #000;

    border: 1px solid #d7a928;

    border-radius: 50%;

    color: #d7a928;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    z-index: 5;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   STEP NUMBERS
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(1)::before {
    content: "01";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(3)::before {
    content: "02";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(5)::before {
    content: "03";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(7)::before {
    content: "04";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(9)::before {
    content: "05";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(11)::before {
    content: "06";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(13)::before {
    content: "07";
}

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(15)::before {
    content: "08";
}


/* =========================================================
   REMOVE SECOND CIRCLE / DOUBLE EFFECT
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::after {
    content: none !important;
    display: none !important;
}


/* =========================================================
   HOVER - WHOLE STEP
   ========================================================= */

/* Title hover */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd):hover {

    background: #0d0d0d;

    border-top-color: rgba(215, 169, 40, 0.45);
    border-right-color: rgba(215, 169, 40, 0.45);
    border-left-color: #d7a928;

    transform: translateX(5px);
}


/* Description hover */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd):hover
+ .geo-process-desc {

    background: #0d0d0d;

    border-right-color: rgba(215, 169, 40, 0.45);
    border-bottom-color: rgba(215, 169, 40, 0.45);
    border-left-color: #d7a928;

    transform: translateX(5px);
}


/* Number hover */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd):hover::before {

    background: #d7a928;

    color: #000;

    border-color: #d7a928;

    transform: translateY(-50%) scale(1.08);
}


/* =========================================================
   STEP TITLE GOLD TOP ACCENT
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::after {
    content: "";

    position: absolute;

    left: 28px;
    top: -1px;

    width: 35px;
    height: 2px;

    background: #d7a928;

    opacity: 0;

    transition:
        width 0.3s ease,
        opacity 0.3s ease;
}


/* Hover gold line */

#geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd):hover::after {

    width: 70px;

    opacity: 1;
}


/* =========================================================
   DESCRIPTION TEXT
   ========================================================= */

#geo-process-section .section-head ~ .geo-process-desc[style*="padding-left"] {

    color: #bdbdbd !important;
}


/* =========================================================
   INLINE STYLE OVERRIDE
   ========================================================= */

#geo-process-section .geo-process-desc[style] {
    box-sizing: border-box;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    #geo-process-section.geo-process {
        padding: 80px 0;
    }


    #geo-process-section .geo-process-wrapper {
        max-width: 850px;
    }


    #geo-process-section .section-head {
        margin-bottom: 55px;
    }


    #geo-process-section .title1 {
        font-size: 32px;
    }


    /* Timeline */

    #geo-process-section .geo-process-wrapper::before {
        left: 25px;

        top: 135px;
        bottom: 25px;
    }


    /* Step title */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd) {

        margin-left: 65px !important;

        padding: 18px 24px 6px 24px !important;

        font-size: 14px;
    }


    /* Description */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(even) {

        margin-left: 65px !important;

        padding: 3px 24px 20px 24px !important;

        font-size: 13px;
    }


    /* Number */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::before {

        left: -61px;

        width: 44px;
        height: 44px;

        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #geo-process-section.geo-process {
        padding: 65px 0;
    }


    #geo-process-section .geo-process-wrapper {
        padding: 0;
    }


    #geo-process-section .section-head {
        margin-bottom: 45px;
    }


    #geo-process-section .title1 {
        font-size: 28px;
    }


    #geo-process-section .sm-title {
        font-size: 9px;
        letter-spacing: 1.5px;
    }


    #geo-process-section .sm-title::before,
    #geo-process-section .sm-title::after {
        width: 25px;
    }


    /* Timeline */

    #geo-process-section .geo-process-wrapper::before {

        left: 21px;

        top: 125px;
        bottom: 20px;
    }


    /* Step title */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd) {

        margin-left: 55px !important;
        margin-right: 0 !important;

        padding: 17px 18px 6px 18px !important;

        font-size: 14px;
        line-height: 1.5;
    }


    /* Description */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(even) {

        margin-left: 55px !important;
        margin-right: 0 !important;

        padding: 3px 18px 18px 18px !important;

        font-size: 12px;
        line-height: 1.7;
    }


    /* Number */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::before {

        left: -49px;

        width: 40px;
        height: 40px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #geo-process-section.geo-process {
        padding: 50px 0;
    }


    #geo-process-section .title1 {
        font-size: 24px;
    }


    #geo-process-section .sm-title {
        font-size: 8px;
        letter-spacing: 1.3px;
    }


    #geo-process-section .sm-title::before,
    #geo-process-section .sm-title::after {
        width: 22px;
    }


    /* Timeline */

    #geo-process-section .geo-process-wrapper::before {

        left: 18px;

        top: 115px;
        bottom: 15px;
    }


    /* Step */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd) {

        margin-left: 48px !important;

        padding: 15px 15px 5px 15px !important;

        font-size: 13px;
    }


    /* Description */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(even) {

        margin-left: 48px !important;

        padding: 3px 15px 16px 15px !important;

        font-size: 11.5px;

        line-height: 1.7;
    }


    /* Number */

    #geo-process-section .section-head ~ .geo-process-desc:nth-of-type(odd)::before {

        left: -43px;

        width: 36px;
        height: 36px;

        font-size: 9px;
    }

}

