/* --- SEO NEO-BRUTALIST WOW UI --- */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

.seo-case-study {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: "Google Sans Flex", sans-serif;
    overflow-x: hidden;
}

.seo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* 1. Premium SEO Hero */
.seo-hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--secondary-color);
    padding: 25px 0 100px;
    overflow: hidden;
}

.seo-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(183, 65, 14, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.seo-tag-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulseRust 2s infinite;
}

@keyframes pulseRust {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.seo-hero-main-title {
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.85;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-color);
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.seo-hero-lead {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(245, 245, 220, 0.6);
    max-width: 550px;
    margin-bottom: 60px;
}

.seo-hero-animation-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.seo-globe-animation {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-core {
    position: relative;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, var(--bg-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(183, 65, 14, 0.4);
    z-index: 5;
    animation: floatingGlobe 4s ease-in-out infinite;
}

.globe-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(20px);
    opacity: 0.3;
    animation: pulseGlow 3s ease-in-out infinite;
}

.globe-text {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-color);
    z-index: 10;
}

.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-container:hover {
    animation-play-state: paused;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(245, 245, 220, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbiting-element {
    position: absolute;
    background: rgba(245, 245, 220, 0.05);
    border: 1px solid rgba(245, 245, 220, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-color);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

/* Positioning elements on the orbit */
.e1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.e2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0deg);
}

.e3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.e4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(0deg);
}

/* Keep text horizontal as they rotate */
.orbit-container .orbiting-element {
    animation: counterRotate 20s linear infinite;
}

.orbit-container:hover .orbiting-element {
    animation-play-state: paused;
    background: var(--primary-color);
    color: var(--secondary-color);
}

@keyframes floatingGlobe {

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

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

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

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

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

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

.seo-hero-metrics-minimal {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.m-item {
    display: flex;
    flex-direction: column;
}

.m-item strong {
    font-size: 32px;
    color: var(--primary-color);
    line-height: 1;
}

.m-item span {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.4);
}

/* Data Card Visual */
.seo-hero-visual-container {
    position: relative;
}

.seo-data-card {
    background: rgba(245, 245, 220, 0.03);
    border: 1px solid rgba(245, 245, 220, 0.1);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(30px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.seo-data-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.card-chart {
    height: 200px;
    position: relative;
    margin-bottom: 60px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.main-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    z-index: 20;
    transform: translate(-50%, 50%);
}

.p1 {
    bottom: 10%;
    left: 0%;
}

.p2 {
    bottom: 35%;
    left: 37.5%;
}

.p3 {
    bottom: 50%;
    left: 62.5%;
}

.p4 {
    bottom: 90%;
    left: 100%;
    box-shadow: 0 0 20px var(--primary-color);
}

.p4::before {
    content: 'LIVE';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-family: "Google Sans Flex", sans-serif;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
    padding-top: 30px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-stat small {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-stat strong {
    font-size: 18px;
    color: var(--bg-color);
}

@media (max-width: 1024px) {
    .seo-hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }

    .seo-hero-lead {
        margin: 0 auto 40px;
    }

    .seo-hero-actions {
        justify-content: center;
    }

    .seo-data-card {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* 2. Massive Image / Data Ribbon */
.seo-data-ribbon {
    padding: 100px 0;
    background: var(--bg-color);
    color: var(--secondary-color);
    position: relative;
    z-index: 20;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: -50px;
}

.seo-image-wrapper {
    width: 100%;
    height: 70vh;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 100px;
    position: relative;
}

.seo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.seo-image-wrapper:hover img {
    filter: grayscale(0%);
}

.seo-image-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 20px 40px;
    border-radius: 100px;
    font-family: "Google Sans Flex", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.seo-metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 40px 0;
}

.seo-m-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-m-val {
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 700;
    line-height: 1;
}

.seo-m-lbl {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* 3. The Blueprint Grid */
.seo-blueprint {
    padding: 150px 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.seo-bp-header {
    margin-bottom: 100px;
}

.seo-bp-header h2 {
    font-size: clamp(50px, 8vw, 120px);
    text-transform: uppercase;
    line-height: 0.9;
}

.seo-bp-header h2 span {
    color: var(--primary-color);
}

.seo-bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245, 245, 220, 0.2);
    border: 1px solid rgba(245, 245, 220, 0.2);
}

.bp-item {
    background: var(--secondary-color);
    padding: 60px 40px;
    transition: background 0.4s ease;
}

.bp-item:hover {
    background: var(--rust-gradient);
}

.bp-number {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 40px;
    display: block;
}

.bp-item h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.bp-item p {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
}

/* 4. Footer CTA */
.seo-cta-massive {
    padding: 150px 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--bg-color);
}

.seo-cta-massive h2 {
    font-size: clamp(60px, 10vw, 180px);
    text-transform: uppercase;
    line-height: 0.8;
    margin-bottom: 60px;
}

.seo-cta-btn {
    display: inline-block;
    padding: 30px 80px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-radius: 100px;
    transition: transform 0.4s ease;
}

.seo-cta-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .seo-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .seo-metrics-row {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

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

/* ==========================================================================
   KOTTAKKAL HEALTH MASSAGE SEO - BESPOKE PREMIUM CASE STUDY STYLES
   ========================================================================== */

.kottakkal-case-study {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: "Google Sans Flex", sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 50px;
}

/* Global Layout Utilities */
.kottakkal-outer-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4vw;
}

.kottakkal-accent-text {
    color: var(--primary-color);
}

.kottakkal-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 65, 14, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* 1. Hero Masterpiece Section */
.kottakkal-hero {
    position: relative;
    padding: 80px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(183, 65, 14, 0.15);
}

.kottakkal-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.kottakkal-hero-eyebrow {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.kottakkal-pulse-indicator {
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: kottakkal-pulse 2s infinite;
}

@keyframes kottakkal-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 15px var(--primary-color);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.kottakkal-hero-title {
    font-size: clamp(38px, 6vw, 75px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.kottakkal-hero-title span {
    display: block;

    color: #B7410E;
}

.kottakkal-hero-sub {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: 35px;
}

.kottakkal-hero-graph-panel {
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(183, 65, 14, 0.2);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.kottakkal-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.kottakkal-graph-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.kottakkal-graph-badge {
    background: rgba(183, 65, 14, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* SVG Line Graph styles */
.kottakkal-chart-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: kottakkal-draw 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes kottakkal-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.kottakkal-chart-point {
    animation: kottakkal-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.kottakkal-chart-point:nth-child(1) {
    animation-delay: 0.5s;
}

.kottakkal-chart-point:nth-child(2) {
    animation-delay: 1.2s;
}

.kottakkal-chart-point:nth-child(3) {
    animation-delay: 1.9s;
}

.kottakkal-chart-point:nth-child(4) {
    animation-delay: 2.6s;
}

@keyframes kottakkal-pop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 2. Asymmetric Brand Story Section */
.kottakkal-brand-story {
    padding: 80px 0;
    position: relative;
}

.kottakkal-story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.kottakkal-story-title-col {
    flex: 1 1 350px;
    position: relative;
}

.kottakkal-story-decorative-bg {
    font-size: 110px;
    font-weight: 800;
    color: rgba(183, 65, 14, 0.04);
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 0.8;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
}

.kottakkal-story-heading {
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 600;
}

.kottakkal-story-content-col {
    flex: 1.3 1 450px;
    padding-left: 30px;
    border-left: 2px solid var(--primary-color);
}

.kottakkal-story-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: "Google Sans Flex", sans-serif;
    margin-bottom: 20px;
}

.kottakkal-story-body {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(245, 245, 220, 0.7);
    font-family: "Google Sans Flex", sans-serif;
}

/* 3. The Challenge Section - Responsive Timeline Diagnostic Radar */
.kottakkal-challenges {
    padding: 100px 0;
    position: relative;
    background: #020202;
}

.kottakkal-challenge-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
    margin-top: 50px;
}

/* 3. The Challenge Section - Search Visibility Audit Console */
.kottakkal-audit-console {
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(183, 65, 14, 0.2);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.kottakkal-audit-console::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(183, 65, 14, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.kottakkal-console-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kottakkal-console-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kottakkal-console-tag {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(245, 245, 220, 0.45);
    font-weight: 600;
}

.kottakkal-console-badge {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ef4444;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}

.kottakkal-console-title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--text-color);
    margin: 0;
}

/* Segmented Status Gauge (Pure CSS) */
.kottakkal-console-gauge-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(245, 245, 220, 0.04);
}

.kottakkal-gauge-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 245, 220, 0.8);
}

.kottakkal-gauge-value {
    color: #ef4444;
    font-size: 20px;
    font-weight: 800;
}

.kottakkal-segmented-bar {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    height: 8px;
    width: 100%;
}

.kottakkal-bar-segment {
    background: rgba(245, 245, 220, 0.08);
    border-radius: 2px;
}

.kottakkal-bar-segment:first-child {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.kottakkal-gauge-caption {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(245, 245, 220, 0.45);
}

/* Diagnostic Ledger Grid */
.kottakkal-ledger-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kottakkal-ledger-item {
    display: flex;
    gap: 20px;
    background: rgba(183, 65, 14, 0.02);
    border: 1px solid rgba(245, 245, 220, 0.04);
    border-radius: 14px;
    padding: 15px;
    transition: all 0.3s ease;
}

.kottakkal-ledger-item:hover {
    border-color: rgba(183, 65, 14, 0.25);
    background: rgba(183, 65, 14, 0.04);
    transform: translateX(4px);
}

.kottakkal-ledger-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
}

.kottakkal-ledger-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.kottakkal-ledger-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.kottakkal-ledger-status {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
}

.kottakkal-ledger-desc {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(245, 245, 220, 0.6);
}

/* Technical Specifications Table */
.kottakkal-specs-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(245, 245, 220, 0.08);
    padding-top: 20px;
}

.kottakkal-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12.5px;
}

.kottakkal-spec-key {
    color: rgba(245, 245, 220, 0.5);
}

.kottakkal-spec-val {
    font-weight: 600;
    color: #ef4444;
    font-size: 11.5px;
    letter-spacing: 1px;
}

/* Timeline Flow list style */
.kottakkal-challenge-timeline-wrapper {
    position: relative;
    padding-left: 50px;
}

.kottakkal-challenge-timeline-path {
    position: absolute;
    left: 20px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(183, 65, 14, 0.05) 100%);
}

.kottakkal-challenge-timeline-item {
    position: relative;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kottakkal-challenge-timeline-item:last-child {
    margin-bottom: 0;
}

.kottakkal-challenge-node-wrap {
    position: absolute;
    left: -44px;
    top: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kottakkal-challenge-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000000;
    border: 2px solid var(--primary-color);
    z-index: 10;
    transition: all 0.4s ease;
}

.kottakkal-challenge-node-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.kottakkal-challenge-info {
    transition: transform 0.4s ease;
}

.kottakkal-challenge-index {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    opacity: 0.55;
    transition: opacity 0.4s ease;
}

.kottakkal-challenge-headline {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--text-color);
    margin: 4px 0 8px;
    letter-spacing: -0.5px;
}

.kottakkal-challenge-desc {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(245, 245, 220, 0.65);
    transition: color 0.4s ease;
}

/* Hover transitions */
.kottakkal-challenge-timeline-item:hover .kottakkal-challenge-node {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-color);
}

.kottakkal-challenge-timeline-item:hover .kottakkal-challenge-node-pulse {
    animation: kottakkal-node-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.35;
}

.kottakkal-challenge-timeline-item:hover .kottakkal-challenge-info {
    transform: translateX(12px);
}

.kottakkal-challenge-timeline-item:hover .kottakkal-challenge-index {
    opacity: 1;
}

.kottakkal-challenge-timeline-item:hover .kottakkal-challenge-desc {
    color: var(--text-color);
}

/* Objective statement quote block */
.kottakkal-challenge-objective {
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
    margin: 70px auto 0;
    max-width: 850px;
    position: relative;
}

.kottakkal-objective-quote {
    font-size: 56px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 0;
    position: absolute;
    left: 10px;
    top: 25px;
    opacity: 0.15;
    font-family: serif;
}

.kottakkal-objective-text {
    font-family: "Google Sans Flex", sans-serif;
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.7;
    color: rgba(245, 245, 220, 0.75);
    font-weight: 400;
}

/* 4. Strategic Pillars Section - Expanding Dynamic Columns */
.kottakkal-pillars-section {
    padding: 80px 0;
}

.kottakkal-pillars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.kottakkal-pillar-column {
    flex: 1 1 300px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(183, 65, 14, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.kottakkal-pillar-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.kottakkal-pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.kottakkal-pillar-icon {
    font-size: 26px;
    color: var(--primary-color);
}

.kottakkal-pillar-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.kottakkal-pillar-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kottakkal-sub-task {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(245, 245, 220, 0.7);
    transition: color 0.3s ease;
}

.kottakkal-sub-task-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-top: 7px;
    flex-shrink: 0;
}

/* Pillar Hover Effects */
.kottakkal-pillar-column:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 65, 14, 0.45);
    background: rgba(183, 65, 14, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.kottakkal-pillar-column:hover::before {
    opacity: 1;
}

.kottakkal-pillar-column:hover .kottakkal-sub-task {
    color: var(--text-color);
}

/* 5. Metrics & Highlights Section - Native Visual Dashboard */
.kottakkal-metrics-section {
    padding: 80px 0;
    position: relative;
}

.kottakkal-console-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.kottakkal-console-tab {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(245, 245, 220, 0.08);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.kottakkal-tab-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.kottakkal-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 1.5px solid rgba(245, 245, 220, 0.4);
    background: transparent;
}

.kottakkal-tab-title {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 245, 220, 0.75);
    margin-right: auto;
    margin-left: 10px;
}

.kottakkal-info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(245, 245, 220, 0.1);
    color: rgba(245, 245, 220, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: "Google Sans Flex", sans-serif;
    font-weight: bold;
}

.kottakkal-tab-main {
    margin-bottom: 12px;
}

.kottakkal-tab-primary {
    border-bottom: 1px solid rgba(245, 245, 220, 0.06);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.kottakkal-primary-val {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1;
    display: block;
}

.kottakkal-secondary-val {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    display: block;
    opacity: 0.8;
}

.kottakkal-date-lbl {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11px;
    color: rgba(245, 245, 220, 0.45);
    display: block;
    margin-top: 4px;
}

.kottakkal-tab-sparkline {
    display: flex;
    justify-content: flex-end;
}

.kottakkal-spark-arrow {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kottakkal-spark-up {
    color: #10B981;
}

.kottakkal-spark-down {
    color: rgba(183, 65, 14, 0.85);
}

/* Color Coding Themes */

/* Clicks Inactive Theme */
.kottakkal-tab-clicks {
    border-color: rgba(66, 133, 244, 0.15);
}

.kottakkal-tab-clicks .kottakkal-primary-val {
    color: rgba(245, 245, 220, 0.6);
}

/* Clicks Blue Active theme */
.kottakkal-tab-clicks.kottakkal-tab-active {
    border-color: rgba(66, 133, 244, 0.3);
    background: linear-gradient(180deg, rgba(66, 133, 244, 0.08) 0%, rgba(15, 15, 15, 0.7) 100%);
    box-shadow: inset 0 2px 0 rgba(66, 133, 244, 0.5);
}

.kottakkal-tab-clicks.kottakkal-tab-active .kottakkal-primary-val {
    color: #4285F4;
}

.kottakkal-tab-clicks.kottakkal-tab-active .kottakkal-checkbox {
    background: #4285F4;
    border-color: #4285F4;
    color: #FFFFFF;
}

/* Impressions Inactive Theme */
.kottakkal-tab-impressions {
    border-color: rgba(147, 51, 234, 0.15);
}

.kottakkal-tab-impressions .kottakkal-primary-val {
    color: rgba(245, 245, 220, 0.6);
}

/* Impressions Purple Active theme */
.kottakkal-tab-impressions.kottakkal-tab-active {
    border-color: rgba(147, 51, 234, 0.3);
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.08) 0%, rgba(15, 15, 15, 0.7) 100%);
    box-shadow: inset 0 2px 0 rgba(147, 51, 234, 0.5);
}

.kottakkal-tab-impressions.kottakkal-tab-active .kottakkal-primary-val {
    color: #A855F7;
}

.kottakkal-tab-impressions.kottakkal-tab-active .kottakkal-checkbox {
    background: #A855F7;
    border-color: #A855F7;
    color: #FFFFFF;
}

.kottakkal-console-tab.kottakkal-tab-active .kottakkal-checkbox {
    background: rgba(16, 185, 129, 0.75);
    border-color: rgba(16, 185, 129, 0.75);
    color: #FFFFFF;
}

/* CTR Inactive Green Theme */
.kottakkal-tab-ctr {
    border-color: rgba(16, 185, 129, 0.15);
}

.kottakkal-tab-ctr .kottakkal-primary-val {
    color: rgba(245, 245, 220, 0.6);
}

/* CTR Active Green Theme */
.kottakkal-tab-ctr.kottakkal-tab-active {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 15, 15, 0.7) 100%);
    box-shadow: inset 0 2px 0 rgba(16, 185, 129, 0.5);
}

.kottakkal-tab-ctr.kottakkal-tab-active .kottakkal-primary-val {
    color: #10B981;
}

.kottakkal-tab-ctr.kottakkal-tab-active .kottakkal-checkbox {
    background: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
}

/* Position Inactive Orange/Rust Theme */
.kottakkal-tab-position {
    border-color: rgba(183, 65, 14, 0.18);
}

.kottakkal-tab-position .kottakkal-primary-val {
    color: rgba(245, 245, 220, 0.6);
}

/* Position Active Orange/Rust Theme */
.kottakkal-tab-position.kottakkal-tab-active {
    border-color: rgba(183, 65, 14, 0.3);
    background: linear-gradient(180deg, rgba(183, 65, 14, 0.08) 0%, rgba(15, 15, 15, 0.7) 100%);
    box-shadow: inset 0 2px 0 rgba(183, 65, 14, 0.5);
}

.kottakkal-tab-position.kottakkal-tab-active .kottakkal-primary-val {
    color: var(--primary-color);
}

.kottakkal-tab-position.kottakkal-tab-active .kottakkal-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
}

