/* Product Layout */
.product {
  display: flex;
  gap: 3rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product Gallery/Carousel */
.product__gallery {
  flex: 1.5;
  margin: 0;
}

.product__carousel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product__carousel-container {
  aspect-ratio: 16/9;

}

.product__carousel-image {
  width: 100%;
  height: 800px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .product__carousel-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .product__carousel-image {
    width: 100%;
    height: 800px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .product__carousel-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .product__carousel-image {
    width: 100%;
    height: 460px;
    object-fit: contain;
    background: #f5f5f5;
  }
}

.product__carousel-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* Thumbnail Gallery */
.product__thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 0.5rem;
  scrollbar-width: thin;
}

.product__thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.product__thumbnail:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.product__thumbnail.active {
  opacity: 1;
  border: 2px solid #DDAF40;
}

@media (max-width: 768px) {
  .product__thumbnails {
    justify-content: center;
  }
  
  .product__thumbnail {
    width: 60px;
    height: 60px;
  }
}

.product__carousel-btn {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

/* Product Details */
.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-details__header {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.product-details__title {
  font-size: 2rem;
  color: #003554;
  margin-bottom: 0.5rem;
}

.product-details__subtitle {
  font-size: 1.5rem;
  color: #666;
}

.product-details__description {
  color: #444;
  line-height: 1.6;
}

.product-details__divider {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 1rem 0;
}

.product-details__specs {
  display: grid;
  gap: 1rem;
}

.product-details__spec-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: baseline;
}

.product-details__spec-item dt {
  font-weight: bold;
  color: #003554;
}

.product-details__spec-item dd {
  margin: 0;
  color: #444;
}

.product-details__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.product-details__btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.product-details__btn:hover {
  transform: translateY(-2px);
}

/* 3D Model Container Styles */
.model-container {
  width: 100%;
  max-width: 1040px;
  height: 740px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.view-text {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #003554;
}

/* Responsive styles for 3D model container */
@media (max-width: 1024px) {
  .model-container {
    max-width: 100%;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .model-container {
    height: 500px;
  }
  .view-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .model-container {
    height: 400px;
  }
  .view-text {
    font-size: 1rem;
  }
}

.product-details__btn--price {
  background: #DDAF40;
  color: white;
}

.product-details__btn--price:hover {
  background: #c79b30;
}

.product-details__btn--details {
  background: #003554;
  color: white;
}

.product-details__btn--details:hover {
  background: #002541;
}

/* Other Designs Section */
.other-designs {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  color: #003554;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.designs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.design-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.design-item:hover {
  transform: translateY(-5px);
}

.design-item h3 {
  color: #003554;
  font-size: 1.5rem;
  padding: 1.5rem;
  margin: 0;
  text-align: center;
}

.design-images {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.design-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.design-item:hover .design-images img {
  transform: scale(1.05);
}

.design-description {
  padding: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.design-actions {
  padding: 1.5rem;
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #DDAF40;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background: #c79b30;
}

@media (max-width: 768px) {
  .other-designs {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .designs-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .design-item h3 {
    font-size: 1.25rem;
    padding: 1rem;
  }

  .design-images {
    height: 250px;
  }

  .design-description {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .design-actions {
    padding: 1rem;
  }
}

/* Responsive Design */
/* Image Gallery */
.image-gallery {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.image-gallery__container {
  position: relative;
  overflow-x: auto;
  padding: 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.image-gallery__container::-webkit-scrollbar { /* WebKit */
  display: none;
}

.image-gallery__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 2;
}

.image-gallery__container:hover .image-gallery__nav-btn {
  opacity: 1;
}

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

.image-gallery__nav-btn--prev {
  left: 10px;
}

.image-gallery__nav-btn--next {
  right: 10px;
}

.image-gallery__scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.image-gallery__scroll::-webkit-scrollbar {
  display: none;
}

.image-gallery__item {
  width: 300px;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin: 0 5px;
  scroll-snap-align: center;
}

.image-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .product {
    flex-direction: column;
    padding: 1rem;
  }

  .product-details {
    padding: 1rem;
  }

  .product-details__actions {
    flex-direction: column;
  }

  .product-details__btn {
    width: 100%;
  }

  .image-gallery {
    padding: 0 1rem;
  }

  .image-gallery__item {
    flex: 0 0 250px;
    height: 180px;
  }
}


.upper-bottom-sect{
    grid-area: upper-bottom-sect;
  }
  
/*   .upper-bottom-sect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #003554;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  } */
  
/*   .model-container {
    width: 100%;
    max-width: 1040px;
    height: auto;
    aspect-ratio: 1.55;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0 auto;
  } */
  
  .view-text {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #003554;
    margin-top: 2rem;
    text-align: center;
    line-height: 1.4;
  }

  @media (max-width: 1200px) {
    .model-container {
      max-width: 90%;
    }
  }

  @media (max-width: 768px) {
    .upper-bottom-sect {
      padding: 3rem 1rem;
    }
    
    .model-container {
      max-width: 95%;
    }
    
    .view-text {
      margin-top: 1.5rem;
    }
  }

.product-details__btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.product-details__btn:hover {
  transform: translateY(-2px);
}

/* 3D Model Container Styles */
.model-container {
  width: 100%;
  max-width: 1040px;
  height: 740px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.view-text {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #003554;
}

/* Responsive styles for 3D model container */
@media (max-width: 1024px) {
  .model-container {
    max-width: 100%;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .model-container {
    height: 500px;
  }
  .view-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .model-container {
    height: 400px;
  }
  .view-text {
    font-size: 1rem;
  }
}

.product-details__btn--price {
  background: #DDAF40;
  color: white;
}

.product-details__btn--price:hover {
  background: #c79b30;
}

.product-details__btn--details {
  background: #003554;
  color: white;
}

.product-details__btn--details:hover {
  background: #002541;
}

/* Other Designs Section */
.other-designs {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  color: #003554;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.designs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.design-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.design-item:hover {
  transform: translateY(-5px);
}

.design-item h3 {
  color: #003554;
  font-size: 1.5rem;
  padding: 1.5rem;
  margin: 0;
  text-align: center;
}

.design-images {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.design-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.design-item:hover .design-images img {
  transform: scale(1.05);
}

.design-description {
  padding: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.design-actions {
  padding: 1.5rem;
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #DDAF40;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background: #c79b30;
}

@media (max-width: 768px) {
  .other-designs {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .designs-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .design-item h3 {
    font-size: 1.25rem;
    padding: 1rem;
  }

  .design-images {
    height: 250px;
  }

  .design-description {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .design-actions {
    padding: 1rem;
  }
}

/* Responsive Design */
/* Image Gallery */
.image-gallery {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.image-gallery__container {
  position: relative;
  overflow-x: auto;
  padding: 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.image-gallery__container::-webkit-scrollbar { /* WebKit */
  display: none;
}

.image-gallery__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 2;
}

.image-gallery__container:hover .image-gallery__nav-btn {
  opacity: 1;
}

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

.image-gallery__nav-btn--prev {
  left: 10px;
}

.image-gallery__nav-btn--next {
  right: 10px;
}

.image-gallery__scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.image-gallery__scroll::-webkit-scrollbar {
  display: none;
}

.image-gallery__item {
  width: 300px;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin: 0 5px;
  scroll-snap-align: center;
}

.image-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.product-details__btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.product-details__btn:hover {
  transform: translateY(-2px);
}


.consultation-section {
    padding: 40px 0;
    text-align: center;
    background-color:rgb(255, 255, 255);
    margin: 40px 0;
  }
  .consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .consultation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }
  .book-meeting {
    color:rgb(10, 13, 102);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .book-meeting:hover {
    color: #FFA500;
  }
  @media (max-width: 768px) {
    .consultation-title {
      font-size: 22px;
    }
  }




  .other-designs {
    padding: 4rem 2rem;
    background: #f5f5f5;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}
.designs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.design-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.design-images img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.design-description {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
    .designs-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .design-images img {
        max-height: 300px;
    }
    
    .design-item h3 {
        font-size: 1.3rem;
    }
    
    .design-description {
        font-size: 0.9rem;
    }
}
.design-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}
.design-item:hover {
    transform: translateY(-5px);
}
.design-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}
.design-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.design-images img {
    width: 120%;
    height: 600px;
    object-fit: cover;
    border-radius: 5px;
}
.design-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.design-actions {
    text-align: center;
}
.view-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.view-more-btn:hover {
    background: #555;
}
@media (max-width: 768px) {
    .designs-container {
        grid-template-columns: 1fr;
    }
    .design-images {
        grid-template-columns: 1fr;
    }
}