body {
  font-family: Arial, sans-serif;
}

.logo-img {
  height: 60px; /* bigger logo */
}

.hero-section {
  background: white;
}

.gradient-text {
  background: linear-gradient(to right, #7028ff, #f032a0);
  -webkit-background-clip: text;
  color: transparent;
}

.btn-gradient {
  background: linear-gradient(to right, #7028ff, #f032a0);
  color: white;
  border-radius: 6px;
}

.btn-gradient:hover {
  opacity: 0.85;
}
/* NAVBAR LINKS */
.custom-nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #555 !important;
  transition: all 0.25s ease;
  padding: 6px 10px !important;
}

.custom-nav-link:hover {
  color: #7028ff !important;
  transform: translateY(-1px);
}

/* TOGGLER BUTTON (MOBILE) */
.stylish-toggle {
  border: none !important;
  outline: none;
}

.stylish-toggle:focus {
  box-shadow: none;
}

/* Burger icon */
.toggle-icon {
  width: 28px;
  height: 3px;
  background: #444;
  border-radius: 3px;
  display: block;
  position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  width: 28px;
  height: 3px;
  background: #444;
  position: absolute;
  left: 0;
  border-radius: 3px;
}

.toggle-icon::before {
  top: -8px;
}

.toggle-icon::after {
  top: 8px;
}

/* MOBILE MENU BEAUTIFICATION */
@media (max-width: 991px) {
  #navMenu {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.06);
  }

  .custom-nav-link {
    font-size: 18px;
    padding: 12px !important;
    border-radius: 6px;
  }

  .custom-nav-link:hover {
    background: #f8f5ff;
    transform: none;
  }
}


