/* Modern CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #343a40; /* Dark charcoal for text */
  background: #f8f9fa; /* Light gray background */
  min-height: 100vh;
  overflow-x: hidden;
  animation: fadeInBackground 2s ease-in-out;
}

@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enhanced Header with Glassmorphism */
.header {
  background: rgba(240, 240, 240, 0.9); /* Subtle light gray for glassmorphism */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
  padding: 1rem 2.5rem; /* Slightly reduced padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  animation: slideInFromTop 1s ease-out;
  border-radius: 0 0 12px 12px; /* Soften header corners */
}

@keyframes slideInFromTop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  font-size: 2.2rem; /* Reduced font size */
  font-weight: 800;
  background: linear-gradient(45deg, #212529, #495057, #6c757d); /* Darker gray gradient for logo */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.08); /* Subtle dark glow */
  animation: logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.04)); }
  100% { filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.12)); }
}

.navbar {
  display: flex;
  gap: 1.8rem; /* Slightly reduced gap */
}

.navbar a {
  color: #495057; /* Muted dark gray text */
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.3rem; /* Slightly reduced padding */
  border-radius: 25px; /* Slightly smaller border-radius */
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.6); /* More visible glassmorphism */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  overflow: hidden;
  font-size: 1rem; /* Slightly reduced font size */
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent); /* Subtle dark shimmer */
  transition: left 0.5s;
}

.navbar a:hover::before {
  left: 100%;
}

.navbar a:hover,
.navbar a.active {
  background: linear-gradient(45deg, #e9ecef, #dee2e6); /* Lighter hover background */
  transform: translateY(-2px) scale(1.03); /* Less aggressive transform */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Lighter shadow on hover */
  color: #212529; /* Darker text on hover */
}

/* Hero Section with Advanced Animations */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2.5rem; /* Slightly reduced padding */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)); /* Very subtle light glassmorphism */
  backdrop-filter: blur(12px);
  margin: 1.8rem; /* Slightly reduced margin */
  border-radius: 25px; /* Slightly reduced border-radius */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  min-height: 75vh; /* Slightly reduced min-height */
  gap: 3rem; /* Slightly reduced gap */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(0, 0, 0, 0.04), transparent 30%); /* Subtle dark conic gradient */
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-text {
  flex: 1;
  max-width: 600px; /* Slightly reduced max-width */
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.8rem; /* Reduced font size */
  font-weight: 800;
  margin-bottom: 1.8rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  line-height: 1.2; /* Adjusted line-height */
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.15); /* Lighter dark shadow */
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px); /* Slightly reduced transform */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  background: red; /* Darker gray gradient for highlight */
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.08)); /* Subtle dark glow */
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-text p {
  font-size: 1.3rem; /* Slightly reduced font size */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
  color: rgba(52, 58, 64, 0.85); /* Slightly transparent dark charcoal */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15); /* Lighter shadow */
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
  display: inline-block;
  background: #04AA6D; /* Dark button background */
  color: white;
  padding: 1.2rem 2.5rem; /* Slightly reduced padding */
  text-decoration: none;
  border-radius: 40px; /* Slightly reduced border-radius */
  font-weight: 700;
  font-size: 1.1rem; /* Slightly reduced font size */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); /* Lighter shadow */
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent); /* Subtle white shimmer */
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-4px) scale(1.04); /* Less aggressive transform */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25); /* Slightly darker shadow */
  background: linear-gradient(45deg, #495057, #343a40); /* Reverse gradient on hover */
}

.hero-img {
  flex: 1;
  text-align: center;
  z-index: 2;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18); /* Lighter dark shadow */
  transition: all 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-img img:hover {
  transform: scale(1.04) rotateY(8deg); /* Less aggressive transform */
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25); /* Slightly darker shadow */
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(4deg); } /* Less aggressive transform */
  50% { transform: translateY(0) rotateY(0deg); }
  75% { transform: translateY(-8px) rotateY(-4deg); } /* Less aggressive transform */
}

