/* header starts*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.top-header {
  width: 100%;
  background: #fff;
  padding: 18px 0;
}

.header-wrap {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo-area {
  width: 30%;
  padding-left: 40px;
}

.empty-area {
  width: 70%;
}

.logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .logo-area {
    width: 35%;
    padding-left: 25px;
  }

  .empty-area {
    width: 65%;
  }

  .logo-img {
    width: 150px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .top-header {
    padding: 14px 0;
  }

  .logo-area {
    width: 40%;
    padding-left: 15px;
  }

  .empty-area {
    width: 60%;
  }

  .logo-img {
    width: 120px;
  }
}

/* header end */


/* banner css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.hero-banner{
    background:#5b2ca3;
    padding:40px 20px;
    overflow:hidden;
}

.hero-container{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* LEFT SIDE */

.hero-left{
    width:48%;
    text-align:center;
}

.dth-image{
    width:100%;
    max-width:470px;
    height:auto;
    display:block;
    margin:0 auto;
}

.call-btn{
    display:inline-block;
    margin-top:25px;
    background:#ff0b86;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:5px;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.call-btn:hover{
    background:#e10074;
}

/* RIGHT SIDE */

.hero-right{
    width:52%;
    color:#fff;
}

.offer-badge{
    display:inline-block;
    background:#ff0b86;
    color:#fff;
    padding:10px 20px;
    font-size:20px;
    font-weight:700;
    border-radius:4px;
    margin-bottom:20px;
}

.hero-right h1{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.hero-right h1 span{
    color:#fff;
}

.hero-list{
    list-style:none;
}

.hero-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:14px;
    font-size:22px;
    line-height:1.5;
}

.hero-list li::before{
    content:"•";
    position:absolute;
    left:0;
    top:0;
    font-size:24px;
}

/* ===========================
      TABLET
=========================== */

@media (max-width:1024px){

.hero-container{
    gap:30px;
}

.hero-left,
.hero-right{
    width:50%;
}

.dth-image{
    max-width:380px;
}

.offer-badge{
    font-size:18px;
    padding:9px 18px;
}

.hero-right h1{
    font-size:34px;
}

.hero-list li{
    font-size:18px;
}

.call-btn{
    font-size:18px;
    padding:13px 28px;
}

}

/* ===========================
      MOBILE
=========================== */

@media (max-width:768px){

.hero-banner{
    padding:30px 15px;
}

.hero-container{
    flex-direction:column;
    text-align:center;
    gap:30px;
}

.hero-left,
.hero-right{
    width:100%;
}

.dth-image{
    max-width:300px;
}

.offer-badge{
    font-size:28px;
    font-weight:700;
    padding:10px 20px;   /* Less space */
    border-radius:6px;
}

.hero-right h1{
    font-size:28px;
    margin-bottom:15px;
}

.hero-list{
    max-width:320px;
    margin:0 auto;
    text-align:left;
}

.hero-list li{
    font-size:22px;
    margin-bottom:10px;
}

.call-btn{
   width:100%;
    max-width:340px;
    padding:10px 18px;   /* Less space */
    font-size:28px;      /* Bigger text */
    font-weight:700;
    line-height:1.2;
    border-radius:6px;
}

}


/*  pricing */


.tp-plan-section {
  padding: 60px 20px;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
}

.tp-plan-wrap {
  max-width: 1250px;
  margin: 0 auto;
}

.tp-plan-heading {
  text-align: center;
  margin-bottom: 50px;
}

.tp-plan-heading h2 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d2240;
  margin: 0 0 18px;
}

.tp-plan-heading h2 span {
  color: #ec0b8c;
}

.tp-plan-heading p {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.tp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tp-plan-card {
  background: transparent;
}

.tp-plan-image {
  width: 100%;
  height: 230px;
  background: #e8e8e8;
  overflow: hidden;
  margin-bottom: 28px;
}

.tp-plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-plan-content {
  padding: 0 6px;
}

.tp-plan-small {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.tp-plan-pink-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  color: #1c0452;
  margin: 0 0 8px;
}

.tp-plan-subtitle {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: #111;
  margin: 0 0 24px;
}

.tp-plan-main-title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  color: #111;
  margin: 0 0 14px;
}

.tp-plan-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 26px;
}

.tp-plan-price {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 900;
  color: #3513a8;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.tp-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-plan-list li {
  font-size: 18px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.tp-plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-weight: 700;
}

