@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #9b6b69;
  --secondary: #f3c40e;
  --tertiary: #1e420b;
  --quarternary: #777;
  --border-primary: #9b6b69;
  --ff-primary: "Fredoka", sans-serif;
  --ff-secondary: "Roboto", sans-serif;
  --ff-tertiary: "Raleway", sans-serif;
  --ff-quarternary: "Open Sans", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}


html {
  scroll-behavior: smooth;
  color: #212529;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
.ff-primary {
  font-family: var(--ff-primary) !important;
}
.ff-secondary {
  font-family: var(--ff-secondary) !important;
}
.ff-tertiary {
  font-family: var(--ff-tertiary) !important;
}
.ff-quarternary {
  font-family: var(--ff-quarternary) !important;
}
/* Base class for animation */
.animate_animation {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
}
.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
body {
  margin: 0;
}
html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.5s ease;
  z-index: 999;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1280px;
}
.navbar .badge {
  margin: 0 5px;
}
.badge {
  padding: 20px 30px !important;
  font-size: 20px;
  border-radius: 10px;
  font-weight: 400 !important;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
  .navbar-brand img {
    width: 150px;
  }
.offcanvas-body .header-phone {
    display: block;
    text-align: center;
    margin: 15px auto;
    max-width: 200px;
  }
}
.animate__animated.animate__delay-6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-delay: calc(var(--animate-delay) * 6);
  animation-delay: calc(var(--animate-delay) * 6);
}
@media (max-width: 430px) {
  .badge {
    padding: 20px 30px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
    text-transform: uppercase;
  }
}

.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-secondary {
  background-color: #1e4259 !important;
}
.bg-primary-light {
  background-color: #f7e2d4 !important;
}
.bg-secondary-light {
  background-color: #e0e5e2 !important;
}
.bg-dark-blue {
  background-color: #041e74;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-black-light {
  background-color: #0303037e !important;
}
.m-100 {
  margin: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 600 !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: var(--primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary) !important;
}
button {
  outline: 0;
  border: 0;
}
a:hover {
  opacity: 1 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
}
.text-40 {
  font-size: 40px !important;
}

h1 {
  font-size: 60px;
  line-height: 84px;
  font-weight: 800;
}
h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}
h3 {
  font-size: 32px;
  font-weight: 700;
}
h4 {
  font-size: 26px;
  font-weight: 600;
}
h5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4em !important;
}
h6 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 62px;
    line-height: 66px;
    font-weight: 700;
  }
  h2 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
  }
}

.rounded-5 {
  border-radius: 5px !important;
}
.rounded-10 {
  border-radius: 10px !important;
}
.rounded-15 {
  border-radius: 15px !important;
}
.rounded-20 {
  border-radius: 20px !important;
}
.rounded-25 {
  border-radius: 25px !important;
}
.rounded-30 {
  border-radius: 30px !important;
}
.rounded-35 {
  border-radius: 35px !important;
}
.rounded-40 {
  border-radius: 40px !important;
}

p,
a,
span,
li,
div {
  font-family: var(--ff-secondary) !important;
}
.text-body {
  font-weight: 400 !important;
  font-size: 17px;
  line-height: 32px;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
overflow-y: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-gradient {
  background: rgb(255, 255, 255) !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 30%,
    rgba(63, 107, 118, 1) 30%
  ) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #9b6b69 !important;
}

