* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.body {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;

}

/* Root Variables */
:root {
  --primary-color: #ff6f61;
  --primary-hover: #ff3b2e;
  --text-light: rgba(255, 255, 255, 0.9);
  --border-light: rgba(255, 255, 255, 0.3);
  --bg-overlay: rgba(6, 5, 14, 0.6);
}
.bubble-left,
.bubble-right {
  transition: transform 0.2s ease-out; 
}


/* Hero Section */
.hero {
  height: 100%;
  width: 100%;
  background: 
    linear-gradient(180deg, var(--bg-overlay) 0%, rgba(6, 5, 14, 1) 100%),
    url("../Asset/NavHero/home-bg.webp") center/cover no-repeat;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}

.logo img {
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-btn button {
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Main Content Container */
.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px  0px;
  gap: 40px;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  padding: 14px 32px;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
  padding: 14px 32px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  width: 80%;
  max-width: 1000px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 12px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Floating Bubbles */
.bubble-left,
.bubble-right {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0.7;
  z-index: 1;
}

.bubble-left {
  left: -8%;
  top: 40%;
}

.bubble-right {
  right: -6%;
  top: 20%;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-15px); 
  }
}
/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
   .nav-links {
    display: none;
  }

  /* ✅ Free Trial Button hide */
  .nav-btn.desktop-btn {
    display: none;
  }
}


/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-image {
    width: 85%;
  }
  
  .bubble-left, .bubble-right {
    width: 200px;
  }
}

@media (max-width: 968px) {
  .navbar {
    padding: 20px 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-image {
    width: 90%;
  }
  
  .bubble-left, .bubble-right {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-main {
    padding: 100px 20px 40px;
    gap: 30px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    gap: 15px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .hero-image {
    width: 95%;
  }
  
  .bubble-left, .bubble-right {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .bubble-left, .bubble-right {
    display: none;
  }
}