@media (max-width: 991px) {
  .tp-plan-heading h2 {
    font-size: 42px;
  }

  .tp-plan-heading p {
    font-size: 18px;
  }

  .tp-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tp-plan-section {
    padding: 45px 15px;
  }

  .tp-plan-heading {
    margin-bottom: 35px;
  }

  .tp-plan-heading h2 {
    font-size: 34px;
  }

  .tp-plan-heading p {
    font-size: 17px;
  }

  .tp-plan-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tp-plan-image {
    height: 200px;
  }

  .tp-plan-pink-title,
  .tp-plan-main-title {
    font-size: 28px;
  }

  .tp-plan-price {
    font-size: 23px;
  }
}

/* pricing end */

/* why choose */

.tp-feature-section {
  padding: 40px 20px 20px;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
}

.tp-feature-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.tp-feature-heading {
  text-align: center;
  margin-bottom: 34px;
}

.tp-feature-heading h2 {
  margin: 0 0 16px;
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #0d2240;
}

.tp-feature-heading h2 span {
  color: #ec0b8c;
}

.tp-feature-heading p {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: #333;
}

.tp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tp-feature-card {
  background: #f3f3f3;
  border: 2px solid #c9c9c9;
  text-align: center;
  padding: 32px 25px 28px;
  min-height: 260px;
}

.tp-feature-icon-box {
  width: 68px;
  height: 68px;
  background: #ec0b8c;
  margin: 0 auto 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.tp-feature-icon-box i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.tp-feature-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #202733;
}

.tp-feature-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4f57;
}

@media (max-width: 991px) {
  .tp-feature-heading h2 {
    font-size: 44px;
  }

  .tp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tp-feature-section {
    padding: 35px 15px 15px;
  }

  .tp-feature-heading {
    margin-bottom: 24px;
  }

  .tp-feature-heading h2 {
    font-size: 32px;
  }

  .tp-feature-heading p {
    font-size: 16px;
  }

  .tp-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-feature-card {
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .tp-feature-card h3 {
    font-size: 22px;
  }

  .tp-feature-card p {
    font-size: 16px;
  }
}

/* why choos end */


/* unlimited entertainment */

.tp-entertainment-section {
  padding: 30px 20px 40px;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
}

.tp-entertainment-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.tp-entertainment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tp-entertainment-left h2 {
  margin: 0 0 42px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  color: #0d2240;
}

.tp-entertainment-item {
  margin-bottom: 34px;
}

.tp-entertainment-item:last-child {
  margin-bottom: 0;
}

.tp-entertainment-item h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d2240;
}

.tp-entertainment-item p {
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
  color: #4b5563;
}

.tp-entertainment-right {
  display: flex;
  justify-content: flex-end;
}

.tp-entertainment-image-space {
  width: 100%;
  max-width: 570px;
  height: 390px;
  background: #dfe7ed;
}

.tp-entertainment-image-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .tp-entertainment-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .tp-entertainment-left h2 {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .tp-entertainment-item h3 {
    font-size: 24px;
  }

  .tp-entertainment-item p {
    font-size: 18px;
  }

  .tp-entertainment-right {
    justify-content: flex-start;
  }

  .tp-entertainment-image-space {
    max-width: 100%;
    height: 320px;
  }
}

@media (max-width: 767px) {
  .tp-entertainment-section {
    padding: 25px 15px 30px;
  }

  .tp-entertainment-left h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .tp-entertainment-item {
    margin-bottom: 26px;
  }

  .tp-entertainment-item h3 {
    font-size: 22px;
  }

  .tp-entertainment-item p {
    font-size: 16px;
    line-height: 1.5;
  }

  .tp-entertainment-image-space {
    height: 220px;
  }
}

/* unlimited entertainment */

/* contatc form */

.tp-contact-section {
  padding: 60px 20px 70px;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
}

.tp-contact-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.tp-contact-heading {
  text-align: center;
  margin-bottom: 38px;
}

.tp-contact-heading h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #1c0452;
}

.tp-contact-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #7a7a7a;
}

.tp-contact-form {
  width: 100%;
}

.tp-contact-field {
  margin-bottom: 26px;
}

.tp-contact-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #d5d5d5;
  background: #f3f3f3;
  padding: 0 14px;
  font-size: 16px;
  color: #222;
  outline: none;
  box-shadow: none;
}

.tp-contact-field input::placeholder {
  color: #b3b3b3;
  font-weight: 600;
}

.tp-contact-field input:focus {
  border-color: #ec0b8c;
}

.tp-contact-btn-wrap {
  margin-top: 8px;
}

.tp-contact-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff0aa8 0%, #d70093 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.tp-contact-btn:hover {
  opacity: 0.95;
}