.border-white {
  border-color: #ffffff !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}
.border-2 {
  border-width: 2px !important;
}
/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #ffffff !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
  *********NAVIGATION**********
  ****************************/

nav li a {
  margin: 0;
  border-radius: 20px;
  padding: 10px 0px !important;
  background-color: transparent;
  transition: background-color 0.25s, color 0.25s;
}
@media screen and (min-width: 1400px) {
  nav li a {
    padding: 10px 15px !important;
  }
}

.nav-link {
  font-family: var(--ff-primary);
  font-size: 14px;
  position: relative;
  font-weight: 500;
  color: #000 !important;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--secondary) !important;
}
.nav-link.active {
  color: #668c83 !important;
  text-decoration: underline;
}
@media (max-width: 430px) {
  #phone-no {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
}
.pl-0 {
  padding-left: 0 !important;
}

.form-section {
  margin-top: -60px;
  position: relative;
  z-index: 0;
}
input.form-control {
  box-sizing: border-box;
  height: 60px;
  border-radius: 0px;
  padding: 16px !important;
  background-color: #b5b5b5 !important;
  border-width: 2px !important;
  border-style: dashed !important;
  border-color: #1e420b !important;
  color: #000 !important;
}

textarea.form-control {
  box-sizing: border-box;
  border-radius: 0px;
  padding: 16px !important;
  background-color: #b5b5b5 !important;
  border-width: 2px !important;
  border-style: dashed !important;
  border-color: #1e420b !important;
  color: #000 !important;
}

.border-left-3 {
  border-left-width: 3px !important;
}

.opacity-1 {
  opacity: 1;
}

.border-dashed {
  border: 1px dashed #fff;
}
@media (max-width: 430px) {
  .border-img span::after {
    top: 84px;
  }
}

@media (min-width: 768px) {
  .w-md-75 {
    width: 75%;
  }
}

.invisible {
  opacity: 0;
}

.swiper-slide {
  height: 675px;
}

@media (max-width: 414px) {
  .sm-screen-num {
    display: none !important;
  }
}
.hero-swiper {
  position: relative !important;
}
.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
div#content {
  margin-top: 36.38px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  display: none !important;
}
.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
  color: #fff;
  display: block !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}
.text-small {
  font-size: 13px;
}

.unstyled-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .w-md-85 {
    width: 85% !important;
  }
}

.accordion-item {
  margin-top: 20px;
  background: transparent;
  border: none;
}
.accordion-button {
  color: #000;
  background-color: #f3c40e;
  box-shadow: none;
  font-family: "Fredoka", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4em !important;
  font-weight: bold;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
}
/* Google Translate Styles */
#google_translate_element {
max-width: 180px;
  margin-left: 10px;
}
#google_translate_element select {
  background-color: #cfd4ff;
  color: black;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#google_translate_element select:hover {
  background-color: #5a8a8a;
}
/* Hides unwanted elements in Google Translate */
.goog-te-banner-frame {
  display: none;
}
.skiptranslate.goog-te-gadget {
  font-size: 0 !important;
  color: transparent;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}
/* Responsive Styles */
@media (max-width: 991px) {
  /* Center the Google Translate element */
  #google_translate_element {
    margin: 0 auto;
  }
  #google_translate_element {
    margin-top: 10px;
  }
  #google_translate_element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #google_translate_element {
    position: absolute;
    top: 24px;

    margin-top: 1em;
  }
}
.skiptranslate.goog-te-gadget {
  color: white;
}

iframe#\:1\.container {
  display: none;
}
a.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none;
}

.skiptranslate.goog-te-gadget {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 41px;
}
div#\:0\.targetLanguage {
  width: 100%;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1400px;
}
.section-devider {
  position: absolute;
  top: auto;
  width: 100%;
  margin-top: -20px;
  z-index: 9;
  height: 20px;
}

.section-devider img.w-100 {
  height: 20px;
}
@media screen and (max-width: 768px) {
  .hero-swiper .swiper-slide {
    height: auto !important;
    padding: 100px 0;
  }
  .hero-swiper .swiper-slide h1 {
    font-size: 23px;
    line-height: 32px !important;
  }
}
.accordion-item {
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
}

.coloerd-text span {
  background: linear-gradient(90deg, #62c9f4 0%, #00adf4 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 50%;
    margin: 1.75rem auto;
  }
}
a.header-phone {
    width: 160px;
    color: rgb(255, 255, 255) !important;
    background: #a56967;
    text-align: center;
    line-height: 16px;
    border: none;
    border-radius: 4px;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#google_translate_element select {
  width: 160px;
  margin-left: 24px;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
}
.skiptranslate.goog-te-gadget {
  font-size: 0 !important;
}


