/* ================== GENERAL RESET ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f5f6fa;
  color: #333;
  scroll-behavior: smooth;
}

/* ================== NAVBAR ================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(90deg, #111, #333);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Animation */
.navbar h1 {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #ffb400, #ffffff, #ffb400);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Navbar links */
.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #ffb400;
}

/* Menu icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ffb400;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* ================== HERO SECTION ================== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.btn {
  background-color: #ffb400;
  color: #111;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #fff;
}

/* ================== SECTIONS ================== */
.section {
  padding: 70px 10%;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* ================== SLIDE VIEW (OUR WORKS) ================== */
.gallery-section {
  text-align: center;
  padding: 60px 10%;
  background: #fff;
}

.gallery-section h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #222;
}

.slider {
  position: relative;
  max-width: 600px;
  height: 350px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  padding: 10px 0;
}

.catalogue-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.catalogue-grid img:hover {
  transform: scale(1.05);
}


.slide-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide-track img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
  .slider {
    max-width: 90%;
    height: 250px;
  }
  .slide-track img { height: 250px; }
}

/* ================== CONTACT SECTION ================== */
.contact-section {
  max-width: 1000px;
  margin: 4rem auto;
  background: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  animation: fadeIn 1.2s ease-in-out;
  overflow: hidden;
}

.contact-form h2,
.contact-info h2 {
  color: #111;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 4px rgba(0, 102, 255, 0.3);
}

.contact-form button {
  background: #0066ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.contact-form button:hover {
  background: #004fcc;
  transform: scale(1.02);
}

.contact-info p {
  margin: 8px 0;
  color: #333;
  line-height: 1.6;
}

/* ================== FOOTER ================== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ================== ANIMATIONS ================== */
.hidden { display: none; }
.fade-in { animation: fadeIn 1s ease-in-out forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================== MOBILE NAVBAR ================== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 25px;
    position: relative;
  }

  .menu-toggle { display: block; }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(20,20,20,0.95);
    border-top: 1px solid #444;
    backdrop-filter: blur(0.1px);
    z-index: 999;
    animation: slideDown 0.3s ease-in-out;
  }

  .navbar nav.show { display: flex; }

  .navbar nav a {
    padding: 15px 0;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #333;
  }

  .navbar nav a:last-child {
    border-bottom: none;
    color: #ffb400;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; padding: 0 15px; }
  .contact-section { padding: 2rem; }
}
