/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Modern Header Design - SAME FOR ALL PAGES */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 50%, #ff9500 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 60px;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* Navigation Styling - SAME FOR ALL PAGES */
nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  letter-spacing: 0.5px;
  position: relative;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

nav ul li a.active {
  background: rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ========================================
   HOMEPAGE HERO - WITH BACKGROUND IMAGE
   ======================================== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/Led.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  z-index: 20;
  text-align: center;
}

.hero-text h3 {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9500, #ffaa2b);
  border-radius: 2px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -3px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-text p {
  line-height: 1.8;
  color: #f0f0f0;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text .btn.gradient {
  margin-bottom: 35px;
  background: linear-gradient(135deg, #b83dba, #6c5ce7);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(184, 61, 186, 0.5);
  border: none;
  cursor: pointer;
}

.hero-text .btn.gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(184, 61, 186, 0.6);
  background: linear-gradient(135deg, #c44dc5, #7d6ef7);
}

.hero-text .btn.gradient:active {
  transform: translateY(-1px);
}

/* ========================================
   OTHER PAGES - CLEAN GRADIENT BACKGROUND
   ======================================== */
.page-container {
  flex: 1;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 50%, #fff 100%);
  padding: 80px 60px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-header h3 {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Content Sections */
.content-section {
  max-width: 1200px;
  margin: 60px auto 60px;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.content-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 20px;
  margin-top: 30px;
}

.content-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 10px;
}

/* Grid Layout for Cards */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 15px;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Form Styling (for Contact Page) */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-position: center;
  transform: scale(1.35);
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.4);
}

/* Bottom Section - SAME FOR ALL PAGES */
.bottom-section {
  background: linear-gradient(135deg, #2d3436, #636e72);
  color: white;
  padding: 50px 60px;
  text-align: center;
  margin-top: auto;
}

.bottom-section h3 {
  margin-bottom: 15px;
  color: #ffd700;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-section p {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info div {
  text-align: center;
}

.contact-info h4 {
  color: #ffd700;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-info p {
  font-family: 'Inter', sans-serif;
  opacity: 0.95;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 968px) {
  header {
    padding: 15px 30px;
  }
  
  nav ul {
    gap: 5px;
  }
  
  nav ul li a {
    padding: 8px 15px;
    font-size: 0.95rem;
  }
  
  .page-container {
    padding: 60px 30px;
  }
  
  .content-section {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    padding: 15px 20px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 5px;
  }
  
  .hero-content {
    padding: 40px 30px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h3 {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    letter-spacing: -2px;
  }
  
  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-text .btn.gradient {
    padding: 14px 35px;
    font-size: 1rem;
  }
  
  .page-container {
    padding: 40px 20px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .content-section {
    padding: 25px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .bottom-section {
    padding: 40px 30px;
  }
  
  .bottom-section h3 {
    font-size: 1.6rem;
  }
  
  .contact-info {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .grid-container,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}