:root {
  --gold: #f6c90e;
  --orange: #f7a440;
  --dark-bg: #0f0f0f;
  --text-light: #ffffff;
  --accent: linear-gradient(90deg, var(--gold), var(--orange));
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  height: 100vh;
  background: url('https://dm0qx8t0i9gc9.cloudfront.net/thumbnails/video/BYhbSjKDtkvty6l0n/videoblocks-64b58a4b5342dd17c8c53471_bfseuzcja_thumbnail-1080_07.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 700px;
}

.section {
  padding: 6rem 2rem;
}

.body-text {
  max-width: 1000px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.8;
}

/* Product & Service Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* Product & Service Cards */
.product-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 168, 0, 0.2);
  transition: all 0.4s ease;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effects */
.product-item:hover {
  background: var(--gold);
  box-shadow: 0 0 25px var(--gold), 0 0 40px var(--gold);
  transform: translateY(-10px) scale(1.02);
}

/* Click effect */
.product-item:active {
  transform: translateY(-4px) scale(0.96);
  box-shadow: 0 0 20px var(--gold);
  transition: all 0.15s ease;
}

/* Product Image */
.product-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Heading - GOLD by default, dark on hover */
.product-item h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-item:hover h3 {
  color: var(--dark-bg);
}

/* Description - Light gray by default, dark on hover */
.product-item p {
  color: #ccc;
  transition: color 0.3s ease;
}

.product-item:hover p {
  color: var(--dark-bg);
}

/* Impact Section */
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.impact-item {
  background: #1e1e1e;
  padding: 2rem;
  width: 250px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(246, 201, 14, 0.2);
}

.impact-item img {
  width: 60px;
  margin-bottom: 1rem;
}

.counter {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: bold;
}

.label {
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--gold);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  font-size: 0.9rem;
  color: #aaa;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Glowing effect on click */
.product-item:active,
.impact-box:active {
  box-shadow: 0 0 30px var(--gold);
  transform: scale(0.98);
  transition: all 0.2s ease;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #111;
    padding: 1rem;
    position: absolute;
    right: 2rem;
    top: 70px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Director Section Layout */
#director {
  padding: 6rem 2rem;
  background-color: #111111;
}

.director-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.director-card {
  flex: 1 1 300px;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-details {
  flex: 2;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 600px;
}

/* Mobile View */
@media (max-width: 768px) {
  .director-container {
    flex-direction: column;
    text-align: center;
  }

  .director-details {
    max-width: 100%;
  }

  .director-card {
    width: 80%;
    max-width: 100%;
  }
}
