
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


:root{
  --orange:#ffa500;
}

*{
  font-family: 'Nunito', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none; border: none;
  text-decoration: none;
  transition: all .2s linear;

}

::selection{
  background: var(--orange);
  color: #fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section{
  padding: 2rem 9%;
}



.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange); /* Use your orange color variable */
  color: #fff; /* White text color */
  padding: 0.8rem 3rem; /* Padding for the button */
  border: 0.2rem solid var(--orange); /* Border with orange color */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 1.7rem; /* Font size */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  border-radius: 5rem; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.btn:hover {
  background: rgba(255, 165, 0, 0.2); /* Light orange background on hover */
  color: var(--orange); /* Change text color on hover */
  border-color: var(--orange); /* Maintain border color on hover */
}


#logo
{
    margin-left: 15px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 6px;

}
#logo span
{
    color: #ffc800;
}

#logo #span1
{
    font-size: 30px;

} 

.navbar-nav {
  flex-grow: 1;
  justify-content: center;
}

.nav-item .nav-link {
  color: white;
  margin: 0 15px;
  font-size: 16px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
  color: var(--orange);
}

#searchForm {
  display: flex;
  align-items: center; /* Center align the input and button */
}

.searchForm input
{
    border-radius: 0;
    width: 100%; /* Make the input box take full width */
    padding: 0.5rem;
}

#searchForm button
{
    border-radius: 0;
    padding: 0.5rem 1rem;
    color: white;
    border: 1px solid #ffc800;
    background-color: #ffc800;
    display: inline-block;
    width: auto; 
    margin-left: 0.5rem; /* Space between input and button */
}


/* Media query to adjust the size of input box and button for small screen */

@media (max-width: 768px) {
  #searchForm {
    flex-direction: row; /* Ensure input and button are side by side */
    align-items: center; 
  }

  #searchForm input {
    width: 70%; /* Set input box to 70% of the width */
    height: 40px; /* Maintain the same height */
    box-sizing: border-box;
    padding: 0.4rem; /* Adjust padding if needed */
    margin-bottom: 0; /* Remove margin below input */
  }

  #searchForm button {
    width: 30%; /* Set button to 30% of the width */
    padding: 0.4rem; /* Adjust padding */
    height: 40px; /* Maintain the same height */
    box-sizing: border-box;
    margin-left: 0.5rem; /* Maintain the space between input and button */
  }
}


.home{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content{
  text-align: center;
}

.home .content h3{
  font-size: 4.5rem;
  color: #fff;
  text-transform: initial;
  text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.home .btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange); 
  color: #fff; 
  padding: 0.8rem 3rem;
  border: 0.2rem solid var(--orange); 
  cursor: pointer; 
  font-size: 1.7rem; 
  text-align: center; 
  text-decoration: none; 
  border-radius: 3rem; 
  transition: all 0.3s ease; 
}

.home .btn:hover {
  background: rgba(255, 165, 0, 0.2); /* Light orange background on hover */
  color: var(--orange); /* Change text color on hover */
  border-color: var(--orange); /* Maintain border color on hover */
}
.home .content p{
  font-size: 2.5rem;
  color: #fff;
  padding: 5rem 0;
}

.home .video-container img{
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease; /* Smooth transition effect */
}


.home .controls{
  padding: 1rem;
  border-radius: 5rem;
  background: rgba(0, 0, 0, .7);
  position: relative;
  top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .controls .vid-btn{
  height: 2rem;
  width: 2rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin: 0 .5rem;
}


.home .controls .vid-btn.active{
  background: var(--orange);
}




  /*======== image show =====*/



.index-images {
  display: flex;
  gap: 10px;

}


.card {
  width: 100%;  
  max-width: 300px; 
  height: 400px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
}

.index-images img {
  width: 100%;
  height: 200px;
  cursor: pointer;
  object-fit: cover; /*img cover the given area without stretching */
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}

.index-images img:hover {
  transform: scale(1.02); /* Scale the image to its original size */
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 80%;
  max-width: 1200px;
  background-color: white;
  padding: 5px;
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 900px;
  position: relative; 
}

.slides {
  width: 100%;
  display: none;
  font-family: sans-serif;
  position: relative; /* Make slides container the reference for positioning */
  height: 100%; /* Default height, adjusted in media queries */
}

.description {
  margin-top: 10px;
  color: #fa770b;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 60px;
  height: auto;
  cursor: pointer;
  opacity: 0.6;
}

.thumbnails img.active {
  opacity: 1;
}

.close {
  position: absolute;
  top: 2vh;
  right: 2vw;
  color: #f20909;
  font-size: 4vh;
  font-weight: bold;
  transition: 0.3s;
  z-index: 1001; /* Ensuring close button stays on top */

}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Ensure arrows are centered vertically on the image */
  width: auto;
  padding: 16px;
   color: red; 
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  user-select: none;
  z-index: 1000; /* Ensure arrows are above the image */
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Responsive model */

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 600px;
  }

  .slide-container {
    height: 70vh; /* Increase height on smaller screens */
    padding: 10px 0;
  }

  .slides {
    height: 70vh; /* Increase height of slides */
  }

  .prev, .next {
    top: 50%;
    transform: translateY(-50%); /* Re-center arrows within the slides */
  }

  .description {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    max-width: 400px;
  }

  .slide-container {
    height: 65vh; /* Further increase height on very small screens */
    padding: 5px 0;
  }

  .slides {
    height: 60vh; /* Further increase height of slides */
  }

  .prev, .next {
    top: 50%;
    transform: translateY(-50%); /* Ensure arrows remain centered within the slides */
  }

  .description {
    margin-top: 10px;
    font-size: 12px;
  }
}



