.site_header{
  position: sticky;
  top: -46px;
  z-index: 1000;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.site_header .v {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.site_header .frame{
  width:100%;
  background-color:#383838;
  padding:12px 20px;
  height: 46px;
  display: flex;
  align-items: center;
}

.site_header .frame-container{
  max-width:1536px;
  width:calc(100% - 80px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.site_header .div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site_header .frame-2 {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site_header .frame-2 .phone_icon{
  background-color: #ffffff;
  border-radius: 50%;
  padding: 4px;
}
.site_header .frame-2 .email_icon{
  color: #ffffff;
  border-radius: 10px;
}
.site_header .frame-3 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site_header .frame-4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site_header .rectangle {
  width: 1px;
  height: 23px;
  background-color: #ffffff1a;
  flex-shrink: 0;
}

.site_header .img {
  width: 16px;
  height: 16px;
}

.site_header .SVG {
  width: 16px;
  height: 12px;
}

.site_header .img-2 {
  width: 20px;
  height: 20px;
}

.site_header .img-3 {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.site_header .image {
  width: 12px;
  height: 12px;
}

.site_header .social_icon{
  background-color: #005f5a;
  color: #333;
  border-radius: 5px;
  height: 22px;
  width: 22px;
  margin-right: 5px;
  text-align: center;
  align-items: center;
}

.site_header .social_icon svg{
  height: 20px;
}

.site_header .social_icon:hover {
  background-color: #007771; 
  color: #fff; 
  cursor: pointer; 
  transform: scale(1.1); 
  transition: all 0.3s ease;
}

.footer .social_icon{
  background-color: #005f5a;
  color: #333;
  border-radius: 5px;
  height: 26px;
  width: 26px;
  margin-right: 5px;
  text-align: center;
  align-items: center;
}

.footer .social_icon svg{
  height: 24px;
  padding: 3px;
}

.footer .social_icon:hover {
  background-color: #007771; 
  color: #fff; 
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.site_header .text-wrapper,
.site_header .text-wrapper-2,
.site_header .text-wrapper-3 {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

/* =============================
LANGUAGE & CURRENCY DROPDOWN
============================= */

.lang-switch,
.currency-switch{
  position: relative;
  cursor: pointer;
}

.dropdown-menu{
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  min-width: 120px;
  display: none;
  z-index: 999;
}

.dropdown-item{
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.dropdown-item:hover{
  background:#f5f5f5;
}

.lang-switch.active .dropdown-menu,
.currency-switch.active .dropdown-menu{
  display:block;
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */
.site_header .home {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background-color: #007771;
  border-radius: 100px;
  border-bottom: 1px solid #50576233;
  width: calc(100% - 80px);
  max-width: 1536px;
  margin: 0 auto;
  z-index: 50;
  position: relative;
  top: 15px;
  transition: all 0.3s ease;
}

.site_header .frame-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.site_header .logo-design-final {
  width: 158px;
  height: 40px;
  flex-shrink: 0;
}

.site_header .frame-6 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.site_header .frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

/* ==============================
   SERVICES DROPDOWN
   ============================== */
.site_header .frame-7.has-dropdown{
  position: relative;
}

.site_header .frame-7.has-dropdown > .nav-dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(25, 37, 58, 0.14);
  padding: 14px 8px 8px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 2px;
  visibility: hidden;
  pointer-events: none;
  transition: 
  visibility .25s ease;
}

.site_header .frame-7.has-dropdown:hover > .nav-dropdown-menu{
  visibility: visible;
  pointer-events: auto;
}
.site_header .nav-dropdown-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  font-family: "Geist-Medium", Helvetica;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  border-bottom:1px solid #d1d7db;
}
.site_header .nav-dropdown-item:last-child{
  border-bottom:none;
}

.site_header .nav-dropdown-item:hover {
  background: #f0faf9;
  color: #007771;
}

.site_header .nav-dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f1ef;
  color: #0f766e;
  flex-shrink: 0;
}

.nav-dropdown-icon svg{
  stroke:#0f766e;
  width: 20px;
  height: 20px;  
}

.site_header .text-wrapper-4 {
  font-family: "Geist-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.site_header .text-wrapper-5 {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff80;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.site_header .rectangle-2 {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 50px;
}

.site_header .rectangle-3 {
  width: 24px;
  height: 2px;
  border-radius: 50px;
}

.site_header .div-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: #ffffff0d;
  border-radius: 100px;
  border: 1px solid #ffffff80;
  flex-shrink: 0;
}

.site_header .text-wrapper-6 {
  font-family: "Geist-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}




/* ==========================================================================
   HAMBURGER MENU & MOBILE NAV DRAWER
   ========================================================================== */
.site_header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.site_header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.site_header .hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site_header .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.site_header .hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.site_header .mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(25, 37, 58, 0.14);
  padding: 16px;
  gap: 4px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
}

.site_header .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.site_header .mobile-nav a {
  font-family: "Geist-Medium", sans-serif;
  font-size: 15px;
  color: #383838;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s;
  text-decoration: none;
}

.site_header .mobile-nav a:hover {
  background: #f4f5f6;
  color: #007771;
}

.site_header .mobile-nav .mobile-nav-cta {
  margin-top: 8px;
  background: #007771;
  color: #ffffff;
  text-align: center;
  font-family: "Geist-SemiBold", sans-serif;
  border-radius: 10px;
}

.site_header .mobile-nav .mobile-nav-cta:hover {
  background: #005f5a;
  color: #ffffff;
}


/* Nav anchor link resets - preserve div-like appearance */
.site_header .frame-6 .text-wrapper-4,
.site_header .frame-6 .text-wrapper-5,
.site_header .frame-7 a {
  cursor: pointer;
  pointer-events: auto;
  display: block;
}

.site_header .frame-6 .text-wrapper-4,
.site_header .frame-6 .text-wrapper-5 {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.site_header .frame-6 .text-wrapper-4:hover,
.site_header .frame-6 .text-wrapper-5:hover {
  color: #fff;
}

.site_header a.div-wrapper {
  text-decoration: none;
}


/* Nav link hover underline animation */
.site_header .rectangle-3 {
  transition: width 0.3s ease, background-color 0.3s ease;
  width: 0;
  background-color: #ffffff;
}

.site_header .frame-7:hover .rectangle-3 {
  width: 24px;
  background-color: #ffffff;
}

/* Footer social links */
.footer .text-wrapper-70:hover,
.footer .text-wrapper-71:hover,
.footer .text-wrapper-72:hover {
  color: #ffffff;
  transition: color 0.2s ease;
}

/* Sponsor logos */
.image-2,
.image-3 {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(0.2);
}

.image-2:hover,
.image-3:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 64px 96px;
  width: 100%;
  background-color: #383838;
  border-top: 1px solid #ffffff0d;
}

.footer .container-60 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1536px;
  margin: 0 auto;
  width: 100%;
}

.footer .container-61 {
  display: flex;
  flex-direction: column;
  width: 360px;
  flex-shrink: 0;
  gap: 24px;
}

.footer .executive-inquiries,
.footer .enterprise-multi,
.footer .text-wrapper-75{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
}

.footer .enterprise-multi{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
}

.footer .enterprise-multi svg{
  flex-shrink:0;
  margin-top:7px;
}

.footer .text-wrapper-75 svg{
  flex-shrink:0;
  margin-top:7px;
}

.footer .enterprise-multi .info-text{
  display:flex;
  flex-direction:column;
}

.footer .enterprise-multi .span{
  color:#94a3b8;
}

.footer .enterprise-multi .text-wrapper-76{
  color:#ffffff;
}

.footer .container-62 {
  width: 100%;
  max-width: 280px;
}

.footer .elevating {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 16px;
  line-height: 24px;
  max-width: 322px;
}

.footer .container-63 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .text-wrapper-70,
.footer .text-wrapper-71,
.footer .text-wrapper-72 {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
}

.footer .container-64 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.footer .text-wrapper-73 {
  font-family: "Geist-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
}

.footer .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .text-wrapper-74,
.footer .text-wrapper-75 {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.footer .executive-inquiries,
.footer .enterprise-multi {
  font-family: "Geist-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 14px;
  line-height: 20px;
}

.footer .span {
  color: #94a3b8;
}

.footer .text-wrapper-76 {
  color: #ffffff;
}

.footer .horizontal-border {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  width: 100%;
  border-top: 1px solid #ffffff0d;
  max-width: 1536px;
  margin: 0 auto;
}

.footer .frame-38 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer .div-wrapper-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .text-wrapper-77 {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.footer .container-65 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer .link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}

.footer .text-9,
.footer .text-10 {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}


/* Footer anchor link resets */
.footer .container-64 .list a {
  text-decoration: none;
  /* color: inherit; */
  display: block;
}

.footer .container-64 .list a:hover {
  color: #007771;
}

.faq-item input{
display:none;
}

.container-58{
cursor:pointer;
}

.container-59{
max-height:0;
overflow:hidden;
opacity:0;
padding:0 32px;
transition:max-height .45s cubic-bezier(.22,1,.36,1),
opacity .3s ease,
padding .45s cubic-bezier(.22,1,.36,1);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.site-main .scalable-service-5 {
  width: 100%;
  background-color: #ffffff;
  padding: 96px 20px 96px 96px;
}

.site-main .container-56 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 896px;
  margin: 0 auto;
  width: 100%;
}

.site-main .text-wrapper-63 {
  font-family: "Geist-Bold", Helvetica;
  font-weight: 700;
  color: #0f172a;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
}

.site-main .container-57 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.site-main .background-border-3,
.site-main .background-border-4 {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 10px -2px #00000005, 0 4px 20px -2px #0000000d;
}

.site-main .container-58 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  gap: 16px;
}

.site-main .text-wrapper-64 {
  font-family: "Geist-Bold", Helvetica;
  font-weight: 700;
  color: #1e293b;
  font-size: 20px;
  line-height: 28px;
}

.site-main .minus-sign {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-main .container-59 {
  padding: 0 32px 32px;
}

.site-main .text-wrapper-65 {
  font-family: "Geist-Light", Helvetica;
  font-weight: 300;
  color: #64748b;
  font-size: 16px;
  line-height: 26px;
}


.faq-item input:checked ~ .container-59{
max-height:500px;
opacity:1;
padding:0 32px 32px;
}

.faq-icon{
width:16px;
height:16px;
background:url("../img/home/container-19.svg") center no-repeat;
background-size:contain;
flex-shrink:0;
transition:transform .3s ease;
}

.faq-item input:checked + .container-58 .faq-icon{
background:url("../img/home/minus-sign.svg") center no-repeat;
background-size:contain;
}

.faq-item:hover{
border-color:#e2e8f0;
}



/* 5. FAQ items — fade up with stagger */
.faq-area .faq-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.faq-area.is-visible .faq-item {
  opacity: 1;
  transform: none;
}

.faq-area .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-area .faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-area .faq-item:nth-child(3) { transition-delay: 0.25s; }
.faq-area .faq-item:nth-child(4) { transition-delay: 0.35s; }
.faq-area .faq-item:nth-child(5) { transition-delay: 0.45s; }

.faq-area.is-visible .faq-item:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
