.container-privacy {
    max-width: 960px;
    margin: 0 auto 3rem auto;
    padding: 48px 16px;
}

.privacy-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 48px;
}

.privacy-section {
    margin-bottom: -3rem;
    /* Changed from -9rem to 3rem for better responsiveness */
}

.privacy-section-heading {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.subsection {
    margin-bottom: 24px;
}

.subheading {
    font-weight: bold;
    color: #374151;
    margin-bottom: 8px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    text-align: justify;
}

.bullet {
    width: 12px;
    height: 12px;
    background-color: #1f2937;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .privacy-heading {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .privacy-section-heading {
        font-size: 18px;
    }

    .container-privacy {
        padding: 32px 12px;
    }


    .privacy-section {
        margin-bottom: 3rem;
        /* Changed from -9rem to 3rem for better responsiveness */
    }
}

@media (max-width: 480px) {
    .privacy-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }


    .privacy-section {
        margin-bottom: 3rem;
        padding: 15px;
       
    }

    .privacy-section-heading {
        font-size: 16px;
    }

    .subheading {
        font-size: 14px;
    }

    .container-privacy {
        padding: 24px 8px;
    }

    .privacy-list li {
        align-items: flex-start;
    }

    .bullet {
        width: 10px;
        height: 10px;
        margin-top: 5px;
    }
}


/* contact form css */
.ontact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
  }
  
  .heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .contact_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  @media (min-width: 768px) {
    .contact_grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form-container form input,
  .contact-form-container form textarea {
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-form-container form textarea {
    height: 120px;
    resize: vertical;
  }
  
  .contact-form-container form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background-color: #ef7f1a;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .contact-form-container form button:hover {
    background-color: #fff;
    color: #ef7f1a;
    border: 2px solid #ef7f1a;
  }
  
  .contact-map-wrapper {
    position: relative;
    height: 500px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .contact-map-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 240px;
    z-index: 1;
  }
  
  .location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .more-options {
    font-size: 14px;
    color: #3b82f6;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .icon {
    font-size: 16px;
  }
  
  .contact-map-buttons {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
  }
  
  .contact-map-btn {
    background: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    cursor: pointer;
  }
  
  /* dropdown product  */
/* Ensure dropdown stays in place on hover for large screens */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Make dropdown items more visually appealing */
.nav-item.dropdown .dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
}

.nav-item.dropdown .dropdown-item {
    font-size: 1rem;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-item.dropdown .dropdown-item:hover {
    background-color: #f1f1f1;
    color: #e8b2bb;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    /* Hide dropdown by default */
    .nav-item.dropdown .dropdown-menu {
        display: none;
    }
    
    /* Show dropdown when the 'show' class is added */
    .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }
    
    /* Ensure the dropdown toggles when clicked */
    .navbar-toggler:focus {
        outline: none;
    }
}


/* cards slider section */
.slider-container-product {
  max-width: 1200px;
  margin: 0 auto;
}

.product-slider .product-card {
  background-color: #e8b2bb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: white;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-wrapper {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.product-card h2 {
  margin: 10px 0;
  font-size: 20px;
  color: #ef7f1a;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: justify;
}

.product-card button {
  background-color: white;
  color: #059669;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background-color: #e0e0e0;
}

/* photo cards section */

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: calc(33.333% - 20px); /* 3 per row with gap */
  min-width: 250px;
  text-align: center;
  height: 80%;
}

.card img {
  width: 100%;
  height: 70%;
}

.card p {
  padding: 10px;
  margin: 0;
}

/* Responsive for tablets and smaller */
@media (max-width: 900px) {
  .card {
    width: calc(50% - 20px); /* 2 per row */
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%; /* 1 per row */
  }
}


/* separate page css product */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

@media (min-width: 768px) {
  .product-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: #e8b2bb;
  /* Emerald-400 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.product-image-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.product-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-title {
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

