.elementor-59 .elementor-element.elementor-element-c5501fb{--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;}/* Start custom CSS for html, class: .elementor-element-2d5abe7 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin-top: 80px; /* Prevent content from hiding under fixed header */
}

.main-header {
  width: 100%;
  color:  #FFD700;
 background:  linear-gradient(135deg, gold, blue, white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 260px;
}

/* HAMBURGER STYLING */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  color:  #FFD700;
  cursor: pointer;
  display: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
}

/* Hamburger transforms to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  position: absolute;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 8px;
  position: absolute;
}

.nav-menu {
  position: relative;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu-links li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-links li a:hover {
  color: #FFD700;
  background-color: rgba(255,255,255,0.1);
  border-radius: 6px;
}

/* Underline animation on hover */
.menu-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: #FFD700;
  width: 0%;
  transition: width 0.3s ease;
}

.menu-links li a:hover::after {
  width: 100%;
}

/* Link fade-in animation */
.menu-links li {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.menu-links li:nth-child(1) { animation-delay: 0.2s; }
.menu-links li:nth-child(2) { animation-delay: 0.4s; }
.menu-links li:nth-child(3) { animation-delay: 0.6s; }
.menu-links li:nth-child(4) { animation-delay: 0.8s; }
.menu-links li:nth-child(5) { animation-delay: 1s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: #FFD700;
  }

  .menu-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: linear-gradient(to bottom right, gold, #1E90FF, white);
    flex-direction: column;
    width: 100vw;
    padding: 25px 0;
    text-align: center;
    border-radius: 0 0 12px 12px;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-links li {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .hamburger span {
    background-color: #FFD700;
  }
}/* End custom CSS */