/* public\css\Style.module.css */

/************ TABLE OF CONTENTS ***************
1. LangSwitcher
2. Form Control
3. Password Toggle Button
4. Global Settings
5. Main Header / TWO / Three
6. Sticky Header
7. Mobile Menu
8. Section Title
9. Page Title
10. Main Slider
11. Banner Section / Two
12. About Section / Two / Three / Four / Five
13. Countries Section / Two / Three
14. Services Section / Two
15. Testimonial / Two / Three
16. Clients Section
17. Fun Fact Section / Two
18. Gallery Section / Two
19. Why Choose Us / Two / Three
20. Training Section / Two / Three
21. Process Section / Two
22. Call To Action / Two
23. FAQ's Section
24. Team Section
25. News Section / Two / Three
26. Main Footer
**********************************************/


/***

====================================================================
LangSwitcher.module.css
====================================================================

***/
.switcherContainer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
}

.langButton {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}

/* Modifier class for active lang button */
.active {
  opacity: 1;
}

/* --- End of LangSwitcher.module.css --- */


/* Form Control */
.form-control {
  width: 100%;
  padding-right: 40px;
  /* Make room for the button */
}

.inputWrapper {
  position: relative;
}

.passwordToggleBtn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.position-relative {
  position: relative;
}

.checkmark {
  position: absolute;
  right: 10px;
  /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  /* Adjust as  needed */
  color: green;
  /* Color of the checkmark */
}

/* MobileMenuCss */
.cartIcon {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* cursor: pointer; */
  /* display: inline-block; */
}

.cartIcon a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.faShoppingCart {
  font-size: 24px;
  display: flex;
  align-items: center;
}

.cartCount {
  margin-left: 8px;
  position: relative;
  top: -12px;
  background-color: #945c25;
  color: white;
  /* Adjust text color as needed */
  border-radius: 50%;
  /* Better for small circular badges */
  padding: 2px 6px;
  /* Reduced padding for a smaller background */
  font-size: 12px;
  /* Adjusted font size */
  line-height: 1;
  /* Ensure text is vertically centered */
  min-width: 18px;
  /* Ensures the badge has a minimum width */
  text-align: center;
  /* Center align the count text */
}

.cartTooltip {
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  /* left: 0; */
  background: #ebdede48;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: flex;
  /* Adjust the width as needed */
  border-radius: 4px;
}

.cartIconDark {
  position: relative;
  /* This is crucial for positioning the tooltip */
  cursor: pointer;
}

.cartTooltipDark {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  /* Position right below the cart icon */
  right: 0;
  background: linear-gradient(90deg,
      #945c25 30%,
      rgba(255, 255, 255, 0.5) 100%);
  /* Gradient background from left to right */
  border: 1px solid #ddd;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  /* Optional box shadow */
  z-index: 10;
  width: 250px;
  /* Adjust the width as needed */
  padding: 10px;
  border-radius: 4px;
  color: black;
  /* Text color */
}

.cartIcon:hover .cartTooltip,
.cartIcon:focus-within .cartTooltip {
  visibility: visible;
}

