html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #0F172A;
}

.quick-highlights {
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 20px;
  font-weight: bold;
  color: #0F172A;
  border-bottom: 1px solid #eee;
}

.quick-highlights div:hover {
  color: #F97316;
  transform: translateY(-3px);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* THIS keeps them on same line */
  padding: 15px 40px;
  background: #F97316;
  position: sticky;
  top: 0;
  z-index: 9999;
}

nav a {
  position: relative;
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  color: #FFF1E6;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.navbar .logo img {
  width: 45px;
  height: auto;
}

.navbar .logo span {
  font-weight: bold;
  font-size: 16px;
}


.navbar img {
  width: 60px;
}

.navbar span {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

nav a:hover {
  color: #F97316;
}
nav a i {
  margin-right: 6px;
}


.dark-mode {
  background: #0F172A;
  color: white;
}

.dark-mode .card,
.dark-mode .product-card {
  background: #1e293b;
  color: white;
}

/* MENU ICON */
.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

/* CLOSE ICON */
.close-icon {
  display: none;
  font-size: 28px;
  color: white;
  align-self: flex-end;
  margin-right: 20px;
  cursor: pointer;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9997;
}

/* NAV DESKTOP */
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* BUTTON */

.btn-primary {
  background: #F97316;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #EA580C;
}

.btn-outline {
  border: 2px solid #F97316;
  color: #F97316;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #F97316;
  color: white;
}

.btn-primary {
  background: #F97316;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #EA580C;
}

.btn-outline {
  border: 2px solid #F97316;
  color: #F97316;
}

.btn-outline:hover {
  background: #F97316;
  color: white;
}

.center-btn {
  display: inline-block;
  margin-top: 20px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}



/* HERO */
.hero {
  background-attachment: fixed;
  /* background-image: url("../public/images/solar1.jpg"); */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 60px;
  gap: 40px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 52px;
  color: #0F172A;
  animation: fadeUp 1s ease-in-out;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
}
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background: #0F172A;
  color: white;
}

/* glowing background effect */
.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F97316 0%, transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  filter: blur(60px);
  animation: floatGlow 6s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-modern h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-modern h1 span {
  color: #F97316;
}

.hero-modern p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats div {
  text-align: center;
}

.hero-stats h3 {
  font-size: 28px;
  color: #F97316;
  margin: 0;
}

.hero-stats p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #94a3b8;
}


/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 25px;
  font-weight: bold;
  color: #0F172A;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* FEATURES */
.features {
  padding: 60px;
  text-align: center;
}

.feature-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  padding: 25px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* PRODUCTS */
.products {
  padding: 60px;
  text-align: center;
}

.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.product-card {
  background: white;
  padding: 15px;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CTA */
.cta-premium {
  position: relative;
  margin: 60px 20px;
  padding: 80px 20px;
  border-radius: 25px;
  background: #0F172A;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* glow effect */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #F97316 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.cta-premium h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-premium h2 span {
  color: #F97316;
}

.cta-premium p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* badges */
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #94a3b8;
}

.cta-badges div {
  background: rgba(255,255,255,0.05);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* FOOTER */
.footer-premium {
  background: #0F172A;
  color: white;
  padding: 60px 30px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-brand h2 {
  margin-bottom: 10px;
  color: #F97316;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  color: #F97316;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #F97316;
}

.footer-contact p {
  color: #cbd5e1;
  margin: 8px 0;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #F97316;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  color: #94a3b8;
}