
/* header css */

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#ffffff;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.main-header{
    width:100%;
    background:#ffffff;
    padding:18px 0;
}

/* FLEX */
.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.logo img{
   height: 80px;
    width:auto;
    display:block;
}

/* =========================
   CALL BUTTON
========================= */

.header-call a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#e6009a;
    color:#ffffff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:3px;

    font-size:18px;
    font-weight:700;

    transition:0.3s ease;
}

/* WHITE ICON */

.header-call a i{
    color:#ffffff;
    font-size:18px;
}

/* HOVER */

.header-call a:hover{
    background:#c80086;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .header-flex{
        flex-direction:column;
        gap:15px;
    }

    .logo img{
        height:70px;
    }

    .header-call a{
        font-size:16px;
        padding:12px 20px;
    }

}



/*     slide */

/* =========================
   HERO SECTION
========================= */

.hero-section{
    width:100%;
    background:#24004a;
    padding:70px 0 40px;
}

/* FLEX */

.hero-flex{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

/* =========================
   LEFT SIDE
========================= */

.hero-left{
    width:50%;
    color:#ffffff;
}

.hero-left h1{
    font-size:48px;
    line-height:1.1;
    font-weight:600;
    margin-bottom:40px;
}

.hero-left h1 span{
    color:#e6009a;
}

.hero-left p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:50px;
    max-width:700px;
}



@media (max-width: 767px){

  .tataplay-offer{
    padding: 12px 0 !important;
  }

  .offer-container{
    display: flex;
    flex-direction: column;
    gap: 2px !important;
    padding: 0 12px;
  }

  .offer-left,
  .offer-right{
    width: 100% !important;
  }

  .offer-left{
    margin: 0 !important;
    padding: 0 !important;
  }

  .offer-left img{
    max-width: 220px;
    margin: 0 auto 2px !important;
    display: block;
  }

  .mobile-main-heading,
  .main-heading{
    font-size: 28px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    padding: 8px 10px !important;
    margin: 0 0 10px !important;
    text-align: center;
    color: #fff;
    background: #ff1493;
  }

  .offer-right{
    margin: -4px 0 0 0 !important;
    padding: 0 !important;
  }

  .offer-right h2{
    font-size: 34px !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
  }

  .price-box.custom-points{
    margin: 0 !important;
    padding: 0 !important;
  }

  .price-box.custom-points div{
    font-size: 22px !important;
    line-height: 1.45 !important;
    margin: 0 0 8px !important;
  }

  .price-box.custom-points div:last-child{
    margin-bottom: 0 !important;
  }

  .book-now-btn{
    margin-top: 12px !important;
  }
}









/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 60px;
    margin-bottom:60px;
}

.feature-item{
    font-size:20px;
    font-weight:700;
}

/* CALL BUTTON */

.hero-call-btn a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#e6009a;
    color:#ffffff;

    text-decoration:none;

    padding:18px 30px;

    border-radius:4px;

    font-size:18px;
    font-weight:700;

    transition:0.3s ease;
}

.hero-call-btn a i{
    color:#ffffff;
}

.hero-call-btn a:hover{
    background:#cb0087;
}

/* =========================
   FORM BOX
========================= */

.hero-form-box{

    width:42%;

    background:#f5f5f5;

    padding:40px;

    border-radius:16px;
}

.hero-form-box h2{
    font-size:28px;
    line-height:1.4;
    text-align:center;
    color:#071b3b;
    margin-bottom:25px;
    font-weight:800;
}

.hero-form-box p{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:35px;
    font-weight:600;
}

/* FORM */

.hero-form-box form{
    width:100%;
}

.hero-form-box input{

    width:100%;

    height:62px;

    margin-bottom:25px;

    padding:0 18px;

    border:1px solid #dddddd;

    background:#ffffff;

    font-size:16px;

    outline:none;
}

.hero-form-box input::placeholder{
    color:#bbbbbb;
    font-weight:600;
}

/* BUTTON */

