@media screen and (max-width: 991px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex; /* keep only one display */
        align-items: center;
        justify-content: space-between;

        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);

        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

        width: 100%;
        padding: 10px 15px;
    }

    .home-page-1 .card-design {
        margin-bottom: 20px;
    }

    .mobile-header .logo-side img {
        height: 90px;
        width: auto;
    }

    .mobile-header .menu-btn button {
        cursor: pointer;
        padding: 5px 20px;
        border-radius: 7px;
        background: linear-gradient(0deg, #eb9634, #fd5975);
        color: white;
        border: none;
    }

    .mobile-header .menu-btn img {
        width: 26px;
        height: 26px;
        filter: brightness(0) invert(1);
    }

    .mobile-header-list {
        display: block;
        position: fixed;
        z-index: 1000;
        top: 0;
        right: 0px;
        width: 100%;
        background: rgb(0, 0, 0);
        padding: 10px 15px;
        transform: translateY(-100%);
        transition: transform 0.9s ease-in-out;
    }
    .top-list-d img {
        width: 100%;
        height: auto;
        max-width: 100px;
    }
    #closeMenu img {
        filter: brightness(0) invert(1);
    }
    .top-list-d {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e6f85e61;
        padding-bottom: 20px;
    }
    .top-list-d button {
        background: #eb9634;
        border-radius: 10px;
        padding: 10px 13px;
        border: none;
        cursor: pointer;
    }
    .bottom-list-d {
        margin-top: 25px;
        padding: 10px 0px;
    }
    .bottom-list-d ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .bottom-list-d ul li {
        list-style: none;
        padding-bottom: 10px;
        border-bottom: 1px solid #e6f85e38;
        padding-top: 10px;
    }
    .bottom-list-d ul li a {
        font-size: 20px;
        font-weight: 600;
        font-family: math;
        color: #eb9634;
    }
    .mobile-header-list.active {
        transform: translateY(0);
    }
}

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

/* LARGE SCREENS */
@media (max-width: 1200px) {
    .home-page-2 .left-side h2 {
        font-size: 42px;
    }
}

