/* =====================================================
   GARNER BROADCASTING CONSULTANTS PVT. LTD.
   ENTERPRISE DESIGN SYSTEM
===================================================== */

/* =========================
   CSS RESET
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #050505;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================
   DESIGN TOKENS
========================= */

:root {

    --black: #050505;
    --charcoal: #0d0d0d;
    --graphite: #121212;
    --surface: #171717;

    --white: #ffffff;
    --silver: #d6d6d6;
    --gray: #9ca3af;

    --amber: #f59e0b;
    --amber-light: #fbbf24;

    --border: rgba(255,255,255,.08);

    --container: 1400px;

    --radius: 18px;

    --transition:
        all .45s cubic-bezier(.4,0,.2,1);

    --shadow:
        0 20px 60px rgba(0,0,0,.35);
}

/* =========================
   GLOBAL
========================= */

.container {
    width: min(92%, var(--container));
    margin: auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    position: relative;
}

.section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 5rem;
}
.section-header.center {
    text-align: center;
}

.section-header.center h2 {
    margin: 0 auto;
}

.section-header.center p {
    margin: 1.5rem auto 0;
}

.section-header.center .section-label {
    display: block;
}

.section-header.center {
    text-align: center;
}

.section-label {
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    max-width: 900px;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin-top: 1.5rem;
}

.section-header.center p {
    margin-inline: auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 1rem 2rem;

    border-radius: 999px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {
    background: var(--amber);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--amber);
    color: var(--amber);
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    width: 100%;
    z-index: 1000;

    background:
        rgba(5,5,5,.75);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(255,255,255,.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 100px;
}
.logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--silver);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--amber);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-title,
.hero h1{
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:0.92;
    max-width:1000px;
}

.hero p {
    max-width: 650px;
    font-size: 1.15rem;
}

.hero-content {
    padding-top: 100px;
}

.hero-video {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

 .hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 800;

    max-width: 900px;
}

.hero p {
    max-width: 700px;
    margin-top: 2rem;

    color: var(--silver);

    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius);
}

.about-image img {
    min-height: 600px;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(2.5rem,5vw,5rem);
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    gap: 1rem;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: .8rem;

    font-weight: 600;
}

.about-highlights i {
    color: var(--amber);
}

/* =========================
   CAPABILITIES
========================= */

.capability-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 5rem;

    margin-bottom: 8rem;
}

.capability-panel.reverse {
    direction: rtl;
}

.capability-panel.reverse * {
    direction: ltr;
}

.capability-image {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
}

.capability-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 36px;
}

.capability-panel:hover img {
    transform: scale(1.05);
}

.capability-content h3 {
    font-size: clamp(2rem,4vw,4rem);
    margin-bottom: 1rem;
}

.capability-content p {
    color: var(--gray);
    max-width: 600px;
}
.capability-btn{
    margin-top: 2rem;
}
.channel-logos {
    position: absolute;

    bottom: 15px;
    left: 15px;

    display: flex;
    flex-direction: column;

    gap: 0px;

    z-index: 5;
}

.channel-logos img {
    width: auto;
    height: 250px;

    background: rgba(0,0,0,.75);

    padding: 10px 16px;

    border-radius: 12px;

    object-fit: contain;
}
/* =========================
   REACH MAP
========================= */

.map-wrapper {
    margin-top: 4rem;
}

.south-asia-map {
    width: 100%;
    height: auto;
}

.route {
    stroke: var(--amber);
    stroke-width: 2;

    stroke-dasharray: 10;
    animation: routeFlow 4s linear infinite;
}

.marker {
    fill: var(--amber);
    animation: pulse 2s infinite;
}

.country-grid {
    margin-top: 4rem;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));

    gap: 1rem;
}

.country-card {
    padding: 1.5rem;

    border: 1px solid var(--border);

    background: var(--charcoal);

    border-radius: var(--radius);
     text-align: center;
}

.country-card h4 {
    margin-bottom: .6rem;
}

.country-card p {
    color: var(--gray);
}
.reach-map {
    width: 70% !important;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.map-image-container {
    display: flex;
    justify-content: center;
}
/* =========================
   STATS
========================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

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

.stat-value {
    font-size: clamp(3rem,6vw,6rem);
    font-weight: 800;
    color: var(--amber);
}

.stat-label {
    color: var(--gray);
}

/* =========================
   INDUSTRIES
========================= */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.industry-card img {
    height: 500px;
    object-fit: cover;
    transition: 1s;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    display: flex;
    align-items: flex-end;

    padding: 2rem;
}

.industry-overlay h3 {
    font-size: 1.5rem;
}

/* ===================================
PARTNERS
=================================== */

.partners-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.partner-item{

    height:240px;

    background:#0d0d0d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

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

    padding:40px;

    transition:all .35s ease;
}

.partner-item img{

    width:auto;
    max-width:220px;

    max-height:90px;

    object-fit:contain;

    filter:grayscale(100%);
    opacity:.75;

    transition:all .35s ease;
}

.partner-item:hover{

    background:rgba(245,158,11,.08);

    border-color:#f59e0b;

    transform:translateY(-6px);

    box-shadow:
    0 20px 50px rgba(245,158,11,.15);
}

.partner-item:hover img{

    filter:grayscale(0%);
    opacity:1;
}

/* Tablet */

@media(max-width:1100px){

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

}

/* Mobile */

@media(max-width:768px){

    .partners-grid{
        grid-template-columns:1fr;
    }

    .partner-item{
        height:180px;
    }

}

/* =========================
   INSIGHTS
========================= */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}