/* Hover Scaling */
.kottakkal-console-tab:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 245, 220, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Local SEO dial visual */
.kottakkal-local-impact-area {
    margin-top: 60px;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(183, 65, 14, 0.15);
    border-radius: 30px;
    padding: 45px;
}

.kottakkal-local-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.kottakkal-local-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kottakkal-local-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.kottakkal-local-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-color);
}

.kottakkal-local-lbl {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.45);
}

/* Circle progress visualization styles */
.kottakkal-radial-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kottakkal-radial-svg {
    transform: rotate(-90deg);
}

.kottakkal-radial-bg {
    fill: none;
    stroke: rgba(245, 245, 220, 0.05);
    stroke-width: 8;
}

.kottakkal-radial-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    animation: kottakkal-radial-fill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes kottakkal-radial-fill {
    to {
        stroke-dashoffset: 120;
    }

    /* 76% fill visualization */
}

.kottakkal-radial-content {
    position: absolute;
    text-align: center;
}

.kottakkal-radial-val {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.kottakkal-radial-lbl {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.4);
    margin-top: 4px;
}

/* 6. Searches Universe Section */
.kottakkal-searches-section {
    padding: 80px 0;
    position: relative;
}

.kottakkal-searches-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .kottakkal-searches-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.kottakkal-searches-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kottakkal-searches-intro {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 16px;
    color: rgba(245, 245, 220, 0.7);
    margin: 0;
}