.tooltipHeader {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.cartItem {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.itemInfo p {
  margin: 0;
}

.totalPrice {
  border-top: 1px solid #ccc;
  padding-top: 8px;
  display: right;
  justify-content: flex-end;
  font-weight: bold;
}

.cartTable {
  width: 100%;
  border-collapse: collapse;
}

.cartTable th,
.cartTable td {
  padding: 8px;
}

.cartTable th {
  text-align: left;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  background-color: #945c25;
  /* Add some margin at the top for spacing */
}

.buttonDarkContainer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  /* Add some margin at the top for spacing */
}

/* //components\layout\NavLinks.js */

/* Navigation styling to match main menu */
.navigation {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 0;
  margin-right: 55px;
  list-style: none;
}

.navigation > li:last-child {
  margin-right: 0;
}

/* Responsive adjustments for navigation alignment */
@media (max-width: 768px) {
  .navigation > li {
    padding: 15px 0;
    margin-right: 30px;
  }
  
  .cartIcon {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .navigation > li {
    padding: 10px 0;
    margin-right: 20px;
  }
  
  .navigation {
    flex-wrap: wrap;
  }
}

/* User Dropdown - Following main-menu navigation pattern */
.userDropdown {
  position: relative;
  list-style: none;
}

.userDropdown > div {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  height: 100%;
}

.userDropdown > div > i {
  font-size: 24px;
}

/* Dropdown menu - matches professional navigation pattern */
.userDropdown ul {
  position: absolute;
  left: auto;
  right: 0px;
  top: 100%;
  width: 180px;
  z-index: 100;
  padding: 10px 0 0;
  /* Padding-top creates seamless hover bridge */
  background-color: #ffffff;
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  display: none;
  box-shadow:
    2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  list-style: none;
  transition: all 300ms ease;
}

/* Show dropdown on hover */
.userDropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
}

.userDropdown ul li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}

.userDropdown ul li:last-child {
  border-bottom: none;
}

/* Links match main navigation style */
.userDropdown ul li a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-theme-color1);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms ease;
}

.userDropdown ul li a:hover {
  color: var(--theme-color2);
}

/* Logout Link */
.logoutLink {
  cursor: pointer;
  color: red;
}

.redAsterisk {
  color: red;
  margin-left: 2px;
  /* Adjust margin as needed */
  font-weight: bold;
  /* Optional: makes the asterisk more noticeable */
}


/* FlipBook styles */
.demoPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Align items to the top */
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;
  height: 100%;
  padding: 20px;
  touch-action: auto;
  /* Should not be `none`! */
}

/* .demoPage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
} */

