.elementor-19 .elementor-element.elementor-element-c1faa7d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a9379a0 *//* Sticky Glass Header Base */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo Styling */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #000000;
  margin: 0;
  letter-spacing: -0.5px;
}

.blue-text {
  color: #0066ff; /* Your Brand Blue */
}

/* Global Blue Button Styling */
.cta-button {
  background: #0066ff; /* Uniform Blue for Desktop & Mobile */
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth hover transition */
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

/* Hover Effect */
.cta-button:hover {
  background: #0052cc; /* Slightly darker blue on hover */
  transform: translateY(-3px); /* Lifts the button up */
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4); /* Enhances the glow */
}

/* Active/Click Effect */
.cta-button:active {
  transform: translateY(-1px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
  .star-icon {
    display: none; /* Removes star on mobile */
  }

  .brand-name {
    font-size: 20px; /* Slightly smaller text for mobile screens */
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 14px;
  }
}/* End custom CSS */