* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #111;
}

.navbar {
  height: 85px;
  background: #222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}

.logo {
  font-size: 34px;
  font-weight: bold;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

.login-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 16px;
}

.offer {
  background: #d9f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 18px;
  font-size: 22px;
}

.offer span {
  background: #78ffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: bold;
}

.offer button {
  background: #111;
  color: white;
  padding: 16px 60px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
}

.domain-box {
  margin: 40px auto;
  width: 75%;
  background: white;
  display: flex;
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.domain-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 32px;
  padding: 20px;
}

.domain-box button {
  background: #087d7f;
  color: white;
  border: none;
  padding: 20px 45px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: bold;
}

.hero {
  height: 500px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url("https://images.unsplash.com/photo-1497366754035-f200968a6e72");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content p {
  font-size: 22px;
  font-weight: bold;
}

.hero-content h1 {
  font-size: 58px;
  max-width: 850px;
  margin: 20px 0;
}

.hero-content button {
  padding: 18px 45px;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  background: white;
  color: black;
  font-weight: bold;
}

.features {
  padding: 80px 50px;
  background: #0f172a;
  color: white;
  text-align: center;
}

.features h2,
.pricing h2,
.testimonials h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.feature-grid,
.price-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 35px;
  border-radius: 20px;
  font-size: 35px;
  transition: 0.3s;
}

.card h3 {
  font-size: 24px;
  margin: 18px 0;
}

.card p {
  font-size: 17px;
  color: #cbd5e1;
}

.card:hover {
  transform: translateY(-12px);
  background: rgba(6,182,212,0.18);
}

.pricing {
  padding: 80px 50px;
  text-align: center;
  background: #eef9fb;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: white;
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.price-card h3 {
  font-size: 28px;
}

.price-card h1 {
  font-size: 42px;
  margin: 20px 0;
  color: #087d7f;
}

.price-card p {
  font-size: 18px;
  margin: 12px 0;
}

.price-card button {
  margin-top: 20px;
  padding: 15px 35px;
  background: #087d7f;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
}

.price-card:hover {
  transform: scale(1.05);
}

.popular {
  border: 4px solid #06b6d4;
}

.testimonials {
  padding: 80px 50px;
  background: white;
  text-align: center;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review {
  background: #f1f5f9;
  padding: 35px;
  border-radius: 20px;
  font-size: 20px;
}

.review h4 {
  margin-top: 20px;
  color: #087d7f;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 45px;
}

footer h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

footer p {
  margin: 8px 0;
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    height: auto;
    gap: 15px;
    padding: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .offer {
    flex-direction: column;
    text-align: center;
  }

  .domain-box {
    width: 92%;
    flex-direction: column;
  }

  .domain-box input {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .feature-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}


html {
  scroll-behavior: smooth;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.contact-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: white;
  color: black;
  padding: 18px 28px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: 0.3s;
  z-index: 999;
}

.contact-float:hover {
  transform: scale(1.08);
  background: #06b6d4;
  color: white;
}

.card,
.price-card,
.review {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s;
}

.card.show,
.price-card.show,
.review.show {
  opacity: 1;
  transform: translateY(0);
}

button {
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-4px);
}

.hero-content button:hover,
.offer button:hover,
.domain-box button:hover,
.price-card button:hover {
  background: #06b6d4;
  color: white;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 7px solid #334155;
  border-top: 7px solid #06b6d4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {

  100%{
    transform: rotate(360deg);
  }

}
/* GLASS NAVBAR */

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(15,23,42,0.92);
}

/* MENU */

.menu-toggle {
  display: block;
  font-size: 35px;
  color: white;
  cursor: pointer;
  margin-right: 20px;
}

/* THEME BUTTON */

#themeBtn {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  margin-right: 15px;
}

/* STATS */

.stats {
  background: #0f172a;
  color: white;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  text-align: center;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 20px;
}

.stat-box h1 {
  font-size: 52px;
  color: #06b6d4;
}

.stat-box p {
  margin-top: 10px;
  font-size: 18px;
}

/* LIGHT THEME */

.light-theme {
  background: white;
  color: black;
}

.light-theme .navbar {
  background: white;
}

.light-theme nav a {
  color: black;
}

.light-theme .logo {
  color: black;
}

.light-theme .login-btn {
  color: black;
  border: 2px solid black;
}

.light-theme #themeBtn {
  background: #111;
  color: white;
}
/* MOBILE MENU */

@media(max-width:900px){

  .menu-toggle{
    display: block;
  }
.nav-links{
  display: none;
}

  .nav-links.active{
    display: flex;
  }

  .stats{
    grid-template-columns: 1fr;
  }

}


