.elementor-469 .elementor-element.elementor-element-2a4c87e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-469 .elementor-element.elementor-element-2a4c87e:not(.elementor-motion-effects-element-type-background), .elementor-469 .elementor-element.elementor-element-2a4c87e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6E6C4;}.elementor-469 .elementor-element.elementor-element-71e2860{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-469 .elementor-element.elementor-element-71e2860.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-theme-site-logo .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-469 .elementor-element.elementor-element-e8d1eb4{margin:0px -9px calc(var(--kit-widget-spacing, 0px) + 0px) -87px;}.elementor-469 .elementor-element.elementor-element-e8d1eb4.elementor-element{--flex-grow:-25;--flex-shrink:14;}.elementor-469 .elementor-element.elementor-element-e8d1eb4 img{width:39%;max-width:60%;}.elementor-469 .elementor-element.elementor-element-7be7d3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-469 .elementor-element.elementor-element-7be7d3e.e-con{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-469 .elementor-element.elementor-element-71e2860{--width:28.283%;}.elementor-469 .elementor-element.elementor-element-7be7d3e{--width:70.202%;}}/* Start custom CSS for html, class: .elementor-element-6bec1d3 *//* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Container */
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

/* Underline Hover Effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #d4af37; /* Only underline has color */
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Submenu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 999;
}

/* Submenu Links */
.dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #d4af37;
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #333;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .social-icons {
    display: none;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    border: none;
    padding-left: 10px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}/* End custom CSS */