/* Enhanced Hero Banner for Other Pages */
.hero-banner {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%); /* Light gradient */
  color: #343a40; /* Dark charcoal text */
  text-align: center;
  padding: 4.5rem 2.5rem; /* Slightly reduced padding */
  margin: 1.8rem; /* Slightly reduced margin */
  border-radius: 25px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  position: relative;
  overflow: hidden;
  animation: scaleIn 1s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; } /* Slightly adjusted scale */
  to { transform: scale(1); opacity: 1; }
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.015)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.015)"/><circle cx="50" cy="50" r="0.5" fill="rgba(0,0,0,0.008)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6; /* More visible grain */
}

.hero-banner h1 {
  font-size: 3rem; /* Reduced font size */
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.15); /* Lighter dark shadow */
  position: relative;
  z-index: 2;
}

.hero-banner p {
  font-size: 1.2rem; /* Slightly reduced font size */
  opacity: 0.9; /* Slightly reduced opacity */
  position: relative;
  z-index: 2;
}

/* Simple Header Enhancement */
.simple-header {
  background: linear-gradient(135deg, #dee2e6 0%, #e9ecef 100%); /* Lighter gradient */
  color: #343a40; /* Dark charcoal text */
  text-align: center;
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  margin: 1.8rem; /* Slightly reduced margin */
  border-radius: 25px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Lighter shadow */
  position: relative;
  overflow: hidden;
  animation: slideInFromBottom 1s ease-out;
}

@keyframes slideInFromBottom {
  from { transform: translateY(80%); opacity: 0; } /* Slightly adjusted transform */
  to { transform: translateY(0); opacity: 1; }
}

.simple-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px); /* Subtle dark dots */
  background-size: 45px 45px; /* Slightly reduced size */
  animation: drift 15s linear infinite;
}

@keyframes drift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-40px) translateY(-40px); } /* Slightly reduced transform */
}

.simple-header h1 {
  font-size: 2.5rem; /* Reduced font size */
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18); /* Lighter dark shadow */
}

/* Enhanced Content Sections */
.about, .content-section {
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  background: rgba(255, 255, 255, 0.7); /* Subtle light glassmorphism */
  backdrop-filter: blur(12px);
  margin: 2.5rem 1.8rem; /* Slightly reduced margin */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  position: relative;
  overflow: hidden;
  animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
  from { transform: scale(0.96); opacity: 0; } /* Slightly adjusted scale */
  to { transform: scale(1); opacity: 1; }
}

.about::before, .content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* Slightly reduced height */
  background: linear-gradient(90deg, #ced4da, #e9ecef, #f8f9fa, #ced4da); /* Lighter grayscale gradient */
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
}

.about h2, .content-section h2 {
  font-size: 2.2rem; /* Reduced font size */
  margin-bottom: 1.8rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  text-align: center;
  font-weight: 800;
  position: relative;
}

.about h2::after, .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px; /* Slightly adjusted position */
  left: 50%;
  transform: translateX(-50%);
  width: 90px; /* Slightly reduced width */
  height: 3px; /* Slightly reduced height */
  background: linear-gradient(45deg, #ced4da, #e9ecef); /* Lighter grayscale gradient */
  border-radius: 2px;
}

.about p, .content-section p {
  font-size: 1.1rem; /* Slightly reduced font size */
  color: #495057; /* Muted dark gray */
  text-align: center;
  max-width: 850px; /* Slightly reduced max-width */
  margin: 0 auto 1.8rem; /* Slightly reduced margin */
  line-height: 1.7;
}

/* Modern Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Slightly adjusted minmax */
  gap: 2rem; /* Slightly reduced gap */
  margin-top: 2.5rem; /* Slightly reduced margin */
}

