  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }


.download_status {
  width: 60%;
  margin: 10px auto;
  clear: both;
  background-color: rgba(54,0,255,0.9);
  border: solid 1px #150064;
  padding: 10px;
  text-decoration: none;
  border-radius: 10px;
}
.download_status .download_status_in {
  width: 100%;
  text-align: center;
  padding: 16px;
}
.download_status a {
  width: 100%; 
  text-decoration: none;
  color: #fff;
  font-size: 26px;
  line-height: 46px; 
}


/*NAV START*/
    
nav{
  
  z-index: 9;
  width: 100%;
  top:0;
  
  background: #FF8000;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px; 
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
.wrapper .logo img {
    height: 70px; 
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: 3px;
  transition: all 0.3s ease; 
  cursor: pointer;

}
.nav-links li a:hover{
  background: #FFEA00;
  color: #ff0000;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links .mobile-item1{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #f2f2f2; 
  width: 180px;
  line-height: 45px;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links .drop-menu li a { color: #333;} 
.nav-links .drop-menu li:hover {
  background-color: none;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 54px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}

.nav-links li:hover .mega-box1{
  transition: all 0.3s ease;
  top: 40px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}
 
.drop-menu li a{
  width: 100%;
  display: block;
  font-weight: 400;
  border-radius: 0px;
  columns: #333;
}
.drop-menu li {
  width: 100%;
  display: block; 
  font-weight: 400;
  border-radius: 0px;
  columns: #333;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 75px;
  opacity: 0;
  visibility: hidden;
}
.mega-box1{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 75px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #f2f2f2;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #333;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #FF4E00;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  
  #showMegaOne:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaTwo:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaThree:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFour:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFive:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaSix:checked ~ .mega-box{
    max-height: 100%;
  }

   
  
  #showDropOne:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropTwo:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropThree:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropFour:checked ~ .drop-menu{
    max-height: 100%;
  }
  #showDropFive:checked ~ .drop-menu{
    max-height: 100%;
  }
 #showDropSix:checked ~ .drop-menu{
    max-height: 100%;
  }

  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
     
  }
  .nav-links .mobile-item:hover{
    background: #FFCC00;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box1{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box1 .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box1 .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .mega-box1 .content .row:nth-child(1),
  .mega-box1 .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
/*NAV END */

.home_main_img {
    width: 100%;  margin: 3% auto; border-radius: 30px; overflow: hidden;
}
.home_main_img img {
    border-radius: 20px;
}




.footer {
    width: 100%;
    background: #144E59;
    clear: both;
    padding: 30px 0px;
}
.footer .pagelayout_in {
    width: 90%;
    margin: 50px auto;
}
.footer h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer ul {
  margin: 0px;
}
.footer ul li {
  list-style:disc;
  line-height: 40px;
  color: #f2f2f2;
  margin-left: 16px;
  font-size: 16px;
} 
.footer ul li a {
  width: 100%;
  list-style: none;
  line-height: 30px;
  color: #f2f2f2;
  font-size: 16px;
  text-decoration: none;
  padding:16px 16px 16px 0px;
}
.footer ul li a:hover { 
  color: red;
}
.footer p {
  
  line-height: 30px;
  color: #f2f2f2;
  font-size: 16px;
}
.copyrights {
  width: 100%;
  text-align: center;
  font-size: 14px;
  background: #03333C;
  color:#55B7C9 ;
  padding: 20px 10px;
}
.copyrights a {
  color:#55B7C9 ;
  padding: 20px 10px;
}

.pagelayout {
    width: 100%;
    clear: both; 
}
.pagelayout .pagelayout_in {
    width: 90%;
    margin: 50px auto;
}
.pagelayout_in {
    width: 90%;
    margin: 50px auto;
}
.card_top_margin {
  clear: both;
  height: 20px;
}



.home_grid_04 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* Adjust the spacing between columns */
}
 


.grid_04_item {
  width: 100%;
  width: 0px auto;  
  text-align: center; 
  overflow: hidden;
}  
.grid_04_item img {
  width: 100%;
  border-radius: 10px;
 }

/*Animation Card Stard*/


 .srss_card {
      width: 100%;
      height:450px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      position: relative;
      transition: 0.4s ease;
    }

    .srss_card .front {
      position: absolute;
      width: 100%;
      height: 100%;
      color: #fff;
      text-align: center;
      transition: 0.4s ease;
    }

    .srss_card .front img {
      width: 100%;
      height:100%;
      object-fit: cover;
      position:absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
    }

    .srss_card .front h4 {
  
      width: 90%;
      margin: 130% auto 10% auto;
      font-size: 20px;
      z-index: 99999999;
      position:relative;
      background-color: rgba(8,18,97,0.7);
      border-radius: 6px;
      padding: 10px;

    }
    
    .srss_card:hover .front  h4 {
      display: none;
    }

    .srss_card .back {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(8,18,97,0.7);
      padding: 20px;
      transition: 0.4s ease;
      overflow-y: auto;
    }

 /*   .card:hover .front {
      top: -100%;
    }
*/
    .srss_card:hover .back {
      top: 0;
    }

    .srss_card .back h4 {
      margin-bottom: 10px;
      color: #fff;
      margin-top: 50%;
      font-size: 24px;
    }

    .srss_card .back p {
      font-size: 18px;
      line-height: 30px;
      color: #fff;
      margin-bottom: 15px;
    }

    .srss_card .image-list {
      display: flex;
      gap: 8px;
      overflow-x: auto;
    }

    .srss_card .image-list img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 5px;
    }

    /*Animation Card END*/


    .srss_title {
    font-size:30px;
    line-height: 46px;
    font-weight:600;
    color:#4F00B0;
    padding:10px 0px 10px 0px;
    text-align: center;
    margin-bottom: 30px;
    }
    .srss_p_main {
      font-size: 20px;
      text-align: center;
      line-height: 36px;
      font-weight: 600;
      color: #0813A4;
      margin-bottom: 30px;
      width: 100%;
      border: solid 1px #e7e7e7;
      background-color: #f2f2f2;
      padding: 10px;
    }
    .srss_h5 {
      font-size: 18px;
      color: #ff0000;
      margin: 30px 0px 15px 0px;
      font-weight: 600;
    }

    .srss_sub_title {
      font-size: 24px;
      line-height: 36px;
      font-weight: 700;
      color: #490A97;

    } 


     .table-container {
      overflow-x: auto;
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 400px;
    }

    th, td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #007BFF;
      color: white;
    }

    tr:hover {
      background-color: #f1f1f1;
    } 



    
