html, body {
    overflow-x: hidden !important;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

/* MAIN HEADER */
.top_header-con {
    background: #6E22BF;
    padding: 18px 0;
}

/* LEFT LOGO */
.top_header-left img {
    height: 32px;
}

/* CENTER MENU */
.top_header-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    padding-right: 18px;
    border-right: 1px solid #83356c;
}
.top_header-menu a:last-child { border-right: none; }

.top_header-menu a:hover { opacity: 0.8; }

/* RIGHT BUTTON */
.top_header-right .book-btn {
    background: #D4169B;
    color: #fff;
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    transition: 0.3s;
}
.top_header-right .book-btn:hover {
    background: #ff2c8b;
}

/* MOBILE MENU ICON */
.mobile-menu-icon {
    font-size: 28px;
    color: #fff;
    margin-left: 15px;
    cursor: pointer;
}

/* MOBILE SLIDE MENU */
.mobile-menu-panel {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #6E22BF;
    padding: 25px 20px;
    transition: 0.4s ease-in-out;
    z-index: 9999;
}
.mobile-menu-panel.show {
    right: 0;
}

.mobile-menu-content {
    margin-top: 40px;
}

.mobile-menu-content a {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #ff4fa0;
}

.mobile-menu-content .book-btn {
    background: #D4169B;
    color: #fff;
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    transition: 0.3s;
    width: 120px;
}

.mobile-menu-content .book-btn:hover {
    background: #ff2c8b;
}

.mobile-menu-content .close-menu {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    float: right;
    margin-bottom: 25px;
}


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

/* Extra Small Devices (0–480px) */
@media (max-width: 480px) {
    .top_header-left img { height: 28px; }
    .top_header-con { padding: 15px 0; }
}

/* Extra Small up to 576px */
@media (max-width: 576px) {
    .top_header-left,
    .top_header-right {
        display: flex !important;
        align-items: center !important;
    }

    .top_header-right {
        justify-content: flex-end !important;
    }

    .mobile-menu-icon {
        margin-top: 0 !important; /* Fix icon dropping down */
    }
}


/* Small Devices (577px – 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .top_header-left img { height: 25px; }
    .mobile-menu-icon { font-size: 30px; display: inline-block !important; }
    .top_header-con .top_header-menu a { display: none;}
}

/* Medium Devices (769px – 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .top_header-left img { height: 25px; }
    .top_header-menu { padding-left: 40px;}
    .top_header-menu a { margin: 0 10px; padding-right: 10px; }
}

/* Large Devices (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .top_header-left img { height: 20px; }
    .top_header-menu a { font-size: 15px; }
}


/*  Why Tata Play DTH Section */
.we_work9-con {
    background: #eecbff;
    padding: 20px;
    width: 95%;
    margin: auto;
    border-radius: 25px;
}

/* Title Styling */
.we_work9-title {
    font-weight: 1000;
    font-size: 32px;
    color: #FF00B2;
    margin-bottom: 20px;
}

.we_work9-title span {
    color: #6B00DE;
}

/* Pink Underline Style */
.we_work9-line {
    width: 160px;
    height: 3px;
    background: #ff40a0;
    margin: 0 auto 30px auto;
    position: relative;
}

.we_work9-line::before,
.we_work9-line::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff0080;
    border-radius: 50%;
    position: absolute;
    top: -3px;
}

.we_work9-line::before {
    left: -15px;
}

.we_work9-line::after {
    right: -15px;
}

/* Card Styling */
.we_work9-card {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 18px;
    border: none;
    transition: 0.3s ease;
    height: 180px;
}

.we_work9-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.we_work9-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Text Styling */
.we_work9-card p {
    color: #000;
    font-size: 12px;
    font-weight: 600;
}

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

/* Extra Small Devices (0px - 576px) */
@media (max-width: 576px) {
    .we_work9-title {
        font-size: 24px;
    }

    .we_work9-card {
        padding: 18px;
        height: auto;
    }

    .we_work9-icon img {
        width: 60px;
        height: 60px;
    }

    .we_work9-card p {
        font-size: 12px;
    }
}

