header {
  --text-color: #ffffff;
  --main-color: #f3af17;
  --menu-bg: #b7b7b71b;
  --grow-line: #cfcfcf;
  --dropdown-bg: #ffffff;
  --btnbg-colour: #ffffffcc;
  --btntext-colour: #000000;
  background-color: transparent;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

header:hover {
  background-color: rgb(0, 0, 0);
  --text-color: #ffffff;
   --menu-bg: #7c7c7c00;
}
.logo .img2 {
  display: none;
}
/* header:hover .logo .img1 {
  display: none;
}
header:hover .logo .img2 {
  display: block;
} */
.header-hidden {
  transform: translateY(-100%);
}

.header-fixed {
  --text-color: #ffffff;
     --menu-bg: #7c7c7c00;
  background-color: rgb(0, 0, 0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* .header-fixed .logo .img1 {
  display: none;
} */
/* .header-fixed .logo .img2 {
  display: block;
} */

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 190px;
  z-index: 1001;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  background: var(--menu-bg);
position: relative;
  border-radius: 100px;
  padding: 0 20px;
      backdrop-filter: blur(20px);
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-wrapper .nav-item {
  padding: 25px 1.5rem;
  font-size: 16px;
}

.main-links {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  font-family: var(--fw4);
  cursor: pointer;
  position: relative;
}
.main-links:hover {
  color: rgb(255, 255, 255);
}

.drop-wrapper {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  /* Use a transform to hide it instead of height: 0 */
  transform: translateY(-10px) scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none; /* Prevents interaction when hidden */
  background: var(--dropdown-bg);
  backdrop-filter: blur(50px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  border-radius: 5px;
  padding: 0 40px;
  z-index: 1000;
 
  height: auto; /* Set height to auto */
}

/* Ensure `.open` shows the dropdown on all viewports (click toggle) */
.drop-wrapper.open {
  transform: translateY(0) scaleY(1);
  transform-origin: top;
  opacity: 1;
  pointer-events: auto;
  height: auto;
  padding: 20px 40px;
  z-index: 1100;
}

.drop-wrapper li {
padding: 10px 15px;
  font-size: 16px;
  position: relative;
}
.drop-wrapper a {
  display: block;
  color: var(--text-color);
  text-decoration: none;
font-size: 15px;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  font-family: Gilroy-Light;
  border-bottom: 1px solid transparent;
  position: relative;
}
/* .drop-wrapper a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--grow-line);
  transition: 0.5s ease-in-out;
} */
.drop-icon i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.5s ease-in-out;
  transform: rotate(90deg);
}

.header-btn {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid var(--text-color);
  background-color: #ffffff00;
  color: var(--text-color);
  font-size: 16px;
  font-family: var(--fw4);
}
.header-btn:hover {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  border: 1px solid rgb(0, 0, 0);
}

.drop-wrapper a:hover::after {
  width: 100%;
}

/* Dropdown trigger styles */
.dropdown-trigger {
  cursor: pointer;
  transition: all 0.3s ease;
padding: 10px 15px;
    font-size: 17px;
  position: relative;
}
.dropdown-trigger::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hero-gradient);
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.dropdown-trigger a {
  transition: all 0.3s ease;
}
.sub-content-area li{
  width: calc(100% - 20px);
}
.sub-content-area li a {
  transition: transform 0.3s ease;
}
.sub-content-area li:hover {
 
background: rgb(251, 251, 251);
}
 .sub-content-area li:hover a{
   transform: translateX(5px);
 }



/* Sub-content area styles */
.sub-content-area {
  position: relative;
  min-height: 200px;
}

.sub-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.sub-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Images gallery styles */
.images-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.img-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  top: 0;
  left: 0;
}

.gallery-img.active {
  opacity: 1;
  z-index: 10;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  display: none;
  z-index: 1001;
}

@media (min-width: 993px) {
  .navbar-wrapper .nav-item:hover > .drop-wrapper {
    /* Set back to original state on hover */
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto; /* Allow interaction when visible */
    height: auto;
    padding: 20px 10px;
  }

  .navbar-wrapper .nav-item:hover .drop-icon i {
    transform: rotate(-90deg);
   
  }
  .drop-wrapper{
    background:black;
  }

.main-links::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: var(--grow-line);
  transition: 0.5s ease-in-out;
  transform: translateX(-50%);

}
.main-links:hover::after {
width: 100%;
}

  /* Show dropdown when JS toggles an 'open' class (click) */
  .drop-wrapper.open,
  .navbar-wrapper .nav-item.open > .drop-wrapper {
    transform: translateY(0) scaleY(1);
    transform-origin: top;
    opacity: 1;
    pointer-events: auto;
    height: auto;
    padding: 20px 40px;
  }

  /* Ensure dropdown text is readable even if header var(--text-color) is white */
  .drop-wrapper,
  .drop-wrapper a {
    color: #ffffff !important;
  }
.sub-content-area li:hover {
    background: rgb(14 14 14);
}

  .dropdown-trigger.active {

  background-color: rgba(255, 253, 253, 0.08);
}
.dropdown-trigger.active::after {
  width: 100%;
}
.dropdown-trigger.active a {
  color: rgb(255, 255, 255) !important; 
}
}
/* Mobile menu styles */
@media (max-width: 992px) {
  header {
    padding: 0px 0;
    --text-color: #000000;
  }
  .menu-icon {
    display: block;
    color: white;
  }
   .header-fixed .menu-icon {
    display: block;
    color: var(--text-color);
  }
  .header-btn, .sub-content-area {
    display: none;
  }
.drop-icon i {
    
    font-size: 18px;
  
}
  .navbar-wrapper {
    padding: 10px 0;
  }
  .logo {
    width: 150px;
    z-index: 1001;
  }
  .navbar-wrapper .menu-wrapper {
    position: fixed;
    top: 63px;
    right: -100%;
    width: 300px;
    border-radius: 0;
    background-color: var(--dropdown-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: right 0.3s ease-in-out;
    z-index: 100;
    padding: 30px;
    backdrop-filter: none;
    overflow: hidden;
    overflow-y: scroll;
  }

  .menu-wrapper.active {
    right: 0;
  }
  .main-links {
    display: block;
    text-align: start;
    padding-bottom: 10px;
  }
  .nav-item {
    border-bottom: 1px solid rgb(214, 214, 214);
  }
  .drop-links {
    display: flex;
    justify-content: space-between;
  }

  .navbar-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .navbar-wrapper .nav-item {
    padding: 15px 0;
    width: 100%;
  }

  .btn-black {
    margin: 20px 0 0 0;
    display: inline-block;
  }

  .drop-wrapper.open {
    position: relative;
    top: -2px;
    height: auto;
    background-color: var(--dropdown-bg);
    padding: 0 10px;
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 1100;
  }
  .drop-wrapper a {
    text-align: start;
  }
  .drop-wrapper li {
    padding: 10px 0px;}
    
     .drop-wrapper li:hover {
   
   background: rgb(250, 250, 250);}
 .drop-wrapper li:hover a{
      transform: translateX(10px);}
  .navbar-wrapper .nav-item .drop-icon.arrow-up i {
    transform: rotate(-90deg);
  }
}

.footer-background {
  position: relative;
  height: 100%;
  background: url("../images/footer-bg.png") no-repeat center center;
  background-size: cover;
}
.fc-wrapper {
  position: relative;
  z-index: 2;
}

.footer-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000de;
  z-index: 1;
}
.follow-us-box {
  padding-top: 40px;
}