@media (max-width: 767px) {
  .tp-contact-section {
    padding: 45px 15px 50px;
  }

  .tp-contact-heading h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .tp-contact-heading p {
    font-size: 16px;
  }

  .tp-contact-field {
    margin-bottom: 18px;
  }

  .tp-contact-field input {
    height: 46px;
    font-size: 15px;
  }

  .tp-contact-btn {
    font-size: 16px;
  }
}

/* contact form end */


/* certificate */

.tp-full-image-section {
  width: 100%;
  padding: 30px 20px;
  background: #f3f3f3;
}

.tp-full-image-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.tp-full-image-space {
  width: 100%;
  height: 620px;
  background: #d9d9d9;
  overflow: hidden;
  border-radius: 4px;
}

.tp-full-image-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* certificate end */


/* footer css */

.tp-footer-section {
  background: #ffffff;
  padding: 45px 20px;
  font-family: Arial, sans-serif;
}

.tp-footer-wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.tp-footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tp-footer-logo-box {
  width: 260px;
  margin-bottom: 20px;
}

.tp-footer-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}

.tp-footer-left p {
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

.tp-footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}

.tp-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tp-footer-contact-item i {
  font-size: 18px;
  color: #ec0b8c;
  line-height: 1.4;
  margin-top: 2px;
}

.tp-footer-contact-item span {
  font-size: 17px;
  line-height: 1.6;
  color: #1f2937;
}

@media (max-width: 991px) {
  .tp-footer-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tp-footer-right {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .tp-footer-section {
    padding: 35px 15px;
  }

  .tp-footer-logo-box {
    width: 220px;
    margin-bottom: 16px;
  }

  .tp-footer-left p,
  .tp-footer-contact-item span {
    font-size: 15px;
  }

  .tp-footer-contact-item i {
    font-size: 17px;
  }
}

.tp-footer-contact-item a {
  color: #1f2937;
  text-decoration: none;
}

.tp-footer-contact-item a:hover {
  color: #ec0b8c;
}

/* footer css end */



/* whatsapp *  /
/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .whatsapp-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        right: 10px;
        bottom: 10px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .whatsapp-text {
        display: none; /* Show only icon on very small screens */
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

/* popup css */

/*=============================
    POPUP OVERLAY
==============================*/

.offer-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.70);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:9999;
}

/*=============================
    POPUP BOX
==============================*/

.offer-popup{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    animation:popupAnimation .35s ease;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

/*=============================
    ANIMATION
==============================*/

@keyframes popupAnimation{

    from{
        opacity:0;
        transform:translateY(35px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/*=============================
    CLOSE BUTTON
==============================*/

.popup-close{
    position:absolute;
    right:15px;
    top:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#333;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}

.popup-close:hover{
    background:#0056d6;
    color:#fff;
}

/*=============================
    HEADER
==============================*/

.popup-header{
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    text-align:center;
    padding:30px 20px;
    color:#fff;
}

.popup-header h3{
    margin:0;
    font-size:30px;
    font-weight:700;
}

.popup-header p{
    margin-top:8px;
    font-size:18px;
}

/*=============================
    BODY
==============================*/

.popup-body{
    padding:35px;
}

.popup-body h2{
    text-align:center;
    font-size:30px;
    color:#222;
    line-height:1.4;
    margin-bottom:18px;
}

.popup-body h2 span{
    color:#0d6efd;
}

.popup-desc{
    text-align:center;
    color:#666;
    font-size:17px;
    margin-bottom:25px;
    line-height:1.6;
}

/*=============================
    INPUT
==============================*/

.popup-body input{
    width:100%;
    height:56px;
    padding:0 18px;
    border:2px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
    margin-bottom:18px;
    box-sizing:border-box;
}

.popup-body input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

/*=============================
    BUTTON
==============================*/

.popup-body button{
    width:100%;
    height:56px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.popup-body button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(13,110,253,.25);
}

/*=============================
    FOOTER NOTE
==============================*/

.popup-note{
    text-align:center;
    color:#777;
    font-size:15px;
    margin-top:20px;
    line-height:1.6;
}

/*=============================
    MOBILE
==============================*/

@media(max-width:768px){

    .offer-popup{
        max-width:95%;
    }

    .popup-header{
        padding:25px 15px;
    }

    .popup-header h3{
        font-size:24px;
    }

    .popup-header p{
        font-size:16px;
    }

    .popup-body{
        padding:25px 20px;
    }

    .popup-body h2{
        font-size:24px;
    }

    .popup-desc{
        font-size:15px;
    }

    .popup-body input,
    .popup-body button{
        height:52px;
    }

}

@media(max-width:480px){

    .popup-body h2{
        font-size:21px;
    }

    .popup-header h3{
        font-size:21px;
    }

    .popup-close{
        width:36px;
        height:36px;
        font-size:24px;
    }

}