/* DESKTOP + MOBILE HAMBURGER FIX */

.nav-links {
  display: none;
  gap: 25px;
  align-items: center;
}

.nav-links.active {
  display: flex;
}

@media(max-width:900px){
  .nav-links.active {
    flex-direction: column;
  }
}
.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

#themeBtn{
  margin-left: auto;
}
.floating-theme{
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  background: #111;
  color: white;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.side-menu {
  position: fixed;
  top: 0;
  left: -330px;
  width: 330px;
  height: 100%;
  background: white;
  color: black;
  z-index: 10000;
  padding: 35px 25px;
  transition: 0.4s ease;
  box-shadow: 10px 0 30px rgba(0,0,0,0.2);
}

.side-menu.active {
  left: 0;
}

.side-logo {
  font-size: 42px;
  margin-bottom: 50px;
}

.side-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  margin: 34px 0;
}

.side-menu span {
  font-size: 34px;
  font-weight: normal;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: none;
  z-index: 9999;
}

.overlay.active {
  display: block;
}

/* ADVANCED HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827,
    #1e293b
  );

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-bg::before {
  width: 400px;
  height: 400px;
  background: #06b6d4;
  top: -100px;
  left: -100px;
}

.hero-bg::after {
  width: 350px;
  height: 350px;
  background: #7c3aed;
  bottom: -120px;
  right: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.hero-content p {
  color: #06b6d4;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content h3 {
  font-size: 24px;
  font-weight: normal;
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.primary-btn {
  background: #06b6d4;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: bold;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 20px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 18px 28px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  animation: float 4s ease-in-out infinite;
}

.card1 {
  top: 20%;
  left: 10%;
}

.card2 {
  top: 30%;
  right: 10%;
}

.card3 {
  bottom: 20%;
  left: 20%;
}

@keyframes float {

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(-18px);
  }

  100%{
    transform: translateY(0);
  }

}

@media(max-width:900px){

  .hero-content h1{
    font-size: 48px;
  }

  .hero-content h3{
    font-size: 20px;
  }

  .hero-buttons{
    flex-direction: column;
  }

  .floating-card{
    display: none;
  }

}

/* LOGIN SIGNUP POPUP */

.auth-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 20000;
}

.auth-popup.active {
  display: flex;
}

.auth-box {
  width: 420px;
  background: white;
  color: #111;
  padding: 35px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  animation: popupZoom 0.3s ease;
}

@keyframes popupZoom {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-auth {
  position: absolute;
  top: 15px;
  right: 18px;
  background: #111;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
}

.auth-box h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.auth-box p {
  color: #64748b;
  margin-bottom: 25px;
}

.auth-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 25px;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
}