.feature-card {
  background: linear-gradient(145deg, #f8f9fa, #ffffff); /* Light gradient */
  padding: 2.5rem 1.8rem; /* Slightly reduced padding */
  border-radius: 18px; /* Slightly reduced border-radius */
  text-align: center;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.08), /* Lighter shadow */
    -4px -4px 12px rgba(255, 255, 255, 0.7); /* More visible light shadow */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.015), transparent); /* Subtle dark shimmer */
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.015); /* Less aggressive lift */
  box-shadow:
    6px 6px 16px rgba(0, 0, 0, 0.12), /* Slightly darker shadow */
    -6px -6px 16px rgba(255, 255, 255, 0.8); /* More visible light shadow */
}

.feature-card h3 {
  font-size: 1.4rem; /* Slightly reduced font size */
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-weight: 700;
}

.feature-card p {
  color: #495057; /* Muted dark gray */
  font-size: 0.95rem; /* Slightly reduced font size */
  line-height: 1.5;
}

/* Enhanced Owner Card */
.owner-card {
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)); /* Subtle light glassmorphism */
  backdrop-filter: blur(12px);
  margin: 2.5rem 1.8rem; /* Slightly reduced margin */
  border-radius: 20px; /* Slightly reduced border-radius */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
  from { transform: translateX(-80%); opacity: 0; } /* Slightly adjusted transform */
  to { transform: translateX(0); opacity: 1; }
}

.owner-card h3 {
  font-size: 2.2rem; /* Reduced font size */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18); /* Lighter dark shadow */
}

.card3D {
  background: rgba(255, 255, 255, 0.7); /* Subtle light glassmorphism */
  backdrop-filter: blur(12px);
  padding: 2.5rem 1.8rem; /* Slightly reduced padding */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); /* Lighter shadow */
  max-width: 400px; /* Slightly reduced max-width */
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  position: relative;
  overflow: hidden;
}

.card3D::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.008), transparent); /* Very subtle dark shimmer */
  opacity: 0;
  transition: opacity 0.3s;
}

.card3D:hover::before {
  opacity: 1;
}

.card3D:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(0.8deg); /* Even less aggressive 3D effect */
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2); /* Slightly darker shadow */
}

.card3D h4 {
  font-size: 1.6rem; /* Slightly reduced font size */
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-weight: 700;
}

.card3D p {
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  color: #495057; /* Muted dark gray */
  font-size: 1rem; /* Slightly reduced font size */
}

.card3D a {
  color: #6c757d; /* Muted gray link */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem; /* Slightly reduced font size */
  transition: all 0.3s ease;
}

.card3D a:hover {
  color: #343a40; /* Darker on hover */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); /* Subtle dark glow */
}

/* Products Section Enhancement */
.products-section {
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  background: rgba(255, 255, 255, 0.7); /* Subtle light glassmorphism */
  backdrop-filter: blur(12px);
  margin: 2.5rem 1.8rem; /* Slightly reduced margin */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  animation: fadeInScale 1s ease-out;
}

.products-section h2 {
  text-align: center;
  font-size: 2.5rem; /* Reduced font size */
  margin-bottom: 3.5rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-weight: 800;
  position: relative;
}

.products-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px; /* Slightly adjusted position */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Slightly reduced width */
  height: 3px; /* Slightly reduced height */
  background: linear-gradient(45deg, #ced4da, #e9ecef); /* Lighter grayscale gradient */
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly adjusted minmax */
  gap: 5.5rem; /* Slightly reduced gap */
  
}

.card {
  background: linear-gradient(145deg, #f8f9fa, #ffffff); /* Light gradient */
  border-radius: 20px; /* Slightly reduced border-radius */
  overflow: hidden;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.08), /* Lighter shadow */
    -4px -4px 12px rgba(255, 255, 255, 0.7); /* More visible light shadow */
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid black;
  
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* Slightly reduced height */
  background: linear-gradient(90deg, #ced4da, #e9ecef, #f8f9fa); /* Lighter grayscale gradient */
  transform: scaleX(0);
  transition: transform 0.3s ease;
  
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px) scale(1.015); /* Less aggressive lift */
  box-shadow:
    6px 6px 16px rgba(0, 0, 0, 0.12), /* Slightly darker shadow */
    -6px -6px 16px rgba(255, 255, 255, 0.8); /* More visible light shadow */
}

