/* ========================================
   IMPORTS
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --danger-gradient: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

  /* Colors */
  --primary-color: #ff6b35;
  --secondary-color: #667eea;
  --accent-color: #ffd700;
  --dark-color: #1a1a2e;
  --light-color: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --border-color: #e8ecef;

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
  --shadow-colored: 0 8px 30px rgba(255, 107, 53, 0.3);

  /* UI Elements */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   GLOBAL ANIMATIONS & EFFECTS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseNumber {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes stepSlideIn {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   PRELOADER STYLES
   ======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
  }
  50% {
    background: linear-gradient(135deg, #ffd700, #ff6b35, #f7931e);
  }
}

.preloader-content {
  text-align: center;
  color: white;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.preloader-logo {
  width: 510px;
  height: 250px;
  border-radius: 15%;
  animation: logoFloat 2s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.glow-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid transparent;
  border-radius: 15%;
  background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.welcome-text {
  font-size: 2rem;
  margin-bottom: 30px;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.loading-bar {
  width: 500px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  margin: 20px auto;
  position: relative;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fff, #ffd700, #fff);
  border-radius: 3px;
  animation: loading 3s ease-in-out;
  position: relative;
}

.loading-spark {
  position: absolute;
  top: -2px;
  right: 0;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffd700, transparent);
  border-radius: 50%;
  animation: spark 3s ease-in-out;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes spark {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.firework-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  animation: fireworkExplode 2s infinite;
}

.firework:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.firework:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.7s;
}

.firework:nth-child(3) {
  bottom: 30%;
  left: 50%;
  animation-delay: 1.4s;
}

@keyframes fireworkExplode {
  0% {
    transform: scale(0);
    opacity: 1;
    box-shadow: 0 0 0 0 #ffd700;
  }
  50% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    transform: scale(0);
    opacity: 0;
    box-shadow: 0 0 0 40px rgba(255, 215, 0, 0);
  }
}

/* ========================================
   ANIMATED PARTICLES
   ======================================== */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffd700, #ff6b35);
  border-radius: 50%;
  animation: float 6s infinite linear;
  opacity: 0.7;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  background: var(--dark-gradient);
  border-bottom: 3px solid var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-light);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.logo img:hover {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.brand-logo {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 800;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: white;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.nav-menu a:hover {
  color: #ffd700;
}

.nav-menu a:hover::after {
  opacity: 1;
}

.cart-mobile {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.diwali-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gentleGlow 3s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
  0% {
    filter: brightness(1) contrast(1);
  }
  100% {
    filter: brightness(1.1) contrast(1.05);
  }
}

.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, #fff, transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, #fff, transparent),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 3s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(1px 1px at 50px 20px, #ffd700, transparent),
    radial-gradient(1px 1px at 150px 60px, #ffd700, transparent),
    radial-gradient(2px 2px at 250px 40px, #ffd700, transparent),
    radial-gradient(1px 1px at 350px 80px, #ffd700, transparent),
    radial-gradient(1px 1px at 450px 30px, #ffd700, transparent);
  background-repeat: repeat;
  background-size: 300px 150px;
  animation: floatingSparkles 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes sparkle {
  0% {
    opacity: 0.3;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0.3;
    transform: translateY(0px);
  }
}

@keyframes floatingSparkles {
  0% {
    opacity: 0.4;
    transform: translateX(0px) translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateX(10px) translateY(-15px);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-5px) translateY(-10px);
  }
  75% {
    opacity: 1;
    transform: translateX(15px) translateY(-20px);
  }
  100% {
    opacity: 0.4;
    transform: translateX(0px) translateY(0px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 71%;
  left: 0.5%;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-content a {
  position: static;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  animation: buttonGlow 2s ease-in-out infinite alternate, buttonSparkle 3s linear infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-content a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: buttonShine 2s linear infinite;
  pointer-events: none;
}

.hero-content a:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 107, 53, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 107, 53, 0.6), 0 0 70px rgba(255, 215, 0, 0.4);
  }
}

@keyframes buttonSparkle {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes buttonShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-section .magical-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-section .particle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #ffd700, transparent);
  border-radius: 50%;
  animation: particleFloat 6s linear infinite;
}

.hero-section .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-section .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.hero-section .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.hero-section .particle:nth-child(4) { left: 70%; animation-delay: 0.5s; }
.hero-section .particle:nth-child(5) { left: 80%; animation-delay: 1.5s; }

@keyframes particleFloat {
  0% {
    top: 100%;
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    top: -10%;
    opacity: 0;
    transform: scale(0);
  }
}

.experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--primary-gradient);
  color: white;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  min-width: 80px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fff5f0, #ffe8e0);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(106, 139, 153, 0.2) 10%, transparent 100%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Tomorrow", sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 2rem;
}

.feature-tag {
  background: var(--success-gradient);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 85%;
  height: 400px;
  background: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.image-container:hover .image-glow {
  opacity: 0.3;
}

.image-container:hover img {
  transform: scale(1.05);
}

.floating-badge {
  animation: floatBadge 3s ease-in-out infinite;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
  padding: 50px 0;
  background: white;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  font-size: 1.3rem;
  color: #666;
  margin-top: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 50px 25px;
  background: linear-gradient(135deg, #fff5f0, #ffe8e0);
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff6b35, #ffd700, #ff6b35);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hover-lift:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #ffd700;
}

.hover-lift:hover .card-glow {
  opacity: 0.1;
}

.rotating-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .rotating-icon {
  transform: rotateY(360deg);
}

.benefit-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2d5016;
  font-weight: 600;
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* ========================================
   HOW TO ORDER SECTION
   ======================================== */
.how-to-order {
  padding: 100px 0;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: -10px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

.step-animation {
  animation: stepSlideIn 0.8s ease-out;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
  animation: pulseNumber 2s ease-in-out infinite;
}

.bounce-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: bounceIcon 2s ease-in-out infinite;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2d5016;
  font-weight: 600;
}

.step-card p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 35px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  z-index: 1;
}

.step-card:last-child .step-connector {
  display: none;
}

.cta-button {
  text-align: center;
}

.rainbow-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
  background-size: 300% 300%;
  animation: rainbowShift 3s ease-in-out infinite;
}

@keyframes rainbowShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-primary {
  display: inline-block;
  color: white;
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
/* Updated footer with improved alignment and proportional grid layout */
        .footer {
            background: var(--dark-gradient);
            color: var(--light-color);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
        }

        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            align-items: start;
        }

        .footer-section {
            animation: slideInUp 0.6s ease;
            animation-fill-mode: both;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }

        .footer-section h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .footer-line {
            display: none;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-section ul li a i {
            font-size: 0.8rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .footer-section ul li a:hover i {
            color: var(--accent-color);
            transform: scale(1.2);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .social-icons {
              margin-top: 25px;
              display: flex;
              gap: 20px;
              margin-left: 15px;
              font-size: 24px;
              }

.social-icons a {
    color: #ff9d00;
    
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ffcc00; /* You can change the hover color */
}


        .footer-logo img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        transition: var(--transition);
           }
        .footer-logo img:hover {
           transform: rotate(360deg);
          box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
          }

        .footer-logo h3 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
}

.footer-logo h3:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
}

        .contact-info p {
            color: #cbd5e1;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .contact-info i {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-section iframe {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            width: 100%;
            height: 200px;
            border: 3px solid #ffd700;
            transition: var(--transition);
        }

        .footer-section iframe:hover {
            border-color: #ffed4e;
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
        }

        .footer-court {
            background: rgba(0,0,0,0.3);
            padding: 30px;
            border-radius: var(--border-radius-lg);
            margin: 40px 0 20px;
        }

        .footer-court p {
            color: #94a3b8;
            line-height: 1.8;
            font-size: 0.9rem;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 1rem;
            color: #cbd5e1;
            font-weight: 500;
        }

        .footer-bottom strong {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Added responsive footer alignment for better mobile experience */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }
            
            .footer-section h4 {
                font-size: 1.3rem;
            }
            
            .footer-section iframe {
                height: 180px;
            }
        }
/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) rotate(15deg);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* ========================================
   GLOBAL UTILITIES
   ======================================== */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-gradient);
  color: white;
}

::-moz-selection {
  background: var(--primary-gradient);
  color: white;
}

/* ========================================
   MEDIA QUERIES (MOBILE RESPONSIVE)
   ======================================== */
@media (max-width: 768px) {
   .hero-content  {
    top:65%;
    left: 0%;
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-container::before,
  .hero-container::after {
    background-size: 150px 75px;
  }
  .hero-section {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.diwali-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content a{
  position: absolute;
  top: 100%;
  
  text-align: center;
  z-index: 3;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: "Tomorrow", sans-serif;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}



@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 107, 53, 0.6);
  }
}
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
  }

  .cart-mobile {
    display: block;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .preloader-logo {
    width: 300px;
    height: 150px;
  }

  .loading-bar {
    width: 300px;
  }

  .welcome-text {
    font-size: 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    top: 700px;
    right: 10px;
    z-index: 10;
  }

  .hero-content {
    top: 65%;
    left: 0%;
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-container::before,
  .hero-container::after {
    background-size: 150px 75px;
  }
}