@charset "utf-8";
/* CSS Document */


*{
  box-sizing:border-box ! important;
}
.navbar{
	background:orangered;
	margin-top:0;
}

body{
  margin: 0;
  padding: 0;
}

main{
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right); 
}

.container-fluid{
  width: 100%;
}

.infoDiv{
    width: 100%;
    display: flex;
    gap:5;
    position: absolute;
    top: 0%;
}

.fa-xmark{
  width:10%;
  position: absolute;
  top: 2%;
  left:0%;
  font-size:1.2rem;
  padding: 0px;
 
}

 marquee{
   width: 90%;
   position: absolute;
   top: 4%;
   right:2%;
   padding: 0px;
   font-size:0.8rem;
 }
 
.searchContainer{
   width: 100% ! important;
   background-color: yellow ! important;
   padding:0 5px ! important;
}


.brandDiv{
  float: inline-start !important;
  display:flex ! important;
  padding:0px ! important;
 
}

.fa-bars{
    font-size: 3vw !important;
    color: white !important;
}

#logo{
    width: 20% !important;
}

.fa-angle-down{
 transition: transform 0.5s;	
}

.fa-angle-down:hover{
 font-size: 20px;
  transform: rotate(180deg);	
}

.scrollMenuContainer{
    width:100% ! important;
    height:100px ! important;
    display: flex ! important;
    margin-top:-30px ! important;
  	gap:20px !important;
    float:end ! important;
    margin-right:0px ! important;
    flex-wrap: nowrap ! important; /* Prevents wrapping to the next line */
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch ! important;
}


.dshow{
  white-space: nowrap ! important; /* Keeps the text on a single line */
  flex-shrink: 1 ! important; /* Allows the item to scale down to fit the row */
}


.dshow .rap{
	opacity: 0;
	visibility: hidden;
	position: absolute ! important;
}
		

.dshow p{
    margin-top: 0px !important;
    font-size:3vw;
}

.dshow:hover .rap{
	top:15px !important;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
    border-top-style: solid !important;
    border-top-width: 1px !important;
    border-top-color: orangered !important;
}

.rap{
  background: white;
  color: black;
  right:6% ! important;
  width:250px ! important;
  padding:10px ! important;
}

.pShow{
    display: none;
}

#pMobi{
   display: none;
}
	
ul li{
  font-size: 3vw !important;
}

#bell{
  margin-top: 0px !important;
  margin-right: 0px !important;
}


#mE{
  margin-top: 10px !important;
}



/*Index Page Code*/


.topCarouselWrapa{
   width: 100% ! important;
   padding:0px ! important;
}

.carousel-item img{
    height: 100vh ! important;
}

  .myCard{
       --cards-bg-color: #DBDBDB;
       --arrow-bg-color: orangered;
       --cards-title-color: black;
       
       h1{
          font-size:10px ! important;
          color: var(--cards-title-color);
      }
  }
  
   .myCarousel{
       width:100%;
       overflow-x:auto;
       margin: .5em auto;
       display: flex;
       gap: 1em;
       scroll-behavior: smooth;
       anchor-name: --myCarousel;
       scroll-snap-type: x mandatory;
       scroll-marker-group: after;
   }
   
   .myCarousel::-webkit-scrollbar{
       display: none ! important;
   }
   
   .myCarousel::scroll-marker-group{
       display: flex;
       justify-content: center;
       gap:.5em;
       margin-top:0px ! important;
   }
   
   .myCard::scroll-marker{
       content: '';
       width:1em;
       height:1em;
       border-radius:50%;
       background-color:yellow;
      
   }
   
    .myCard::scroll-marker:target-current{
      background-color: orangered;
   }
   
   
   .myCarousel::scroll-button(right){
       content:'→' ! important;
       background-color: yellow;
       font-size:20px ! important;
       font-family: consolas;
       width:60px;
       height:60px;
       border-radius:50%;
       padding: .1em;
       cursor: pointer;
       position: absolute ! important;
       top:92% ! important;
       right: 9% ! important;
       z-index: 5 ! important;             
   }
   
   .myCarousel::scroll-button(left){
       content:'←' ! important;
       background-color: yellow;
       font-size:20px ! important;
       font-family: consolas;
       width:60px;
       height:60px;
       border-radius:50%;
       padding: .1em;
       cursor: pointer;
       position: absolute ! important;
       top:92% ! important;
       left:8% ! important;
       z-index: 5 ! important;              
    
       
   }
   
   
   .myCarousel::scroll-button(right):disabled, .myCarousel::scroll-button(left):disabled{
        opacity: 0.5;
        cursor: pointer;
    }
   
   .myCard{
       flex: 0 0 20em;
       height: 15em;
       background-color: var(--cards-bg-color);
       padding: 1em;
       border-radius: 1em;
       text-align: center;
       align-content: center;
       scroll-snap-align: start;
           
   }
   

.d-block, .card-body{
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 12px;
}

.container-fluid h1{
	padding-top: 0px;
}



/*MY JS SLIDER*/
.mcarousel-container{
    position: relative;
    margin-top: 10px;
    /* background-color: red; */
}
.mcarousel-list{
    display: flex;
    padding: 10px;
    overflow: hidden;
}

.mcarousel-item{
    min-width: 100%;
    max-height: 400px;
    transition: transform 1s;
    /* transform: translateX(-0%); */
}
.mcarousel-item img{
    width: 100%;
    height: 100%;
}

