:root {
    --primary-blue: #1E3A8A;
    --accent-blue: #0d6efd;
    --dark-blue: #0A1F44;
    --button-color: #4e14ff;
    --black: #0B0F19;
    --black-soft: #111827;

    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;


    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.18);
    --text-muted: rgba(255, 255, 255, 0.7);
    --ease: cubic-bezier(0.23, 1, 0.32, 1);

    --tv-primary: #3b82f6;
    /* Modern Blue */
    --tv-secondary: #ffffff;
}

html,
body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
}

/* ── APP SHELL ── */
.app {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ── BACKGROUNDS ── */
.bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s ease, transform 9s ease-out;
    will-change: opacity, transform;
}

.bg-img.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgb(71 68 68 / 60%) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(to top, rgb(46 45 45 / 93%) 0%, transparent 55%);
    pointer-events: none;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease);
    background: rgba(0, 0, 0, 0);
}

header.scrolled {
    padding: 1rem 4rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: clamp(50px, 8vw, 70px);
    width: auto;
    object-fit: contain;
}

/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;

    padding: 10px 24px;
    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    /* transition: all 0.3s ease; */
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    opacity: .75;
    position: relative;
    padding: 0.6rem 0.4rem;
    transition: all 0.4s var(--ease);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tv-primary), #60a5fa);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    /* Tighter gap for mobile */
}



/* Hamburger – shown on mobile */
#menuToggle {
    display: none;
    background: var(--tv-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

#menuToggle:hover {
    background: #2563eb;
    transform: translateY(-2px);
}


/* Mobile drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 10vw, 4rem);
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s;
}

.mobile-nav a:hover {
    color: var(--tv-primary);
    transform: scale(1.1);
}

.mobile-nav .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 200;
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 54px;
    height: 54px;
}



/* ── HERO ── */
.hero {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 4rem;
    transform: translateY(-50%);
    max-width: 560px;
}



.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgb(255 255 255 / 57%);
    backdrop-filter: blur(10px);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: var(--text-muted);
}

#heroTitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 8.5rem);
    line-height: .88;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    transition: opacity .4s ease;
}

.desc {
    font-size: 1.05rem;
    /* Increased from 0.95rem */
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--white);
    color: var(--dark);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    /* Increased */
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, .25);
}

/* ── ICON BUTTON ── */
.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background .3s, border-color .3s, transform .3s;
    flex-shrink: 0;
}

.btn-icon:hover {
    background: var(--tv-primary);
    border-color: var(--tv-primary);
    transform: scale(1.05);
    color: var(--white);
}

@media (max-width: 768px) {
    .btn-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}


/* ── SLIDER ── */
.slider-section {
    position: absolute;
    bottom: 2.5rem;
    right: 0;
    z-index: 10;
    width: 62%;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.counter {
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    min-width: 48px;
    text-align: right;
}

.progress-bar {
    flex: 1;
    max-width: 130px;
    height: 2px;
    background: rgba(255, 255, 255, .18);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width .4s ease;
}

.nav-arrows {
    display: flex;
    gap: .8rem;
}

/* ── TRACK ── */
.track-wrapper {
    overflow: hidden;
}

.track {
    display: flex;
    gap: 1.2rem;
    transition: transform .6s var(--ease);
    will-change: transform;
}

/* ── CARD ── */
.card {
    flex: 0 0 301px;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .55;
    transform: scale(.95);
    transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .4s;
}

.card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, .85);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
}

.card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform .7s ease;
    display: block;
}

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-info p {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: .2rem;
    color: #ffffff;
}

.card-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1;
    color: #ffffff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .slider-section {
        width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    #menuToggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        left: 1.5rem;
        right: 1.5rem;
        max-width: 100%;
    }

    h1 {
        font-size: clamp(3.5rem, 14vw, 5rem);
    }

    .desc {
        font-size: .88rem;
    }

    .slider-section {
        bottom: 1.5rem;
        padding: 0 1rem;
        width: 100%;
    }

    .card {
        flex: 0 0 200px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        top: 45%;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .card {
        flex: 0 0 180px;
        height: 260px;
    }

    .btn-primary {
        padding: .8rem 1.8rem;
        font-size: .8rem;
    }
}

/* ── MODALS ── */
.search-overlay,
.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.search-overlay.active,
.video-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-container {
    width: 95%;
    max-width: 500px;
    /* Even more professional size */
    padding: 2.5rem 1.5rem;
    background: #0f172a;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease);
}

.search-overlay.active .search-container {
    transform: scale(1);
}



.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.4rem;
    /* Even more professional/contained */
    font-family: 'Poppins', sans-serif;
    padding: 0.8rem 0;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-input:focus {
    outline: none;
    border-color: var(--tv-primary);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}



