

html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

:root {
  --primary: #ffd038;
  --secondary: #0e0e0e;
  --prim-font-fam:"Manrope", sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--prim-font-fam);
}
h1, h2, h3, h4, h5, h6{
  font-family: var(--prim-font-fam);
  color: var(--tit-color);
  font-weight: 600;
  text-transform: uppercase;
}
h1{
  font-size: calc(2.5rem + 0.5vw);
}
h2{
  font-size: calc(2rem + 0.5vw);
}
h3{
  font-size: calc(1.7rem + 0.5vw);
}
h4{
  font-size: calc(1.5rem + 0.5vw);
}
h5{
  font-size: calc(1.3rem + 0.5vw);
}
h6{
  font-size: calc(1.1rem + 0.5vw);
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
  color: var(--primary);
  font-family: var(--sec-font);
}
p {
  
  line-height: 1.7rem;
  font-size: 1rem;
  color: var(--prim-font);
  
}

ul{
  list-style: none;
  margin: 0px;
}
a{
  text-decoration: none!important;
}
a:hover{
  text-decoration: none!important;
}
.menu-header{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
}
.main-logo{
  height: auto;
  flex: 1;
  text-align: center;
}
.main-logo img{
  width: 30%;
}
.banner-sec{
   width: 100%;
   height: 100vh;
}
.banner-sec img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

}
.banner-ov{
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.hamburger-menu{
   flex: 1;
   color:#fff;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   font-size: 1.1rem;
   cursor: pointer;
}
/* ---------- Fullscreen Menu ---------- */

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1000;
}

/* Show menu */
.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
  animation: fadeDown 0.6s ease forwards;
}

/* Fade up on close */
.fullscreen-menu.closing {
  animation: fadeUp 0.5s ease forwards;
}

/* Close button */
.menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
}

/* Menu links */
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-links li {
  margin: 20px 0;
}

.menu-links a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-links a:hover {
  transform: scale(1.1);
  color: #FFD700;
}

/* ---------- Animations ---------- */

@keyframes fadeDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* ---------- Responsive Adjustments ---------- */

@media (max-width: 768px) {
  .menu-links a {
    font-size: 1.6rem;
  }

  .menu-close {
    font-size: 1.7rem;
    top: 15px;
    right: 20px;
  }

  .hamburger-menu {
    font-size: 1rem;
  }

  .hamburger-menu i {
    font-size: 1.3rem;
  }
}
.head-search{
   flex: 1;
   text-align: right;
}
.hamburger-menu span{
  margin-left: 2%;
  text-transform: uppercase;
}