.tab-btn.active {
  background: #06b6d4;
  color: white;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form input {
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 17px;
  outline: none;
}

.auth-form input:focus {
  border-color: #06b6d4;
}

.auth-form button {
  padding: 16px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
}

.hidden {
  display: none;
}

@media(max-width:500px) {
  .auth-box {
    width: 90%;
  }
}

/* AI CHATBOT */

.chatbot-btn {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 65px;
  height: 65px;
  background: #06b6d4;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.chatbot-box {
  position: fixed;
  right: 25px;
  bottom: 175px;
  width: 360px;
  height: 500px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  z-index: 9999;
  display: none;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.chatbot-box.active {
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  background: #0f172a;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  font-size: 22px;
}

.chatbot-header p {
  font-size: 14px;
  color: #94a3b8;
}

.chatbot-header button {
  background: white;
  color: black;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
}

.chatbot-messages {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f8fafc;
}

.bot-message,
.user-message {
  padding: 13px 16px;
  margin-bottom: 14px;
  max-width: 80%;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.4;
}

.bot-message {
  background: #e2e8f0;
  color: #111;
  border-bottom-left-radius: 3px;
}

.user-message {
  background: #06b6d4;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 3px;
}

.chatbot-input {
  display: flex;
  padding: 14px;
  border-top: 1px solid #e2e8f0;
}

.chatbot-input input {
  flex: 1;
  padding: 13px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
}

.chatbot-input button {
  margin-left: 10px;
  background: #06b6d4;
  color: white;
  border: none;
  width: 48px;
  border-radius: 12px;
  font-size: 20px;
}

@media(max-width:500px) {
  .chatbot-box {
    width: 90%;
    right: 5%;
    bottom: 160px;
  }
}

/* WEBSITE TEMPLATES */

.templates {
  padding: 100px 50px;
  background: #f8fafc;
  text-align: center;
}

.templates h2 {
  font-size: 52px;
  margin-bottom: 15px;
}

.template-subtitle {
  font-size: 22px;
  color: #64748b;
  margin-bottom: 55px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}

.template-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.template-card:hover {
  transform: translateY(-12px);
}

.template-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.template-content {
  padding: 28px;
}

.template-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.template-content button {
  background: #0f172a;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
}

@media(max-width:900px){

  .template-grid{
    grid-template-columns: 1fr;
  }

  .templates h2{
    font-size: 38px;
  }

}

/* PREMIUM FOOTER */

.footer {
  background: #020617;
  color: white;
  padding: 90px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.footer-text {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 18px;
  max-width: 420px;
}

.footer a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin: 14px 0;
  font-size: 17px;
  transition: 0.3s;
}

.footer a:hover {
  color: #06b6d4;
  transform: translateX(5px);
}

.newsletter {
  display: flex;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 12px 0 0 12px;
  font-size: 16px;
}

.newsletter button {
  background: #06b6d4;
  color: white;
  border: none;
  padding: 15px 22px;
  border-radius: 0 12px 12px 0;
  font-weight: bold;
}

.socials {
  margin-top: 25px;
  font-size: 30px;
  letter-spacing: 10px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 25px;
  text-align: center;
  color: #94a3b8;
  font-size: 16px;
}

@media(max-width:900px){

  .footer-grid{
    grid-template-columns: 1fr;
  }

}

.typing {
  opacity: 0.7;
  animation: typingBlink 1s infinite;
}

@keyframes typingBlink {

  0%{
    opacity: 0.4;
  }

  50%{
    opacity: 1;
  }

  100%{
    opacity: 0.4;
  }

}


/* BILLING TOGGLE */

.billing-toggle {
  width: fit-content;
  margin: 0 auto 40px;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.billing-btn {
  border: none;
  background: transparent;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
  color: #0f172a;
}

.billing-btn.active {
  background: #06b6d4;
  color: white;
}

/* LIVE NOTIFICATION TOAST */

.live-toast {
  position: fixed;
  left: 25px;
  bottom: 100px;
  background: white;
  color: #111;
  padding: 18px 24px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  transform: translateX(-130%);
  transition: 0.5s ease;
}

.live-toast.show {
  transform: translateX(0);
}

.live-toast::before {
  content: "🟢";
  margin-right: 8px;
}

/* 3D HOVER EFFECTS */

.card,
.price-card,
.template-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover,
.price-card:hover,
.template-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.card,
.price-card,
.template-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* CURSOR GLOW EFFECT */

.cursor-glow {
  position: fixed;
  width: 35px;
  height: 35px;
  background: rgba(6, 182, 212, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  filter: blur(12px);
  transform: translate(-50%, -50%);
}


/* ANIMATED PARTICLES */

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(6, 182, 212, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 18px #06b6d4;
  animation: particleMove 10s linear infinite;
}

.particles span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particles span:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
}

.particles span:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
}

.particles span:nth-child(4) {
  left: 55%;
  animation-delay: 1s;
}

.particles span:nth-child(5) {
  left: 70%;
  animation-delay: 3s;
}

.particles span:nth-child(6) {
  left: 85%;
  animation-delay: 5s;
}

.particles span:nth-child(7) {
  left: 35%;
  animation-delay: 6s;
}

.particles span:nth-child(8) {
  left: 65%;
  animation-delay: 7s;
}

@keyframes particleMove {
  0% {
    top: 100%;
    opacity: 0;
    transform: scale(0);
  }

  20% {
    opacity: 1;
  }

  100% {
    top: -10%;
    opacity: 0;
    transform: scale(1.8);
  }
}

/* VIDEO INTRO MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 30000;
}

.video-modal.active {
  display: flex;
}

.video-box {
  width: 850px;
  max-width: 92%;
  background: #0f172a;
  color: white;
  padding: 35px;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
  animation: videoPop 0.35s ease;
}

@keyframes videoPop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-box h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.video-box p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 25px;
}

.close-video {
  position: absolute;
  top: 18px;
  right: 20px;
  background: white;
  color: black;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: bold;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: black;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
}


/* NEON CYBER THEME */

body {
  background: #020617;
}

.navbar,
.footer,
.stats,
.features {
  background: linear-gradient(135deg, #020617, #0f172a);
}

.hero {
  background: radial-gradient(circle at top, #0ea5e9, #020617 45%, #000 100%);
}

.logo,
.hero-content p,
.stat-box h1,
.price-card h1 {
  text-shadow: 0 0 18px #06b6d4;
}

.card,
.price-card,
.template-card,
.review,
.stat-box {
  border: 1px solid rgba(6,182,212,0.35);
  box-shadow: 0 0 25px rgba(6,182,212,0.15);
}

.card:hover,
.price-card:hover,
.template-card:hover,
.review:hover,
.stat-box:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 45px rgba(6,182,212,0.45);
}

.primary-btn,
.domain-box button,
.price-card button,
.newsletter button,
.billing-btn.active {
  background: linear-gradient(135deg, #06b6d4, #7c3aed);
  box-shadow: 0 0 25px rgba(6,182,212,0.5);
}

.contact-float,
.chatbot-btn,
.floating-theme {
  box-shadow: 0 0 35px rgba(6,182,212,0.7);
}



/* FIX BUTTON BLINKING */

.price-card button,
.template-card button,
.primary-btn,
.secondary-btn,
.domain-box button {
  transform: none !important;
}

.price-card button:hover,
.template-card button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.domain-box button:hover {
  transform: scale(1.05) !important;
}


/* FINAL FIX - STOP PRICING BUTTON BLINKING */

.price-card,
.price-card:hover {
  transform: none !important;
}

.price-card button,
.price-card button:hover {
  transform: none !important;
  animation: none !important;
}

.price-card:hover {
  box-shadow: 0 0 35px rgba(6,182,212,0.35) !important;
}


/* DASHBOARD ADMIN PANEL */

.dashboard-btn {
  background: #06b6d4;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
}

.dashboard {
  position: fixed;
  inset: 0;
  background: #020617;
  color: white;
  z-index: 40000;
  display: none;
}

.dashboard.active {
  display: flex;
}

.dashboard-sidebar {
  width: 280px;
  background: #0f172a;
  padding: 35px 25px;
  border-right: 1px solid rgba(6,182,212,0.3);
}

.dashboard-sidebar h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #06b6d4;
}

.dashboard-sidebar a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 18px;
  margin: 24px 0;
}

.dashboard-sidebar a:hover {
  color: #06b6d4;
}

#closeDashboard {
  margin-top: 40px;
  width: 100%;
  padding: 14px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
}

.dashboard-main {
  flex: 1;
  padding: 45px;
  overflow-y: auto;
}

.dashboard-main h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.dashboard-main p {
  color: #94a3b8;
  font-size: 18px;
  margin-bottom: 35px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-bottom: 45px;
}

.dash-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(6,182,212,0.35);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(6,182,212,0.15);
}

