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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

/* Logo image styling */
.logo {
  height: 100px; /* adjust as needed */
  width: auto;
  display: block;
}

.logo-link {
  display: inline-block;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #f39c12;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/back-00.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background: #d35400;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* About */
.about p {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Products */
.products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card h3 {
  margin-bottom: 1rem;
  color: #f39c12;
  font-size: 1.4rem;
}

/* Contact */
.contact-info {
  max-width: 1100px;
  margin: auto;
  padding: 5rem 1rem;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #000000;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Reuse card styles from products */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-grid .card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-grid .card h3 {
  margin-bottom: 1rem;
  color: #f39c12;
  font-size: 1.4rem;
}

.contact-grid .card p,
.contact-grid .card ul {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-grid .card ul {
  list-style: disc inside;
  margin: 0.5rem 0;
}

.contact-grid .card a {
  color: #f39c12;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.contact-grid .card a:hover {
  text-decoration: underline;
}




/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about h3 {
  color: #f39c12;
  margin-bottom: 0.5rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #f39c12;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-social .social-icons a {
  display: inline-block;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #f39c12;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-about p a {
  color: #f39c12;
  text-decoration: none;
}

.footer-about p a:hover {
  text-decoration: underline;
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  header .nav {
    flex-direction: column;
    gap: 1rem;
  }
  header nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .logo {
    height: 70px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .card {
    padding: 1.2rem;
  }
  .footer-about p {
    font-size: 0.85rem;
  }
}

.video-rotated-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 4rem 0;
  overflow: hidden;
  border-radius: 16px;
}

.rotated-video {
  transform: rotate(90deg); /* rotate clockwise — use -90deg to flip the other way */
  width: 480px; /* adjust to fit your layout */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}
