:root {
    --ink: #0d0d0d;
    --paper: #ffffff;
    --accent: #8b0000;
    --news-gray: #f2f2f2;
    --orange: #ff7d00;
    --yellow: #ffb700;
    --green: #008000;
    --blue: #0000ff;
    --purple: #800080;
    --pink: #ffc0cb;
    --red: #ff0000;
    --m: 1rem;
}

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.serif {
    font-family: 'Playfair Display', serif;
}

/* .head-logo a img,
.foot-logo a img {
    max-width: 230px;
} */

/* Dropdown Menu */
.dropdown-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

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

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* News Ticker Animation */
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-wrap {
    overflow: hidden;
    background: var(--ink);
    color: white;
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

/* Journalistic Grid */
.editorial-border {
    border-right: 1px solid #e0e0e0;
}



.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.md\:text-\[110px\],
.md\:text-5xl {
    font-size: 3.5rem !important;
    line-height: 3.8rem !important;
}

.slider-container {
    width: 100%;
    /* margin: 0 auto; */
    overflow: hidden;
    position: relative;
    /* padding: 20px 0 0; */
}

/* Logo Track */
.slider-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 30s linear infinite;
}

.logo-item {

    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    transition: all 0.4s ease;
}

.core-serv {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.coverage-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.why-card {
    box-shadow: rgb(177 177 177 / 10%) 0px 0px 16px;
}

.border-gray-200 {
    border-color: rgb(0 0 0) !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Premium Faded Edges */
.slider-container::before,
.slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Coverage Slider */
.coverage-slider-container {
    width: 100%;
    padding: 20px 0;
}

.coverage-track {
    display: flex;
    width: max-content;
    animation: scrollMedia 40s linear infinite;
}

.coverage-track:hover {
    animation-play-state: paused;
}

.shiny-cta {
    border-radius: 50%;
    overflow: hidden;
}

/* Rotating border */
.shiny-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 4px;

    background: conic-gradient(from 0deg,
            transparent,
            var(--highlight),
            transparent 15%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
    z-index: 1;
    /* middle layer */
}

.heading-ring p {
    position: relative;
    z-index: 2;
    /* ✅ ABOVE EVERYTHING */
    color: white;
}

.heading-ring {
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    /* ✅ prevents blending leaks */
}

.shiny-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--highlight);

    z-index: 0;
    /* ✅ BEHIND */
}

/* Animation */
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes softBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

.blink-soft {
    animation: softBlink 1.8s ease-in-out infinite;
}

.coverage-card {
    width: 400px;
    background: white;
    padding: 40px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}



.our-usp {
    /* background: black; */
    /* This creates the transparent border area for the gradient to show through */
    border: calc(0.08 * var(--m)) solid transparent;
    position: relative;
    color: #F3F3F3;
    font-family: 'Space Grotesk', sans-serif;
    border-radius: 10%;
    padding: calc(0.5 * var(--m)) calc(1 * var(--m));
    display: flex;
    justify-content: left;
    align-items: left;
    cursor: pointer;

    /* Critical for the rainbow border effect */
    background-image: linear-gradient(var(--highlight)),
        linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink), var(--red));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 200%;
    animation: animate 3s infinite linear;
}

.our-usp::before {
    content: '';
    background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink), var(--red));
    height: 30%;
    width: 60%;
    position: absolute;
    bottom: -10%;
    left: 20%;
    z-index: -1;
    background-size: 200%;
    animation: animate 3s infinite linear;
    filter: blur(calc(0.8 * var(--m)));
    /* opacity: ; */
    z-index: 20;
}

.our-usp:hover {
    animation: animate 0.5s infinite linear;
}

@keyframes animate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}



.coverage-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.news-source {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8b0000;
    margin-bottom: 20px;
    display: block;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    font-style: italic;
}

.date {
    margin-top: 30px;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
}

@keyframes scrollMedia {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-424px * 4));
    }
}

.coverage-slider-container::before,
.coverage-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.coverage-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9, transparent);
}

.coverage-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9, transparent);
}

.text-2xl {
    font-size: 1.2rem !important;
    line-height: 2rem !important;
}

#final-cta * {
    border-radius: 0 !important;
}

.space-y-24> :not([hidden])~ :not([hidden]) {
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
}

.red-glow-shadow {
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2) !important;
}

/* Video Section */
#media-grid * {
    border-radius: 0 !important;
}

.video-card {
    position: relative;
    background: #000;
    border: 1px solid #EDEDED;
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border-color: #8B0000;
}

.news-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px 20px;
    background: #000;
    /*    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);*/
    color: white;
}


