* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "open sans", sans-serif;
}
:root {
  --text-color: #fff;
  --bg-color: #000;
  --main-color: #ffa343;
  --h1-font: 6rem;
  --h2-font: 3rem;
  --p-font: 1rem;
}
body {
  color: var(--text-color);
  background: var(--bg-color);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  padding: 27px 17%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  /* background-color: #13140f; */
}

.logo {
  font-weight: 33px;
  color: var(--text-color);
  font-weight: 700;
}
span {
  color: var(--main-color);
}
.navbar {
  display: flex;
}
.navbar a {
  color: #fff;
  font-size: var(--p-font);
  font-weight: 500;
  margin: 15px 22px;
  transition: all 0.5s ease;
}



.navbar a:hover {
  color: #ffa343;
}

.h-right {
  display: flex;
  align-items: center;
}
.h-right a:first-child {
  color: var(--text-color);
  font-size: var(--p-font);
  margin-right: 20px;
}
.h-right a {
  vertical-align: middle;
  font-size: 20px;
  color: var(--text-color);
  margin-right: 18px;
  margin-left: 5px;
  transition: all 0.5s ease;
}

.h-right a:hover {
  color: var(--main-color);
  transform: translateY(-3px);
}
#menu-icon {
  color: var(--text-color);
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
  display: none;
}
section {
  padding: 70px 17% 60px;
}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to left, rgb(17, 17, 4), rgba(0, 0, 0, 0.3)),
    url(Raju\ 2.jpeg);
  background-size: cover;
  background-position: bottom center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
 
}

.home-text p {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 30px;
  color: #eeebe48e;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 13px 40px;
  background-color: var(--main-color);
  color: var(--bg-color);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

header.sticky {
  padding: 8px 17%;
  background: transparent;
  backdrop-filter: blur(35px);
}

.wrapper-container {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0%;
}
.wrapper {
  /* border: 1px solid white; */
  /* position: relative; */
  width: 100%;
  /* transform: translate(-50%, -50%); */
  /* top: 50%; */
  /* left: 50%; */
  display: flex;
  /* margin-top: 180px; */

  justify-content: space-around;
  gap: 10px;

  /*  */
}
.container {
  width: 28vmin;
  height: 28vmin;
  /* border: 1px solid var(--main-color); */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  /* position: relative; */
  font-size: 16px;
  border-radius: 0.5em;
  background-color: #21242b;
  border-bottom: 15px solid var(--main-color);
}
.container i {
  color: var(--main-color);
  font-size: 2.5em;
  text-align: center;
  border: #fff;
}

span.num {
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
span.text {
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    width: 100%;
  }
  .container {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
  .container i {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }

  .container {
    width: calc(50% - 40px);
    height: 30vmin;
    font-size: 14px;
  }
  .container i {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .wrapper-container {
    position: relative;
    margin: 25rem 0;
  }
  .wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    height: fit-content;
  }

  .container {
    width: 75%;
    height: 50vmin;
    font-size: 10px;
    border-bottom: 35px solid var(--main-color);
    position: relative;
    gap: 0 !important;
  }
  .container .text {
    position: absolute;
    bottom: -16px;
    font-size: 22px;
    left: 38%;
    color: #000;
  }
  .container .num{
    font-size: 5em;
  }
  .container i {
    font-size: 5em;
  }
  .ready_explore_form{
    display: flex !important;
    flex-direction: column !important;
    gap: 2px;
  }
  .h-right a:first-child{
    margin-right: 7px;
  }
  .h-right a{
    margin: 0 8px;
  }
}

.aboutus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 9rem;
  /* margin-top: 300px; */
}

.aboutusimg img {
  width: 100%;
  height: auto;
  /* background-color: #ffffff; */
  /* border-radius: 10px; */
}

.aboutustext h5 {
  font-size: 19px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.aboutustext h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.aboutustext p {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 30px;
  color: #ffffffab;
  margin-bottom: 35px;
}

.center-text {
  text-align: center;
  /* padding: 10px; */
  margin-top: 10px;
}
.center-text h2 {
  font-size: var(--h2-font);
  font-weight: 800;
}
.project{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: black;

}
.slider{
  max-width: 1200px;
  width: 95%;

}
.slider-wrapper{
  position: relative;
}
.slider-wrapper .slide-button{
  position: absolute;
  top:50%;
  height: 50px;
  width: 50px;
  color: #fff;
  border: none;
  outline: none;
  background: #000;
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.slider-wrapper .slide-button:hover{
  background: #444;   

}
.slider-wrapper .slide-button#prev-slide{
  position: absolute !important;
  left: -20px;

}
.slider-wrapper .slide-button#next-slide{
  right: -20px;
}
.slider-wrapper .image-list{
  display: grid;
  gap: 25px;
  font-size: 0;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  grid-template-columns: repeat(9,1fr);
 
}

.slider-wrapper .image-list ::-webkit-scrollbar{
  display: none;
}


.slider-wrapper .image-list .image-item{
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;

}

@media screen and (max-width: 480px) {
  .slider-wrapper .image-list .image-item{
    width: 20rem;
    height: 18rem;
  }

  .slider-wrapper .image-list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

}


.slider .slider-scrollbar{
  height: 24px;
  width:100%;

  display: flex;
  align-items: center;
}
.slider-scrollbar .scrollbar-track{
  height: 2px;
  width: 100%;
  background: #ccc;
  position: relative;
  border-radius: 4px;

}
.slider-scrollbar :hover.scrollbar-track{
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb{
  position:absolute ;
  height: 100%;
  width: 50%;
  background: #000;
  border-radius: inherit;
  cursor: grab;
}
.slider-scrollbar .scrollbar-thumb:active{
  cursor:grabbing;
  height: 8px;
  top:-2px;
}
.slider-scrollbar .scrollbar-thumb ::after{

  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}
/* .project-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
} */

.box {
  position: relative;
}
 a .box{
  text-decoration: none;
  color: #fff;
  
}

.box img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 10px;
  filter: brightness(70%);
  transition: all 0.3s cubic-bezier(0.499, 0.05, 0.55, 0.95);
  will-change: filter;
  display: block;
 
  
}

.box h6 {
  position: absolute;
  left: 110px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
  display: none;
}

.box button {
  position: absolute;
  /* left: 25px; */
  bottom: 0px;
  font-size:15px;
  font-weight: 700;
  background-color: #ffa343;
  width : 100%;
  padding: 20px 0px;
  /* padding: 10px 110px; */
  border-radius: 0px 0px 10px 10px;
}

.box:hover {
  /* filter: brightness(90%) hue-rotate(50deg); */
  transform: scale(1.04);
  cursor: pointer;
  /* border-radius: 10px; */
}

 /* .box h4:hover{
    font-size: 25px;
} */

/* .center-btn {
  text-align: center;
  margin-top: 4rem;
} */

.culture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 9rem;
  /* margin-top: 300px; */
}

