body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
}

.logo a {
  font-family: 'Orbitron', sans-serif;
  color: #00f5ff;
  font-size: 1.8rem;
  text-shadow: 0 0 10px #00f5ff;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: #ccc;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  text-align: center;
  padding: 2rem;
}

.hero-content {
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.2);
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00f5ff;
  font-size: 3rem;
  text-shadow: 0 0 20px #00f5ff;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #00f5ff, #a64bf4);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 15px #00f5ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 15px #00f5ff; }
  50% { box-shadow: 0 0 30px #a64bf4; }
  100% { box-shadow: 0 0 15px #00f5ff; }
}

/* Sections */
.section {
  padding: 6rem 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

/* Remove fixed width limit for all section images */
.section img {
  width: 93%;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 0 30px #a64bf4;
  animation: glowPulse 2.5s infinite ease-in-out;
}

.section-content {
  max-width: 500px;
}

.section-content h2 {
  font-size: 2rem;
  color: #00f5ff;
  text-shadow: 0 0 5px #00f5ff;
  margin-bottom: 1rem;
}

/* Fullwidth Image Section */
.fullwidth-image-section {
  position: relative;
  width: 93%;
  height: 90vh;
  overflow: hidden;
}

.fullwidth-image-section img {
  width: 93vw;
  height: 90vh;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.2);
  animation: glowPulse 3s ease-in-out infinite;
}

/* Optional overlay text box */
.image-overlay-text {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
  z-index: 2;
}

.text-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
  max-width: 400px;
  text-align: left;
}

.text-box h2 {
  font-size: 2rem;
  color: #00f5ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #00f5ff;
}

.text-box p {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Glow animation */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px #a64bf4; }
  50% { box-shadow: 0 0 45px #00f5ff; }
}

/* Shadowed sidebox layout */
.section-image {
  flex: 1 1 60%;
  max-width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shadowed-box {
  background: rgba(20, 20, 20, 0.85);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.25);
  flex: 1 1 35%;
  max-width: 35%;
}

.shadowed-box h2 {
  font-size: 1.8rem;
  color: #00f5ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px #00f5ff;
}

.shadowed-box p {
  font-size: 1rem;
  color: #eee;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #111;
  border-top: 1px solid #333;
}

.contact-section h2 {
  font-size: 2rem;
  color: #00f5ff;
}

.contact-section p {
  margin: 1rem 0 2rem;
}

.whatsapp-link {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 20px #25d366;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #1f1f1f;
}