.insight-card {
    background: var(--charcoal);
    border-radius: var(--radius);
    overflow: hidden;
}

.insight-card img {
    height: 340px;
    object-fit: cover;
}

.insight-content {
    padding: 2rem;
}

.insight-content h3 {
    margin-bottom: 1rem;
}

.insight-content p {
    color: var(--gray);
}

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

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.cta-content h2 {
    font-size: clamp(3rem,7vw,6rem);
    margin-bottom: 2rem;
}

.cta-content p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: clamp(2rem,5vw,4rem);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-meta {
    display: grid;
    gap: 1rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;

    background: var(--charcoal);

    border: 1px solid var(--border);

    color: white;

    padding: 1rem;

    border-radius: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
}

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

.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;

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

    border: 1px solid var(--border);
    border-radius: 50%;
}

.footer-social a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

/* =========================
   ANIMATIONS
========================= */

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {

    0% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }
}

@keyframes routeFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -40;
    }
}

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

@media (max-width: 1100px) {

    .about-grid,
    .capability-panel,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section {
        padding: 6rem 0;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .industries-grid,
    .partners-grid,
    .insights-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .capability-image img,
    .industry-card img,
    .about-image img {
        height: auto;
    }
}
.service-list{
margin-top:20px;
padding-left:20px;
color:#d6d6d6;
}

.service-list li{
margin-bottom:10px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.service-card{
background:#0d0d0d;
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:20px;
}

.case-study{
margin-top:80px;
}

.case-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:30px 0;
}

.metric{
background:#0d0d0d;
padding:30px;
border-radius:20px;
text-align:center;
}

.metric span{
font-size:3rem;
font-weight:800;
color:#f59e0b;
}

.timeline{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.timeline-step{
background:#0d0d0d;
padding:40px;
border-radius:20px;
}

.timeline-step h3{
font-size:3rem;
color:#f59e0b;
margin-bottom:10px;
}

@media(max-width:900px){

.services-grid,
.case-grid,
.timeline{
grid-template-columns:1fr;
}

}
/* ===================================
WHO WE WORK WITH
=================================== */

.industry-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:50px;

}

.industry-item{

padding:40px;
background:#0d0d0d;

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

font-size:1.1rem;
font-weight:600;

text-align:center;

}

/* ===================================
APPROACH
=================================== */

.approach-copy{

max-width:850px;
color:#9ca3af;

font-size:1.15rem;

margin-bottom:50px;

}

.approach-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;

}

.approach-card{

background:#0d0d0d;

padding:40px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

}

.approach-card h3{

margin-bottom:15px;
font-size:1.4rem;

}

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

.final-cta{

padding:10rem 0;

}

.cta-box{

background:#0d0d0d;

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:80px;

text-align:center;

}

.cta-box h2{

font-size:clamp(3rem,6vw,6rem);

line-height:1;

margin-bottom:25px;

}

.cta-box p{

max-width:700px;

margin:0 auto 40px;

color:#9ca3af;

}

.cta-tagline{

margin-top:40px;

font-size:1.3rem;
font-weight:700;

color:#f59e0b;

}

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

.footer{

padding:5rem 0;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

.footer h4{

margin-bottom:20px;

}

.footer ul{

list-style:none;

}

.footer ul li{

margin-bottom:10px;

}

.social-links{

display:flex;
gap:15px;

}

.social-links a{

width:50px;
height:50px;

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

border:1px solid rgba(255,255,255,.08);

border-radius:50%;

font-size:1.2rem;

}

.footer-bottom{

margin-top:50px;
padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

color:#9ca3af;

}

/* ===================================
ANIMATIONS
=================================== */

.fade-up{

opacity:0;
transform:translateY(50px);

transition:.8s ease;

}

.fade-up.show{

opacity:1;
transform:translateY(0);

}

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

@media(max-width:900px){

.industry-grid,
.approach-grid,
.footer-grid{

grid-template-columns:1fr;

}

.cta-box{

padding:50px 30px;

}
}

/* ======================================
HOMEPAGE RESTORE FIXES
====================================== */

.nav-container{
    height:110px;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
}

.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.about-content{
    text-align:left;
}

.about-content h2,
.about-content p,
.about-highlights{
    text-align:left;
}

.about-image{
    height:650px;
    overflow:hidden;
    border-radius:var(--radius);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}.featured-partner{
    background:#0d0d0d;
}

.featured-partner img{
    filter:none;
    opacity:1;
}

.featured-partner:hover{
    background:#f59e0b;
    border-color:#f59e0b;

    transform:translateY(-6px);

    box-shadow:
        0 20px 50px rgba(245,158,11,.25);
}