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

html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main#content {
  background-color: #fff;
  min-height: calc(100vh - 160px);
  padding-bottom: 0;
  margin-bottom: 0;
}

.wrapper > main {
  flex: 1;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  font-size: clamp(14px, 2.5vw, 18px);
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header:hover {
  background-color: #2c2c2c;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

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

.nav-links li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}

.nav-links li a:hover {
  color: #4682B4;
  border-bottom: 2px solid #4682B4;
  transform: translateY(-2px);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #4682B4;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.burger:hover div {
  background-color: #4682B4;
}

/* Main Content */
main#content {
  background-color: #fff;
  min-height: 60vh;
  padding: 2rem 0;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: auto;
  transition: background-color 0.3s ease;
}

footer:hover {
  background-color: #444;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

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

/* Sections */
section#about {
  scroll-margin-top: 80px;
  padding-bottom: 100px;
}

.container-a, .container-b, .container-d {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-a:hover, .container-b:hover, .container-d:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.container-a h1, .container-a h2, .container-b h2, .container-d h1 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.container-a h1:hover, .container-a h2:hover, .container-b h2:hover, .container-d h1:hover {
  color: #4682B4;
}

.container-a h5 {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.container-a p, .container-b p {
  margin-bottom: 1rem;
  text-align: justify;
  transition: color 0.3s ease;
}

.container-a p:hover, .container-b p:hover {
  color: #555;
}

.container-b {
  background-color: #e9ecef;
}

.container-b h2 {
  color: #495057;
  border-bottom: 2px solid #4682B4;
  padding-bottom: 0.5rem;
}

.container-d {
  background-color: #fff;
  text-align: center;
}

.container-d iframe {
  border-radius: 10px;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.container-d iframe:hover {
  transform: scale(1.02);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form label {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.contact-form label:hover {
  color: #4682B4;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4682B4;
  box-shadow: 0 0 5px rgba(70, 130, 180, 0.3);
}

.contact-form button {
  padding: 0.75rem;
  background-color: #4682B4;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background-color: #356b8d;
  transform: translateY(-2px);
}

#form-response {
  margin-top: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2C3E50;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    z-index: 1000;
  }

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

  .nav-links li {
    padding: 12px 0;
  }

  .burger {
    display: flex;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .container-a, .container-b, .container-d {
    margin: 1rem;
    padding: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .container-a, .container-b, .container-d {
    margin: 0.5rem;
    padding: 1rem;
  }
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  margin: 0;
}

.carousel-slide {
  display: none;
  text-align: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

.caption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.caption:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.fade {
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
}

.carousel-indicators span {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators span:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.carousel-indicators span.active {
  opacity: 1;
}

/* About Section */
.about {
  line-height: 1.6;
  padding-top: 10px;
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f8f9fa;
}
* PRODUCT NAME (h3) */
.product-card h3 {
  font-size: 1.1rem;        /* 17–18px */
  font-weight: 600;         /* Semi-bold (professional) */
  color: #1a1a1a;
  margin: 0.8rem 0 0.4rem;
}

/* PRODUCT DESCRIPTION */
.product-card p {
  font-size: 0.95rem;       /* ~15px */
  font-weight: 400;         /* Normal (readable) */
  color: #495057;
  margin: 0;
  line-height: 1.5;
}

/* SECTION HEADING */
.products-section h2 {
  font-size: 2.4rem;        /* ~38px */
  font-weight: 700;         /* Strong but not heavy */
  color: #1a1a1a;
  margin-bottom: 2rem;
}

/* OPTIONAL: subtle hover emphasis */
.product-card:hover h3 {
  color: #4682B4;           /* Steel blue */
}




/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Product Card */
.product-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* 🔑 IMAGE FIX – FULL IMAGE, NO CROPPING */
.product-card img {
  width: 100%;
  height: auto;              /* natural height */
  max-height: 220px;         /* uniform grid */
  object-fit: contain;       /* FULL image visible */
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #f1f3f5; /* subtle backdrop */
  padding: 6px;              /* space for edges */
}

/* Product Name */
.product-card p {
  margin: 0;
  font-weight: 600;
  color: #495057;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  background: linear-gradient(45deg, #128c7e, #25d366);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container-a, .container-b, .container-d, .products-section {
  animation: slideIn 0.5s ease-out;
}

/* Additional Creative Elements */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #4682B4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: #356b8d;
  transform: translateY(-2px);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Contact Page Specific Styles */
.contact-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.contact-form-section {
  text-align: left;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    text-align: center;
  }
}
/* Footer fix */
.site-footer {
  width: 100%;
  padding: 20px 0;
  background-color: #2f2f2f;
  text-align: center;
  overflow: visible;   /* 🔴 IMPORTANT */
}

/* Social icons container */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;          /* 🔴 IMPORTANT */
}

/* Icons */
.social-icons a {
  font-size: 28px;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Brand colors */
.social-icons a:nth-child(1):hover { color: #3b5998; }
.social-icons a:nth-child(2):hover { color: #e1306c; }
.social-icons a:nth-child(3):hover { color: #ff0000; }