/*POPUP CODE START */



.songs-list {
    width: 100%;
    margin-left: 6px;
}
.songs-list li {
  margin: 0px 0px 0px 20px;
    list-style:decimal;
    line-height: 50px;
    border-bottom: solid 1px #e7e7e7;
    
}


.popupmodal01-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease-in-out, visibility 0s .2s;
  z-index: 9999;

}

.popupmodal01-container {
  position: relative;
  margin: 1px 1px 1px 1%;
  color: #303030;
  background: #fff;
  border-radius: 4px;
  text-align: left;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  width: 98%;
  box-sizing: border-box;
  transform: translateY(30%);
  transition: all .28s ease-in-out .15s;
  z-index: 999;
}
.popupmodal01-container ul {
  margin-left: 20px;
}
.popupmodal01-container p {
    line-height:30px;
    margin-bottom: 20px;
}
.popupmodal01-container h5 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.popupmodal01-container p br {
    margin-bottom:10px;
}

 
.popupmodal01-btn {
  display: inline-block;
  color: #2879FF;
  transition: all .2s ease-in-out;
  padding: 10px;
}

.popupmodal01-btn { 
  cursor: pointer;
  user-select: none;
}

 
.popupmodal01-btn-close {
  text-align: center;
  cursor: pointer;
  user-select: none;
}


.popupmodal01-btn-close {
  position: absolute;
  top: 2%;
  right: 2%;
  color: #fff;
  font-size: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 8%;
  transition: background-color .2s ease-in-out;
  background-color: #FF1800;
  z-index: 9999;
}

.popupmodal01-btn-close:hover {
  background-color: #FFAAA1;
}

.popupmodal01-btn:hover,
.popupmodal01-btn:active,
.popupmodal01-btn:focus {
  color: #0055E2;
}

.popupmodal01-btn:active:hover,
.popupmodal01-btn:active:focus {
  color: #000;
}

.popupmodal01-container::-webkit-scrollbar-track  {
  border-radius: 10px;
}

.popupmodal01-container::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
  background-color: hsla(0, 0%, 100%, .1);
}

.popupmodal01-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: hsla(0, 0%, 100%, .5);
}
@media only screen and (min-width: 768x) {
  .popupmodal01-container {
    width: 98%;
    margin: 1%;
    
  }
}
/*
@media only screen and (min-width: 576px) {
  .popupmodal01-container {
    width: 90%;
    float: left;


  }
}
*/
.popupmodal01-wrapper button,
.popupmodal01-wrapper input {
  font-family: inherit;
}

.email-field input {
  display: block;
  width: 100%;
  outline: none;
}

form > div {
  position: relative;
  margin: 30px 0 15px;
  display: flex;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #0B0633;
  cursor: pointer;
  opacity: .9;
}

.switcher {
  display: none;
}

.switcher:checked+.popupmodal01-wrapper {
  transition: visibility 0s, opacity .2s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.switcher:checked+.popupmodal01-wrapper .popupmodal01-container {
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (min-width: 320px) {
  .popupmodal01-wrapper .popupmodal01-container {
    padding: 10px;
  }
}

@media only screen and (min-width: 576px) {
  .popupmodal01-wrapper .popupmodal01-container {
    padding: 10px;
  }
}

@media only screen and (max-width: 576px) {
  .popupmodal01-wrapper .popupmodal01-container {
    max-width: 100vw;
  }
}

.uvacha {
  font-size: 20px;
  font-weight: 600;
  color: #FF1800;
  margin-top: 30px;
  margin-bottom: 15px;
}

/*POPUP CODE END*/ 




input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 2px 0px 12px 0px;
  box-sizing: border-box;
}

input[type=email] {
  width: 100%;
  padding: 12px 20px;
  margin: 2px 0px 12px 0px;
  box-sizing: border-box;
}


input[type=tel] {
  width: 100%;
  padding: 12px 20px;
  margin: 2px 0px 12px 0px;
  box-sizing: border-box;
}





  input[type=submit] {
  background-color: #FFBF23;
  color: #303030;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size:20px;
}

/* When moving the mouse over the submit button, add a darker green color */
 input[type=submit]:hover {
  background-color: #FFD265;
}


 
/* Style inputs with type="text", select elements and textareas */
select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

.bank_account {
  width: 100%;
  padding: 10px;
  line-height: 34px;
}



 