/* .modalOverlay {
/* .modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overscroll-behavior: contain;
  touch-action: none;
}

.modalContent {
  padding: 15px;
  border-radius: 20px;
  width: 480px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Custom scrollbar styles */
.CalendarModel_modalContent___fjsT::-webkit-scrollbar {
  width: 6px;
}

.CalendarModel_modalContent___fjsT::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.CalendarModel_modalContent___fjsT::-webkit-scrollbar-thumb {
  background: rgba(109, 74, 255, 0.6);
  border-radius: 3px;
}

.CalendarModel_modalContent___fjsT::-webkit-scrollbar-thumb:hover {
  background: rgba(109, 74, 255, 0.8);
}

/* Heading styles for main headings */
.CalendarModel_heading__LAX8r {
  font-size: 21px !important;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 8px;
}

/* Underline effect for main headings */
.CalendarModel_heading__LAX8r::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: translateX(-50%);
  width: 20%;
  height: 2px;

  background: linear-gradient(90deg, #6d4aff 0%, #8a5aff 100%);
}

/* Subheading styles for time selection */
.CalendarModel_subHeading__4z4nJ {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 6px;
}

/* Underline effect for subheading */
.CalendarModel_subHeading__4z4nJ::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #6d4aff 0%, #8a5aff 100%);
}

.CalendarModel_closeButton__hkzQx {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #6d4aff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
}

.CalendarModel_closeButton__hkzQx:hover {
  background: #5c3de0;
}

.CalendarModel_errorMessage__LemcN {
  color: #ff6b6b;
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
}

.CalendarModel_successMessage__GbZQx {
  text-align: center;
  font-size: 16px;
  border-radius: 25px;
  padding: 1.5rem;
}

.CalendarModel_successMessage__GbZQx p {
  margin: 8px 0;
}

.CalendarModel_successMessage__GbZQx a {
  color: #6d4aff;
  text-decoration: none;
}

.CalendarModel_successMessage__GbZQx a:hover {
  text-decoration: underline;
}

.CalendarModel_upperSection__G_SEQ {
  border-radius: 15px;
  padding: 15px;
}

