/* bootstrap strat */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sec-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}


input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none ;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;

}



p a:visited {
  color: #d19d6f;
}

.banner-title {
  font-size: 80px;
  color: var(--p-color);
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;

}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;

}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */


@font-face {
  font-family: 'mon-reg';
  src: url('../font/montserrat/Montserrat-Regular.ttf');
}
@font-face {
  font-family: 'mon-bold';
  src: url('../font/montserrat/Montserrat-Bold.ttf');
}
@font-face {
  font-family: 'mon-sembold';
  src: url('../font/montserrat/Montserrat-SemiBold.ttf');
}
@font-face {
  font-family: 'mon-bold';
  src: url('../font/montserrat/Montserrat-Bold.ttf');
}

:root {
  --reg: 'mon-reg', sans-serif;
  --bold: 'mon-bold', sans-serif;
  --semibold: 'mon-sembold', sans-serif;  
  --sec-color:#184ba1;
  --gray: #555555;
}


html {
  font-family: var(--reg);
  max-width: 100%;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;

  background-image: url('../images/mapbg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #000; /* Or any fallback background */
}


html.no-scroll,
html.no-scroll body {
  overflow: hidden !important;
  height: 100%;
}


body{
  background-color: transparent !important;
  min-height: 100vh;
  color: #fff ;
}

.fixed-top {
  padding-right: 0 !important;
}

.site-header {
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.starter{
  background: transparent;
}


.navbar-nav{
  font-family: var(--semibold);
  
  color: #fff;
}

#primary-menu{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  list-style: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap:25px;
}

#primary-menu li {
  position: relative;
  border-radius: 50px;
  padding: 2px; /* border thickness */
  transition: border 0.3s ease;
}

#primary-menu li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* same as li padding */
  background: linear-gradient(to right, #6b3b27, #d8a474);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 1; /* Show border gradient by default */
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

#primary-menu li:hover::before {
  opacity: 0; /* Hide border on hover */
}

#primary-menu li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  width: 300px;
  height: 72px;
  color: transparent; 
  background: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #6b3b27, #d8a474);
  transition: all 0.3s ease;
  z-index: 1;
  font-size: 40px;
}

#primary-menu li a:hover {
  background: linear-gradient(to right, #6b3b27, #c49364) no-repeat;
  color: #fff;
}

#primary-menu li a::after {
  content: "\f061"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  display: inline-block;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  font-size: 0.9em;
  transform: rotate(-45deg);
	color:#c49364;
}

/* Rotate the arrow on hover */
#primary-menu li a:hover::after {
  transform: rotate(0deg);
}

#primary-menu li.current-menu-item a,
#primary-menu li.current_page_item a {
  background: linear-gradient(to right, #6b3b27, #c49364) no-repeat;
  color: #fff;
}

.mobile-menu {
  background-color: #111;
  z-index: 1050;
  transition: clip-path 0.5s ease-in-out;
  clip-path: circle(0% at 90% 10%);
  pointer-events: none;
}

.mobile-menu.open {
  clip-path: circle(150% at 50% 50%);
  pointer-events: auto;
}

#mobile-menu-overlay .nav-link {
    font-size: 1.5rem;
    color: white;
}

#mobile-menu-overlay .nav-link:hover {
    text-decoration: underline;
}

.z-1030 {
    z-index: 1030;
}

.custom-hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}

.custom-hamburger .bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.custom-hamburger .top {
  top: 0;
}

.custom-hamburger .middle {
  top: 50%;
  transform: translateY(-50%);
}

.custom-hamburger .bottom {
  bottom: 0;
}

#mobile-menu-close{
  background: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#mobile-menu-overlay {
  clip-path: circle(0% at 90% 30%);
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9); 
  backdrop-filter: blur(15px);         
  -webkit-backdrop-filter: blur(10px); 
  transition: backdrop-filter 0.3s ease; 
}



.custom-accordion-wrapper {
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Archivo', sans-serif;
  color: #fff;
}