.dash-card h3 {
  color: #94a3b8;
  margin-bottom: 15px;
}

.dash-card h2 {
  font-size: 38px;
  color: #06b6d4;
}

.dash-table {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(6,182,212,0.35);
}

.dash-table h2 {
  margin-bottom: 25px;
}

.dash-table table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th,
.dash-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.dash-table th {
  color: #06b6d4;
}

@media(max-width:900px) {
  .dashboard.active {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-login{
  width: 100%;
  margin-top: 25px;
}

/* FIX LOGIN POPUP ABOVE DASHBOARD */

.auth-popup {
  z-index: 50000 !important;
}

/* SIDE MENU LOGIN BUTTON */

.side-login-btn{
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg,#06b6d4,#7c3aed);
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

/* SIDE MENU SIGN IN */

.side-login-btn{
  width: 100%;
  margin-top: 35px;
  padding: 18px;
  border: none;
  border-radius: 16px;
  background: #111827;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.side-login-btn:hover{
  background: #06b6d4;
}

/* SIDE MENU SCROLL FIX */

.side-menu {
  overflow-y: auto;
  padding-bottom: 120px;
}
#logoutBtn{
  width: 100%;
  padding: 15px;
  margin-top: 25px;
  border: none;
  border-radius: 14px;
  background: #f43f5e;
  color: white;
  font-size: 18px;
  font-weight: bold;
}
/* USER PROFILE CARD */

.profile-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(6,182,212,0.35);
  padding: 30px;
  border-radius: 22px;
  margin-bottom: 35px;
  box-shadow: 0 0 25px rgba(6,182,212,0.15);
}

.profile-card h2{
  margin-bottom: 25px;
  color: #06b6d4;
}

.profile-info p{
  font-size: 19px;
  margin: 16px 0;
  color: #e2e8f0;
}

.profile-info strong{
  color: white;
}

/* FIX TOP NAV MENU SHOWING */

.navbar .nav-links {
  display: flex !important;
  gap: 25px;
  align-items: center;
}

.navbar .nav-links a {
  display: inline-block !important;
  color: white !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

@media(max-width:900px){
  .navbar .nav-links {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}