.card img {
  width: 100%;
  height: 380px; /* Slightly reduced height */
  object-fit: cover;
  transition: all 0.5s ease;
  border-bottom: 2px dotted black;
}

.card:hover img {
  transform: scale(1.08); /* Less aggressive scale */
  filter: brightness(0.92) contrast(1.08); /* Slightly darker and more contrast on hover */
}

.card p {
  font-size: 1.5rem; /* Slightly reduced font size */
  font-weight: 700;
  padding: 1.8rem; /* Slightly reduced padding */
  color: #212529; /* Dark charcoal text */
  margin: 0;
}

.details-btn {
  display: inline-block;
  background: #6a097d; /* Dark button background */
  color: white;
  padding: 0.9rem 2.2rem; /* Slightly reduced padding */
  text-decoration: none;
  border-radius: 40px; /* Slightly reduced border-radius */
  margin-bottom: 1.8rem; /* Slightly reduced margin */
  font-weight: 600;
  font-size: 1rem; /* Slightly reduced font size */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); /* Lighter shadow */
  position: relative;
  overflow: hidden;
}

.details-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent); /* Subtle white shimmer */
  transition: left 0.5s;
}

.details-btn:hover::before {
  left: 100%;
}

.details-btn:hover {
  background: linear-gradient(45deg, #495057, #343a40); /* Reverse gradient on hover */
  transform: translateY(-2px) scale(1.04); /* Less aggressive transform */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25); /* Slightly darker shadow */
}

/* Contact Section Modern Design */
.contact-section {
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  background: rgba(255, 255, 255, 0.7); /* Subtle light glassmorphism */
  backdrop-filter: blur(12px);
  margin: 2.5rem 1.8rem; /* Slightly reduced margin */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Lighter shadow */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  animation: fadeInScale 1s ease-out;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem; /* Reduced font size */
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-weight: 800;
}

.contact-section > p {
  text-align: center;
  font-size: 1.1rem; /* Slightly reduced font size */
  color: #495057; /* Muted dark gray */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
  max-width: 550px; /* Slightly reduced max-width */
  margin-left: auto;
  margin-right: auto;
}

.contact-list {
  list-style: none;
  background: linear-gradient(145deg, #f8f9fa, #ffffff); /* Light gradient */
  padding: 2.5rem; /* Slightly reduced padding */
  border-radius: 18px; /* Slightly reduced border-radius */
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.08), /* Lighter shadow */
    -4px -4px 12px rgba(255, 255, 255, 0.7); /* More visible light shadow */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
}

.contact-list li {
  padding: 1.2rem 0; /* Slightly reduced padding */
  border-bottom: 1px solid rgba(0, 0, 0, 0.04); /* Subtle dark border */
  font-size: 1.1rem; /* Slightly reduced font size */
  transition: all 0.3s ease;
  color: #343a40; /* Dark charcoal text */
}

.contact-list li:hover {
  background: rgba(0, 0, 0, 0.015); /* Very subtle dark background on hover */
  padding-left: 0.8rem; /* Slightly reduced padding */
  border-radius: 8px; /* Slightly reduced border-radius */
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list a {
  color: #6c757d; /* Muted gray link */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-list a:hover {
  color: #343a40; /* Darker on hover */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); /* Subtle dark glow */
}

.contact-box {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%); /* Dark gradient */
  color: white;
  text-align: center;
  border-radius: 20px; /* Slightly reduced border-radius */
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px); /* Subtle white dots */
  background-size: 45px 45px; /* Slightly reduced size */
  animation: drift 20s linear infinite;
}

