
    body {
        margin: 0;
        padding: 0;
        background: #07122B;
        font-family: Arial, sans-serif;
        text-align: center;
    }

    h1 {
    color: white;
    margin-top: 20px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    }

    h2 {
    color: #ffe448;;
    margin-top: -6px;
   font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    }

    .video-section {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

   .video-box {
    width: 55%;
    max-width: 1000px;
    }
    
    .video-box-1 {
        width: 92%;
        max-width: 1000px;
        background: #000;
        padding: 12px;
        border-radius: 14px;
    }

    iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 14px;
    }

    .bottom-bar {
        width: 100%;
        background: #85cef175;
        padding: 18px 0;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 50px;
        font-size: 22px;
        font-weight: 700;
    }

    .check {
        color: #3fb600;
        font-size: 20px;
    }

    @media(max-width: 768px) {
        h1 { font-size: 26px; }
        h2 { font-size: 15px; }
        iframe { height: 300px; }
        .bottom-bar { 
            /*flex-direction: column; */
                  gap: 5px;
        font-size: 14px;
    }
        }
    
@media(max-width: 768px) {    
 .video-box {
    width: 87%!important;
    }
}
 
/* JOIN BUTTON AREA */
/* JOIN STRIP */

@keyframes slideBG {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
    
}

.join-strip {
    width: 78%;
    margin: 0 auto;
    background: linear-gradient(90deg, #59ea6f, #f258ff);
    padding: 19px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
}
}

.join-strip .sub {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

/* GRID */
.video-grid {
    width: 88%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

/* VIDEO CARD */
.video-box {
    background: #000000;
    padding: 8px;
    border-radius: 12px;
}

/* VIDEO */
.video-wrap {
    position: relative;
}

.vdo {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    background: #000;
    object-fit: cover;
}


@media(max-width: 768px) {
    .video-grid {
    grid-template-columns: repeat(1, 1fr);
        gap: 0px;
}
}

/* PLAY BUTTON EXACT IMAGE STYLE */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    cursor: pointer;

    /* center triangle */
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 26px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
}




/*join btn slider effect*/

.join-btn {
  width: 87%;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background-color: #0fc614; /* Yellow background */
  color: #000;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden; /* Shine effect ko button ke andar rakhne ke liye */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.join-btn:hover {
  transform: scale(1.05); /* Hover karne par halka bada hoga */
}

.limited-offer {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}

/* Slider / Shine Effect */
.join-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start position thoda aur peeche */
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.7) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg); /* Tirchi line ke liye */
  animation: shine 5s infinite; /* Har 3 second mein repeat hoga */
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}


/*niche ka strip jisme log play buttonbe leke baithe hai */


.proof-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop pe 3 columns */
  gap: 15px; /* Boxes ke beech ka gap */
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-box {
  border: 2px solid #ffe448; /* Wahi patla yellow border */
  border-radius: 15px; /* Rounded corners */
  overflow: hidden; /* Image ko border ke andar rakhne ke liye */
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.proof-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hover Effect: Thoda sa uthne wala effect */
.proof-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Mobile Responsive: Choti screen par 1 ya 2 box dikhenge */
@media (max-width: 768px) {
  .proof-container {
    grid-template-columns: repeat(2, 1fr); /* Tablet pe 2 columns */
  }
}

@media (max-width: 480px) {
  .proof-container {
    grid-template-columns: repeat(1, 1fr); /* Mobile pe 1 column */
  }
}

 /*suniye hanare review wala section */
 
 /* Heading Style */
.section-title {
  text-align: center;
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Arial', sans-serif;
}

/* Grid Layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop pe 3 barabar columns */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Screenshot Frame - Ise Equal rakhne ke liye */
.screenshot-frame {
  border: 2px solid #ffe448; /* Patla Yellow Border */
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  /* Aspect Ratio se height hamesha equal rahegi */
  aspect-ratio: 9 / 16; /* Mobile screenshot standard size */
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ko frame ke hisab se fit karega bina stretch kiye */
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr); /* Mobile pe ek ke niche ek */
    gap: 25px;
  }
  
  .section-title {
    font-size: 30px;
  }
}



/*faq section start here */

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: sans-serif;
}

.faq-item {
  border: 2px solid #ffe448; /* Patla Yellow Border */
  margin-bottom: 12px;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  position: relative;
}

.faq-question .icon {
  margin-right: 15px;
  font-size: 22px;
  color: #0fc614;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Answer Area - Shuru me Hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #0c121d; 
  color: #ffffff;
  /* 0.5s speed se upar-niche slide hoga */
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
    text-align: left;
  padding: 20px;
  line-height: 1.6;
  font-size: 15px;
}

/* Active State Styles */
.faq-item.active {
  border: 2px solid #ffe448;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Content ke hisab se automatic adjust hoga */
}

.faq-item.active .faq-question {
  background-color: #f0f0f0;
}


/*footer section css/*/

/* Footer Container */
.site-footer {
  background-color: #0c121d; /* Dark Background */
  padding: 50px 20px; /* Uper-niche se gap */
  text-align: center;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-top: 60px; /* FAQ section se doori */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Patli line separation ke liye */
}

/* Links Styling */
.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0fc614; /* Hover karne par yellow hoga */
}

/* Copyright Text */
.copyright {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.copyright b, .copyright strong {
  color: #0fc614;
}

/* Facebook Disclaimer Box */
.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.6;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .footer-links a {
    /*display: block;*/
    /* Mobile pe links ek ke niche ek aayenge */
    margin: 10px 0;
  }
  .site-footer {
    padding: 30px 15px;
    margin-top: 40px;
  }
}

    
      .video-container {
        width: 100%;
        margin: auto;
        position: relative;
        background: #000;
    }

    video {
        width: 100%;
        display: block;
    }

    .controls {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0px;
        /*background: #111;*/
        /*border-top: 1px solid #333;*/
    }

    button {
        padding: 6px 12px;
        font-size: 16px;
        cursor: pointer;
        background: #222;
        color: white;
        border:1px solid #211f15;
        border-radius: 5px;
    }

    input[type="range"] {
        flex: 1;
    }
    
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-timeline {
    display: none;
}