/* Small Devices (Tablets: 577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .we_work9-title {
        font-size: 28px;
    }

    .we_work9-card {
        height: 170px;
        padding: 20px;
    }

    .we_work9-icon img {
        width: 65px;
        height: 65px;
    }
}

/* Medium Devices (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .we_work9-card {
        height: 180px;
        padding: 22px;
    }

    .we_work9-icon img {
        width: 70px;
        height: 70px;
    }
}

/* Large Devices (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .we_work9-con {
        padding: 35px;
    }

    .we_work9-card {
        height: 185px;
    }
}




/* HERO SECTION BACKGROUND */
.hero-con {
    position: relative;
    width: 100%;
    overflow: visible;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6A01DB 10%, rgba(255,255,255,0) 120%);
}

/* HERO TEXT */
.hero-content {
    position: relative;
    padding: 80px 20px ;
    color: #fff;
    max-width: 560px;
}

.hero-sub {
    font-size: 20px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 47px;
    font-weight: 1000;
    line-height: 1.2;
}

.hero-title span {
    color: #ff3ca7;
}

.hero-desc {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 15px;
}

/* 
   HERO BUTTONS
 */
.hero-btns {
    margin-top: 30px;
}

.hero-call,
.hero-book {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 10px;
}

.hero-call {
    transition: background-color 0.3s ease;
    background: #D4169B;
    color: #fff;
}

.hero-book {
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
    color: #fff;
}

.hero-call:hover {
    background: #ff2c8a;
}

.hero-book:hover {
    background: #fff;
    color: #6E22BF;
}

/* FLOATING FORM CARD */
.hero-form-con {
    width: 88%;
    margin: 0 auto;
    background: #ffffff;
    border: 4px solid #FF83DA;
    padding: 20px 15px;
    border-radius: 20px;
    /*margin-top: -40px;  */
    /*floating upward
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;

    /* ADD THESE ↓ */
    position: relative;
    z-index: 5;
}


.hero-form-con h2 {
    font-size: 40px;
    color: #C30065;
    font-weight: 700;
}

/* 
   FORM INPUT BOXES
 */
 
 form label {
    margin-left: 20px;
}
 
.input-box {
    margin: 10px;
    display: flex;
    align-items: center;
    background: #F8F8F8;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid black;
}

.input-box .icon {
    margin-right: 10px;
    font-size: 18px;
}

.input-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

.submit-btn {
    background-color: #D4169B; 
    color: white;
    border: none;
    padding: 10px 20px; 
    font-size: 14px; 
    font-weight: bold;
    border-radius: 15px 50px;
    cursor: pointer;
    display: inline-block; 
    margin-top: 20px; 
    transition: background-color 0.3s ease;
    text-align: center; 
}

.submit-btn:hover {
    background-color: #ff2c8b;
}

.submit-btn:focus {
    outline: none;
}

.text-left .submit-btn {
    text-align: left;
}