.contact-box h2 {
  color: white;
  position: relative;
  z-index: 2;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.9); /* Slightly reduced opacity */
  position: relative;
  z-index: 2;
}

.contact-box a {
  color: #ffffff; /* White link */
  font-weight: 700;
}

/* Enhanced Form Styles */
.form-container {
  background: linear-gradient(145deg, #f8f9fa, #ffffff); /* Light gradient */
  padding: 2.5rem; /* Slightly reduced padding */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.08), /* Lighter shadow */
    -4px -4px 12px rgba(255, 255, 255, 0.7); /* More visible light shadow */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* Slightly reduced height */
  background: linear-gradient(90deg, #ced4da, #e9ecef, #f8f9fa); /* Lighter grayscale gradient */
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
}

.form-container h3 {
  text-align: center;
  margin-bottom: 2rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-size: 1.8rem; /* Reduced font size */
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; /* Slightly reduced gap */
}

.contact-form input,
.contact-form textarea {
  padding: 1.2rem; /* Slightly reduced padding */
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
  border-radius: 12px; /* Slightly reduced border-radius */
  font-size: 1rem; /* Slightly reduced font size */
  font-family: inherit;
  background: rgba(255, 255, 255, 0.6); /* Very subtle light glassmorphism */
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.08); /* Lighter inset shadow */
  color: #343a40; /* Dark charcoal text */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6c757d; /* Darker gray border on focus */
  background: rgba(255, 255, 255, 0.75); /* Slightly more visible glassmorphism on focus */
  box-shadow:
    inset 2px 2px 6px rgba(0, 0, 0, 0.08),
    0 0 12px rgba(0, 0, 0, 0.08); /* Subtle dark glow on focus */
  transform: scale(1.01); /* Less aggressive scale */
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px; /* Slightly reduced min-height */
}

/* Map and FAQ Enhanced Styling */
.map-container, .faq-section {
  background: linear-gradient(145deg, #f8f9fa, #ffffff); /* Light gradient */
  padding: 2.5rem; /* Slightly reduced padding */
  border-radius: 20px; /* Slightly reduced border-radius */
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.08), /* Lighter shadow */
    -4px -4px 12px rgba(255, 255, 255, 0.7); /* More visible light shadow */
  margin-bottom: 2.5rem; /* Slightly reduced margin */
}

.map-container h3, .faq-section h3 {
  text-align: center;
  margin-bottom: 1.8rem; /* Slightly reduced margin */
  color: #212529; /* Dark charcoal text */
  font-size: 1.8rem; /* Reduced font size */
  font-weight: 700;
}

.map-container iframe {
  border-radius: 12px; /* Slightly reduced border-radius */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); /* Lighter dark shadow */
}

.faq-list {
  list-style: none;
}

.faq-list li {
  padding: 1.5rem 0; /* Slightly reduced padding */
  border-bottom: 1px solid rgba(0, 0, 0, 0.04); /* Subtle dark border */
  transition: all 0.3s ease;
  color: #495057; /* Muted dark gray */
}

.faq-list li:hover {
  background: rgba(0, 0, 0, 0.015); /* Very subtle dark background on hover */
  padding-left: 0.8rem; /* Slightly reduced padding */
  border-radius: 8px; /* Slightly reduced border-radius */
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%); /* Dark gradient */
  color: white;
  text-align: center;
  padding: 3.5rem 2.5rem; /* Slightly reduced padding */
  margin: 1.8rem; /* Slightly reduced margin */
  border-radius: 25px; /* Slightly reduced border-radius */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); /* Darker shadow */
  position: relative;
  overflow: hidden;
  animation: scaleIn 1s ease-out;
}