@keyframes wave {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

.live-indicator {
    font-size: 10px;
    font-weight: 900;
    color: #FF0000;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: block;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;

    text-align: center;
}

:root {
    --ink: #0d0d0d;
    --accent: #8b0000;
    --gray-subtle: #fbfbfb;
    --shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.08);
    /* Institutional Shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

/* Sharp Edges */

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    line-height: 1.7;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* CENTER ALIGNED HERO */
.hero-about {
    /* padding: 150px 0; */
    text-align: center;
    border-bottom: 1px solid #eee;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow .line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.eyebrow span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.hero-about .hero-title {
    margin-bottom: 0px;
}

/* CENTER ALIGNED MANIFESTO */
.manifesto-section {
    padding: 60px 0 0 0;
    background: var(--gray-subtle);
}

.manifesto-content {
    max-width: 800px;
    /* Constrained for readability and centering */
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--ink);
}

.body-text p {
    /* font-size: 1.15rem; */
    color: #444;
    /* margin-bottom: 28px; */
    text-align: justify;
    text-justify: inter-word;
}

.core-serv.group .leading-relaxed {
    height: 250px;
}

/* WHY ADDYPR (REDESIGNED CENTERED GRID) */
.why-section {
    padding: 60px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--ink);
    box-shadow: var(--shadow);
    /* */
}

.diff-card {
    padding: 60px;
    border-bottom: 1px solid var(--ink);
    transition: background 0.3s ease;
}

.diff-card:nth-child(odd) {
    border-right: 1px solid var(--ink);
}

.diff-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.diff-card:hover {
    background: #fff;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
}

/* CTA BOX CENTERED */
.cta-container {
    padding: 60px 0;
}

.cta-box {
    background: white;
    border: 1px solid #eee;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    /* */
}

.btn-ink {
    display: inline-block;
    background: #106700;
    color: white;
    padding: 20px 48px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    margin-top: 40px;
    transition: 0.3s;
}

.blog-btn {

    display: inline-block;
    background: #106700;
    color: white;
    padding: 10px 48px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    margin-top: 40px;
    transition: 0.3s;

}

.btn-ink:hover {
    border: 1px solid #fff;
    background: var(--ink);
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .diff-card {
        border-right: none !important;
        border-bottom: 1px solid var(--ink) !important;
    }
}

#main-footer * {
    border-radius: 0 !important;
    /* */
}

#main-footer .serif {
    font-family: 'Playfair Display', serif;
    /* */
}

/* Subtle hover lift for social icons */
#main-footer .bi:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

#main-footer ul li a {
    color: #333;
}

#main-footer ul li a:hover {
    color: #8b0000;
}

/*--------------------------------------------------------------
# Marquee - News Seen
--------------------------------------------------------------*/
.marquee {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    overflow: hidden;

}

.marquee--inner {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
}

.marquee--inner:hover {
    animation-play-state: paused;
}

.marquee--inner span {
    flex: 0 0 auto;
    margin-right: 20px;
    /* spacing between items */
}

.news-div img {
    height: 80px;
    /* adjust as per design */
    width: auto;
    border-radius: 6px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*------------------------------------------- WHY US Page -------------------------------------------*/
.feature-card {
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: #000;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

/*------------------------------------------- Service Page -------------------------------------------*/
.services-header {
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow .line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.eyebrow span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

/* CORE SERVICE ECOSYSTEM */
.ecosystem-section {
    padding: 100px 0;
    background: var(--subtle);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 48px;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 420px;
}

.service-card ul li {
    padding: 5px 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--ink);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 32px;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.card-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 32px;
}

/* FLAGSHIP HIGHLIGHT (RED BLOCK) */
.card-flagship {
    background: var(--accent);
    color: white;
    border: none;
}

.card-flagship .icon-box {
    color: white;
}

.card-flagship .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* SPECIALIZED SOLUTIONS GRID */
.specialized-section {
    padding: 100px 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
    margin-top: 60px;
}

.spec-item {
    background: white;
    padding: 40px;
    text-align: center;
    transition: background 0.3s;
}

.spec-item:hover {
    background: var(--subtle);
}

.spec-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
    display: block;
}

.spec-title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* CTA SECTION */
.cta-box {
    background: var(--ink);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--ink);
    padding: 20px 48px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -----------------------------------------------------------------------------SERVICE DETAIL----------------------------------------------------------------------------- */
.detail-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    /* padding: 80px 0; */
}

/* SIDEBAR NAVIGATION */
.sidebar {
    position: sticky;
    top: 40px;
}

.sidebar-nav {
    list-style: none;
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.sidebar-nav li {
    border-bottom: 1px solid #eee;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav a {
    display: flex;
    justify-content: space-between;
    padding: 18px 24px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--subtle);
    color: var(--accent);
}

/* SIDEBAR BLOCKS */
.sidebar-cta {
    background: var(--accent);
    color: white;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.sidebar-cta i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.sidebar-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-outline {
    display: block;
    border: 1px solid white;
    color: white;
    padding: 12px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 24px;
}

/* CONTENT AREA */
.content-header h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.lead-p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* BENEFITS SECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #444;
}

.benefits-list i {
    color: var(--accent);
    font-weight: 900;
}