.follow-us-box a:hover {
  color: #bbbbbb;
}

.follow-us-section-heading {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
  color: #ffffff;
}
.social-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.follow-us-link {
  position: relative;
  padding-left: 15px;
  z-index: 10;
  padding-top: 5px;
  padding-bottom: 15px;
}
.follow-us-social-icon-div,
.follow-us-inner-content-div {
  position: relative;
  z-index: 10;
}

.follow-us-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: 0.5s ease-in-out;
  z-index: 1;
}
.follow-us-link:hover::after {
  width: 100%;
}
.follow-us-section-title {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.follow-us-inner-content-div p {
  margin-bottom: 0;
  font-size: 12px;
}

.follow-us-social-icon {
  width: 36px;
  height: 36px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1.2rem;
}

.follow-us-social-icon i {
  font-size: 40px;
  color: white;
}

.follow-us-inner-social-title {
  font-size: 1rem;
  margin-bottom: 0;
}

.footer-main-wrapper {
  padding: 10px;
}

.footer-top {
  background: #111111;
  padding: 25px;
}

.footer-top .text-wrapper h2 {
  font-size: 150px;
  font-weight: 600;
  position: relative;
  color: white;
}

.footer-top .text-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
}

.footer-section-top .footer-row {
  padding: 0 20px;
  background-color: #111111;
}

.footer-section-top .footer-row .img {
  width: 200px;
}

.footer-section-top .footer-row:after {
  content: "";
  display: block;
  height: 20px;
  border-bottom: solid 1px;
  border-right: solid 1px;
}

footer {
  color: white;
}

.socal i {
  color: #ffffff;
  font-size: 25px;
  margin-left: 10px;
}

.socal i:hover {
  color: #c7c7c7;
}

.footer-contaner h3 {
  margin: 20px 0;
  font-size: 20px;
  color: rgb(255, 255, 255);
}
.footer-contaner p {
    font-family: var(--fw4);
    color: rgb(157 157 157);
}

.app-link-wrapper img {
  max-width: 150px;
}

.footer-contaner li a {
  color: rgb(255, 255, 255);
  word-break: break-word;
  font-weight: 300;
  font-size: 15px;
}

.footer-contaner li a:hover {
  color: rgb(201, 200, 200);
}

.hoverable li a {
  position: relative;
}

.hoverable li {
  margin: 10px 0;
}

.hoverable li a::after {
  content: "";
  display: none;
  height: 0px;
  border-bottom: solid 1px white;
}

.hoverable li a i {
  display: none;
}

.hoverable li a:hover::after {
  display: none;
}

.hoverable li a:hover {
  display: inline;
}

.certificate .img {
  width: 100px;
  margin: 0 25px;
}

.certificate .img img {
  filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
  .certificate .img {
    width: 100px;
    margin: 0 7px;
  }
  .follow-us-social-icon {
    margin-right: 0;
    width: 26px;
    height: 26px;
  }
  .follow-us-link {
    padding-left: 0;
  }
  .follow-us-section-title {
    font-size: 25px;
  }
  .follow-us-social-icon i {
    font-size: 20px;
  }
  .follow-us-social-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
  .copyright p {
    font-size: 14px;
  }
}