.hero-form-box button{

    width:100%;

    height:64px;

    border:none;

    background:#e6009a;

    color:#ffffff;

    font-size:20px;

    font-weight:700;

    border-radius:10px;

    cursor:pointer;

    transition:0.3s ease;
}

.hero-form-box button:hover{
    background:#cb0087;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-flex{
        flex-direction:column;
    }

    .hero-left,
    .hero-form-box{
        width:100%;
    }

    .hero-left h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:50px 0;
    }

    .hero-left h1{
        font-size:34px;
    }

    .hero-left p{
        font-size:17px;
    }

    .feature-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .hero-form-box{
        padding:30px 20px;
    }

    .hero-form-box h2{
        font-size:24px;
    }

}


/*  price plan */

/* =========================
   PLAN SECTION
========================= */

.plans-section{
    width:100%;
   
    padding:80px 0;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:600;
    color:#111827;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#e6009a;
}

.section-title p{
    font-size:28px;
    color:#333333;
}

/* GRID */

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.plan-card{
    background:#ffffff;
}

/* IMAGE */

.plan-image img{
    width:100%;
    display:block;
}

/* CONTENT */

.plan-content{
    padding:25px;
}

/* TITLE */

.plan-content h3{
    font-size:28px;
    line-height:1.4;
    color:#111827;
    margin-bottom:10px;
    font-weight:800;
}

.plan-content h3 span{
    display:block;
    color:#e6009a;
}

.plan-content h4{
    font-size:16px;
    font-style:italic;
    margin-bottom:20px;
    color:#222;
}

/* TEXT */

.small-text{
    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
    color:#444;
}

/* PRICE */

.price{
    font-size:24px;
    line-height:1.4;
    font-weight:800;
    color:#4c0099;
    margin-bottom:25px;
}

/* LIST */

.plan-content ul{
    list-style:none;
    margin-bottom:25px;
}

.plan-content ul li{
    font-size:16px;
    line-height:1.8;
    color:#333;
}

/* NOTE */

.note{
    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
    color:#444;
    font-weight:500;
}

/* BUTTONS */

.call-btn,
.main-btn{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:52px;

    text-decoration:none;

    border-radius:4px;

    font-size:18px;
    font-weight:700;

    transition:0.3s ease;
}

/* CALL BUTTON */

.call-btn{
    background:#e6009a;
    color:#ffffff;
    margin-bottom:18px;
}

.call-btn:hover{
    background:#cb0087;
}

/* MAIN BUTTON */

.main-btn{
    background:#e6009a;
    color:#ffffff;
}

.main-btn:hover{
    background:#cb0087;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .plans-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:42px;
    }

    .section-title p{
        font-size:20px;
    }

}

@media(max-width:768px){

    .plans-section{
        padding:60px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
        line-height:1.6;
    }

    .plan-content{
        padding:20px;
    }

    .plan-content h3{
        font-size:24px;
    }

}

.note{
    display:flex;
    align-items:flex-start;
    gap:10px;

    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
    color:#444;
    font-weight:500;
}

/* BLUE ICON BOX */

.arrow-icon{
    width:20px;
    height:20px;

    background:#2d7fc1;

    border-radius:2px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    margin-top:3px;
}

/* WHITE ARROW */

.arrow-icon i{
    color:#ffffff;
    font-size:11px;
}

/* why choose us */

.why-choose {
  padding: 20px 16px 40px;
  background: #f3f3f3;
  font-family: 'Inter', sans-serif;
}

.why-choose .container {
  max-width: 1260px;
  margin: 0 auto;
}

.why-choose .section-header {
  text-align: center;
  margin-bottom: 26px;
}

.why-choose .section-header h2 {
   font-size:48px;
    font-weight:600;
    color:#111827;
    margin-bottom:20px;
}

.why-choose .section-header h2 span {
  color: #e40096;
}

.why-choose .section-header p {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #2f3542;
  line-height: 1.5;
}

