* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline-color: transparent;
  /* background: #111111; */
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #606060;
}

::-webkit-scrollbar-track {
  background: #222;
}

/* ::-webkit-scrollbar-thumb:hover {
    background: #000; 
  } */

/* Navbar */

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 120px;
  transition: 0.5s ease;
  -webkit-transition: 0.3s ease;
}

header.sticky {
  position: fixed;
  background: #1b1b1bf4;
  height: 80px;
}

header .brand {
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .nav {
  position: relative;
}

header .nav .nav-items a {
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;

}

header .nav .nav-items a:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  margin-bottom: -5px;
}

header .nav .nav-items a:hover:before {
  width: 100%;
}
section {
  padding: 0 200px;
}

/* Responsiveness for navbar */

@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
  }

  section {
    padding: 0 20px;
  }

  .home .media-icons {
    right: 15px;
  }

  header .nav {
    display: none;
  }

  header .nav.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .nav .nav-items a {
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .nav .nav-items a::before {
    background: #222;
    height: 5px;
  }

  header .nav.active .nav-items {
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(1 1 1 /20%);
  }

  .menu-btn {
    background: url(../images/menu.png) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
  }

  .menu-btn.active {
    z-index: 999;
    background: url(../images/close.png) no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
  }


  .about-raju_rahikwal .content p {
    margin-bottom: 30px;
  }

  .about-raju_rahikwal .buy-btns {
    display: flex;
    flex-direction: column;
    width: 140px;
  }
  .about-raju_rahikwal .buy-btns a {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}

/* about raju rahikwar */

.about-us {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 155px 20px 0 20px; 
  background: #111;
  flex-wrap: wrap; 
}

.about-us-continue {
  padding: 50px 20px 0 20px; 
}

.about {
  width: 100%; 
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 20px; 
}

.pic {
  height: auto;
  width: 100%;
  max-width: 400px; 
  border-radius: 12px;
}

.text {
  flex: 1;
  width: 100%;
  margin-left: 0; 
  text-align: center; 
}

.text h2 {
  color: orange;
  font-size: 3rem; 
  font-weight: 600;
  margin-bottom: 15px;
}

.text p {
  color: #8a8a8a;
  font-size: 17pxpx;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify; /
}

/* Media queries for responsiveness */
@media (max-width: 980px) {
  .about {
    flex-direction: column; 
  }

  .text h2 {
    font-size: 2.5rem;
  }

  .text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .text h2 {
    font-size: 2rem;
  }

  .text p {
    font-size: 17px;
    line-height: 1.5;
  }
}

/* .text h5 {
    color: #d1d1d1;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

  span {
    color: orange;
} */

/* 3 photos section */

/* Photo Gallery Section Styles */
.photo-gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 30px 20px;
  background-color: #111; 
  flex-wrap: nowrap;
}

.photo-card {
  width: 1000px;
  height: 460px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #a56538; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width:645px) {
  .photo-card {
    height: 170px;
    width: 500px;
  }
  .photo-card img {
    transform: scale(1);
  }
}

/* YouTube Video Section Styles */
.youtube-video-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #111;
}

.section-title {
  font-size: 2rem;
  color: orange;
  margin-bottom: 20px;
}

.video-container {
  max-width: 90%; 
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.25rem;
  }

  .youtube-video-section {
    padding: 30px 10px;
  }
}

/* Footer */

footer {
  background-color: #111;
  border-top: 3px slid #d09852;
}

.footerContainer {
  width: 100%;
  padding: 10px 30px 20px;
}

.footer-icons {
  display: flex;
  justify-content: center;
}

.footer-icons a {
  text-decoration: none;
  padding: 10px;
  /* background-color: white; */
  /* color: #fff; */
  margin: 10px;
  border-radius: 50%;
}

.footer-icons a i {
  font-size: 1.6em;
  color: rgb(255, 255, 255);
  opacity: 0, 9;
}

/* Hover affect on social media icon */

.footer-icons a:hover i {
  color: rgb(163, 163, 163);
  transition: 0.5s;
}

.footerNav {
  margin: 30px 0;
}

.footerNav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  align-items: center;
}

.footerNav ul li a {
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;
}

.footerNav ul li a:hover {
  opacity: 1;
}

.footerBottom {
  background-color: #000;
  padding: 20px;
  text-align: center;
}

.footerBottom p {
  color: white;
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

@media (max-width: 700px) {
  .footerNav ul {
    flex-direction: column;
  }

  .footerNav ul li {
    width: 100%;
    text-align: center;
    margin: 10px;
  }

  .footer-icons a {
    padding: 8px;
    margin: 4px;
  }
}

@media (max-width: 390px) {
  .about-raju_rahikwal .media-icons {
    display: none;
  }

  .about-raju_rahikwal .content h1 {
    font-size: 2.8em;
    line-height: 50px;
  }
}
