.elementor-27 .elementor-element.elementor-element-a311d2f{--display:flex;--margin-top:0%;--margin-bottom:0%;--margin-left:-25%;--margin-right:0%;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-560ca73 *//* Container styling */
.mega-menu-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background-color: #09090b; /* Jet Black background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid rgba(234, 179, 8, 0.1);
}

/* Left Grid styling */
.services-grid {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
  padding: 40px;
  background-color: #09090b;
}

/* Single Service Block */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Icon Wrap with your warm custom Gold colors */
.icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #eab308; /* Yellow-gold base */
  transition: all 0.3s ease;
}

.service-content h3 {
  color: #f4f4f5; /* Off white text */
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.service-content p {
  color: #a1a1aa; /* Muted subtitle grey */
  font-size: 13px;
  margin: 0;
}

/* Interactive Hover States */
.service-item:hover .service-content h3 {
  color: #eab308;
}

.service-item:hover .icon-box svg {
  stroke: #ca8a04; /* Shifts to rich orange-gold on hover */
  transform: scale(1.1);
}

/* Right Side Banner Section */
.menu-banner {
  flex: 0.9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
}

.banner-inner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-0 0 24px 0;
  letter-spacing: 0.5px;
}

/* Premium Orange-Yellow Gold Button */
.cta-gold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
  color: #09090b;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(202, 138, 4, 0.3);
  transition: all 0.3s ease;
}

.cta-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
  filter: brightness(1.1);
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .mega-menu-container {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .menu-banner {
    padding: 60px 20px;
  }
}/* End custom CSS */