.kottakkal-search-wave {
    position: relative;
    width: 100%;
    height: 420px;
    background: rgba(10, 10, 10, 0.45);
    border: 1px solid rgba(245, 245, 220, 0.06);
    border-radius: 24px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}

.kottakkal-search-tag {
    position: absolute;
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(245, 245, 220, 0.1);
    color: rgba(245, 245, 220, 0.8);
    padding: 12px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    will-change: transform;
}

/* Individual Organic Offsets & Float Animations on Desktop */
.kottakkal-search-tag:nth-child(1) {
    left: 6%;
    top: 8%;
    animation: kottakkal-tag-float-1 6.5s ease-in-out infinite;
}
.kottakkal-search-tag:nth-child(2) {
    left: 54%;
    top: 7%;
    animation: kottakkal-tag-float-2 7.5s ease-in-out infinite 0.5s;
}
.kottakkal-search-tag:nth-child(3) {
    left: 50%;
    top: 40%;
    animation: kottakkal-tag-float-3 5.8s ease-in-out infinite 1.2s;
}
.kottakkal-search-tag:nth-child(4) {
    left: 28%;
    top: 24%;
    animation: kottakkal-tag-float-4 8.2s ease-in-out infinite 0.2s;
}
.kottakkal-search-tag:nth-child(5) {
    left: 8%;
    top: 68%;
    animation: kottakkal-tag-float-1 7.2s ease-in-out infinite 1.8s;
}
.kottakkal-search-tag:nth-child(6) {
    left: 53%;
    top: 72%;
    animation: kottakkal-tag-float-2 6.8s ease-in-out infinite 0.9s;
}
.kottakkal-search-tag:nth-child(7) {
    left: 24%;
    top: 80%;
    animation: kottakkal-tag-float-3 7.8s ease-in-out infinite 1.5s;
}
.kottakkal-search-tag:nth-child(8) {
    left: 3%;
    top: 38%;
    animation: kottakkal-tag-float-4 6.2s ease-in-out infinite 2.2s;
}