.mcarousel-btn-Container{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mcarousel-btn{
    padding: 40px 15px;
    font-size: 30px;
    border:none;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}


/*FONTS STYLE*/

.card-title{
  font-size: 0.8rem;
}

.btn-info{
  width: 100%;
  font-size:1rem;
}


.myDivs{
  display: flex;
  flex-wrap: wrap; /* 1. Crucial: Allows wrapping */
  
  h2{
    font-size:1.5rem;
  }
  
   h3{
    font-size:1.4rem;
  }
  
}

.mycadDeck{
  flex-basis: 50%; /* 2. Sets default ideal width for items */   
}


/*For Desktop View*/

@media screen and (min-device-width: 1025px){
    
marquee{
 font-size:0.8rem;
}
    
.brandDiv{
    margin-left: 0px !important;
    button{
     width:4% ! important;
    }

}

.fa-bars{
    font-size: 2.2vw !important;
    margin-left:0px ! important;
}

 .scrollMenuContainer{
    max-width:95% ! important;
    max-height:35px ! important;
    display: inline-flex ! important;
	gap:20px !important;
    float:end ! important;
    margin-right:0px ! important;
    scrollbar-width: none;     /* Hides scrollbar in Firefox */
    -ms-overflow-style: none;  /* Hides scrollbar in IE and Edge */
}

/* Hides scrollbar in Chrome, Safari, and Opera */

.scrollMenuContainer::-webkit-scrollbar {
    display: none;
}


.myCarousel::scroll-button(left){
      font-size:20px ! important;
       top:140% ! important;
       left:1% ! important;
   }
   
 .myCarousel::scroll-button(right){
      font-size:20px ! important;
       top:140% ! important;
       right: 1% ! important;
   }
   
   
#logo{
    width: 3.3% !important;
    margin-left: 0px !important;
}


.dshow{
    margin-top: 0px !important; 
	
}

.dshow p{
    margin-top: 0px !important;
    font-size:1vw;
	
}

ul li{
    font-size: 1.2vw !important;
  }
  
  
	
}


	
/* For Tablet Landscape View */
@media only screen and (min-device-width: 641px)
and (max-device-width: 1024px) {
    
    
.brandDiv{
  width:14% ! important;
}
   
  
#logo{
    width: 13px !important;
    margin-left: 0px !important;
}
 
  
 .scrollMenuContainer{
    width:700px ! important;
    background:yellow ! important;
    max-height:40px ! important;
    margin-right: 0px ! important;
    display: flex ! important;
	  gap:20px !important;
    p{
     font-size:1.2vw ! important;
    }
     
}


.searchBar{
    
   width: 50px ! important; 
}

.fa-bars{
    font-size: 2.2vw !important;
}


.dshow{
    margin-top: 0px !important; 
	
}

.dshow p{
    margin-top: 0px !important;
    font-size:1vw;
	
}

ul li{
    font-size: 1.2vw !important;
  }
  
  
}
	
	


/* For Tablet Portrait View */
@media only screen and (min-device-width: 421px)
and (max-device-width: 640px) {
 
  .navbar{
   
  }
  
  
  .fa-bars{
    font-size: 6vw !important;
  }

  #logo{
    width: 15% !important;
    margin-left: 5px !important;
  }

   
.mobile{
  margin-left: 0px !important;
}


  .ddropCover{
    margin-top: 0px !important;
  }

  .navbar-toggler{
    margin-top: 0px !important;
    margin-left: 10px !important;
  }

   .dshow p{
     margin-top: 0px !important;
  }
  
  
  .dshow p{
    font-size: 2vw !important;
  }
  
  .rap p{
    margin-top: 0px !important;
    font-size: 2vw !important;
  }
  
  ul li{
    font-size: 2vw !important;
  }
  
}
	
	


@media screen and (max-width:420px){
    
.navbar{

}

.desk{
  display: none !important;
}

.mobile{
  display: block !important;
  margin-left: 0px !important;
}

.myCarousel{
 
}
.myCard{
    flex: 0 0 10em;
	width: 100%;
	height: 50%;
	aspect-ratio: 10/10;
	border-radius: 12px;
}

 .myCarousel::scroll-button(left){
      font-size:20px ! important;
       top:72% ! important;
       left:1% ! important;
   }
   
 .myCarousel::scroll-button(right){
      font-size:20px ! important;
       top:73% ! important;
       right: 1% ! important;
   }
   

   
.d-block{
	width: 100%;
	height: auto;
	aspect-ratio: 10/9;
	border-radius: 12px;
}

.brandDiv{
    margin-left:0px ! important;
    button{
     width:12% ! important;
      margin-left:4px ! important;
    }
 
}

.scrollMenuContainer{
    width:87% ! important;
    height:30px ! important;
    display: flex ! important;
    float:end ! important;
    margin-right:0px ! important;
	  gap:20px !important;
    flex-wrap: nowrap ! important; /* Prevents wrapping to the next line */
    -webkit-overflow-scrolling: touch ! important;
    
    p{
     font-size:3.2vw ! important;
    }
}

.fa-bars{
    font-size: 2rem !important;
    padding:0px ! important;
    margin-left:-4px ! important;
}


 #logo{
    width: 10%  !important;
}


#pDesk{
   display: none;
}

.pShow{
    display: block !important;
}


#pMobi{
    display: block !important;
    margin-left:0px !important;
}




.dshow p{
    font-size:3.2vw !important;
	
}

.rap{
    
  p{
     font-size:3vw !important;
  }
  
}


#bell{
  margin-top: 0px !important;
  margin-right: 0px !important;
}

#mE{
  margin-right: 0px !important;
}

}