.why-choose .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-choose .feature-card {
   min-height: 228px;
  border: 3px solid #c9c9c9;
  border-radius: 4px;
  padding: 32px 22px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, #efefef 0%, #e7e7e7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.why-choose .icon-box {
  width: 66px;
  height: 66px;
  border-radius: 4px;
  background: #e40096;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
}

.why-choose .icon-box svg {
  width: 31px;
  height: 31px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choose .feature-card h3 {
  font-size: clamp(1.45rem, 1.75vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
  color: #303030;
  margin: 0 0 10px;
}

.why-choose .feature-card p {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.55;
  color: #4c4c4c;
  margin: 0;
}

@media (max-width: 991px) {
  .why-choose .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-choose {
    padding: 24px 14px 2px;
  }

  .why-choose .section-header {
    margin-bottom: 22px;
  }

  .why-choose .section-header h2 {
    font-size: 2rem;
  }

  .why-choose .section-header p {
    font-size: 0.98rem;
  }

  .why-choose .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose .feature-card {
    min-height: auto;
    padding: 28px 18px 24px;
  }

  .why-choose .feature-card h3 {
    font-size: 1.7rem;
  }

  .why-choose .feature-card p {
    font-size: 0.98rem;
  }
}


/* unlimited */

/* =========================
   TV ENTERTAINMENT SECTION
========================= */

.tv-entertainment-area{
    width:100%;
    padding:70px 40px;
    background:#f3f3f3;
}

.tv-entertainment-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT SIDE */

.tv-content-wrapper{
    flex:1;
}

.tv-main-heading{
    font-size:48px;
    line-height:1.1;
    font-weight:600;
    color:#111827;
    margin-bottom:50px;
}

.tv-feature-box{
    margin-bottom:35px;
}

.tv-feature-title{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

.tv-feature-text{
    font-size:20px;
    color:#4b5563;
    line-height:1.6;
}

/* RIGHT IMAGE */

.tv-image-wrapper{
    flex:1;
    display:flex;
    justify-content:center;
}

.tv-image-wrapper img{
    width:100%;
    max-width:580px;
    display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .tv-entertainment-container{
        flex-direction:column;
        text-align:center;
        gap:24px;
    }

    .tv-main-heading{
        font-size:42px;
        margin-bottom:24px;
    }

    .tv-feature-box{
        margin-bottom:18px;
    }

    .tv-feature-title{
        font-size:22px;
        margin-bottom:6px;
    }

    .tv-feature-text{
        font-size:18px;
        line-height:1.45;
        margin:0;
    }

    .tv-image-wrapper{
        margin-top:0;
        padding-top:0;
    }

    .tv-image-wrapper img{
        max-width:420px;
    }
}

@media(max-width:576px){

    .tv-entertainment-area{
        padding:28px 16px;
    }

    .tv-entertainment-container{
        gap:16px;
    }

    .tv-main-heading{
        font-size:34px;
        line-height:1.15;
        margin-bottom:18px;
    }

    .tv-feature-box{
        margin-bottom:14px;
    }

    .tv-feature-box:last-child{
        margin-bottom:0;
    }

    .tv-feature-title{
        font-size:20px;
        margin-bottom:4px;
    }

    .tv-feature-text{
        font-size:17px;
        line-height:1.4;
    }

    .tv-image-wrapper{
        margin-top:4px;
    }

    .tv-image-wrapper img{
        max-width:300px;
    }
}

/* contact form */

/* =========================
   EXACT THIN FORM STYLE
========================= */

.tpdth-form-section{
    
    padding:70px 0 40px;
    font-family:Arial, sans-serif;
}

.tpdth-form-container{
    width:50%;
    margin:auto;
    text-align:center;
}

/* HEADING */

.tpdth-form-heading{
    font-size:30px;
    line-height:1.3;
    font-weight:600;
    color:#21004b;
    margin:0;
}

/* SUBTITLE */

.tpdth-form-subheading{
    font-size:14px;
    color:#7d7d7d;
    font-weight:700;
    margin-top:22px;
    margin-bottom:42px;
}

/* INPUT BOX */

.tpdth-input-field{
    margin-bottom:26px;
}

.tpdth-input-field input{
    width:100%;
    height:48px;   /* thin box */
    border:1px solid #dddddd;
    background:#f8f8f8;
    padding:0 14px;
    font-size:14px;
    font-weight:600;
    outline:none;
    border-radius:0;
}

.tpdth-input-field input::placeholder{
    color:#c3bcbc;
    font-weight:700;
    font-size:13px;
}

/* BUTTON */

.tpdth-submit-button{
    width:100%;
    height:45px;   /* thin button */
    border:none;
    border-radius:8px;
    background:linear-gradient(to right,#ff00aa,#d6008f);
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .tpdth-form-container{
        width:92%;
    }

    .tpdth-form-heading{
        font-size:24px;
    }

    .tpdth-form-subheading{
        font-size:13px;
    }
}


/* whatsapp */

/* ============================================
   WhatsApp Floating Button — Right Side
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  background: #25D366;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  cursor: pointer;

  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
  user-select: none;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}

.wa-float:active {
  transform: scale(0.97);
}

/* Optional: hide label on small screens, show icon only */
@media (max-width: 480px) {
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 13px;
    border-radius: 50%;
  }
}


/* slider before */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.tataplay-offer{
    width:100%;
    background:#5B2EA6;
    padding:30px 5%;
    overflow:hidden;
    font-family:Arial, sans-serif;
}

/* MAIN LAYOUT */

.offer-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
}

/* LEFT SIDE IMAGE */

.offer-left{
    width:55%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:0;
}

.offer-left img{
    width:80%;
    max-width:720px;
    display:block;
    transform:none;
}

/* RIGHT SIDE */

.offer-right{
    width:45%;
    color:#fff;
    padding-top:20px;
}

/* ANIMATED LOGO */

.logo-title h1{
    font-size:48px;
    font-weight:900;
    line-height:1;
    margin-bottom:18px;
    letter-spacing:1px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* TATA */

.logo-title .white{
    color:#fff;
    position:relative;
    animation:glowWhite 2s infinite alternate;
}

/* PLAY */

.logo-title .pink{
    color:#ff008c;
    position:relative;
    animation:glowPink 1.5s infinite alternate;
}

/* WHITE GLOW */

@keyframes glowWhite{
    0%{
        text-shadow:
        0 0 5px rgba(255,255,255,0.4),
        0 0 10px rgba(255,255,255,0.3);
        transform:scale(1);
    }

    100%{
        text-shadow:
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.6);
        transform:scale(1.03);
    }
}

/* PINK GLOW */

@keyframes glowPink{
    0%{
        text-shadow:
        0 0 5px rgba(255,0,140,0.5),
        0 0 10px rgba(255,0,140,0.4);
        transform:translateY(0px);
    }

    100%{
        text-shadow:
        0 0 12px rgba(255,0,140,1),
        0 0 25px rgba(255,0,140,0.8);
        transform:translateY(-2px);
    }
}

/* MAIN HEADING */

.main-heading{
    display:inline-block;
    background:#ff008c;
    color:#fff;
    padding:10px 22px;
    font-size:24px;
    font-weight:700;
    margin-bottom:14px;
    border-radius:2px;
}

.offer-right h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:28px;
    line-height:1.2;
}

/* PRICE BOX */

.price-box{
    padding:10px 0 0;
    max-width:560px;
}

/* SIMPLE POINT TEXT */

.custom-points{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.custom-points div{
    font-size:20px;
    color:#fff;
    font-weight:500;
    line-height:1.5;
}

.price-tag{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    background:#ff008c;
    color:#fff;
    padding:8px 24px;
    font-size:28px;
    font-weight:800;
    border-radius:4px;
    white-space:nowrap;
}

/* LIST */

.price-box ul{
    list-style:none;
}

.price-box ul li{
    font-size:18px;
    margin-bottom:14px;
    position:relative;
    padding-left:28px;
    line-height:1.5;
}

.price-box ul li::before{
    content:">";
    position:absolute;
    left:0;
    top:0;
    color:#ff008c;
    font-size:24px;
    font-weight:900;
}

/* DEALER TEXT */

.dealer-text{
    text-align:center;
    font-size:22px;
    font-weight:700;
    margin-top:20px;
}

/* BOOK NOW BUTTON */

.book-now-btn{
    display:inline-block;
    margin-top:18px;
    margin-left:-100px;
    background:#ff008c;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:6px;
    font-weight:600;
    font-size:18px;
    transition:0.3s ease;
}

.book-now-btn:hover{
    background:#ff008c;
}

@media(max-width:991px){
    .book-now-btn{
        margin-left:0;
    }
}

/* MOBILE */

@media(max-width:991px){

    .offer-container{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .offer-left,
    .offer-right{
        width:100%;
    }

    .offer-left{
        margin-bottom:0;
    }

    .offer-left img{
        max-width:420px;
        width:100%;
    }

    .logo-title h1{
        font-size:36px;
        justify-content:center;
    }

    .main-heading{
        font-size:20px;
        padding:10px 18px;
    }

    .offer-right h2{
        font-size:28px;
    }

    .price-box{
        padding:32px 20px 18px;
        margin:0 auto;
    }

    .price-tag{
        font-size:22px;
        padding:8px 18px;
    }

    .price-box ul li{
        font-size:16px;
    }

    .dealer-text{
        font-size:18px;
    }

    .custom-points div{
        font-size:18px;
    }
}


.mobile-main-heading{
    display:none;
}

@media(max-width:991px){
    .offer-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .mobile-main-heading{
        display:inline-block;
        order:1;
        background:#ff008c;
        color:#fff;
        padding:10px 18px;
        font-size:20px;
        font-weight:700;
        margin-bottom:15px;
        border-radius:2px;
    }

    .offer-left{
        order:2;
    }

    .offer-right{
        order:3;
    }

    .offer-right .main-heading{
        display:none;
    }
}


@media(max-width:991px){
    .offer-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .mobile-main-heading{
        display:inline-block;
        order:1;
        background:#ff008c;
        color:#fff;
        padding:10px 18px;
        font-size:20px;
        font-weight:700;
        margin-bottom:15px;
        border-radius:2px;
    }

    .offer-left{ order:2; }
    .offer-right{ order:3; }
    .book-now-btn{
        order:4;
        margin:22px auto 0;
    }

    .offer-right .main-heading{
        display:none;
    }
}



.mobile-main-heading{
    display:none;
}

.mobile-call-btn{
    display:none;
}

@media(max-width:991px){
    .offer-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .mobile-main-heading{
        display:inline-block;
        order:1;
        background:#ff008c;
        color:#fff;
        padding:10px 18px;
        font-size:20px;
        font-weight:700;
        margin-bottom:15px;
        border-radius:2px;
    }

    .offer-left{
        order:2;
    }

    .offer-right{
        order:3;
    }

    .offer-right .main-heading{
        display:none;
    }

    .desktop-call-btn{
        display:none;
    }

    .mobile-call-btn{
        display:inline-block;
        margin:22px auto 0;
    }
}


/*       certificate css */

.responsive-image-only-section{
  width:100%;
  padding:40px 20px;
}

.responsive-image-only-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.responsive-image-only-container img{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:16px;
}

@media (max-width: 576px){
  .responsive-image-only-section{
    padding:20px 12px;
  }

  .responsive-image-only-container img{
    border-radius:10px;
  }
}


/*  footer */

.custom-white-footer{
  width:100%;
  background:#ffffff;
  padding:40px 20px;
  border-top:1px solid #e5e7eb;
}

.custom-white-footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:50px;
}

.custom-white-footer-left,
.custom-white-footer-right{
  flex:1;
}

.custom-white-footer-logo{
  max-width:250px;
  height:auto;
  display:block;
  margin-bottom:14px;
}

.custom-white-footer-text{
  font-size:15px;
  line-height:1.7;
  color:#4b5563;
  max-width:420px;
  margin:0;
}

.custom-white-footer-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:16px;
  line-height:1.7;
  color:#111827;
  margin-bottom:14px;
}

.custom-white-footer-item:last-child{
  margin-bottom:0;
}

.custom-white-footer-icon{
  font-size:18px;
  line-height:1.2;
  flex-shrink:0;
}

@media (max-width: 767px){
  .custom-white-footer{
    padding:28px 16px;
  }

  .custom-white-footer-container{
    flex-direction:column;
    gap:24px;
  }

  .custom-white-footer-logo{
    max-width:250px;
    margin-bottom:10px;
  }

  .custom-white-footer-text{
    font-size:14px;
    line-height:1.6;
    max-width:100%;
  }

  .custom-white-footer-item{
    font-size:15px;
    line-height:1.6;
    margin-bottom:10px;
  }

  .custom-white-footer-icon{
    font-size:16px;
  }
}


.custom-white-footer-link{
  color:#111827;
  text-decoration:none;
}

.custom-white-footer-link:hover{
  text-decoration:underline;
}





/* popup form css */

.dth-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
}