.head-search form input{
  background-color: transparent;
  color: #fff;
  border: 0px;
  outline: none;
  position: relative;
  display: inline-flex;
}
.input-icon-wrapper::before{
  content: "\f002";
  font-family: "Font Awesome 5 Free";  
  font-weight: 800; 
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  color: #979797;
  z-index: 99;
  pointer-events: none;
}
.banner-ov h1{
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}
.sub-tagline{
  color: #979797;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}
.sub-tagline span{
  font-size: 1.7rem;
  color: #fff;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.2rem;
}
.sub-tagline2{
  margin-top: 40px;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
}
.sub-tagline2 span{
  color: #979797;
}
.input-icon-wrapper {
  
   display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
.prim-btn{
  display: inline-block;
  padding: 0.5rem 2rem;
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease-in-out;
}
.prim-btn:hover{
  background-color: #e2b82e;
}
.banner-sec .prim-btn{
  margin-top: 40px;
}
.cont-wrap{
  width: 100%;
  height: auto;
  padding: 0px 100px;
}
.abt-right-imgbx{
  width: 100%;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
}
.abt-right-imgbx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.abot-sec{
  width: 100%;
  height: auto;
  padding: 50px 0px;
}
.legacy{
  width: 100%;
  height: auto;
  padding: 100px 100px 150px 100px;
  background-image: url('../img/legacy.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sm-md{
  width: 40%;
  text-align: center;
  margin: 10px auto;

}
.sm-lg{
  width: 70%;
  text-align: center;
  margin: 10px auto;

}
.legacy h3, .legacy p{
  color:#fff;
  text-align: center;
}
.milestone-year{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #d2ad38;
  color: var(--secondary);
  padding: 3rem;
  display: flex;
   align-items: center;
   justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px auto;
}
.milestone-tit{
  font-size:1rem;
  text-transform: uppercase;
  text-align: center;
}
.milestone{
  width: 100%;
  height: auto;
  padding: 80px 0px;
}
.milestone h3{
  text-align: center;
}
.owl-milestone-slider{
  width: 60%;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  position: relative;
}
.owl-milestone-slider button.owl-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  
}
.owl-milestone-slider button.owl-prev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
.owl-milestone-slider button span{
  font-size: 2rem;
}
.legacy-launch{
  width: 100%;
  height: auto;
  background-color: var(--secondary);
  padding: 60px 0px 60px 100px;
}
.legacy-launch h3{
  color: #fff;
  text-align: center;
}
.legacy-launch p{
  color: #909090;
}
.leg-launimg{
  margin-bottom: 10px;
}
.leg-laun-tit{
  text-transform: uppercase;
  color: #ffff;
  font-size: 1.3rem;
  font-weight: 600;
}
.leg-laun-cont{
   color: #909090;
}
.leg-laun-slider-wr{
  width: 100%;
  height: auto;
  position: relative;
}
.owl-legacy-laun{
  margin-top: 35px;
}
.leg-laun-sm-p{
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
}
.legacy-launch .prim-btn{
 position: relative;
 transform: translateX(-50%);
 left: 50%;
 margin-top: 20px;
}
.explore-bcd{
  width:100%;
  height: auto;
  background-image: url('../img/explore.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.explore-bcd-left{
  flex: 1.5;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.explore-bcd-left ul{
  padding: 30px 0px;
}
.explore-bcd-left ul li{
  margin: 25px 0px;
  text-align:right;
  transition: all 0.3s ease-in-out;
}
.explore-bcd-left ul li:hover{
  transform: translateX(-5px);
}
.explore-bcd-left ul li a{
  text-transform: uppercase;
  color: #fff;
   font-size: 1.3rem;
}

.explore-bcd-right{
  flex: 2;
  padding: 3rem 4rem;
}
.explore-bcd-right h3{
  color: #fff;
  margin-bottom: 20px;
}
.explore-bcd-right p{
   color: #909090;
}
.meet-the-team{
  width: 100%;
  height: auto;
  padding: 60px 0px;
  background-color: #fef0e7;
}
.cont-wrap h3{
  text-align: center;
  
}
.press-and-awards h3{
  margin-bottom: 40px;
}
.team-name{
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.team-desig{
  color:#79726e;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.press-and-awards{
  width: 100%;
  height: auto;
  padding: 60px 0px;
  background-color: #ffff;
}
.press-bx{
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 40px;
}
.press-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pres-ov{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
}

.press-tit{
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.press-date{
  color: #adadad;
}
.bcd-approach{
  width: 100%;
  height: auto;
  padding: 50px 0px;
  background-color: var(--secondary);
}
.bcd-approach-left{
  width: 100%;
  height: auto;
  overflow: hidden;
}
.bcd-approach-left img{
  width:100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bcd-approach h3{
  color: #fff;
}

.bcd-approach-right h4{
  color:#c8c8c8;
  text-transform: capitalize;
}
.bcd-approach-right p{
   color: #909090;
}
.bcd-approach-bx{
  width: 100%;
  height: auto;
  position: relative;
}
.bcd-approach-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bcd-app-ovbx{
  width:100%;
  height:100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 99;
  padding: 1rem;
}
.bcd-app-ovbx p{
  line-height: 1.3rem;
  font-size: 0.9rem;
}
.bcd-app-ovbx h6{
  font-size: 1.1rem;
  font-weight: 700;
}
.bcd-approach-quote{
  color:#c8c8c8;
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
  line-height: 2rem;
}
.bcd-approach-quote span{
  font-size: 1.6rem;
  font-weight: 700;
}
.bcd-approach .prim-btn{
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  margin-top: 20px;
 
}
.bcd-approach a{
   color: var(--secondary);
}
.meet-us-sec{
  width: 100%;
  height: auto;
  padding: 60px 0px;
}
.meet-us-bld{
  font-weight: 700;
}
.headquart-img{
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.headquart-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.meetus-bld{
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: capitalize;
}
.meetus-det{
   color:#848484;
}
.light-gry{
   color:#848484;
}
.meetus-wr{
  margin-bottom: 15px;
  text-align: center;
}
.meet-us-sm{
  text-align: center;
}
.meet-us-sm a{
  color: var(--secondary);
}
.meet-us-sm a i{
  font-size: 1.5rem;
  margin: 3px 4px;
}
.form-control{
  border-radius: 0px;
  padding: 1.375rem 0.75rem;
}
.form-group{
  margin-bottom: 1.4rem;
}
.bcd-approach h3{
  margin-bottom: 40px;
}
.footer-sec{
  width: 100%;
  height: auto;
  padding: 60px 0px 20px 0px;
  background-color: var(--secondary);
  color: #fff;
}
.footer-logo{
  width: 50%;
  height: auto;
  text-align: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo img{
  width:100%;
  height: auto;
  object-fit: cover;
}
.ft-list-item ul li a{
  color:#e8e8e8;
  font-weight: 600;
   transition: all 0.3s ease-in-out;
}
.ft-list-item ul li {
  margin-bottom: 15px;
}
.footer-sec h6{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.footer-sec .ft-sm a i{
  color:#e8e8e8;
  margin-right: 4%;
  font-size: 1.3rem;
}
.ft-bottom-list{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-bottom-list li{
  padding: 1px 15px;
  border-right: 1px solid #e8e8e8;
}
.ft-bottom-list li:last-child{
  border-right: none;
}
.ft-bottom-list li a{
   color:#e8e8e8;
   font-weight: 600;
   transition: all 0.3s ease-in-out;
}
.footer-sec a:hover{
  color: var(--primary);
}
.ft-qt{
  font-size: 1.2rem;
  font-style: italic;
   color: #909090;
  font-weight: 500;
}
