:root {
    --ink: #0d0d0d;
    --paper: #ffffff;
    --accent: #8b0000;
    --news-gray: #f2f2f2;
}

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: 300px;
}
.foot-logo{
	margin: 0 0 20px;
}
/* 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;
}

/* Section Spacing */
section {
    padding: 50px 5%;
    border-bottom: 1px solid #eee;
}

.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 {
    width: 250px;
    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;
}

.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;
}

.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;
    bottom: 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;
}

.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: 1rem;
    font-style: normal;
    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: 60px 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; 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: 48px; 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: var(--accent); border: 1px solid var(--accent); 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;
        }
        .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 */
}

        /* MEDIA GRID PLACEHOLDER */
        .media-placeholder { 
            background: #eee; height: 300px; display: flex; align-items: center; 
            justify-content: center; font-size: 10px; font-weight: 900; letter-spacing: 0.3em;
            color: #aaa; text-transform: uppercase; border: 1px dashed #ccc;
        }

        @media (max-width: 900px) {
            .detail-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }

  /* -----------------------------------------------------------------------------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;
    }
}

/* 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;
    }

    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;
    }

    .core-serv {
        padding: 25px;
    }

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

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