.backButtonContainer {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

.button {
  margin: 10px 0;
  z-index: 5;
}

.pageNumberContainer {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  padding: 0px 0px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.demoPage .pageNumberText {
  margin: 5px 20px;
  color: brown;
  font-weight: bold;
  font-size: 14px;
  /* Adjust this value for smaller text size */
}

.flipContainer {
  width: 100%;
  max-width: 800px;
  height: 100%;
  perspective: 1000px;
  position: relative;
}

.book {
  width: 100%;
  height: auto;
  margin: auto;
}

.page {
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.container {
  display: flex;
  justify-content: center;
}


.zoomBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #f8f8f8;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 4px 10px;
  min-width: 200px;
  font-weight: bold;
  margin-bottom: 20px;
  /* put this to let buttons sit right */
}

.zoomText {
  margin: 0 10px;
  color: brown;
  font-weight: bold;
  font-size: 14px;
}

.zoomButton {
  background: #e6dcc8;
  color: brown;
  border: 1px solid #bda16a;
  font-size: 18px !important;
  font-weight: bold;
  min-width: 30px;
  min-height: 30px;
  border-radius: 6px;
  margin: 0 2px;
  transition: background 0.2s;
}

.zoomButton:hover {
  background: #bda16a;
  color: #fff;
}

.zoomButton:disabled {
  opacity: 0.5;
}

.topBar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}


/* Pluggins Images - FeatureOne.module.css*/
.innerBox {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  display: flow-root;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.iconBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 50%;

  /* position: relative;
  min-width: 110px;
  text-align: center;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; */
  background-color: var(--bg-theme-color4);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.icon {
  font-size: 40px;
  color: #3498db;
  margin-left: 10px;
  width: 90px;
  /* Set the desired width */
  height: 90px;
  /* Set the desired height */
  margin-left: 10px;
}

.count {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.content-box {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.text {
  font-size: 14px;
  color: #777;
}


/* -------- Main Header ---------- */
.header-span {
  position: relative;
  height: 60px;
  display: block;
  width: 100%;
}

.mainHeader {
  position: relative;
  width: 100%;
  z-index: 999;
}

.headerTop {
  position: relative;
  margin-left: 335px;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headerTop .innerContainer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.headerTop .top-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headerTop .top-right {
  position: relative;
}

.headerTop .useful-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}

.headerTop .useful-links li {
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 13px;
  color: #808287;
  line-height: 20px;
}

.headerTop .useful-links li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.headerTop .useful-links li:first-child:before {
  display: none;
}

.headerTop .useful-links li:before {
  position: absolute;
  left: -3px;
  top: 0;
  content: '/';
}

.headerTop .useful-links li a {
  color: #808287;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.headerTop .useful-links li a:hover {
  color: var(--theme-color1);
}

.headerTop .outerBox {
  min-width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mainHeader .headerLower {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mainHeader .headerLower .logoBox {
  position: relative;
  padding: 24px 0;
  min-width: 80px;
}

.mainHeader {
  width: 100%;
  z-index: 999;
}

.mainHeader .logo {
  position: relative;
  display: block;
}

.mainHeader .logo img {
  max-width: 40%;
  height: auto;
}

.mainHeader .logo2 {
  position: relative;
  display: block;
}

.mainHeader .logo2 img {
  max-width: 50%;
  height: auto;
}

.mainHeader .mainBox {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mainHeader .mainBox .navOuter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: right;
  -ms-flex-align: right;
  align-items: right;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.mainMenu {
  position: relative;
}

.mainMenu .navbar-header {
  display: none;
}


/* -------- theme-btn ---------- */
.themeBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.themeBtn .btnTitle {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*Btn Style One*/
.btnStyleOne {
  position: relative;
  font-size: 12px;
  line-height: 24px;
  padding: 15px 50px;
  font-weight: 400;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 1;
  background: var(--bg-theme-color2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.btnStyleOne:before,
.btnStyleOne:after {
  content: '';
  background-color: var(--bg-theme-color1);
  height: 50%;
  width: 0;
  position: absolute;
  -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btnStyleOne:before {
  top: 0;
  left: 0;
  right: auto;
}

.btnStyleOne:after {
  bottom: 0;
  right: 0;
  left: auto;
}

.btnStyleOne:hover .btnTitle {
  color: #ffffff;
}

.btnStyleOne:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}

.btnStyleOne:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.btnStyleOne.light {
  background: #ffffff;
  color: var(--theme-color1);
  font-weight: 500;
}

.btnStyleOne.light:before,
.btnStyleOne.light:after {
  background: var(--bg-theme-color2);
}

.btnStyleOne.bg-theme-color3 {
  background: var(--bg-theme-color3);
}

.btnStyleOne.bg-theme-color3:before,
.btnStyleOne.bg-theme-color3:after {
  background: var(--bg-theme-color2);
}

.btnStyleOne.bg-theme-color4 {
  background: var(--bg-theme-color4);
  color: var(--theme-color1);
}

.btnStyleOne.bg-theme-color4:before {
  background: var(--bg-theme-color1);
}

/* -------- End BtnStyleone-btn ---------- */

/* -------- End Main Header ---------- */


/***

====================================================================
  Search Popup
====================================================================

***/
.searchPopup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.searchPopup .searchBackDrop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-theme-color1);
  opacity: 0.95;
}

.searchPopup .closeSearch {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 26px;
  color: var(--theme-color2);
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.searchPopup .searchInner {
  position: relative;
  display: block;
  top: 40%;
  height: auto;
  z-index: 1;
  width: calc(100% - 60px);
  max-width: 800px;
  margin: auto;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.searchPopup .formGroup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobileSearchActive .searchPopup {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 0%;
}

.mobileSearchActive .searchPopup .search-inner {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

/***

====================================================================
  End Search Popup 
====================================================================

***/

/***
/* DEPRECATED: Sticky Header styles moved to Header1.module.css */
/***

  ====================================================================
  Global Settings
  ====================================================================

***/
.autoContainer {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

/***

====================================================================
End Global Settings
====================================================================

***/
/* --------- End Global Settings ---------- */