  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }



/*NAV START*/
    
nav{
  
  z-index: 9;
  width: 100%;
  top:0;
  background: #FF8000;
}

nav .wrapper{
  position: relative;
  max-width: 1300px;
  height: 70px; 
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
.wrapper .logo img {
    height: 60px; 
}
.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 */



.pagelayout {
    width: 100%;
    clear: both; 
}
.pagelayout .pagelayout_in {
    width: 90%;
    margin: 50px auto;
}

.home_main_img {
    width: 100%;  margin: 3% auto; border-radius: 30px; overflow: hidden;
}
.home_main_img img {
    border-radius: 20px;
    width: 100%;
}




/*
.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; 
}
  */


  .download_status {
  width: 60%;
  margin: 20px auto;
  background-color: rgba(54, 0, 255, 0.92);
  border: 1.5px solid #150064;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
}

.download_status .download_status_in {
  width: 100%;
  text-align: center;
  padding: 14px 8px;
}

.download_status a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  font-size: clamp(16px, 3.5vw, 26px);
  line-height: 1.6;
  font-weight: 500;
  transition: opacity 0.2s;
}

.download_status a:hover {
  opacity: 0.85;
}

/* Tablet */
@media (max-width: 768px) {
  .download_status {
    width: 80%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .download_status {
    width: 95%;
    padding: 8px;
  }
  .download_status .download_status_in {
    padding: 10px 4px;
  }
}








  







    .srss_title {
    font-size:30px;
    line-height: 46px;
    font-weight:600;
    color:#4F00B0;
    padding:10px 0px 10px 0px;
    text-align: center;
    margin-bottom: 30px;
    }



    
 


.grid_04_item {
  width: 100%;
  width: 0px auto;  
  text-align: center; 
  overflow: hidden;
}  
.grid_04_item img {
  width: 100%;
  border-radius: 10px;
 }



 
.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;
}













.grid_12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}

/* Styling for individual grid items */
.item {
  background-color: #ddd; /* Example styling */
  padding: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_12 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_12 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_12 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_12 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_12 {
    grid-template-columns: repeat(1, 1fr);
  }
}



.grid_11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_11 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_11 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_11 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_11 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_11 {
    grid-template-columns: repeat(1, 1fr);
  }
}





.grid_10 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 
/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_10 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_10 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_10 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_10 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_10 {
    grid-template-columns: repeat(1, 1fr);
  }
}


.grid_09 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_09 {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_09 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_09 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_09 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_09 {
    grid-template-columns: repeat(1, 1fr);
  }
}



.grid_08 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_08 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_08 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_08 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_08 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_08 {
    grid-template-columns: repeat(1, 1fr);
  }
}





.grid_07 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_07 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_07 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_07 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_07 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .grid_07 {
    grid-template-columns: repeat(1, 1fr);
  }
}




.grid_06 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_06 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_06 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_06 {
    grid-template-columns: repeat(2, 1fr);
  }

  
.home_main_img {
    width: 100%;  margin: 2% auto; border-radius: 16px; overflow: hidden;
}
.home_main_img img {
    border-radius: 16px;
    width: 100%;
}

.pagelayout .pagelayout_in {
  width: 92%;
  margin: 10px auto;
}

}

@media (max-width: 480px) {
  .grid_06 {
    grid-template-columns: repeat(1, 1fr);
  }
  
.home_main_img {
    width: 100%;  margin: 1% auto; border-radius: 8px; overflow: hidden;
}
.home_main_img img {
    border-radius: 8px;
     width: 100%;
}

.pagelayout .pagelayout_in {
  width: 94%;
  margin: 8px auto;
}

}



.grid_05 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
} 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid_05 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .grid_05 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_05 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_05 {
    grid-template-columns: repeat(1, 1fr);
  }
}



.home_grid_04 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* Adjust the spacing between columns */
}
 
/* Responsive adjustments */
@media (max-width: 992px) {
  .home_grid_04 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid_04 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home_grid_04 {
    grid-template-columns: repeat(1, 1fr);
  }
}



.grid_03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; /* Adjust the spacing between columns */
}
 

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid_03 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid_03 {
    grid-template-columns: repeat(1, 1fr);
  }
}



.grid_02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* Adjust the spacing between columns */
}
.grid_02_item {
  width: 96%;
  padding: 2%;
  border: solid 1px #e7e7e7;
}
 

/* Responsive adjustments */
@media (max-width: 480px) {
  .grid_02 {
    grid-template-columns: repeat(1, 1fr);
  }
}











