*{
    margin: 0;
    padding: 0;
}
h1{
    font-size: 30px;
    color: #000;
    font-weight: 700;
    font-family: 'montserrat';
}
h2{
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-family: 'montserrat';
}
h3{
    font-size: 25px;
    color: #000;
    font-weight: 700;
    font-family: 'montserrat';
}
h4{
    font-size: 25px;
    color: #000;
    font-weight: 700;
    font-family: 'montserrat';
}
.qq{
        font-size: 30px;
    color: #000;
    text-align: center;
    font-weight: 700;
}
p{
    color: #000;
    font-size: 17px;
    font-weight: 400;
}
li{
    color: #000;
    font-size: 17px;
    font-weight: 400;
}
p{
    font-size: 17px;
    font-weight: 500;
}
/* ===== HEADER DESIGN ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Logo */
.logo img {
    height: 45px;
}

/* Right Section */
.right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-box {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buttons */
.btn {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

.login {
    background: linear-gradient(-180deg, #f72424 0%, #bb1c00 100%) !important;
    color: white;
}
.login:hover {
  color: #fff;
}
.signup:hover {
  color: #fff;
}

.signup {
    background: rgb(36, 58, 72) !important;
    color: white;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .right-section input {
        display: none;   /* Mobile me input hide */
    }

    .btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    .main-header {
        padding: 8px 15px;
    }
}
  /* .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(50deg, #063F9C 65%, #00AEEF 100%);
    color: white;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .logo img{
    width: 150px;
    height: 50px;
  } */
  .book {
    font-size: 0.8rem;
    color: white;
    margin-left: 3px;
  }
  
  /* .login-container {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
  }
   */
  .code {
    background: white;
    color: black;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 5px;
  }
  
.login-btn {
    background-image: linear-gradient(180deg, #F22421 0%, #BE1C02 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover Popup Effect */
.login-btn:hover {
    transform: scale(1.1);               /* Popup Zoom */
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);  /* Shadow lift */
}
  
  /* .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
  }
   */
.menu-bar {
   position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   background-image: linear-gradient(180deg, #5f7fdb 0, #0cddff 100%);
    color: white;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    align-items: center;
    padding: 5px;
    width: 100%;
    justify-content: center; 
    margin-top: 65px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    z-index: 999;
  }
  
  .menu-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
}
.menu-item {
    padding: 5px 15px;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-left: 1px solid #000;
    overflow: hidden;
    z-index: 1;            
    transition: color 0.3s ease-in-out;
}

/* Background Zoom Layer */
.menu-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #5578e1, #0ec0db);
    z-index: -1;           /* behind text */
    transform: scale(0);   /* start tiny */
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
    border-radius: 6px;
}

/* Hover: Zoom-in background */
.menu-item:hover::before {
    transform: scale(1);   /* Zoom effect */
}

/* Text color change on hover */
.menu-item:hover {
    color: #fff;
}

.hey{
    margin-top: 20px;
}
.claim{
    margin-top: 110px;
}
.play-btn {
    position: relative;
    background-color: #fff;
    color: #000;
    padding: 8px 8px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 1;
}

/* Rotating Colorful Border */
.play-btn::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 8px;
    background: conic-gradient(
        red, yellow, lime, cyan, blue, magenta, red
    );
    z-index: -1;
    animation: rotateBorder 2s linear infinite;
}

/* Inner area (white background clean) */
.play-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 5px;
    background: #fff;
    z-index: -1;
}

/* Hover effect */
.play-btn:hover {
    background-color: red;
    color: #000;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quick{
  margin-top: 10px;
  margin-bottom: 40px
}
/* .double-img2{
    margin-bottom: 10px;
} */
.ee{
  color: #fff;
  font-size: 20px;
}
.img2 .dbl-btn2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
   background-color: #000;
   padding-top: 5px;
   padding-bottom: 5px;
}
.glue{
    background-color: #000;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px;
}