.video-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: scale(1.1) rotate(90deg);

}

/* Background Video Support */
.bg-img,
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s ease, transform 9s ease-out;
    will-change: opacity, transform;
}

.bg-img.active,
.bg-video.active {
    opacity: 1;
    transform: scale(1);
}

/* about */

.section-about {

    width: 100%;
    padding: 80px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── LEFT: IMAGE COLLAGE ── */
.collage {
    position: relative;
    height: 480px;
}

.img-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--primary-blue);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    transition: transform 0.4s var(--ease);
}

.img-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-main {
    width: 505px;
    height: 474px;
    top: 60px;
    left: 0;
    animation: floatA 6s ease-in-out infinite;
}

.card-top {
    width: 180px;
    height: 180px;
    top: -27px;
    left: 383px;
    animation: floatB 7s ease-in-out infinite;
}

.card-bottom {
    width: 220px;
    height: 221px;
    bottom: -90px;
    left: -57px;
    animation: floatC 8s ease-in-out infinite;
}

/* ── RIGHT: TEXT CONTENT ── */
.content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-blue);
    opacity: 0;
    animation: slideUp 0.8s 0.2s forwards;
}

.about-h1 {

    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.12;
    opacity: 0;
    animation: slideUp 0.8s 0.4s forwards;
}

.about-h1 span {
    color: var(--accent-blue);
}

.desc {
    font-size: 15.5px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 460px;
    opacity: 0;
    animation: slideUp 0.8s 0.6s forwards;
}

.features-about {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s var(--ease);
}

.feat:nth-child(1) {
    animation: slideIn 0.7s 0.9s forwards;
}

.feat:nth-child(2) {
    animation: slideIn 0.7s 1.1s forwards;
}

.feat:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.15);
}

.feat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-blue);
}

.feat-body h3 {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.feat-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

.bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    animation: slideUp 0.7s 1.3s forwards;
}

.profile-about {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-about {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #952425, #8a1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.profile-about-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.profile-about-role {
    font-size: 13px;
    color: var(--text-gray);
}

.btn-about {
    background: var(--button-color);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.btn-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn-about:hover::after {
    transform: translateX(100%);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(78, 20, 255, 0.35);
}

/* Animations */
@keyframes floatA {

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

    50% {
        transform: translateY(-14px)
    }
}

@keyframes floatB {

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

    50% {
        transform: translateY(-18px)
    }
}

@keyframes floatC {

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

    50% {
        transform: translateY(-12px)
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@media (max-width: 780px) {
    .section-about {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 20px;
    }

    .collage {
        height: 360px;
    }

    .card-main {
        width: 220px;
        height: 260px;
    }

    .card-top {
        width: 120px;
        height: 120px;
        left: 160px;
    }

    .card-bottom {
        width: 160px;
        height: 140px;
        left: 130px;
    }
}


/* footer/ */
/* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
.tv-footer {
    background: #374151;
    /* Specific Gray Requested */
    color: #f3f4f6;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.tv-footer-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--tv-secondary);
    margin-bottom: 2rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
}

.tv-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--tv-primary);
}

.tv-footer-links {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.tv-footer-links a {
    color: #9ca3af;
    font-size: 1rem;
    /* Better size */
    display: flex;
    align-items: center;
    gap: .7rem;
    transition: all 0.3s ease;
}

.tv-footer-links a:hover {
    color: var(--tv-primary);
}

.tv-footer-hours {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.tv-footer-hours-label {
    font-size: .78rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .15rem;
}

.tv-footer-hours-val {
    font-size: .9rem;
    color: #d1d5db;
}

.tv-footer-social {
    display: flex;
    gap: .6rem;
    margin-top: .75rem;
}

.tv-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: .95rem;
    transition: all .2s ease;
}

.tv-footer-social a:hover {
    background: var(--tv-primary);
    border-color: var(--tv-primary);
    color: #fff;
}

.tv-newsletter-input-wrap {
    position: relative;
    margin-top: .75rem;
}

.tv-newsletter-input {
    width: 100%;
    padding: .85rem 7.5rem .85rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: .9rem;
}

.tv-newsletter-input::placeholder {
    color: #6b7280;
}

.tv-newsletter-btn {
    position: absolute;
    top: 50%;
    right: .4rem;
    transform: translateY(-50%);
    padding: .55rem 1.3rem;
    border-radius: 50px;
    background: var(--tv-primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.tv-newsletter-btn:hover {
    background: #2563eb;
    transform: translateY(-50%) scale(1.05);
}

/* ── FOOTER UTILITIES ── */
.tv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.tv-grid {
    display: grid;
    gap: 2.5rem;
}

.tv-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .tv-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tv-grid-4 {
        grid-template-columns: 1fr;
    }
}


.tv-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0 0;
}

.tv-footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    margin: 0 -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
    position: relative;
    z-index: 2;
}

.tv-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

/* ── WATERMARK DESIGN ── */
.tv-footer-watermark {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.watermark-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 20vw, 25rem);
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.1em;
    line-height: 0.8;
    text-transform: uppercase;
    display: block;
    transition: all 0.6s ease;
}

