/* ✅ General Page Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* ✅ Glass Effect Tesla-Style Navbar */
.glass-navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* ✅ Brand Logo Always Full Text but Responsive */
.navbar-brand {
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: normal;
  text-overflow: unset;
  letter-spacing: 1px;
  line-height: 1.2;
  max-width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
    line-height: 1.1;
  }
}

/* ✅ Animated Gradient Text */
.gradient-text {
  background: linear-gradient(270deg, #00e676, #00c6ff, #0072ff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ✅ Navbar Links */
.navbar-nav .nav-link {
  position: relative;
  color: #222;
  font-weight: 500;
  margin: 0 8px;
  padding: 6px 10px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #00c6ff;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00e676, #00c6ff);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ✅ Dark Mode Toggle Button Styling */
#themeToggle {
  color: #222;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

#themeToggle:hover {
  transform: scale(1.2);
  color: #00c6ff;
}

body.dark-mode #themeToggle {
  color: #f0f0f0;
}

body.dark-mode #themeToggle:hover {
  color: #00e676;
}

/* ✅ Futuristic Admin Button */
.admin-btn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff !important;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.admin-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff1e56);
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
  transform: translateY(-2px) scale(1.05);
}

.admin-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #ff1e56, #ff416c);
  filter: blur(10px);
  opacity: 0;
  border-radius: 40px;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.admin-btn:hover::before {
  opacity: 1;
}

/* ✅ Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #d1ebff 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

/* ✅ Hero Left Text */
.hero-left h1 {
  font-weight: 700;
  font-size: 3.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-left p {
  font-size: 1.2rem;
  color: #444;
}

/* ✅ Scooty Auto-Slider */
.hero-image {
  width: 500px;
  max-width: 100%;
  position: relative;
  animation: floatImage 3s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  display: none;
  border-radius: 12px;
  transition: opacity 0.8s ease-in-out, transform 0.5s ease-in-out;
}

.hero-image img.active {
  display: block;
  opacity: 1;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ✅ Floating Animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ✅ Light Mode Shadow */
body:not(.dark-mode) .hero-image img {
  filter: drop-shadow(0px 10px 20px rgba(0, 198, 255, 0.5));
}

/* ✅ Dark Mode Scooter Styling */
body.dark-mode .hero-image img {
  filter: drop-shadow(0 0 30px rgba(0, 198, 255, 0.4));
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  padding: 10px;
  transition: filter 0.4s ease, background-color 0.4s ease;
}

body.dark-mode .hero-image {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  padding: 10px;
}

/* ✅ Glow Button */
.btn-glow {
  background: linear-gradient(45deg, #00e676, #00c6ff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
  transition: 0.3s ease-in-out;
}

.btn-glow:hover {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.5);
}

/* ✅ Card Modern Look */
.modern-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 198, 255, 0.2);
}

/* ✅ Table */
.comparison-table th {
  background: linear-gradient(45deg, #00e676, #00c6ff);
  color: white;
}

.comparison-table td {
  background: #ffffff;
}

/* ✅ Footer */
footer {
  background: #212121;
  color: #fff;
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
}

/* ✅ Dark Theme */
body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .glass-navbar {
  background: rgba(30, 30, 30, 0.8);
  color: #f0f0f0;
}

body.dark-mode .navbar-nav .nav-link {
  color: #ccc;
}

body.dark-mode .hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

body.dark-mode footer {
  background: #0f0f0f;
  color: #ccc;
}

/* ✅ AOS Animations */
[data-aos] {
  transition: all 0.8s ease;
}
.contact-icon {
  font-size: 28px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #3498db;
  margin: 0 auto 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#contact p, #contact a {
  color: #333;
  font-size: 16px;
}
#contact a:hover {
  text-decoration: underline;
}