/* Header phone button styling */
.header-phone {
  font-family: var(--ff-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.header-phone:hover {
  background-color: var(--tertiary) !important;
  color: white !important;
  opacity: 1;
}

/* Footer spacing adjustments */
footer .nav-item {
  margin: 0 10px;
}

footer ul.unstyled-list {
  margin-bottom: 20px;
}

/* Social media icon improvements */
footer .fa {
  transition: all 0.3s ease;
}

footer .fa:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Make dropdown menus more accessible */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Improve responsive layout */
@media (max-width: 767px) {
  .header-phone {
    font-size: 13px;
    padding: 8px 12px !important;
  }
  
  footer .nav-item {
    margin: 5px 0;
  }
}
ul#FooterMenu {
    display: flex !important
;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
   .mb-no-bg {
background-image: none !important;
}
h2[style="font-weight: 700; line-height: 85px"] {
    line-height: 50px !important;
}
}
/* ==============================================
   NAVIGATION FIXES 
   ============================================== */

/* Desktop navigation - show above 1609px */
@media (min-width: 1610px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  
  /* Show desktop navigation */
  .navbar-collapse.d-none.d-lg-flex {
    display: flex !important;
  }
  
  /* Hide mobile menu toggle button */
  .navbar-toggler,
  .btn.d-lg-none {
    display: none !important;
  }
  
  /* Ensure nav items stay on one line */
  .navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 0;
  }
  
  /* Fix nav link spacing and alignment */
  .navbar-nav .nav-item {
    display: flex;
    align-items: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1.25rem !important;
    margin: 0;
    white-space: nowrap;
    font-weight: 500;
    color: #000 !important;
    transition: all 0.3s ease;
    border-radius: 4px;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
    background-color: rgba(243, 196, 14, 0.1);
  }
  
  /* Fix dropdown positioning and hover behavior */
  .navbar-nav .dropdown {
    position: relative;
  }
  
  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
  }
  
  /* Add invisible bridge to prevent dropdown from closing */
  .navbar-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
  }
  
  /* Improved hover behavior with delay */
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: dropdownFadeIn 0.3s ease forwards;
  }
  
  .navbar-nav .dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
    font-size: 14px;
  }
  
  .navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
  }
  
  /* Right side elements alignment */
  .navbar .d-flex {
    align-items: center;
    gap: 1rem;
  }
  
  /* Phone button styling */
  .header-phone {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 4px;
  }
  
  /* Google translate styling */
  #google_translate_element {
    max-width: 160px;
    margin: 0;
  }

  /* Override existing dropdown hover styles */
  #navbarDropdown:hover + .dropdown-menu,
  .dropdown-menu:hover,
  .dropdown:hover .dropdown-menu {
    display: block !important;
  }
}

/* Mobile navigation - show at 1609px and below */
@media (max-width: 1609px) {
  /* Hide desktop navigation */
  .navbar-collapse.d-none.d-lg-flex {
    display: none !important;
  }
  
  /* Show mobile menu toggle button */
  .navbar-toggler,
  .btn.d-lg-none {
    display: block !important;
  }
  
  /* Ensure offcanvas mobile menu works */
  .offcanvas {
    display: block;
  }
  
  /* Mobile menu styling */
  .offcanvas-body .nav-link {
    padding: 0.75rem 0 !important;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    text-transform: none;
  }
  
  .offcanvas-body .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
  }
  
  /* Mobile dropdown styling */
  .offcanvas-body .dropdown-menu {
    position: static !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 1rem;
  }
  
  /* Disable desktop hover effects on mobile */
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: none !important;
  }
}

/* Dropdown fade-in animation */
@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}