.tv-footer:hover .watermark-text {
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.15em;
}


@media (max-width: 768px) {
    .tv-footer-bottom {
        padding: 2rem 1.5rem;
    }

    .tv-copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* testnimials */

/* ═══════════════════════════════════════
     TESTIMONIAL SECTION — LIGHT
  ═══════════════════════════════════════ */
.ts-section-light {
    background: #f7f7fa;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ═══════════════════════════════════════
     SHARED CONTAINER
  ═══════════════════════════════════════ */
.ts-container {
    width: 100%;
    max-width: 56rem;
    padding: 2rem;
}

.ts-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .ts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

/* ═══════════════════════════════════════
     IMAGE STACK
  ═══════════════════════════════════════ */
.ts-image-wrapper {
    position: relative;
    width: 100%;
    height: 22rem;
    perspective: 1000px;
}

.ts-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.4, 2, 0.3, 1),
        opacity 0.8s cubic-bezier(0.4, 2, 0.3, 1);
}

/* ═══════════════════════════════════════
     CONTENT PANEL
  ═══════════════════════════════════════ */
.ts-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.ts-text-block {
    flex: 1;
}

/* name */
.ts-name {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    font-size: 1.6rem;
}

/* designation */
.ts-designation {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
    letter-spacing: 0.01em;
}

/* quote */
.ts-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* word animation wrapper */
.ts-word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(4px);
    transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.ts-word.ts-word-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
}

/* text fade in/out */
.ts-text-block {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ts-text-block.ts-fade-out {
    opacity: 0;
    transform: translateY(-12px);
}

.ts-text-block.ts-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
     ARROW BUTTONS
  ═══════════════════════════════════════ */
.ts-arrows {
    display: flex;
    gap: 1.2rem;
    padding-top: 2.5rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .ts-arrows {
        padding-top: 0;
        margin-top: 2rem;
    }
}

.ts-btn {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s;
    flex-shrink: 0;
    outline: none;
}

.ts-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(78, 20, 255, 0.4);
}

.ts-btn:active {
    transform: scale(0.93);
}

.ts-btn svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
    flex-shrink: 0;
}

/* ─── Light variant buttons ─── */
.ts-light .ts-btn {
    background: #141414;
}

.ts-light .ts-btn:hover {
    background: var(--accent-blue);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.ts-light .ts-btn svg path {
    stroke: #f1f1f7;
}



/* ─── Light text colors ─── */
.ts-light .ts-name {
    color: #0a0a0a;
}

.ts-light .ts-designation {
    color: #454545;
}

.ts-light .ts-quote {
    color: #171717;
}



/* ─── Dot indicators ─── */
.ts-dots {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
    padding: 0;
}

.ts-light .ts-dot {
    background: rgba(0, 0, 0, 0.18);
}

.ts-light .ts-dot.ts-active {
    background: var(--accent-blue);
    transform: scale(1.35);
}

.ts-dark .ts-dot {
    background: var(--glass);
    border: 1px solid var(--border);
}



/* ─── Section label ─── */
.ts-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.ts-light .ts-label {
    background: rgba(13, 110, 253, 0.1);
    color: var(--accent-blue);
}

.ts-dark .ts-label {
    background: rgba(78, 20, 255, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(78, 20, 255, 0.25);
}

.ts-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: ts-pulse 2s infinite;
}

.ts-light .ts-label-dot {
    background: var(--accent-blue);
}



/* ═══════════════════════════════════════
     KEYFRAMES
  ═══════════════════════════════════════ */
@keyframes ts-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(78, 20, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(78, 20, 255, 0);
    }
}

@keyframes ts-spin {
    from {
        transform: rotate(0deg);
    }

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

/* ─── Responsive ─── */
@media (max-width: 600px) {

    .ts-section-light,
    .ts-section-dark {
        padding: 50px 20px;
    }

    .ts-container {
        padding: 1rem;
    }

    .ts-image-wrapper {
        height: 16rem;
    }

    .ts-name {
        font-size: 1.25rem !important;
    }

    .ts-quote {
        font-size: 0.95rem !important;
    }
}

/* end tstimonials */


/* clients part */

/* ── PAGE ── */
.stx-pg {
    background: var(--black);
    min-height: 100vh;
    overflow: hidden;
}

/* ── HERO GRID ── */
.stx-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

@media(min-width:900px) {
    .stx-hero {
        grid-template-columns: 1fr 1fr
    }
}

/* ── LEFT PANEL ── */
.stx-left {
    background: var(--black);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media(min-width:900px) {
    .stx-left {
        padding: 4rem 3.5rem
    }
}

/* ── LOGO ── */
.stx-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: auto;
}

.stx-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tv-primary);
    display: inline-block;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.stx-logo-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ── MAIN CONTENT ── */
