* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Tahoma";
  font-size: 15px;
  color: white;
  line-height: 1.5;
  scroll-behavior: smooth;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffd700;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
header h1 {
  font-size: 20px;
  font-weight: bold;
  color: rgba(74, 20, 140, 0.95);
}
nav a {
  color: rgba(74, 20, 140, 0.95);
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #4a148c;
}

/* Parallax Section Styles */
section {
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: -1;
  opacity: 0.6;
}
.hero {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.95), #0d47a1);
}

#install-note {
  background: linear-gradient(135deg, #1e1b4b, #311b92);
}

#shivoham {
  background: linear-gradient(
    135deg,
    rgba(74, 20, 140, 0.95),
    #1e1b4b
  ); /* Violet → Indigo */
}

#lordshiva {
  background: linear-gradient(
    135deg,
    #1e1b4b,
    #0d47a1
  ); /* Royal Purple → Deep Blue */
}

#guide {
  background: linear-gradient(
    135deg,
    #6a1b9a,
    #1a237e
  ); /* Medium Purple → Midnight Blue */
}

h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 20px;
}
p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}
.app-section {
  background: rgba(0, 0, 0, 0.6);
  border-left: 6px solid #ffeb3b;
  border-radius: 12px;
  padding: 20px;
  margin: auto;
  max-width: 900px;
}

/* --- Responsive Scroller --- */
.slider {
  position: relative;
  max-width: 500px; /* smaller container */
  margin: 20px auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  gap: 10px; /* reduced spacing */
}

.slides img {
  flex: 0 0 40%;
  width: 180px; /* reduced size */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slides img:hover {
  transform: scale(1.05);
}

/* Mobile (1 image visible, smaller size) */
@media (max-width: 767px) {
  .slides img {
    width: 140px; /* smaller on mobile */
  }
}

/* --- Dots Navigation --- */
.dots {
  text-align: center;
  margin-top: 8px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin: 4px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #ffd700;
  opacity: 1;
  box-shadow: 0 0 8px #ffd700;
}

/* --- Arrows --- */
.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-buttons button {
  pointer-events: all;
  background: rgba(255, 215, 0, 0.9);
  color: #4a148c;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}
.slider-buttons button:hover {
  background: #ffeb3b;
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ffd700;
  color: #4a148c;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.download-btn:hover {
  background: #ffeb3b;
}
.install-steps {
  background: rgba(0, 0, 0, 0.6);
  border-left: 6px solid #ffeb3b;
  padding: 20px 25px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 10px;
  text-align: left;
  list-style-position: inside;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.install-steps li {
  margin: 10px 0;
}

footer {
  background: #ffd700;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: rgba(74, 20, 140, 0.95);
}

.typewriter-text {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
}

.cursor {
  display: inline-block;
  font-weight: bold;
  color: #ffd700;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px gold;
  }
  50% {
    box-shadow: 0 0 20px gold;
  }
  100% {
    box-shadow: 0 0 5px gold;
  }
}

#guide .install-steps,
#install-note .app-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards, glow 3s ease-in-out infinite;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#lordshiva h2,
#shivoham h2 {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}

#lordshiva h2,
#shivoham h2 {
  opacity: 1;
  transform: scale(1);
}

#lordshiva h2,
#shivoham h2 {
  color: #ffd700; /* golden color */
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffa500, 0 0 20px #ff8c00;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffa500, 0 0 20px #ff8c00;
  }
  to {
    text-shadow: 0 0 20px #ffd700, 0 0 30px #ffa500, 0 0 40px #ff8c00;
  }
}

/* --- Enlarge Image (Lightbox) --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px); /* background blur */
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 75%;
  max-height: 75%;
  border-radius: 15px;
  border: 4px solid rgba(255, 215, 0, 0.85); /* golden border */
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: gold;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: white;
}

/* App icons row */
.app-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between icons */
  margin-top: 20px;
}

.app-icons img {
  width: 70px;
  height: 70px;
  border-radius: 15px; /* rounded like app icons */
  border: 2px solid rgba(255, 215, 0, 0.8); /* golden border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
  object-fit: cover; /* ensures they don’t stretch */
}

.app-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.section-p {
  font-size: 1cm;
}