.card{
    text-align: center;
    padding: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #000000;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 350px;
}
.card p{
  font-size: 15px;
}
.card:hover{
box-shadow: -3px -3px 8px 0px rgba(0,0,0,0.5);
}
.card img{
    margin-left: 120px;
}
.card b{
    font-size: 17px;
    font-weight: 700;
}
.gre{
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;
}
.go{
    text-align: center;
}
.go b{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.yeh:hover{
  box-shadow: -3px -3px 8px 0px rgba(0,0,0,0.5);
}
.yeh{
    text-align: center;
    border-style: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #000000;
    height: 420px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.yeh img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.cool{
    text-align: center;
    border-style: none;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    height: 450px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.cool b{
    font-size: 25px;
    color: #fff;
}
.cool p{
    font-size: 17px;
    color: #fff;
}
.cool img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.card2{
    text-align: center;
    padding: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #000000;
    height: 370px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-end-end-radius: 100px;
    border-bottom-left-radius: 100px;
}

.card2 b{
    font-size: 20px;
    font-weight: 700;
}
.card2:hover{
  box-shadow: -3px -3px 8px 0px rgba(0,0,0,0.5);
}
.card3:hover{
  box-shadow: -3px -3px 8px 0px rgba(0,0,0,0.5);
}
.card3{
    text-align: center;
    padding: 20px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #000000;
    height: 350px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card3 b{
    font-size: 20px;
    font-weight: 700;
}
/* faq start */
.faq-section {
      max-width: 1100px;
      margin: auto;
    }


    .faq-item {
      background: #fff;
      margin: 10px 0;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .faq-question {
      background: #063F9C;
      color: #fff;
      padding: 15px;
      cursor: pointer;
      font-size: 18px;
      position: relative;
      font-weight: 700;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 20px;
    }

    .faq-question.active::after {
      content: "-";
    }

    .faq-answer {
      display: none;
      padding: 15px;
      color: #333;
      line-height: 1.6;
      background: #f1f9ff;
    }
/* faq end */

.dd{
  border: 1px solid #000;
  border-bottom: 1px solid #000;
  border-radius: 10px;
  margin-left: 150px;
  width: 80%;
}
.links{
    font-size: 19px;
    text-align: center;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
}
.footer-links{
    margin-right: 15px;
    font-weight: bold;
    text-align: center;
  }
.footer-links a{
    margin-right: 15px;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    color: #000;

  }
    .now{
        background-color: #0B162A;
        color: #fff;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
    }
    .now b{
        color: #fff;
        text-align: center !important;
    }
    .now p{
        color: #fff;
        text-align: center !important;
    }
    .you{
        width: 70px;
    }
@media only screen and (max-width: 476px){
.img1 .dbl-btn{ 
  margin-top: 110px;
}
.double-img .img1{
  width: 99%;
}
.double-img{
  height: 120px;
}
.dd{
    margin-left: 0px;
    width: 100%;
}
.faq-section{
    width: 100%;
    padding: 10px;
}
.card2{
    height: 350px;
}
.vip{
    margin-top: 20px;
}
h1{
    font-size: 25px;
    text-align: center;
}
p{
    text-align: justify;
}
li{
    text-align: justify;
}
.menu-bar{
  margin-top: 60px;
}
.menu-item {
  padding: 5px 40px;
  padding-left: 5px;
  padding-right: 90px;
  text-align: center;
  font-size: 13px;
}
.claim{
  margin-top: 100px;
}
.card{
  height: auto;
}
.card2{
  height: auto;
}
.card2 p{
    padding: 10px;
}
.card3{
  height: auto;
}
.yeh{
  height: auto;
  padding: 10px;
}
.cool{
  padding: 10px;
  height: auto;
}
.now{
  margin-bottom: 70px;
}
.float {
   bottom: 70px !important;
}
}
            /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    left: 10px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    color: white;
     text-decoration: none
  }
  .bb{
    color: #fff;
  }
  .bb i{
    font-size: 40px;
    padding-top: 5px;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 
  .hire{
    font-size: 14px;
    font-weight: 400;
  }
  .boss {
    background-image: linear-gradient(180deg, #243A48 20%, #172732 90%);
    display: none;
}
.net{
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; 
}
    .sad{
        text-align: center;
        padding-top: 2px;
    }
    .sad p{
        color: #fff;
        font-size: 14px;
        font-weight: bold;
    }
    .wee{
        background-image: linear-gradient(180deg, #192730 20%, #172732 90%);
        margin-top: -30px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    @media (max-width: 991px) {
  .boss {
    display: block; /* ya jo bhi display chahiye */
  }
}