.culture-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.culture-text h5 {
  font-size: 19px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.culture-text h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.culture-text p {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 30px;
  color: #ffffffab;
  margin-bottom: 35px;
}

/* .reviews{
  background: #000;
  color: #ccc;
} */



.newsletter-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

.newsletter-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.newsletter-text p {
  font-size: var(--p-font);
  font-weight: 500;
  color: #ffffffab;
}

.newsletter-content form {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 1rem;
}

.newsletter-content form input:first-child {
  padding: 15px;
  background: #202020;
  font-size: var(--p-font);
  color: var(--text-color);
  border-radius: 5px;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 1.8rem;
}

.footer-box {
  display: flex;
  flex-direction: column;
}
.footer-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-box a {
  color: #979797;
  margin-bottom: 0.8rem;
  transition: all 0.5s ease;
}
.footer-box a:hover {
  transform: translateX(-5px);
  color: var(--text-color);
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background: #202020;
  color: var(--text-color);
  font-size: 20px;
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.6s;
}

.social a:hover {
  background: var(--main-color);
  color: var(--bg-color);
  transform: translateX(-4px);
}

.copyright p {
  text-align: center;
  padding: 20px;
  color: #979797;
  font-size: 15px;
}

@media (max-width: 1700px) {
  header {
    padding: 18px 8%;
  }

  /* .header .logo{
        font-size: 10px;
    } */

  header .sticky {
    padding: 7px 8%;
  }
  section {
    padding: 50px 8% 40px;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 14px 5%;
  }

  header .sticky {
    padding: 7px 5%;
  }
  section {
    padding: 45px 5% 35px;
  }

  :root {
    --h1-font: 4.6rem;
    --h2-font: 2.8rem;
    --p-font: 15px;
  }
  .home {
    height: 90vh;
  }
}




@media (max-width: 1050px) {
  .container {
    gap: 1.5rem;
  }
  .aboutus {
    gap: 3rem;
  }
  .culture {
    gap: 3rem;
  }

  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 40px 60px;
    top: 0;
    bottom: 0;
    display: flex;
    left: -100%;
    flex-direction: column;
    background: var(--bg-color);
    transition: all 0.5s ease;
  }
  .navbar a {
    display: block;
    color: #979797;
    padding: 0;
    margin: 0px 0px 40px 0px;
    font-size: 2.2rem;
    font-weight: 400;
  }
  .open {
    left: 0;
  }
}
@media screen and (max-width: 1050px ) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5); /* required for blur to show */
    display: flex;
    align-items: center;
    justify-content: space-between;
   
    gap: 10px;
  
    /* flex-wrap: nowrap; */
  }
  
  /* .logo {
    font-size: 18px;
    font-weight: 700;
    color: #ffb347; 
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-shrink: 0;
  }
   */
  
}