/* FAQ ACCORDION */
.faq-item {
    border-top: 1px solid #eee;
    padding: 24px 0;
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
}

/* FAQ Panel Styling */
.faq-content {
    display: none;
    /* Hidden by default */
    padding: 0 0 24px 0;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.faq-item.active {
    border-top: 1px solid var(--ink);
    /* Sharp visual indicator for active item */
}


/* Layout same as service */
.service-details-page {
    padding: 60px 0;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.sidebar {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: #000;
    color: #fff;
}

/* Content */
.content-area {
    padding-left: 20px;
}

@media (max-width: 900px) {
    .detail-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .sidebar {
        position: static;
        border-right: none;
        border-top: 1px solid #eee;
        padding-top: 40px;
        padding-right: 0;
    }
}

/* -----------------------------------------------------------------------------CONTACT US----------------------------------------------------------------------------- */
.form-input {
    border-bottom: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}






/* Responsive Consolidation */

/* Large Screens & Small Desktops */
@media (max-width: 1440px) {
    .md\:text-\[110px\] {
        font-size: 5rem !important;
        line-height: 5.5rem !important;
    }
}

/* Tablets & iPads (1024px and below) */
@media (max-width: 1024px) {
    section {
        padding: 40px 4%;
    }

    .md\:text-\[110px\] {
        font-size: 4rem !important;
        line-height: 4.5rem !important;
    }

    .md\:text-7xl {
        font-size: 4rem !important;
    }

    /* .md\:text-8xl {
        font-size: 5rem !important;
    } */

    .coverage-card {
        width: 320px;
        padding: 25px;
    }
}

/* Small Tablets & Large Mobile (768px and below) */
@media (max-width: 768px) {
    .editorial-border {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    nav {
        padding: 15px 20px;
    }

    #nav-container.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
        z-index: 100;
    }

    #nav-container {
        display: none;
        gap: 0 !important;
    }

    #nav-container a,
    .dropdown {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        border: none;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 10px;
        display: none !important;

    }

    .dropdown-menu a {
        font-size: 12px;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .text-7xl,
    .text-8xl {
        font-size: 3.5rem !important;
    }

    .serif.text-5xl {
        font-size: 3rem !important;
    }

    section.grid.md\:grid-cols-12 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .md\:col-span-8,
    .md\:col-span-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Service Detail Mobile Fixes */
    .service-details-page {
        padding: 30px 0;
    }

    .content-header h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }

    .sidebar-cta {
        padding: 30px 20px;
    }

    /* Blog Navigation Fix */
    .blog-page-nav {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
}

/* -----------------------------------------------------------------------------BLOG DETAIL REDESIGN (REF: CODERWORLDLABS)----------------------------------------------------------------------------- */
.blog-hero {
    background: #000;
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: var(--accent);
}

.blog-meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-bar i {
    color: var(--accent);
}

.sidebar-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
}

.sidebar-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #E60000; /* ORIGINAL RED ACCENT */
}

.sidebar-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.sidebar-list-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.sidebar-list-link i {
    font-size: 12px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 20px;
    }

    .blog-hero h1 {
        font-size: 1.8rem;
    }

    .blog-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .ticker-wrap {
        font-size: 10px;
    }

    nav .serif.text-5xl {
        font-size: 2.5rem !important;
    }

    .text-6xl,
    .text-7xl,
    .text-8xl {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }

    .content-header h1 {
        font-size: 2.2rem !important;
    }

    /* 
    section {
        padding: 30px 20px;
    } */

    .coverage-card {
        width: 280px;
    }

    .logo-item {
        width: 150px;
    }

    .slider-track {
        width: calc(150px * 10);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 5));
        }
    }

    .flex.flex-col.md\:flex-row.gap-6.mx-auto.justify-center a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    #service-ecosystem .grid.md\:grid-cols-12 {
        display: flex;
        flex-direction: column;
    }



    footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    footer .space-x-8 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}


/* Blog Card Custom Enhancements */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Custom Typography for Blog Content (Manual Prose fallback) */
.prose {
    font-size: 1.125rem;
    line-height: 1.8;
}

.prose-lg {
    font-size: 1.25rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    color: #111;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prose h1 {
    font-size: 2.5rem;
}

.prose h2 {
    font-size: 2rem;
}

.prose h3 {
    font-size: 1.5rem;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #444;
}

.prose img {
    border-radius: 1rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow);
}

/* Sticky Sidebar reverted */
.sticky.top-24 {
    top: 80px;
}

@media (max-width: 1024px) {
    .sticky.top-24 {
        position: static;
        margin-top: 40px;
    }
}

/* Custom Scrollbar for Blog List in Sidebar */
.sidebar ul::-webkit-scrollbar {
    width: 4px;
}

.sidebar ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar ul::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.sidebar ul::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.object-fit-conver {
    object-fit: cover !important;
}


.read-more-services {
    color: #106700;
    font-size: 13px;
    font-style: italic;
    cursor: pointer;
}