/*offer*/
#offer{
  margin-top: 100px;
}
#offer i{
  font-size: 32px;
  color: black;
}



/*newlater*/
#newlater{
  margin-top: 100px;
}
#newlater h3{
   font-size: 25px;
   letter-spacing: 3px;
}
.input{
  margin-top: 30px;
}
.input input{
  width: 350px;
  height: 36px;
  letter-spacing: 2px;
  border-radius: 3px;
  border: 1px solid black;
  padding-left: 5px;
}
#subscribe{
  width: 200px;
  height: 36px;
  margin-left: 10px;
  border-radius: 3px;
  border: none;
  background-color: #e0b20f;
  color: white;
  letter-spacing: 3px;
  font-weight: bold;
  text-shadow: 0px 0px 1px black ;
}
@media screen and (max-width:460px) {
  .input input{
      width: 150px;
  }
  #subscribe{
      width: 150px;
  }
  
}


/*footer*/
#footer{
  padding: 0 0 30px 0px;
  color: white;
  font-size: 14px;
  background-color: black;
  margin-top: 100px;
}
#footer .footer-top{
  padding: 60px 0 30px 0;
  background-color: black;
  color: white;
}
#footer .footer-top .footer-content{
  margin-bottom: 30px;
}
#footer .footer-top .footer-content h4{
  color: #ffc800;
}
#footer .footer-top .footer-links h2{
  color: #ffc800;
}
#footer .footer-top .footer-content h4{
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;

}
#footer .footer-top .footer-content p{
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: white;

}
#footer .footer-top h4{
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links{
  margin-bottom: 30px;
  margin-top: 10px;
}
#footer .footer-top .footer-links h4{
 color: #ffc800;
}
#footer .footer-top .footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li{
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul a{
  text-decoration: none;
  color: white;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  transition: 0.5s ease;
}
#footer .footer-top .footer-links ul a:hover{
  color: #ffc800;
}
#footer .footer-top .socail-link a{
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  background-color: #373737;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  transition: 0.5s ease;
}
#footer .footer-top .socail-links a:hover{
  background-color: #ffc800;
  color: white;
}
#footer .copyright{
  text-align: center;
  float: left;
}
#footer .credits{
  float: right;
  text-align: center;
  font-size: 13px;
}
#footer .credits a{
  color: #ffc800;
}
















/* media queries */

@media (max-width:1200px){

  html{
    font-size: 55%;
    
  }
}

@media (max-width:991px){
  header{
    padding: 2rem;
  }
  section{
    padding: 2rem;
  }
}


@media (max-width:768px){
  #menu-bar{
    display: initial;
  }

  header .navbar{
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: #333;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    padding: 1rem 2rem;
    clip-path: polygon(0 0,100% 0, 100% 0, 0 0);
  }

 header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

header .navbar a{
  display: block;
  border-radius: .5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: #222;
}

}

@media (max-width:450px){

  html{
    font-size: 55%;
    
  }
}


/* Cards Responsive style  */
@media screen and (max-width: 1200px) {
  .container {
    justify-content: center;
  }

  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .container {
    justify-content: center;
  }

  .card {
    flex: 1 1 calc(100% - 20px);
  }
}

@media screen and (max-width: 576px) {

  .container {
    justify-content: center;
  }

  .card {
    flex: 1 1 100%;
    margin-bottom: 16px;
  }

  .index-images img {
    aspect-ratio: auto 1 / 1; /* Adjust aspect ratio for smaller screens */
  }
}