/*RESPONSIVE BREAKPOINTS
    
/* 📱 Extra Small Devices (0–480px) */
@media (max-width: 480px) {

    .hero-bg {
        height: 450px;
        background-position: top center;
    }

    .hero-content {
        padding: 40px 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-form-con {
        width: 94%;
        padding: 15px 12px;
        margin-top: -30px;
    }

    .hero-form-con h2 {
        font-size: 26px;
        text-align: center;
    }

}


/* 📱 Extra Small Devices (max-width: 576px) */
@media (max-width: 576px) {

    .hero-bg {
        height: 470px;
    }

    .hero-content {
        text-align: center;
        padding: 50px 25px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-form-con {
        width: 94%;
    }
}


/* 📱 Small Devices (577px – 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .hero-bg {
        height: 520px;
    }

    .hero-content {
        padding: 60px 40px;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-form-con {
        width: 85%;
        margin-top: -35px;
    }
}


/* 💻 Medium Devices (769px – 992px) */
@media (min-width: 769px) and (max-width: 992px) {

    .hero-bg {
        height: 550px;
    }

    .hero-content {
        padding: 70px 50px;
        max-width: 60%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-form-con {
        width: 75%;
        margin-top: -45px;
    }
}


/* 🖥 Large Devices (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {

    .hero-content {
        padding: 80px 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-form-con {
        width: 70%;
    }
}



/* DTH MART PACKAGES SECTION */
.dth_mart2-con {
    padding: 50px 20px;
    background-image: url('./image/dote\ white\ bg.svg'); /* your dotted background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #DBBAFF;
}

/* TOP HEADING */
.dth_mart2-top {
    position: relative;
    text-align: left;
    /*margin-top: 330px;*/
}

.best-plan {
    color: #6B00DE;
    font-size: 20px;
    margin-bottom: 5px;
}

.main-title {
    color: #6B00DE;
    font-size: 40px;
    font-weight: 900;
}

.main-title span {
    color: #FF00B2;
}

.pink-line {
    width: 100px;
    height: 2px;
    background-color: #ff3ca7; /* Pink Line */
    margin-top: 8px;
}

.pink-line::before,
.pink-line::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff0080;
    border-radius: 50%;
    position: absolute;
    top: 87px;
    left: 100px;
}

.booknow-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #D4169B;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}
.booknow-btn:hover {
    background: #ff2290;
}

/* PACKAGE CARD */
.dth_mart2-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.dth_mart2-card:hover {
    transform: translateY(-6px);
}

.top span {
    font-size: 13px;
    color: #000;
    font-weight: 900;
}

.card-small-img {
    width: 100px;
    height: 100px;
    position: relative;
    object-fit: contain;
    margin-top: -40px;
}

.card-top-text {
    font-size: 10px;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
}

.pack-img {
    border-radius: 12px;
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
}

/* PRICE SECTION */
.price-sec {
    margin: auto;
    display: flex;
    margin-top: -20px;
    align-items: center;
    justify-content: center;
}

.old-price {
    font-size: 35px;
    font-weight: 700;
    text-decoration: line-through;
    color: #7700e5;
    text-align: center;
}

/* New Flexbox for Free Banner and Cashback Alignment */
.offer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -30px;
}

/* Cashback Badge */
.cashback-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex-shrink: 0;
}

.cashback-icon {
    width: 100px;
    height: 100px;
    margin-right: 5px;
}

/* Free Banner */
.free-banner {
    color: #fff;
    padding: 7px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 6px;
    text-align: center;
    background-size: contain;  /* Ensures the background image covers the full banner */
    background-position: center center;  /* Adjusts the background image's position */
    background-repeat: no-repeat;
    height: 42px;
    max-width: 250px;
    flex: 1;
    text-align: left;
    margin-left: -18px;
}


/* FINAL PRICE */
.final-price {
    font-size: 32px;
    font-weight: 800;
    color: #d1006a;
}
.final-price span {
    font-size: 18px;
    font-weight: 600;
}

/* FEATURES LIST */
.pack-list {
    list-style-type: disc; /* Changed to dot style */
    padding-left: 20px;  /* Added padding for better visibility */
    margin-top: 15px;
}

.pack-list li {
    padding: 4px 0;
    font-size: 15px;
    color: #222;
}

/* GET BUTTON */
.get-btn {
    display: block;
    margin-top: 15px;
    background: linear-gradient(90deg, #C21990 60%, #FF4FA0);
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}
.get-btn:hover {
    background: linear-gradient(90deg, #FF4FA0 20%, #C21990);
}


/* EXTRA SMALL DEVICES (0–480px) */
/* @media (max-width: 480px) {

    .dth_mart2-con {
        padding: 35px 15px;
    }

    .dth_mart2-top {
        text-align: center;
        margin-top: 40px;
    }

    .main-title {
        font-size: 26px;
        line-height: 32px;
    }

    .best-plan {
        font-size: 16px;
    }

    .booknow-btn {
        position: relative;
        right: 0;
        margin-top: 15px;
        display: inline-block;
    }

    .pack-img {
        height: auto;
    }

    .dth_mart2-card {
        padding: 15px;
    }

    .final-price {
        font-size: 25px;
    }

    .pack-list li {
        font-size: 14px;
    }
} */

/* MOBILE DEVICES (481–576px) */
@media (max-width: 576px) {

    .main-title {
        font-size: 28px;
    }
    
    /*.dth_mart2-top {*/
    /*    margin-top: 530px;*/
    /*}*/

    .pink-line::before,
    .pink-line::after {
        top: 106px;
        left: 100px;
    }

    .booknow-btn {
        position: relative;
        right: 0;
        margin-top: 15px;
        display: inline-block;
    }
    .dth_mart2-card {
        padding: 18px;
    }

    .final-price {
        font-size: 28px;
    }

    /* Updated Free Banner Styling for Mobile */
    .free-banner {
        padding: 8px;
        font-size: 17px;
        height: 40px;  /* Adjusted height for a better shape */
        background-size: contain;  /* Ensures the background image covers the full banner */
        background-position: center center;  /* Adjusts the background image's position */
        background-repeat: no-repeat;
        border-radius: 6px;
        width: auto;
        max-width: 100%;  /* Adjust width for mobile view */
        position: relative;
        padding-left: 15px;
    }

    .free-banner span {
        position: relative;
        z-index: 2;  /* Ensures the text is above the overlay */
    }
}

/* SMALL DEVICES (TABLETS 577–768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .main-title {
        font-size: 32px;
    }

    .dth_mart2-top {
        margin-top: 60px;
    }

    .booknow-btn {
        position: absolute;
        right: 0;
        top: 10px;
        padding: 8px 20px;
    }

    .dth_mart2-card {
        padding: 20px;
    }

    .final-price {
        font-size: 30px;
    }

    /* Updated Free Banner Styling for Tablets */
    .free-banner {
        padding: 10px;
        font-size: 18px;
        height: 50px;
        background-size: cover;
       
        border-radius: 12px;
        max-width: 250px;
        position: relative;
        
    }

    .free-banner span {
        position: relative;
        z-index: 2;
    }
}


/* MEDIUM DEVICES (769–992px) */
@media (min-width: 769px) and (max-width: 992px) {

    .main-title {
        font-size: 34px;
    }

    .dth_mart2-card {
        padding: 22px;
    }

    .final-price {
        font-size: 30px;
    }

    .old-price {
        font-size: 30px;
    }
}

/* LARGE DEVICES (993–1200px) */
@media (min-width: 993px) and (max-width: 1200px) {

    .main-title {
        font-size: 36px;
    }

    .dth_mart2-card {
        padding: 22px;
    }

    .final-price {
        font-size: 32px;
    }

    .pack-list li {
        font-size: 15px;
    }
}



/* ABOUT SECTION (dth_mart3) */
.dth_mart3-con {
    padding: 40px;
    background: #ffffff;
}

.dth_mart3-con .about-sub {
    color: #6B00DE;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -15px;
}

.dth_mart3-con .about-title {
    font-size: 38px;
    font-weight: 1000;
    color: #FF00B2;
    margin: 10px 0 20px 0;
    line-height: 1.3;
}

.dth_mart3-con .about-title span {
    color: #6B00DE;
}

.dth_mart3-con .about-desc {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT IMAGE WRAP */
.dth_mart3-con .right-img-wrap {
    position: relative;
    width: 100%;
    margin: auto;
}

.dth_mart3-con .about-main-img {
    width: 100%;
    max-width: 680px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}


/* RESPONSIVE DESIGN SECTION (ALL BREAKPOINTS) */


/* Extra Small to Small Devices: max-width 576px */
@media (max-width: 576px) {
    .dth_mart3-con .about-title {
        font-size: 20px;
        text-align: center;
    }
    .dth_mart3-con .about-sub {
        text-align: center;
    }
    .dth_mart3-con .about-desc {
        font-size: 14.5px;
        text-align: center;
    }
    .dth_mart3-con .right-img-wrap {
        margin-top: 30px;
        max-width: 100%;
        margin: auto;
    }
}

/* Small Devices: 577px to 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart3-con {
        padding: 30px;
    }
    .dth_mart3-con .about-title {
        font-size: 30px;
        text-align: left;
    }
    .dth_mart3-con .about-desc {
        font-size: 15px;
    }
    .dth_mart3-con .right-img-wrap {
        margin-top: 25px;
        max-width: 500px;
    }
}

/* Medium Devices: 769px to 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart3-con .about-title {
        font-size: 32px;
    }
    .dth_mart3-con .about-desc {
        font-size: 15px;
    }
    .dth_mart3-con .right-img-wrap {
        margin-top: 35px;
        max-width: 550px;
    }
}

/* Large Devices: 993px to 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart3-con .about-title {
        font-size: 36px;
    }
    .dth_mart3-con .about-desc {
        font-size: 16px;
    }
    .dth_mart3-con .right-img-wrap {
        max-width: 620px;
    }
}


/*  FEATURES STRIP (dth_mart4) */

.dth_mart4-con {
    padding: 20px;
    background: #EFD7FF;  /* Light purple */
    justify-content: center;
    
}

.dth_mart4-left {
    padding-left: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tick-icon {
    width: 22px;
    margin-right: 20px;
}

.feature-item span {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.feature-product-img {
    max-width: 250px;
    width: 100%;
    object-fit: contain;
}


/* ---------------------------------------
   EXTRA SMALL DEVICES (max-width: 576px)
------------------------------------------ */
@media (max-width: 576px) {

    .dth_mart4-left {
        padding-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    .feature-item span {
        font-size: 15px;
    }

    .tick-icon {
        width: 18px;
        margin-right: 12px;
    }

    .dth_mart4-right {
        margin-top: 20px;
    }

    .feature-product-img {
        max-width: 200px;
    }
}

/* ---------------------------------------
   SMALL DEVICES (Tablets: 577px–768px)
------------------------------------------ */
@media (min-width: 577px) and (max-width: 768px) {

    .dth_mart4-left {
        padding-left: 10px;
    }

    .feature-item span {
        font-size: 16px;
    }

    .tick-icon {
        width: 20px;
    }

    .dth_mart4-right {
        margin-top: 25px;
        text-align: center;
    }

    .feature-product-img {
        max-width: 230px;
    }
}

/* ---------------------------------------
   MEDIUM DEVICES (Small Laptops: 769px–992px)
------------------------------------------ */
@media (min-width: 769px) and (max-width: 992px) {

    .dth_mart4-left {
        padding-left: 20px;
    }

    .feature-item span {
        font-size: 17px;
    }

    .tick-icon {
        width: 22px;
    }

    .dth_mart4-right {
        margin-top: 20px;
    }
}

/* ---------------------------------------
   LARGE DEVICES (Desktops: 993px–1200px)
------------------------------------------ */
@media (min-width: 993px) and (max-width: 1200px) {

    .dth_mart4-left {
        padding-left: 30px;
    }

    .feature-item span {
        font-size: 18px;
    }

    .feature-product-img {
        max-width: 260px;
    }
}


/* DTH MART 10 SECTION */
.dth_mart10-con {
    background: #fff;
    padding: 20px;
}

.dth_mart10-title {
    font-size: 36px;
    font-weight: 1000;
    color: #6B00DE;
    margin-bottom: 20px;
    text-align: left;
}

.dth_mart10-title span {
    color: #FF00B2;
}

.dth_mart10-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    text-align: left;
}

.dth_mart10-btn {
    background: linear-gradient(90deg, #C21990 60%, #FF4FA0);
    color: #fff;
    width: 300px;
    text-align: center;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dth_mart10-btn:hover {
    background: linear-gradient(90deg, #FF4FA0, #C21990);
}

/* RIGHT IMAGE */
.dth_mart10-img {
    width: 100%;
    max-width: 650px;
    object-fit: cover;
    border-radius: 12px;
}

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

/* Extra Small Devices: 0 - 480px */
@media (max-width: 480px) {
    .dth_mart10-title {
        font-size: 22px;
        text-align: center;
    }
    .dth_mart10-desc {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
    }
    .dth_mart10-btn {
        font-size: 13px;
        padding: 8px 18px;
        display: block;
        margin: 0 auto 20px;
        width: 200px;
    }
    .dth_mart10-img {
        max-width: 100%;
        margin-top: 15px;
    }
}

/* Small Devices: 577px – 768px (Tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart10-title {
        font-size: 28px;
        text-align: center;
    }
    .dth_mart10-desc {
        font-size: 16px;
        text-align: center;
    }
    .dth_mart10-btn {
        margin: 0 auto;
        display: block;
    }
    .dth_mart10-img {
        margin-top: 25px;
    }
}

/* Medium Devices: 769px – 992px (Small Laptops) */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart10-title {
        font-size: 30px;
    }
    .dth_mart10-desc {
        font-size: 17px;
    }
    .dth_mart10-img {
        max-width: 500px;
    }
}

/* Large Devices: 993px – 1200px (Desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart10-title {
        font-size: 34px;
    }
    .dth_mart10-img {
        max-width: 600px;
    }
}


/* dth_mart5 - HD Set Top Box Banner */

.dth_mart5-con {
    background: #EED6FF;
    padding: 20px;
    border-radius: 20px;
    margin: auto;
    width: 95%;
}

.dth_mart5-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* RIGHT CONTENT */
.dth_mart5-content {
    padding-left: 30px;
}

.dth_mart5-title {
    font-size: 35px;
    font-weight: 1000;
    line-height: 1.3;
    color: #6B00DE;
    margin-bottom: 15px;
}

.dth_mart5-title span {
    color: #FF00B2;
}

.dth_mart5-desc {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.dth_mart5-btn {
    display: inline-block;
    background: linear-gradient(90deg, #C21990 60%, #FF4FA0);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 0, 150, 0.3);
}

.dth_mart5-btn:hover {
    background: linear-gradient(90deg, #FF4FA0, #C21990);
    color: #fff;
}

/* ---------------------------------------------------
   RESPONSIVE BREAKPOINTS (As Requested)
------------------------------------------------------*/

/* Extra Small Devices: max 576px */
@media (max-width: 576px) {
    .dth_mart5-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .dth_mart5-title {
        font-size: 24px;
    }
    .dth_mart5-img {
        max-width: 100%;
    }
}

/* Small Devices (Tablets): 577px–768px */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart5-content {
        padding-left: 0;
        margin-top: 25px;
        text-align: center;
    }
    .dth_mart5-title {
        font-size: 28px;
    }
    .dth_mart5-desc {
        font-size: 15px;
    }
}

/* Medium Devices (Small Laptops): 769px–992px */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart5-content {
        padding-left: 10px;
        margin-top: 20px;
    }
    .dth_mart5-title {
        font-size: 30px;
    }
}

/* Large Devices (Desktops): 993px–1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart5-title {
        font-size: 32px;
    }
    .dth_mart5-content {
        padding-left: 20px;
    }
}


/*GENUINE HD SECTION (dth_mart6)*/

.dth_mart6-con {
    background: #C70093;       /* Pink-Purple BG */
    padding: 40px;
    border-radius: 20px;
    margin: auto;
    width: 95%;
}

.dth_mart6-title {
    color: #fff;
    font-size: 32px;
    font-weight: 1000;
    margin-bottom: 20px;
}

.dth_mart6-desc {
    color: #ffe6f7;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 450px;
}

.dth_mart6-btn {
    display: inline-block;
    background: #fff;
    color: #C70093;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.dth_mart6-btn:hover {
    background: #ffdef3;
    color: #9e006d;
}

/* Right Image Styling */
.dth_mart6-img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    object-fit: cover;
}

/* =====================================================
   RESPONSIVE DESIGN FOR ALL DEVICES
   ===================================================== */

/* ➤ Medium Devices: Small Laptops (769px–992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart6-left {
        text-align: center;
    }
    .dth_mart6-desc {
        margin: 0 auto 25px auto;
    }
    .dth_mart6-img {
        max-width: 420px;
    }
}

/* ➤ Small Devices: Tablets (577px–768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart6-con {
        padding: 30px;
    }
    .dth_mart6-left {
        text-align: center;
    }
    .dth_mart6-title {
        font-size: 28px;
    }
    .dth_mart6-desc {
        max-width: 500px;
        margin: 0 auto 20px auto;
        font-size: 15px;
    }
    .dth_mart6-img {
        max-width: 450px;
        margin-top: 25px;
    }
}

/* ➤ Extra Small Devices (Mobile 0–576px) */
@media (max-width: 576px) {
    .dth_mart6-con {
        padding: 25px;
        border-radius: 15px;
    }
    .dth_mart6-title {
        font-size: 24px;
        text-align: center;
    }
    .dth_mart6-desc {
        font-size: 14px;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    .dth_mart6-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
    .dth_mart6-img {
        max-width: 100%;
        margin-top: 25px;
    }
}

/* ➤ Large Devices: Desktops (993px–1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart6-title {
        font-size: 30px;
    }
    .dth_mart6-desc {
        font-size: 15px;
    }
    .dth_mart6-img {
        max-width: 480px;
    }
}


/* dth_mart7 - HD Set Top Box Banner */

.dth_mart7-con {
    background: #EED6FF;
    padding: 20px;
    border-radius: 20px;
    margin: auto;
    width: 95%;
}

.dth_mart7-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* RIGHT CONTENT */
.dth_mart7-content {
    padding-left: 30px;
}

.dth_mart7-title {
    font-size: 35px;
    font-weight: 1000;
    line-height: 1.3;
    color: #6B00DE;
    margin-bottom: 15px;
}

.dth_mart7-title span {
    color: #FF00B2;
}

.dth_mart7-desc {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.dth_mart7-btn {
    display: inline-block;
    background: linear-gradient(90deg, #C21990 60%, #FF4FA0);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 0, 150, 0.3);
}

.dth_mart7-btn:hover {
    background: linear-gradient(90deg, #FF4FA0 60%, #C21990);
    color: #fff;
}

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

/* Large Devices (993px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart7-title { font-size: 34px; }
}

/* Medium Devices (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart7-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .dth_mart7-title { font-size: 30px; }
}

/* Small Devices (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart7-content {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    .dth_mart7-title { font-size: 28px; }
    .dth_mart7-desc { font-size: 15px; }
}

/* Extra Small Devices (0px to 576px) */
@media (max-width: 576px) {
    .dth_mart7-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .dth_mart7-title { font-size: 24px; }
    .dth_mart7-desc { font-size: 14px; }
    .dth_mart7-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    .dth_mart7-img {
        max-width: 100%;
    }
}


/*GENUINE HD SECTION (dth_mart8)*/

.dth_mart8-con {
    background: #C70093;       /* Pink-Purple BG */
    padding: 40px;
    border-radius: 20px;
    margin: auto;
    width: 95%;
}

.dth_mart8-title {
    color: #fff;
    font-size: 32px;
    font-weight: 1000;
    margin-bottom: 20px;
}

.dth_mart8-desc {
    color: #ffe6f7;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 450px;
}

.dth_mart8-btn {
    display: inline-block;
    background: #fff;
    color: #C70093;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.dth_mart8-btn:hover {
    background: #ffdef3;
    color: #9e006d;
}

/* Right Image Styling */
.dth_mart8-img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    object-fit: cover;
}

/* ----------------------------------------------------
   RESPONSIVE BREAKPOINTS
---------------------------------------------------- */

/* ===== Medium Devices (769px – 992px) ===== */
@media (min-width: 769px) and (max-width: 992px) {
    .dth_mart8-title {
        font-size: 30px;
    }
    .dth_mart8-img {
        max-width: 420px;
    }
}

/* ===== Small Devices (577px – 768px) Tablets ===== */
@media (min-width: 577px) and (max-width: 768px) {
    .dth_mart8-con {
        padding: 30px;
    }
    .dth_mart8-title {
        font-size: 28px;
        text-align: center;
    }
    .dth_mart8-desc {
        text-align: center;
        margin: 10px auto 25px auto;
    }
    .dth_mart8-img {
        max-width: 350px;
        margin-top: 20px;
    }
    .dth_mart8-left {
        text-align: center;
    }
}

/* ===== Extra Small Devices (Mobile ≤ 576px) ===== */
@media (max-width: 576px) {
    .dth_mart8-con {
        padding: 25px;
    }
    .dth_mart8-title {
        font-size: 26px;
        text-align: center;
    }
    .dth_mart8-desc {
        font-size: 15px;
        text-align: left;
        margin: 10px auto 20px auto;
    }
    .dth_mart8-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
    .dth_mart8-img {
        max-width: 300px;
        margin-top: 25px;
    }
}

/* ===== Large Devices (993px – 1200px) ===== */
@media (min-width: 993px) and (max-width: 1200px) {
    .dth_mart8-title {
        font-size: 30px;
    }
    .dth_mart8-img {
        max-width: 470px;
    }
}


/* ===== Footer Section (footer-con) ===== */
.footer-con {
    background: #1f1f1f;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 0;
}

/* Logo */
.footer-logo {
    width: 300px;
    object-fit: contain;
}

/* Left Text */
.footer-text {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

/* Support Column */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-address,
.footer-email {
    font-size: 15px;
    color: #dddddd;
}

.footer-social i {
    font-size: 18px;
    margin-right: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    color: #ff0099;
}

/* Right Column: CTA */
.footer-support-title {
    font-size: 40px;
    font-weight: 1000;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Phone + Call Now Button Box */
.footer-callbox {
    background: #d1cece;
    padding: 10px;
    border-radius: 40px;
    max-width: 350px;
    margin-left: auto;
    border: 2px solid #ffffff40;
}

.footer-phone {
    font-size: 30px;
    font-weight: 800;
    color: #9b00ff;
    padding-left: 10px;
}

.footer-call-btn {
    background: #ff00a8;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-call-btn:hover {
    background: #d6008b;
}

/* Divider */
.footer-divider {
    border-top: 1px solid #666;
    margin: 40px 0 20px;
}

/* Footer Bottom Text */
.footer-copy {
    font-size: 14px;
    color: #cccccc;
}

/* ===========================================================
   RESPONSIVE BREAKPOINTS FOR ALL DEVICES
   =========================================================== */

/* --- Extra Small Devices: max-width 480px --- */
@media (max-width: 480px) {
    .footer-con {
        padding: 35px 20px;
    }

    .footer-logo {
        width: 220px;
        margin: 0 auto;
    }

    .footer-support-title {
        font-size: 22px;
        text-align: center;
    }

    .footer-callbox {
        margin: 10px auto;
        max-width: 260px;
        padding: 8px;
    }

    .footer-phone {
        font-size: 18px;
        padding-left: 0;
    }

    .footer-call-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* --- Extra Small Devices max-width 576px --- */
@media (max-width: 576px) {
    .footer-support-title {
        font-size: 24px;
        text-align: center;
    }
    .footer-phone {
        font-size: 20px;
    }
    .footer-callbox {
        margin: 0 auto;
    }
    .footer-logo {
        width: 220px;
        margin: auto;
        justify-content: center;
    }
}



/* --- Small Devices (Tablets): 577px - 768px --- */
@media (min-width: 577px) and (max-width: 768px) {
    .footer-con {
        padding: 40px 30px;
    }

    .footer-logo {
        width: 260px;
    }

    .footer-support-title {
        font-size: 26px;
        text-align: left;
    }

    .footer-callbox {
        max-width: 300px;
        margin-left: 0;
    }
}



/* --- Medium Devices (Small Laptops): 769px - 992px --- */
@media (min-width: 769px) and (max-width: 992px) {
    .footer-support-title {
        font-size: 30px;
    }

    .footer-phone {
        font-size: 22px;
    }

    .footer-call-btn {
        padding: 10px 24px;
    }
}



/* --- Large Devices (Desktops): 993px - 1200px --- */
@media (min-width: 993px) and (max-width: 1200px) {
    .footer-support-title {
        font-size: 32px;
    }

    .footer-callbox {
        max-width: 330px;
    }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #eee;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #ccc;
  display: none;
}
.cookie-banner button {
  margin: 0 10px;
  padding: 8px 16px;
  cursor: pointer;
}