.custom-accordion-item {
  margin-bottom: 2rem;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.custom-accordion-toggle {
  background: none;
  border: none;
  color: inherit;
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
}

.custom-accordion-arrow i {
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #fff;
  margin-left: 1rem;
  display: inline-block;
}

.custom-accordion-toggle[aria-expanded="true"] .custom-accordion-arrow i {
  transform: rotate(180deg);
  color: #d8a474;
}


.custom-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.custom-accordion-content.open {
  max-height: 1000px; 
  opacity: 1;
  margin-top: 0.5rem;
}

.custom-accordion-inner {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.custom-accordion-title {
  font-family: var(--bold);
  font-size: clamp(24px, 3vw, 40px);
  color: #fff; 
  transition: all 0.3s ease;
}

.custom-accordion-toggle[aria-expanded="true"] .custom-accordion-title {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #6b3b27, #d8a474);
  -webkit-text-fill-color: transparent;
}


.custom-accordion-content h3 {
  font-family: var(--reg);
 font-size: clamp(14px, 3vw, 18px);
  line-height: clamp(1.5, 3vw, 1.9);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #6b3b27 10%, #d8a474 80%);
  -webkit-text-fill-color: transparent;
}

.custom-accordion-content h3 sup {
  color: #d8a474; /* or a matching solid color */
  -webkit-text-fill-color: #d8a474;
}


.custom-accordion-content p {
  font-family: var(--reg);
  font-size: clamp(14px, 3vw, 18px);
  line-height: clamp(1.5, 3vw, 1.9);
  color: transparent;
/*   background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #6b3b27 10%, #d8a474 80%);
  -webkit-text-fill-color: transparent; */
	color:#fff;
}


.scrolled-glossy {
  background-color: rgba(0, 15, 22, 0.85); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.slick-carousel {
  display: flex;
  gap: 20px;
}
.slick-slide {
  margin-right: 15px; 
}

.slick-slide:last-child {
  margin-right: 0; /* no extra margin after last slide */
}
.slick-track {
  display: flex !important;
  align-items: center;
}
.carousel-card1 .card-inner,
.top-card {
  min-height: 215px;
  flex: 0 0 auto;
}

.carousel-card2 .card-inner .bottom-card,
.carousel-card2 .bottom-logo {
  min-height: 93px;
  flex: 0 0 auto;
}

.carousel-card1 .hover-overlay {
  min-height: 215px;
  flex: 0 0 auto;
}

.carousel-card2 .hover-overlay {
  min-height: 93px;
  flex: 0 0 auto;
}



.mycard {
  background: transparent;
}

/* Card 1 (top image card) */
.carousel-card1 {
  position: relative;
  background-color: var(--bg-color);
  max-height: 215px;
  height: 215px;
  width: 330px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Card 2 (bottom logo card) */
.carousel-card2 {
  position: relative;
  background-color: var(--bg-color);
  max-height: 93px;
  height: 93px;
  width: 330px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Shared hover overlay styling */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #6b3b27, #c49364);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

/* Show overlay on hover of parent card */
.mycard:hover .carousel-card1 .hover-overlay,
.mycard:hover .carousel-card2 .hover-overlay {
  opacity: 1;
  visibility: visible;
}

.top-card {
  height: 215px; /* or whatever height you need */
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.top-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}


/* Bottom logo section */
.carousel-card2 .bottom-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 93px; /* or your preferred height */
  overflow: hidden;
}

.carousel-card2 .bottom-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


/* Company name (text) visibility */
.company-name {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 0.5rem;
}

/* Show company name text on hover */
.mycard:hover .company-name {
  opacity: 1;
  visibility: visible;
}

.hover-content{
  font-family: var(--semibold);
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  text-align: center;
}

.myslidercontainer{
  margin-top: 80px;
}

/* contact form design */
.form-wrapper{
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  border-radius: 10px;
}
.form-wrapper::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to left, #6b3b27, #d8a474);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: add, add;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0
}


.contact-form{
  background-color: transparent !important;
  padding: 30px;
    
}

.contact-form h2 {
  font-family: var(--bold);
  font-size: clamp(27px, 3vw, 46px);
  text-align: center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #6b3b27, #d8a474);
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.contact-form select,
.contact-form textarea {
  background-color: transparent;
  border: 1px solid #cfa87c;
  color: #fff;
  margin-bottom: 15px;
  padding: 10px;
  box-shadow: 0 0 15px 2px rgba(0, 8, 12, 0.9); 
  border-radius: 10px;  
  font-family: var(--reg) !important;
  font-size: 15px !important; 
}
.contact-form textarea{
  resize: none;
}

.contact-form input{
  background-color: transparent !important;
  border: 1px solid #cfa87c !important;
  margin-bottom: 15px !important;
  padding: 10px !important;
   border-radius: 10px !important; 
   font-family: var(--reg) !important;
  font-size: 15px !important;
  color: #fff !important;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px 1px rgba(207, 168, 124, 0.5) !important;
  outline: none !important;
  border: 1px solid #cfa87c !important;
  color: #fff !important;
  background-color: #555 !important;
   font-family: var(--reg) !important;
  font-size: 15px !important;
}


.contact-form input::placeholder,.contact-form select::placeholder, 
.contact-form textarea::placeholder {
  color: #fff !important;
  font-family: var(--reg) !important;
  font-size: 15px !important;
}

.contact-form .wpcf7-submit {
  background: linear-gradient(to right, #9f6944, #cfa87c) !important;
  border: none !important;
  padding: 17px 20px !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-family: var(--semibold) !important;
  font-size: 18px !important;
}

.contact-form p{
  margin: 0;
}

.required{
  color: #fe2020;
  font-family: var(--reg);
  font-size: 14px;
}

.attachment{
  font-family: var(--semibold);
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px !important;
  cursor: pointer;
}
.file-name{
  font-family: var(--semibold);
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px !important;
}
.wpcf7-response-output{
  color: #fff !important;
  font-family: var(--semibold) !important;
  font-size: 16px !important;
}

.select-wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
}

.select-wrapper::after {
  content: "\f078"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 40%;
  transform: translateY(-50%);
  pointer-events: none;
  color: white;
  font-size: 14px;
  user-select: none;
  z-index: 1;
}

.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important; /* Remove default arrow image */
  padding-right: 40px; /* Room for custom arrow */
  background-color: transparent;
  border: 1px solid #cfa87c;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px 2px rgba(0, 8, 12, 0.9);
  position: relative;
}

/* For IE11 and Edge */
.form-select::-ms-expand {
  display: none;
}

.contact-sidebar .fa-phone-volume{
  transform: rotate(270deg);
}

.sidebar_heading{
  font-family: var(--semibold);
  font-size: clamp(20px, 3vw, 30px);
  color: #B6733C;
  margin-bottom: 10px;
}

.sidebar_details{
  font-family: var(--semibold);
  font-size: clamp(16px, 3vw, 30px);
  color: #fff;
  margin-bottom: 10px;
}

.social-icon {
  width: 54px;
  height: 55px;
  border: 2px solid #B6733C; /* match your orange tone */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 20px;
}

.social-icon:hover {
  background-color: #B6733C;
  color: #000; /* optional: change icon color on hover */
  text-decoration: none;
}
/* Loader */
#intro-loader {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gif-loader {
  max-width: 100vw;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
#enter-site-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 0; /* hidden initially */
  animation: fadeInZoom 1s ease-out 0.3s forwards; /* <-- add this line */
  padding: 12px 36px;
  border-radius: 50px;
  background: linear-gradient(120deg, #6b3b27, #d8a474);
  color: #fff;
  font-size: 18px;
  font-family: var(--font-p, sans-serif);
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 0 transparent;
}

#enter-site-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  transform: translateX(0);
  transition: transform 0.4s ease;
}

#enter-site-btn:hover {
  background: linear-gradient(120deg, #d8a474, #6b3b27);
  transform:scale(1.05);
  box-shadow: 0 0 20px rgba(216, 164, 116, 0.5);
}

#enter-site-btn:hover::after {
  transform: translateX(8px);
}
/* Black Overlay */
#intro-black-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
#intro-black-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Video Section */
#video-intro-wrapper {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.video-container {
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Homepage hidden initially */
#homepage-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

#homepage-content.homepage-visible {
  display: block;
  opacity: 1;
}
#homepage-content.homepage-hidden {
  display: none !important;
  opacity: 0;
  visibility: hidden !important;
}


.slick-carousel {
  cursor: grab;
}

.slick-carousel:active {
  cursor: grabbing;
}

#video-intro-wrapper.fade-out,
#intro-black-overlay.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}