/* Keyframes for natural asynchronous floating motion */
@keyframes kottakkal-tag-float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, -6px); }
}
@keyframes kottakkal-tag-float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -4px); }
}
@keyframes kottakkal-tag-float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}
@keyframes kottakkal-tag-float-4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-3px, 6px); }
}

/* Hover & Active Styles */
.kottakkal-search-tag:hover {
    animation-play-state: paused;
    background: rgba(245, 245, 220, 0.08);
    border-color: rgba(245, 245, 220, 0.4);
    color: #ffffff;
    transform: scale(1.05) translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(245, 245, 220, 0.15), 0 0 15px rgba(245, 245, 220, 0.08);
}

.kottakkal-search-tag-active,
.kottakkal-search-tag-active:hover {
    animation-play-state: paused;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    transform: scale(1.06) translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(183, 65, 14, 0.45), 0 0 20px rgba(183, 65, 14, 0.25) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .kottakkal-search-wave {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 24px 16px;
        overflow: visible;
    }
    
    .kottakkal-search-tag {
        position: static;
        animation: none !important;
        transform: none !important;
        padding: 10px 20px;
        font-size: 13px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    
    .kottakkal-search-tag:hover {
        transform: scale(1.03) translateY(-1px) !important;
    }
    
    .kottakkal-search-tag-active,
    .kottakkal-search-tag-active:hover {
        transform: scale(1.04) translateY(-2px) !important;
    }
}

/* Google Search Mockup Box */
.kottakkal-searches-right {
    width: 100%;
}

.google-search-container {
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(245, 245, 220, 0.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.google-logo-wrap {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    user-select: none;
}

.google-logo-wrap span {
    display: inline-block;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.google-search-box {
    width: 100%;
    max-width: 580px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(245, 245, 220, 0.15);
    border-radius: 100px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.google-search-box:hover,
.google-search-box:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.google-search-icon,
.google-voice-icon,
.google-lens-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.google-search-icon svg {
    fill: rgba(245, 245, 220, 0.45);
}

#google-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 16px;
    color: var(--text-color);
    padding: 0 10px;
    width: 100%;
    letter-spacing: normal !important;
}

.google-voice-icon {
    margin-right: 12px;
}

.google-search-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.google-search-btn {
    background: rgba(245, 245, 220, 0.04);
    border: 1px solid rgba(245, 245, 220, 0.08);
    color: rgba(245, 245, 220, 0.75);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-family: "Google Sans Flex", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-search-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.google-results-preview {
    width: 100%;
    margin-top: 30px;
    border-top: 1px solid rgba(245, 245, 220, 0.08);
    padding-top: 25px;
    transition: opacity 0.3s ease;
    text-align: left;
}

.results-meta {
    font-size: 12px;
    color: rgba(245, 245, 220, 0.4);
    font-family: "Google Sans Flex", sans-serif;
    margin-bottom: 15px;
}

.mock-result-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-url {
    font-size: 13px;
    color: rgba(245, 245, 220, 0.65);
    font-family: "Google Sans Flex", sans-serif;
}

.url-sub {
    color: rgba(245, 245, 220, 0.4);
}

.result-title {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #8ab4f8;
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.2s ease;
    letter-spacing: normal !important;
}

.result-title:hover {
    text-decoration: underline;
    color: #aecbfa;
}

.result-snippet {
    font-size: 14px;
    color: rgba(245, 245, 220, 0.7);
    font-family: "Google Sans Flex", sans-serif;
    line-height: 1.55;
    margin: 0;
    letter-spacing: normal !important;
}

/* 7. Strategic Outcome & Closing Card */
.kottakkal-closing-section {
    padding: 80px 0;
}

.kottakkal-outcome-card {
    background: radial-gradient(circle at 10% 10%, rgba(183, 65, 14, 0.1) 0%, rgba(10, 10, 10, 0.9) 80%);
    border: 1px solid rgba(183, 65, 14, 0.25);
    border-radius: 36px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.kottakkal-outcome-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.kottakkal-outcome-heading {
    font-size: clamp(28px, 4vw, 44px);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
}

.kottakkal-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.kottakkal-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(245, 245, 220, 0.8);
}

.kottakkal-outcome-bullet {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    margin-top: -1px;
}

.kottakkal-closing-block {
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
}

.kottakkal-closing-quote {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    font-family: "Google Sans Flex", sans-serif;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 40px;
}

.kottakkal-cta-group {
    display: flex;
    gap: 20px;
}

.kottakkal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
}

.kottakkal-cta-btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(183, 65, 14, 0.25);
    transform: translateY(-2px);
}

.kottakkal-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 245, 220, 0.2);
}

.kottakkal-secondary-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

    .kottakkal-hero-layout,
    .kottakkal-outcome-layout,
    .kottakkal-local-layout,
    .kottakkal-challenge-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kottakkal-story-layout {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Scoped Typography Spacing for Kottakkal Case Study Page (Maximum 2px spacing) */


/* ==========================================================================
   Google Search Console Styled Trendline Chart Styles
   ========================================================================== */
.kottakkal-console-chart-wrapper {
    margin-top: 25px;
    background: rgba(15, 15, 15, 0.65);
    border: 1px solid rgba(183, 65, 14, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.kottakkal-chart-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.kottakkal-console-chart {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Grid lines style */
.chart-grid-lines line {
    stroke: rgba(245, 245, 220, 0.05);
    stroke-width: 1;
}

.chart-grid-lines line.baseline {
    stroke: #ffffff;
    stroke-width: 1.5;
}

/* X-axis labels */
.chart-x-labels text {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 11px;
    fill: rgba(245, 245, 220, 0.45);
    font-weight: 500;
}

/* Line Styles */
.chart-line {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.chart-line.active {
    opacity: 1;
}

/* Points Styles */
[class^="chart-points-"] {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[class^="chart-points-"].active {
    opacity: 1;
}

[class^="chart-points-"] circle {
    transform-origin: center;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

[class^="chart-points-"].active circle {
    transform: scale(1);
}



/* Line and Point Theme Colors */
.line-clicks {
    stroke: #4285F4;
    filter: drop-shadow(0 4px 8px rgba(66, 133, 244, 0.3));
}

.point-clicks {
    fill: #111111;
    stroke: #4285F4;
    stroke-width: 3;
}

.line-impressions {
    stroke: #A855F7;
    filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.3));
}

.point-impressions {
    fill: #111111;
    stroke: #A855F7;
    stroke-width: 3;
}

.line-ctr {
    stroke: #10B981;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.point-ctr {
    fill: #111111;
    stroke: #10B981;
    stroke-width: 3;
}

.line-position {
    stroke: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(183, 65, 14, 0.3));
}

.point-position {
    fill: #111111;
    stroke: var(--primary-color);
    stroke-width: 3;
}