.CalendarModel_emailSection__6uZeN {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.CalendarModel_inputContainer__mV0Gl {
  display: flex;
  align-items: center;
  position: relative;
}

.CalendarModel_inputLabelBox__vQpjX {
  background: #6d4aff;
  border-radius: 10px;
  padding: 8px 20px;
  flex: 0 0 auto;
  height: 40px;
  display: flex;
  align-items: center;
}

.CalendarModel_inputLabel__7aCuJ {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.CalendarModel_pipeWrapper__bWl9L {
  position: relative;
  width: 25px;
  height: 40px;
}

.CalendarModel_pipe__JECmV {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #6d4aff;
  transform: translateY(-50%);
}

.CalendarModel_blinker__nI6oA {
  position: absolute;
  top: 47%;
  left: 6px;
  width: 20px;
  height: 3px;
  background: #fff;
  transform: translateY(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.CalendarModel_inputBox__BXs2w {
  flex: 1;
  background: #6d4aff;
  border-radius: 10px;
  padding: 8px 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.CalendarModel_emailInput__iblRs {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.CalendarModel_emailInput__iblRs::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.CalendarModel_emailInput__iblRs::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.CalendarModel_validateButton__Fqn_A,
.CalendarModel_submitButton__3NqTH,
.CalendarModel_backButton__yN81L {
  background: linear-gradient(90deg, #6d4aff 0%, #8a5aff 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.CalendarModel_validateButton__Fqn_A:hover,
.CalendarModel_submitButton__3NqTH:hover,
.CalendarModel_backButton__yN81L:hover {
  opacity: 1;
}

.CalendarModel_validateButton__Fqn_A:disabled,
.CalendarModel_submitButton__3NqTH:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.CalendarModel_userInfo__Z2e34 {
  position: sticky;
  top: 0;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.CalendarModel_calendarSection__q6t3w {
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.CalendarModel_calendar__X7AuV {
  border-radius: 15px;
  padding: 0;
}

.CalendarModel_monthNavigation__y_K8G {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.CalendarModel_monthNavigation__y_K8G span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.CalendarModel_navButton__Hp_5_ {
  background: #6d4aff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 14px;
}

.CalendarModel_navButton__Hp_5_:hover {
  background: #5c3de0;
}

.CalendarModel_daysOfWeek__jieCy {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.CalendarModel_daysGrid__1cRJH {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.CalendarModel_day__tqVxD,
.CalendarModel_emptyDay__jnBUF {
  padding: 8px;
  text-align: center;
  font-size: 12px;
}

.CalendarModel_day__tqVxD {
  background: #2a1a5e;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.CalendarModel_day__tqVxD:hover:not(.CalendarModel_disabled___fP77) {
  background: #5c3de0;
}

.CalendarModel_day__tqVxD.CalendarModel_selected___Du1H {
  background: #ff6b6b;
  color: white;
}

.CalendarModel_day__tqVxD.CalendarModel_disabled___fP77 {
  background: #1e1242;
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.CalendarModel_timeSelection__Q2evi {
  border-radius: 15px;
  padding: 0;
}

.CalendarModel_timeGrid__Qs_jH {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.CalendarModel_timeSlot__mkEAD {
  padding: 8px;
  background: #2a1a5e;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  transition: background 0.3s;
}

.CalendarModel_timeSlot__mkEAD:hover:not(.CalendarModel_disabled___fP77) {
  background: #5c3de0;
}

.CalendarModel_timeSlot__mkEAD.CalendarModel_selectedTime__r6ky0 {
  background: #ff6b6b;
  color: white;
}

.CalendarModel_timeSlot__mkEAD.CalendarModel_disabled___fP77 {
  background: #1e1242;
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}
/* styles/CalendarModel.module.css */
.CalendarModel_modalOverlay__gR2ey {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overscroll-behavior: contain;
  touch-action: none;
}

.CalendarModel_modalContent___fjsT {
  background: linear-gradient(135deg, #2a1a5e 0%, #4b2e83 100%);
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  max-height: 75vh;
  overflow-y: auto;
  position: relative;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.CalendarModel_closeButton__hkzQx {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #6d4aff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
}

.CalendarModel_closeButton__hkzQx:hover {
  background: #5c3de0;
}

.CalendarModel_modalContent___fjsT h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}

.CalendarModel_errorMessage__LemcN {
  color: #ff6b6b;
  margin-bottom: 15px;
  text-align: center;
  font-size: 14px;
}

.CalendarModel_successMessage__GbZQx {
  text-align: center;
  font-size: 16px;
}

.CalendarModel_successMessage__GbZQx p {
  margin: 10px 0;
}

.CalendarModel_successMessage__GbZQx a {
  color: #6d4aff;
  text-decoration: none;
}

.CalendarModel_successMessage__GbZQx a:hover {
  text-decoration: underline;
}

.CalendarModel_emailSection__6uZeN {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.CalendarModel_inputWrapper__eieqO {
  display: flex;
  align-items: center;
  background: #6d4aff;
  border-radius: 25px;
  padding: 5px 15px;
}

.CalendarModel_inputLabel__7aCuJ {
  color: white;
  font-size: 16px;
  margin-right: 10px;
  font-weight: 500;
}

.CalendarModel_emailInput__iblRs {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  outline: none;
}

.CalendarModel_emailInput__iblRs::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.CalendarModel_emailInput__iblRs::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.CalendarModel_validateButton__Fqn_A,
.CalendarModel_submitButton__3NqTH,
.CalendarModel_backButton__yN81L {
  background: linear-gradient(90deg, #6d4aff 0%, #8a5aff 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.CalendarModel_validateButton__Fqn_A:hover,
.CalendarModel_submitButton__3NqTH:hover,
.CalendarModel_backButton__yN81L:hover {
  opacity: 1;
}

.CalendarModel_validateButton__Fqn_A:disabled,
.CalendarModel_submitButton__3NqTH:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.CalendarModel_userInfo__Z2e34 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.CalendarModel_contentWrapper__q0ihh {
  overflow: hidden;
}

.CalendarModel_calendar__X7AuV {
  transition: transform 0.3s;
  background: #3b2479;
  border-radius: 15px;
  padding: 15px;
}

.CalendarModel_calendar__X7AuV.CalendarModel_swipeOut__mJjub {
  transform: translateX(-100%);
}

.CalendarModel_monthNavigation__y_K8G {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.CalendarModel_monthNavigation__y_K8G span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.CalendarModel_navButton__Hp_5_ {
  background: #6d4aff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.CalendarModel_navButton__Hp_5_:hover {
  background: #5c3de0;
}

.CalendarModel_daysOfWeek__jieCy {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.CalendarModel_daysGrid__1cRJH {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.CalendarModel_day__tqVxD,
.CalendarModel_emptyDay__jnBUF {
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.CalendarModel_day__tqVxD {
  background: #2a1a5e;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.CalendarModel_day__tqVxD:hover:not(.CalendarModel_disabled___fP77) {
  background: #5c3de0;
}

.CalendarModel_day__tqVxD.CalendarModel_selected___Du1H {
  background: #ff6b6b;
  color: white;
}

.CalendarModel_day__tqVxD.CalendarModel_disabled___fP77 {
  background: #1e1242;
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.CalendarModel_timeSelection__Q2evi {
  transition: transform 0.3s;
  background: #3b2479;
  border-radius: 15px;
  padding: 15px;
}

.CalendarModel_timeSelection__Q2evi.CalendarModel_swipeIn__jMxgP {
  transform: translateX(0);
}

.CalendarModel_timeSelection__Q2evi h3 {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.CalendarModel_timeGrid__Qs_jH {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.CalendarModel_timeSlot__mkEAD {
  padding: 10px;
  background: #2a1a5e;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  transition: background 0.3s;
}

.CalendarModel_timeSlot__mkEAD:hover:not(.CalendarModel_disabled___fP77) {
  background: #5c3de0;
}

.CalendarModel_timeSlot__mkEAD.CalendarModel_selectedTime__r6ky0 {
  background: #ff6b6b;
  color: white;
}

.CalendarModel_timeSlot__mkEAD.CalendarModel_disabled___fP77 {
  background: #1e1242;
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}
.Footer_container__fqbok {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 4rem;
  color: #ffffff; 
  font-family: "Geist Regular", sans-serif;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  align-items: flex-start;
}

.Footer_section__ZlOz5 {
  flex: 1 1 auto;
  margin: 1rem;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Footer_section__ZlOz5:last-child {
  flex: 1 1 100%;
  width: 100%;
  margin: 1rem 0;
}

.Footer_title__Q46MN {
  /* font-size: 1.25rem; */
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff; 
}

.Footer_smallText__pEz2C {
  font-size: 0.875rem;
  margin: 0.5rem 0;
  color: #ccc; 
}

.Footer_followUs__H1ygt .Footer_socialIcons__CLKyT {
  display: flex;
  gap: 0;
}

.Footer_horizontalLine__0bcKO {
  width: 1px;
  height: 80px;
  background-color: #ccc;
  margin: 0;
  align-self: center;
}

.Footer_dmcaBox__w_K1A {
  display: inline-flex;
  border: 1px solid #fff;
  border-radius: 4px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.Footer_dmca__t3pLt {
  background-color: #f0f0f0;
  color: #000;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.Footer_protected__nba14 {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.Footer_globalPresence__JUsDX .Footer_region__q4vrV {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  flex-shrink: 0;
}

.Footer_country__sErSf {
  /* font-size: 1.25rem; */
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
  white-space: nowrap;
}

.Footer_contact__a_MVg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  color: #ccc;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.Footer_icon__CRMUB {
  font-size: 1rem;
  color: #ccc;
}

.Footer_logo__NpJo2{
  width: auto;
  max-width: 200px;
  height: 50px;
  align-self: center;
  margin-top: 0;
  margin-left: auto;
}


.Footer_securityCompliance__cg5D_ .Footer_grid__AXi5S {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 250px;
  align-items: flex-start;
}

.Footer_contactItem__8qSuf {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.Footer_icons___LYNo {
  display: flex;
  gap: 1rem;
  width: auto;
  max-width: 300px;
}

.Footer_linkContainer__N4I6f{
  font-size: 0.875rem;
  color: #ccc;
  max-width: 100%;
}

.Footer_globalPresence__JUsDX{
  margin-top: .5rem;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.Footer_footerRegion__ZSTzR {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  flex-wrap: nowrap;
}

@media (min-width: 1441px) {
  .Footer_container__fqbok {
    padding: 2rem 6rem;
  }
  
  .Footer_section__ZlOz5 {
    margin: 1rem 2rem;
  }
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .Footer_container__fqbok {
    padding: 2rem 3rem;
  }

  .Footer_section__ZlOz5 {
    margin: 1rem 1.5rem;
  }

  .Footer_securityCompliance__cg5D_ .Footer_grid__AXi5S {
    width: 80%;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .Footer_container__fqbok {
    padding: 1.5rem 2rem;
  }

  .Footer_section__ZlOz5 {
    margin: 1rem;
    flex: 1 1 45%;
  }

  .Footer_icons___LYNo {
    gap: 0.75rem;
    width: auto;
  }

  .Footer_securityCompliance__cg5D_ .Footer_grid__AXi5S {
    width: 100%;
    max-width: 300px;
  }

  .Footer_logo__NpJo2 {
    width: 60%;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .Footer_container__fqbok {
    flex-direction: column;
    padding: 1rem;
  }

  .Footer_section__ZlOz5 {
    margin: 0.5rem 0;
  }
  
  .Footer_section__ZlOz5:last-child {
    flex: 1 1 auto;
    width: auto;
  }

  .Footer_icons___LYNo {
    justify-content: center;
    gap: 0.5rem;
  }

  .Footer_linkContainer__N4I6f {
    font-size: 0.75rem;
  }

  .Footer_logo__NpJo2 {
    display: none;
  }

  .Footer_securityCompliance__cg5D_{
    display: none;
  }
  
  .Footer_globalPresence__JUsDX {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .Footer_footerRegion__ZSTzR {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .Footer_globalPresence__JUsDX .Footer_region__q4vrV {
    gap: 1rem;
  }
  
  .Footer_horizontalLine__0bcKO {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
  }
}

@media screen and (min-width: 1400px) and (max-height: 900px){
  .Footer_container__fqbok {
    padding: 2rem 4rem;
  }
  
  .Footer_section__ZlOz5{
    margin: 1rem 1.5rem;
  }
}
/* Core styles remain mostly unchanged */
.HeaderInner_contentContainer__qMABd {
  display: flex;
  justify-content: center;
  width: 100%;
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  z-index: 1000;
  font-family: "Geist Regular", sans-serif;
  height: 10vh;
  font-weight: 300;
}

.HeaderInner_contentContainer__qMABd.HeaderInner_scrolled__rNNEY {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.HeaderInner_headerInner__plL_D {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  padding: 10px 0;
}

.HeaderInner_nightHeading__P_aPF {
  color: white;
}

.HeaderInner_themeToggleStyled__kUX_Z {
  position: relative;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(243, 122, 107, 0) 0%,
    rgba(149, 0, 255, 1) 100%
  );
  color: var(--textColor); /* use theme-aware CSS variable */
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.HeaderInner_logo__oM_Ht {
  height: clamp(60px, 3vw, 8rem);
  cursor: pointer;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.HeaderInner_navMenu__WP_X0 {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  font-size: clamp(10px, 1vw, 3.5rem);
  color: white;
}

.HeaderInner_navMenu__WP_X0 p {
  font-size: clamp(10px, 1vw, 3.5rem);
  cursor: pointer;
}

.HeaderInner_contactUsButton__Hi4cO {
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  font-size: clamp(8px, 0.9vw, 3rem);
  position: relative;
  transition: background-color 0.3s ease;
}

.HeaderInner_whatsappIcon__g8QgR {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  width: 35px !important;
  height: 35px !important;
  /* background-color: #25D366 !important; */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  transition:
    transform 0.2s ease,
    background-color 0.3s ease !important;
}

.HeaderInner_whatsappIcon__g8QgR:hover {
  transform: scale(1.1) !important;
}

.HeaderInner_whatsappImage__ppYxH {
  width: 25px !important;
  height: 25px !important;
  /* border-radius: 50% !important; */
}

.HeaderInner_menuButton__oBxN0 {
  display: none;
  cursor: pointer;
}

.HeaderInner_megaMenuContent__j0AzJ {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: absolute;
  top: 6vh;
  left: -16vw;
  background-color: #11041c;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  width: 77vw;
}

.HeaderInner_resourcesMegaMenu__eDKvY {
  grid-template-columns: repeat(1, 1fr);
  width: 25vw;
  left: 50%;
  transform: translateX(-50%);
}

.HeaderInner_megaMenuItem__jfqQl {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
}

.HeaderInner_megaMenuItem__jfqQl:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.HeaderInner_dropdown__jw2LB .HeaderInner_textContainer__apYi5 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.HeaderInner_disabled__vazHg {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto;
}

.HeaderInner_disabledButton__9tdBf {
  opacity: 0.5;
  cursor: not-allowed;
}

.HeaderInner_megaMenuItemImage__izFHY {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.HeaderInner_megaMenuUnderLine__A4g6k {
  width: 30%;
}

.HeaderInner_megaMenuItemHeading__vG4wB {
  font-size: 0.9rem !important;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.HeaderInner_megaMenuItemDescription__hN6Gh {
  font-size: 0.9rem !important;
  color: #afafaf;
  margin: 0;
}

.HeaderInner_dropdown__jw2LB {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.HeaderInner_dropdownTitle__JwiZ6 {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.HeaderInner_dropdownTitle__JwiZ6:hover {
  color: #d87775;
}

.HeaderInner_sidebar__ARBJs {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: right 0.3s ease;
}

.HeaderInner_sidebarOpen__3oOMC {
  right: 0;
}

.HeaderInner_headerBar__rgAJ7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
}

.HeaderInner_menuArea__ZuvIi {
  flex: 1;
  background-color: #000;
  color: white;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.HeaderInner_menuItem__K8w0X {
  padding: 1.5rem 1rem;
  width: 100%;
  cursor: pointer;
  font-size: 1.2rem;
}

.HeaderInner_menuItem__K8w0X:hover {
  background-color: #333;
}

.HeaderInner_backHeader__j4Cmf {
  padding: 1.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.HeaderInner_backHeader__j4Cmf:hover {
  background-color: #333;
}

.HeaderInner_subItem__bXocv {
  padding: 1rem 1rem 1rem 2.5rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.HeaderInner_subItem__bXocv img {
  margin-right: 0.75rem;
}
@media (max-width: 768px) {
  .HeaderInner_contentContainer__qMABd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .HeaderInner_contactUsButton__Hi4cO {
    font-size: clamp(12px, 0.9vw, 3rem);
  }

  .HeaderInner_whatsappIcon__g8QgR {
    width: 28px !important;
    height: 28px !important;
  }

  .HeaderInner_whatsappImage__ppYxH {
    width: 18px !important;
    height: 18px !important;
  }

  .HeaderInner_sidebarOpen__3oOMC {
    width: 95%;
  }

  .HeaderInner_menuItem__K8w0X {
    font-size: 1.2rem;
  }

  .HeaderInner_subItem__bXocv {
    font-size: 1rem;
  }
  .HeaderInner_dropdownContentMobile__bgSh4 {
    display: block;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #523f7261;
    padding: 1rem;
    width: 130%;
    margin-top: 1rem;
    box-sizing: border-box;
    border-radius: 20px;
    opacity: 1;
    visibility: visible;
  }

  .HeaderInner_dropdownItem__fRzHP {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
  }

  .HeaderInner_megaMenuItem__jfqQl {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 8px 0;
    border-radius: 8px;
    width: 20rem;
    background: transparent;
  }

  .HeaderInner_dropdownArrow__XECG8 {
    font-size: 1.5rem;
    color: #fff;
  }

  .HeaderInner_megaMenuUnderLine__A4g6k {
    width: 30%;
    height: 2px;
    background: #fff;
  }

  .HeaderInner_textContainer__apYi5 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
  }

  .HeaderInner_titleContainer__byn_I {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    min-width: 250px;
    overflow-x: auto;
    padding: 1.5rem 0px 1.5rem 10px;
    scrollbar-width: thin;
    scrollbar-color: #523f72 transparent;
  }

  .HeaderInner_titleContainer__byn_I::-webkit-scrollbar {
    height: 5px;
  }

  .HeaderInner_titleContainer__byn_I::-webkit-scrollbar-thumb {
    background: #523f72;
    border-radius: 5px;
  }

  .HeaderInner_titleContainer__byn_I::-webkit-scrollbar-track {
    background: transparent;
  }

  .HeaderInner_arrowContainer__1PBeX {
    display: flex;
    width: 6rem;
  }

  .HeaderInner_dropdownTitle__JwiZ6 {
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 0.5rem 0;
  }

  .HeaderInner_megaMenuItem__jfqQl h4 {
    font-size: clamp(10px, 0.9vw, 3rem);
    font-weight: bold;
    color: #fff;
    margin: 0;
  }

  .HeaderInner_megaMenuItem__jfqQl p {
    font-size: clamp(8px, 0.8vw, 2rem);
    color: #afafaf;
    margin: 0;
  }

  .HeaderInner_megaMenuItem__jfqQl img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
    display: inline-block;
  }

  .HeaderInner_menuButton__oBxN0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .HeaderInner_navMenu__WP_X0 {
    display: none;
  }

  .HeaderInner_headerInner__plL_D {
    width: 95%;
    padding: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .HeaderInner_sidebar__ARBJs {
    display: none;
  }

  .HeaderInner_headerInner__plL_D {
    width: 90%;
  }

  .HeaderInner_navMenu__WP_X0 {
    gap: 0.75rem;
  }

  .HeaderInner_logo__oM_Ht {
    height: clamp(30px, 2.5vw, 10rem);
  }

  .HeaderInner_contactUsButton__Hi4cO {
    font-size: clamp(10px, 0.9vw, 2rem);
    padding: 8px 16px;
  }

  .HeaderInner_whatsappIcon__g8QgR {
    width: 30px !important;
    height: 30px !important;
  }

  .HeaderInner_whatsappImage__ppYxH {
    width: 18px !important;
    height: 18px !important;
  }

  .HeaderInner_megaMenuContent__j0AzJ {
    grid-template-columns: repeat(2, 1fr);
    width: 70vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .HeaderInner_resourcesMegaMenu__eDKvY {
    width: 25vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .HeaderInner_megaMenuItem__jfqQl {
    gap: 0.5rem;
    padding: 0.5rem;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .HeaderInner_headerInner__plL_D {
    width: 90%;
  }

  .HeaderInner_navMenu__WP_X0 {
    gap: 1vw;
  }

  .HeaderInner_logo__oM_Ht {
    height: clamp(35px, 2.8vw, 10rem);
  }

  .HeaderInner_contactUsButton__Hi4cO {
    font-size: clamp(10px, 0.85vw, 2rem);
    padding: 8px 18px;
  }

  .HeaderInner_whatsappIcon__g8QgR {
    width: 32px !important;
    height: 32px !important;
  }

  .HeaderInner_whatsappImage__ppYxH {
    width: 20px !important;
    height: 20px !important;
  }
}