.stx-main {
    padding: 3rem 0 2rem
}

.stx-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--tv-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stx-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--tv-primary);
}

.stx-headline {

    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.12;
    opacity: 0;
    animation: slideUp 0.8s 0.4s forwards;
    margin-bottom: 3rem;
}

.stx-headline em {
    font-style: normal;
    color: var(--tv-primary);
}

/* ── TABS ── */
.stx-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stx-tab {
    position: relative;
    padding: 1.4rem 0 1.4rem 1.5rem;
    cursor: pointer;
    border-top: .5px solid rgba(255, 255, 255, 0.06);
    transition: all .3s var(--ease);
}

.stx-tab:last-child {
    border-bottom: .5px solid rgba(255, 255, 255, 0.06);
}

.stx-tab:hover {
    background: rgba(59, 130, 246, 0.03);
}

/* progress bar */
.stx-tab-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
}

.stx-tab-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--tv-primary), var(--accent-blue));
    transition: none;
    border-radius: 1px;
}

.stx-tab-fill.stx-run {
    transition: height 5s linear;
    height: 100%;
}

.stx-tab-num {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: .12em;
    margin-bottom: .4rem;
    font-variant-numeric: tabular-nums;
}

.stx-tab-title {
    font-size: clamp(1.05rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: -.02em;
    transition: color .35s var(--ease);
}

.stx-tab.stx-active .stx-tab-num {
    color: var(--tv-primary);
}

.stx-tab.stx-active .stx-tab-title {
    color: var(--text-white);
}

.stx-tab-desc {
    font-size: .8rem;
    color: var(--text-gray);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s var(--ease), opacity .3s, margin .3s;
}

.stx-tab.stx-active .stx-tab-desc {
    max-height: 5rem;
    opacity: 1;
    margin-top: .5rem;
}

/* ── BOTTOM ROW ── */
.stx-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: .5px solid rgba(255, 255, 255, 0.06);
}

.stx-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: .06em;
    font-variant-numeric: tabular-nums;
}

.stx-counter-cur {
    color: var(--text-white);
    font-weight: 600;
}

.stx-nav-btns {
    display: flex;
    gap: .5rem;
}

.stx-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: .5px solid rgba(255, 255, 255, 0.1);
    background: var(--glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
    color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.stx-nav-btn:hover {
    border-color: var(--tv-primary);
    background: rgba(59, 130, 246, 0.12);
    color: var(--tv-primary);
}

.stx-nav-btn:active {
    transform: scale(.92);
}

.stx-nav-btn svg {
    width: 16px;
    height: 16px;
}

/* ── RIGHT PANEL ── */
.stx-right {
    position: relative;
    overflow: hidden;
    min-height: 55vw;
}

@media(min-width:900px) {
    .stx-right {
        min-height: unset
    }
}

.stx-stage {
    position: absolute;
    inset: 0;
}

/* slides */
.stx-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(6%);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.stx-slide.stx-active {
    opacity: 1;
    transform: translateY(0%);
}

.stx-slide.stx-exit-up {
    opacity: 0;
    transform: translateY(-6%);
}

.stx-slide.stx-exit-down {
    opacity: 0;
    transform: translateY(6%);
}

.stx-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* blue-tinted overlay matching dark-blue palette */
.stx-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10, 31, 68, .72) 0%,
            rgba(14, 22, 40, .35) 55%,
            transparent 100%);
}

/* slide info */
.stx-slide-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.stx-slide-tag {
    display: inline-block;
    padding: 4px 12px;
    border: .5px solid var(--border);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    background: var(--glass);
    backdrop-filter: blur(8px);
}

.stx-slide-caption {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: -.025em;
    line-height: 1.2;
}

/* blue accent line on caption */
.stx-slide-caption::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--tv-primary);
    margin-top: .75rem;
    border-radius: 1px;
}

/* dots */
.stx-dot-row {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 6px;
}

.stx-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: all .3s var(--ease);
    cursor: pointer;
    border: .5px solid var(--border);
}

.stx-dot.stx-active {
    background: var(--tv-primary);
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* glow ambient on right panel */
.stx-right::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 138, .25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* end client */