/* TABLETS */
@media (max-width: 991px) {
    .home-page-2 {
        padding: 60px 20px;
    }

    .home-page-2 .left-side h2 {
        font-size: 36px;
    }

    .home-page-2 .right-side {
        margin-top: 40px;
    }

    .home-page-2 strong {
        margin-bottom: 20px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .home-page-2 {
        padding: 50px 15px;
        text-align: center;
    }

    .home-page-3 h2 {
        font-size: 3rem;
    }
    .home-page-3 p {
        font-size: 1.6rem;
    }

    .home-page-2 .left-side span::after {
        display: none;
    }

    .home-page-2 .left-side h2 {
        font-size: 28px;
    }

    .home-page-2 .left-side p {
        font-size: 15px;
    }

    .home-page-2 .right-side img {
        max-width: 100%;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .home-page-2 .left-side h2 {
        font-size: 24px;
        text-align: left;
    }

    .home-page-2 strong {
        font-size: 16px;
    }
}

/* =======================
   LARGE DESKTOP (1400px+)
======================= */
@media (min-width: 1400px) {
    .hero-section {
        padding: 220px 10%;
    }

    .hero-section strong {
        font-size: 5rem;
    }

    .hero-section h1 {
        font-size: 68px;
    }

    .hero-section p {
        font-size: 2.4rem;
    }
}

/* =======================
   DESKTOP / LAPTOP
======================= */
@media (max-width: 1199px) {
    .hero-section {
        padding: 180px 8%;
    }

    .hero-section strong {
        font-size: 4.2rem;
    }

    .hero-section h1 {
        font-size: 56px;
    }

    .hero-section p {
        font-size: 2rem;
    }
}

/* =======================
   TABLET (iPad)
======================= */
@media (max-width: 991px) {
    .hero-section {
        padding: 150px 6%;
    }

    .hero-section strong {
        font-size: 3.6rem;
    }

    .hero-section h1 {
        font-size: 46px;
    }

    .hero-section p {
        font-size: 1.7rem;
    }
}

/* =======================
   MOBILE LANDSCAPE
======================= */
@media (max-width: 767px) {
    .hero-section {
        padding: 120px 5%;
    }

    .hero-section strong {
        font-size: 3rem;
    }

    .hero-section h1 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .hero-section p {
        font-size: 1.4rem;
    }
}

/* =======================
   MOBILE PORTRAIT
======================= */
@media (max-width: 576px) {
    .hero-section {
        padding: 137px 0% 25px;
    }

    .hero-section strong {
        font-size: 2.4rem;
    }

    .hero-section h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 1.2rem;
    }
}

/* =======================
   TABLET (iPad)
======================= */
@media (max-width: 991px) {
    .home-page-2 {
        padding: 70px 0;
    }

    .home-page-2 .left-side span::after {
        display: none;
    }

    .home-page-2 .left-side h3 {
        font-size: 32px;
    }

    .home-page-2 .left-side p {
        max-width: 100%;
        font-size: 15px;
    }

    .home-page-2 .right-side {
        text-align: center;
        margin-top: 40px;
    }

    .home-page-2 .right-side img {
        max-width: 360px;
    }

    .botom-img {
        top: -80px;
        text-align: center;
    }

    .bg-shape-left {
        display: none;
    }
}

/* =======================
   MOBILE LANDSCAPE
======================= */
@media (max-width: 768px) {
    .home-page-2 {
        padding: 60px 0;
        text-align: center;
    }

    .home-page-3 {
        flex-direction: column;
        gap: 20px;
    }
    .home-page-3 .left-side {
        width: 100%;
        border-right: none;
        border-bottom: 3px solid #e6f85e;
    }

    .home-page-3 .right-side {
        width: 100%;
    }

    .home-page-2 .left-side span {
        margin-bottom: 8px;
        left: -100px;
    }

    .home-page-2 .left-side h3 {
        font-size: 28px;
    }

    .home-page-2 .left-side p {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .home-page-2 .right-side img {
        max-width: 300px;
    }

    .botom-img {
        top: -50px;
    }
}

/* =======================
   MOBILE PORTRAIT
======================= */
@media (max-width: 576px) {
    .home-page-2 {
        padding: 50px 0;
    }

    .home-page-2 .left-side h3 {
        font-size: 24px;
    }

    .home-page-2 .left-side p {
        font-size: 14px;
    }

    .home-page-2 .right-side img {
        max-width: 380px;
        border-radius: 12px;
    }

    .botom-img {
        display: none;
    }
}

@media (max-width: 992px) {
    .home-page-5 {
        padding: 60px 15px;
    }

    .home-page-5 h2 {
        font-size: 5rem;
    }

    .home-page-5 .right-side strong {
        font-size: 1.9rem;
    }

    .home-page-5 .right-side p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .home-page-5 {
        padding: 10px 15px;
        text-align: center;
    }

    .about-page-1 .left-side button
    {
        margin-bottom: 20px;
    }

    .about-page-1
    {
        padding: 20px 0px;
    }


    .about-page-1 .left-side h2
    {
        font-size: 3rem;
    }

    .home-page-5 .left-side {
        margin-bottom: 30px;
        text-align: left;
    }

    .home-page-5 h2 {
        font-size: 4rem;
    }

    .home-page-5 .left-side strong {
        font-size: 1.2rem;
    }

    .home-page-5 .right-side strong {
        font-size: 1.6rem;
    }

    .home-page-5 ul li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .home-page-5 h2 {
        font-size: 4rem;
    }

    .home-page-5 .right-side strong {
        font-size: 1.4rem;
    }

    .home-page-5 ul li b {
        font-size: 1.1rem;
    }
}

/* -------- Large Tablets / Small Laptops -------- */
@media (max-width: 1199px) {
    .home-page-7 .head-part h2 {
        font-size: 2.1rem;
    }
}

/* -------- Tablets -------- */
@media (max-width: 991px) {
    .home-page-7 {
        padding: 50px 15px;
    }

    .home-page-7 .head-part h2 {
        font-size: 1.9rem;
    }

    .home-page-7 .body-part .card-ds {
        padding: 30px 20px;
    }
}

/* -------- Mobile -------- */
@media (max-width: 767px) {
    .home-page-7 {
        padding: 40px 15px;
    }

    .home-page-7 .head-part span {
        font-size: 1rem;
    }

    .home-page-7 .head-part h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .home-page-7 .body-part .card-ds {
        margin-bottom: 25px;
    }

    .home-page-7 .body-part .card-ds .img-part {
        width: 70px;
        height: 70px;
    }
}

/* -------- Small Mobile -------- */
@media (max-width: 480px) {
    .home-page-7 .head-part h2 {
        font-size: 1.4rem;
    }

    .home-page-7 .body-part .card-ds {
        padding: 25px 18px;
    }

    .home-page-7 .body-part .card-ds .cont-part h4 {
        font-size: 1.4rem;
    }

    .home-page-7 .body-part .card-ds .cont-part p {
        font-size: 1.3rem;
    }
}


/* SECTION */
.interview-page {
    width: 100%;
    background: linear-gradient(86deg, rgba(1, 18, 43, 0.85), rgba(0, 0, 0, 0.95)),
        url('https://img.freepik.com/premium-photo/abstract-119-background-wallpaper-gradient_792836-196229.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 15px;
    color: #fff;
}

/* HEADING */
.interview-page .head-part {
    margin-bottom: 40px;
}

.interview-page .head-part h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.interview-page .head-part h2::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #e8a12a, #ff547c);
    bottom: -10px;
    left: 0;
    border-radius: 30px;
}

/* VIDEO CARD */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid orange;
    margin-bottom: 20px;
}

.video-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

/* THUMBNAIL */
.video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-frame:hover img {
    transform: scale(1.05);
}

/* IFRAME */
.video-frame iframe {
    width: 100%;
    height: 100%;
    display: none;
    border-radius: 18px;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff547c80, #e8a12a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.video-frame:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
    .play-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .interview-page {
        padding: 40px 10px;
    }
}


/* Section spacing */
.social-video-page {
    padding: 60px 0;
    background: linear-gradient(45deg, #031928, #07122c);;
}

/* Video Card */
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid white;
    padding: 10px;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Video */
.video-card video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Play Button Overlay */
.play-buttion {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

/* Play Button */
.play-buttion button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #000;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-buttion button:hover {
    transform: scale(1.12);
    background: #ffffff;
}

/* Hide play button when video is playing */
.video-card.playing .play-buttion {
    opacity: 0;
    pointer-events: none;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .video-card {
        margin-bottom: 25px;
    }
}



.interview-page .body-part .ratio iframe
{
    width: 100%;
    height: 350px;
    border: 2px solid white;
    border-radius: 20px;
    margin-bottom: 10px;
}


.press-release-4 {
    padding: 60px 20px;
    background: linear-gradient(0deg, #07122c, #050a15);
}

/* Card */
.press-release-4 .card-ds {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    margin-bottom: 20px;
}

.press-release-4 .card-ds:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* Image Section */
.press-release-4 .card-ds .img-part {
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff1a, #ffffff05);
    flex-shrink: 0;
}

.press-release-4 .card-ds .img-part img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

/* Content */
.press-release-4 .card-ds .cont-part {
    flex: 1;
}

.press-release-4 .card-ds .cont-part h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.press-release-4 .card-ds .cont-part p {
    color: #cbd5f5;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Meta Info */
.press-release-4 .card-ds .cont-part .chanel-name {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f5d77c;
    margin-right: 15px;
}

.press-release-4 .card-ds .cont-part .date-sec {
    display: inline-block;
    font-size: 13px;
    color: #aab2d5;
}

/* Arrow Button */
.press-release-4 .card-ds .right-sec {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(rgb(255, 81, 126) 0%, rgb(231, 163, 39) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    rotate: -30deg;
}

.press-release-4 .card-ds .right-sec a {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.press-release-4 .card-ds:hover .right-sec a {
    transform: translateX(4px);
}

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

@media (max-width: 991px) {
    .press-release-4 .card-ds {
        gap: 20px;
    }

    .press-release-4 .card-ds .cont-part h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .press-release-4 .card-ds {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }


    .press-release-4 .card-ds .img-part
    {
        width: 100%;
    }

    .press-release-4 .card-ds .img-part img {
        width: 100%;
        height: auto;
        /* max-width: 280px; */
    }

    .press-release-4 .card-ds .right-sec {
        margin-top: 15px;
        /* align-self: flex-end; */
    }
}

@media (max-width: 480px) {
    .press-release-4 {
        padding: 40px 15px;
    }

    .press-release-4 .card-ds {
        padding: 18px;
    }

    .press-release-4 .card-ds .cont-part h3 {
        font-size: 18px;
    }

    .press-release-4 .card-ds .cont-part p {
        font-size: 14px;
    }
}