.dth-popup-box{
  width:100%;
  max-width:560px;
  background:#ffffff;
  position:relative;
  box-shadow:0 15px 45px rgba(0,0,0,0.25);
  overflow:hidden;
}

.dth-popup-ribbon{
  background:#ff1493;
  color:#ffffff;
  text-align:center;
  font-size:20px;
  font-weight:700;
  padding:18px 50px 18px 20px;
  line-height:1.3;
}

.dth-popup-content{
  padding:34px 28px 30px;
  text-align:center;
}

.dth-popup-content h2{
  font-size:22px;
  line-height:1.45;
  color:#222222;
  font-weight:600;
  margin:0 0 24px;
}

.dth-popup-line{
  width:85%;
  height:1px;
  background:#333333;
  margin:0 auto 28px;
}

.dth-popup-label{
  font-size:16px;
  color:#333333;
  margin:0 0 18px;
}

.dth-popup-form input{
  width:100%;
  height:54px;
  border:1px solid #dddddd;
  padding:0 16px;
  font-size:16px;
  color:#333333;
  outline:none;
  margin-bottom:18px;
  box-sizing:border-box;
}

.dth-popup-form button{
  width:100%;
  height:54px;
  border:none;
  background:#ff1493;
  color:#ffffff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.dth-popup-note{
  font-size:16px;
  color:#333333;
  margin:28px 0 0;
  line-height:1.6;
}

.dth-popup-close{
  position:absolute;
  top:10px;
  right:12px;
  width:34px;
  height:34px;
  border:none;
  background:#ffffff;
  color:#333333;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  border-radius:50%;
  z-index:2;
}

@media (max-width: 767px){
  .dth-popup-overlay{
    padding:12px;
  }

  .dth-popup-box{
    max-width:100%;
  }

  .dth-popup-ribbon{
    font-size:18px;
    padding:15px 42px 15px 14px;
  }

  .dth-popup-content{
    padding:24px 18px 24px;
  }

  .dth-popup-content h2{
    font-size:18px;
    margin-bottom:18px;
  }

  .dth-popup-line{
    width:100%;
    margin-bottom:20px;
  }

  .dth-popup-label{
    font-size:15px;
    margin-bottom:14px;
  }

  .dth-popup-form input{
    height:48px;
    font-size:15px;
    margin-bottom:14px;
  }

  .dth-popup-form button{
    height:48px;
    font-size:16px;
  }

  .dth-popup-note{
    font-size:14px;
    margin-top:20px;
  }

  .dth-popup-close{
    top:8px;
    right:8px;
    width:30px;
    height:30px;
    font-size:24px;
  }
}