@media screen and (max-width: 768px ) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5); /* required for blur to show */
    display: flex;
    align-items: center;
    justify-content: space-between;
   
    gap: 10px;
  
    /* flex-wrap: nowrap; */
  }
  
 /* header span{
    font-size: 18px;
    font-weight: 700;
    color: #ffb347; 
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 140px;
  } */
  
  
}

/* Smooth entrance styles */
.page-load {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.page-load.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for home section on page load */
.home {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.home.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animation base style */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay for child containers */
.wrapper .container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.wrapper-container.active .container {
  opacity: 1;
  transform: translateY(0);
}

.wrapper-container.active .container:nth-child(1) {
  transition-delay: 0.2s;
}
.wrapper-container.active .container:nth-child(2) {
  transition-delay: 0.4s;
}
.wrapper-container.active .container:nth-child(3) {
  transition-delay: 0.6s;
}
.wrapper-container.active .container:nth-child(4) {
  transition-delay: 0.8s;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}


 header {
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 500px ) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5); /* required for blur to show */
    display: flex;
    align-items: center;
    justify-content: space-between;
   
    gap: 10px;
    flex-direction: column;
  
    /* flex-wrap: nowrap; */
  }

  @media (max-width: 768px) {
    header {
      background: rgba(255, 255, 255, 0.3); /* slightly more opaque for mobile */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      flex-wrap: wrap;
      padding: 10px 15px;
    }
  
    .navbar {
      flex-direction: column;
      gap: 15px;
      width: 100%;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 20px;
      display: none;
    }
  
    .navbar.active {
      display: flex;
    }
  
    .bx-menu {
      display: block;
    }
  }

  .page-load {
    animation: fadeIn 0.6s ease-in-out;
  }
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* .logo {
    font-size: 18px;
    font-weight: 700;
    color: #ffb347; 
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 140px;
  } */
  
  
}



@media (max-width: 800px) {
  .aboutus {
    grid-template-columns: 1fr;
  }
  .culture {
    grid-template-columns: 1fr;
  }
  .newsletter-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --h1-font: 3.5rem;
    --h2-font: 2.1rem;
  }
  .home {
    height: 90vh;
  }
}

@media (max-width: 450px) {
  header {
    padding: 12px 3%;
  }

  header .sticky {
    padding: 7px 1%;
  }
  section {
    padding: 60px 3% 50px;
  }

}

/* 



/* .project-content .box{


    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 30px;

}
.project-content .box::-webkit-scrollbar{
    display: none;
}

.project-content .box .img-item{
    width: 325px;
    height: 400px;
    object-fit: cover;
}

.project{
    max-width: 1200px;
    width: 95%;
}

.project .slider-scrollbar{
    height: 24px;
    width: 100%;
    background: var(--main-color); */
/* display: flex;
    align-items: center; */
/* position: relative;
    border-radius:4px; */
/* } */

/* .slider-scrollbar .scrollbar-track{
    height: 2px;
    width: 100%;
    background: #ccc;
    position: relative;
    border-radius: 4px; */
/* cursor: grab; */
/* }

.slider-scrollbar:hover .scrollbar-track{
    height: 4px;
    
}


.slider-scrollbar .scrollbar-thumb{
    height: 100%;
    width: 50%;
    background: var(--main-color);
    position: absolute;
    border-radius: inherit;
    cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active{
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;


}


 */
