
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');



:root {
  --primary: #6a11cb;
  --secondary: #2575fc;
  --light: #f8f9fa;
  --dark: #212529;
  --text: #333;
  --bg: #f5f7fa;
  --card-bg: #ffffff;
  --footer-bg: #29085f;
  --neon-glow: 0 0 10px rgba(106, 17, 203, 0.7), 0 0 20px rgba(37, 117, 252, 0.5);
  --transition: all 0.3s ease;
}

.dark-theme {
  --primary: #5e2f85;
  --secondary: #134858;
  --light: #121212;
  --dark: #e0e0e0;
  --text: #e0e0e0;
  --bg: #0a0a0a;
  --card-bg: #1e1e1e;
  --footer-bg: #2a0331;
  --inp:rgb(107, 204, 228);
  --neon-glow: 0 0 15px rgba(157, 78, 221, 0.8), 0 0 25px rgba(76, 201, 240, 0.6);
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: var(--transition);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  width: 100%;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  margin-top: 30px;
  
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--neon-glow);
 
  transition: var(--transition);
  position: fixed;
  width: 100%;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.navbar-brand:hover {
  text-shadow: 0 0 15px white, 0 0 25px rgba(255, 255, 255, 0.7);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 15px !important;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background-color: white;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after {
  width: 70%;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9)), url('https://images.unsplash.com/photo-1518843875459-f738682238a6?ixlib=rb-4.0.3') center/cover;
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Theme Toggle */
.theme-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 15px;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Product Cards */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  background-color: var(--card-bg);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), var(--neon-glow);
}

.product-img {
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.product-category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: block;
}

.product-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

.btn-add-to-cart {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(106, 17, 203, 0.3);
}

.btn-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 17, 203, 0.4), var(--neon-glow);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-weight: 800;
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* About Section */
.about-content {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--neon-glow);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

/* Contact Section */
.contact-form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form input{
    background: var(--inp);
}

.contact-form textarea{
    background: var(--inp);
}

.form-control {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: var(--card-bg);
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.15), var(--neon-glow);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.8);
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin: 20px;
    color: white;
    position: relative;
}

/* Newsletter input and button on the same line */
.input-group input[type="email"],
.input-group button {
  height: 50px;
  font-size: 1rem;
  color: var(--inp);
  border-radius: 10px;
}



.input-group input[type="email"] {
  border: 1px solid #ccc;
  
  color: var(--inp);
  border-right: none;
}

.input-group button {
  border: 1px solid #ccc;
  background-color: #007bff;
  color: white;
  transition: background-color 0.3s ease;
}

.input-group button:hover {
  background-color: #0056b3;
}


.footer-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

    .html{
        overflow-y: hidden;
    }

  .navbar {
    padding: 1rem;
    font-weight: 700;
    font-size: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
 
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}




.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;

}
.floating-buttons a {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}
.floating-buttons a.call-btn {
  background-color: #007bff; /* Blue for Call */
}
.floating-buttons a:hover {
  opacity: 0.9;
}

/* Mobile view */
@media (max-width: 768px) {
  .floating-buttons {
    right: 0;
    left: 0;
    bottom: 0;
    flex-direction: row;
    justify-content: space-around;
    background: transparent;
  backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    
  }
  .floating-buttons a {
    flex: 1;
    margin: 0 15px;
    border-radius: 10px;
    font-size: 16px;
  }
}