.cta-banner h2 {
  font-size: 2.5rem; /* Reduced font size */
  margin-bottom: 1.2rem; /* Slightly reduced margin */
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.cta-banner p {
  font-size: 1.1rem; /* Slightly reduced font size */
  margin-bottom: 2.2rem; /* Slightly reduced margin */
  opacity: 0.85; /* Slightly reduced opacity */
}

/* Footer */
footer {
  background: #212529; /* Dark background */
  color: #ced4da; /* Light gray text */
  text-align: center;
  padding: 1.8rem; /* Slightly reduced padding */
  margin-top: 2.5rem; /* Slightly reduced margin */
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  animation: fadeIn 2s ease-in-out;
}

footer p {
  margin-bottom: 0.4rem; /* Slightly reduced margin */
}

footer a {
  color: #e9ecef; /* Light gray links */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Animations for general elements */
.animate.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate.fade-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate.float {
  animation: float 6s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideInFromBottom 1s ease-out forwards;
}

.animate-zoom-in {
  animation: scaleIn 1s ease-out forwards;
}

/* New animations for product details page */
/* Reset and Base */
/* This section is for style2.css, but included here for completeness if you prefer a single CSS file */
/* If you keep style2.css separate, remove this section */
.product-container {
  display: flex;
  background-color: rgba(255, 255, 255, 0.7); /* Subtle light glassmorphism */
  border-radius: 18px; /* Slightly reduced border-radius */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* Lighter shadow */
  max-width: 950px; /* Slightly reduced max-width */
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInScale 1s ease-out;
  margin-left: 300px;
  margin-top: 100px;
  margin-bottom: 100px;
  border: 2px solid black;
}

.product-container:hover {
  transform: scale(1.008); /* Slightly less aggressive scale */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18); /* Lighter shadow */
}

/* Creative Slideshow Styling */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 380px; /* Slightly reduced max-width */
  height: 380px; /* Slightly reduced height */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-right: 1px solid rgba(0, 0, 0, 0.08); /* Subtle dark border */
}

.slide.active {
  opacity: 1;
  z-index: 1;
  
}

/* Product Details */
.product-details {
  padding: 35px; /* Slightly reduced padding */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
}

.product-details h1 {
  font-size: 2.2rem; /* Reduced font size */
  color: #212529; /* Dark charcoal text */
  margin-bottom: 18px; /* Slightly reduced margin */
  text-align: center;
}

.product-details p {
  font-size: 1.1rem; /* Slightly reduced font size */
  color: #495057; /* Muted dark gray */
  margin-bottom: 25px; /* Slightly reduced margin */
}

/* Contact Button */
.contact-button {
  display: inline-block;
  padding: 12px 25px; /* Slightly reduced padding */
  background: linear-gradient(45deg, #343a40, #495057); /* Dark button background */
  color: #fff;
  text-decoration: none;
  border-radius: 10px; /* Slightly reduced border-radius */
  font-weight: 600;
  font-size: 0.95rem; /* Slightly reduced font size */
  transition: background 0.4s ease, transform 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18); /* Lighter shadow */
}

.contact-button:hover {
  background: linear-gradient(45deg, #495057, #343a40); /* Reverse gradient on hover */
  transform: translateY(-1.5px); /* Less aggressive transform */
}

.size {
  font-size: 12pt; /* Slightly reduced font size */
  padding-bottom: 18px; /* Slightly reduced padding */
  color: #343a40; /* Dark charcoal text */
}



/* Hamburger menu styles */
.hamburger {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  z-index: 1001; /* Above other elements */
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #343a40;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Responsive Navbar styles */
.navbar.active {
  transform: translateX(0);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 6rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    align-items: center;
  }

  .navbar a {
    width: 80%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex; /* Show hamburger on small screens */
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1.5rem;
    margin: 1rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero-img {
    order: -1; /* Move image above text on small screens */
  }

  .about, .content-section, .products-section, .owner-card, .contact-section, .cta-banner {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .about h2, .content-section h2, .products-section h2, .owner-card h3, .contact-section h2, .cta-banner h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr; /* Single column for products */
    gap: 3rem;
  }

  .card img {
    height: 250px; /* Adjust image height */
  }

  .product-container {
    flex-direction: column;
    margin: 50px auto; /* Center and adjust margin */
    max-width: 90%;
  }

  .slideshow-container {
    max-width: 100%;
    height: 300px;
  }

  .product-details {
    padding: 25px;
  }

  .product-details h1 {
    font-size: 1.8rem;
  }

  .product-details p, .size {
    font-size: 1rem;
  }

  .contact-list li {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .map-container iframe {
    height: 300px;
  }
}





/* MultipleFiles/style.css */

/* ... (existing CSS) ... */

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 6rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    align-items: center;
  }

  .navbar a {
    width: 80%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex; /* Show hamburger on small screens */
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1.5rem;
    margin: 1rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero-img {
    order: -1; /* Move image above text on small screens */
  }

  .about, .content-section, .products-section, .owner-card, .contact-section, .cta-banner, .simple-header {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .about h2, .content-section h2, .products-section h2, .owner-card h3, .contact-section h2, .cta-banner h2, .simple-header h1 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr; /* Single column for products */
    gap: 3rem;
  }

  .card img {
    height: 250px; /* Adjust image height */
  }

  /* Specific adjustments for product detail page */
  .product-container {
    flex-direction: column;
    margin: 50px auto; /* Center and adjust margin */
    max-width: 90%; /* Ensure it doesn't stretch too wide */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Add a subtle border */
  }

  .slideshow-container {
    max-width: 100%; /* Take full width of container */
    height: 300px; /* Adjust height for mobile */
    border-right: none; /* Remove border on right for column layout */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Add border at bottom */
  }

  .product-details {
    padding: 25px; /* Reduce padding */
  }

  .product-details h1 {
    font-size: 1.8rem; /* Reduce font size */
    margin-bottom: 15px; /* Adjust margin */
  }

  .product-details p, .size {
    font-size: 1rem; /* Reduce font size */
    margin-bottom: 20px; /* Adjust margin */
  }

  .contact-list li {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .map-container iframe {
    height: 300px; /* Adjust map height */
  }

  /* Adjustments for feature cards */
  .features-grid {
    grid-template-columns: 1fr; /* Single column for feature cards */
    gap: 1.5rem; /* Adjust gap */
  }

  .feature-card {
    padding: 1.8rem 1.2rem; /* Adjust padding */
  }

  .feature-card h3 {
    font-size: 1.2rem; /* Adjust font size */
  }

  .feature-card p {
    font-size: 0.9rem; /* Adjust font size */
  }

  /* Adjustments for owner card */
  .card3D {
    max-width: 90%; /* Adjust max-width */
    padding: 1.8rem 1.2rem; /* Adjust padding */
  }

  .card3D h4 {
    font-size: 1.4rem; /* Adjust font size */
  }

  .card3D p {
    font-size: 0.9rem; /* Adjust font size */
  }

  /* Adjustments for CTA banner */
  .cta-banner h2 {
    font-size: 2rem; /* Adjust font size */
  }

  .cta-banner p {
    font-size: 1rem; /* Adjust font size */
  }

  .btn {
    padding: 1rem 2rem; /* Adjust button padding */
    font-size: 1rem; /* Adjust button font size */
  }

  /* Footer adjustments */
  footer {
    padding: 1.5rem; /* Adjust footer padding */
  }
}

/* Optional: Add a smaller breakpoint for very small mobile devices */
@media (max-width: 480px) {
  .header {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .about h2, .content-section h2, .products-section h2, .owner-card h3, .contact-section h2, .cta-banner h2, .simple-header h1 {
    font-size: 1.5rem;
  }

  .about p, .content-section p, .contact-section > p {
    font-size: 0.9rem;
  }

  .card p {
    font-size: 1.2rem;
    padding: 1.2rem;
  }

  .details-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }

  .product-details h1 {
    font-size: 1.5rem;
  }

  .product-details p, .size {
    font-size: 0.9rem;
  }

  .contact-list li {
    font-size: 0.9rem;
    padding: 0.8rem 0;
  }

  .map-container iframe {
    height: 250px;
  }
}








/* media */

/* Hamburger menu styles */
.hamburger {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  z-index: 1001; /* Above other elements */
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #343a40;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Responsive Navbar styles */
.navbar.active {
  transform: translateX(0);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 6rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    align-items: center;
  }

  .navbar a {
    width: 80%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex; /* Show hamburger on small screens */
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1.5rem;
    margin: 1rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero-img {
    order: -1; /* Move image above text on small screens */
  }

  .about, .content-section, .products-section, .owner-card, .contact-section, .cta-banner, .simple-header {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .about h2, .content-section h2, .products-section h2, .owner-card h3, .contact-section h2, .cta-banner h2, .simple-header h1 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr; /* Single column for products */
    gap: 3rem;
  }

  .card img {
    height: 250px; /* Adjust image height */
  }

  /* Specific adjustments for product detail page */
  .product-container {
    flex-direction: column;
    margin: 50px auto; /* Center and adjust margin */
    max-width: 90%; /* Ensure it doesn't stretch too wide */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Add a subtle border */
  }

  .slideshow-container {
    max-width: 100%; /* Take full width of container */
    height: 300px; /* Adjust height for mobile */
    border-right: none; /* Remove border on right for column layout */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Add border at bottom */
  }

  .product-details {
    padding: 25px; /* Reduce padding */
  }

  .product-details h1 {
    font-size: 1.8rem; /* Reduce font size */
    margin-bottom: 15px; /* Adjust margin */
  }

  .product-details p, .size {
    font-size: 1rem; /* Reduce font size */
    margin-bottom: 20px; /* Adjust margin */
  }

  .contact-list li {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .map-container iframe {
    height: 300px; /* Adjust map height */
  }

  /* Adjustments for feature cards */
  .features-grid {
    grid-template-columns: 1fr; /* Single column for feature cards */
    gap: 1.5rem; /* Adjust gap */
  }

  .feature-card {
    padding: 1.8rem 1.2rem; /* Adjust padding */
  }

  .feature-card h3 {
    font-size: 1.2rem; /* Adjust font size */
  }

  .feature-card p {
    font-size: 0.9rem; /* Adjust font size */
  }

  /* Adjustments for owner card */
  .card3D {
    max-width: 90%; /* Adjust max-width */
    padding: 1.8rem 1.2rem; /* Adjust padding */
  }

  .card3D h4 {
    font-size: 1.4rem; /* Adjust font size */
  }

  .card3D p {
    font-size: 0.9rem; /* Adjust font size */
  }

  /* Adjustments for CTA banner */
  .cta-banner h2 {
    font-size: 2rem; /* Adjust font size */
  }

  .cta-banner p {
    font-size: 1rem; /* Adjust font size */
  }

  .btn {
    padding: 1rem 2rem; /* Adjust button padding */
    font-size: 1rem; /* Adjust button font size */
  }

  /* Footer adjustments */
  footer {
    padding: 1.5rem; /* Adjust footer padding */
  }
}

/* Optional: Add a smaller breakpoint for very small mobile devices */
@media (max-width: 480px) {
  .header {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .about h2, .content-section h2, .products-section h2, .owner-card h3, .contact-section h2, .cta-banner h2, .simple-header h1 {
    font-size: 1.5rem;
  }

  .about p, .content-section p, .contact-section > p {
    font-size: 0.9rem;
  }

  .card p {
    font-size: 1.2rem;
    padding: 1.2rem;
  }

  .details-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }

  .product-details h1 {
    font-size: 1.5rem;
  }

  .product-details p, .size {
    font-size: 0.9rem;
  }

  .contact-list li {
    font-size: 0.9rem;
    padding: 0.8rem 0;
  }

  .map-container iframe {
    height: 250px;
  }
}
