
:root {

    /**
     * colors
     */
    
    --dark-jungle-green: hsl(188, 63%, 7%);
    --prussian-blue: hsl(200, 69%, 14%);
    --raisin-black-1: hsl(227, 29%, 13%);
    --raisin-black-2: hsl(229, 17%, 19%);
    --yellow-green: hsl(89, 72%, 45%);
    --orange-soda: hsl(9, 100%, 62%);
    --cultured-1: hsl(0, 0%, 93%);
    --cultured-2: hsl(192, 24%, 96%);
    --misty-rose: hsl(7, 56%, 91%);
    --alice-blue: hsl(210, 100%, 97%);
    --seashell: hsl(8, 100%, 97%);
    --cadet: hsl(200, 15%, 43%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --opal: hsl(180, 20%, 62%);
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #c4a777;
    --background-color: #ffffff;
    --text-color: #333333;
    --spacing-unit: 2rem;
    
    /**
     * typography
     */
    
    --ff-nunito-sans: "Nunito Sans", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
    
    --fs-1: 1.875rem;
    --fs-2: 1.5rem;
    --fs-3: 1.375rem;
    --fs-4: 1.125rem;
    --fs-5: 0.875rem;
    --fs-6: 0.813rem;
    --fs-7: 0.75rem;
    
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    
    /**
     * transition
     */
    
    --transition: 0.25s ease;
    
    /**
     * spacing
     */
    
    --section-padding: 100px;
    
    /**
     * shadow
     */
    
    --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
    --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
    
    }


*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

html, body {
      overflow-x: hidden;
      position: relative;
      width: 100%;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

[data-aos] {
  max-width: 100%;
  overflow-x: hidden;
}



/* Navbar Styles */
/*-------------------------------------HEADER-----------------------------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #003554;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  height: 95px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 80px;
  max-width: 80px;
  margin-right: 10px;
}

.logo p {
  color: white;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
}

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

.nav-links li {
  margin: 0 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #DDAF40;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #DDAF40;
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: var(--transition);
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
}

.dropdown-menu li {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-menu li a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.dropdown-menu li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #7D5FFF, #5FB7FF);
  transition: all 0.3s ease;
  z-index: -1;
}

.dropdown-menu li:hover::before {
  width: 100%;
}

.dropdown-menu li:hover a {
  transform: translateX(8px);
  color: white;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1025px) {
  .dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      visibility: visible;
  }
}

@media (max-width: 1024px) {
  .dropdown-menu {
      position: static;
      width: 100%;
      background-color: rgba(0, 77, 116, 0.95);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      box-shadow: none;
      border-radius: 8px;
      margin: 10px 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .dropdown-menu li a {
      color: white;
      padding: 15px 20px;
      font-size: 0.9rem;
  }
  .dropdown-menu li:hover::before {
      width: 100%;
  }
  .dropdown-menu li:hover a {
      transform: translateX(5px);
  }
}


@media (max-width: 1024px) {
  .nav-links {
      position: fixed;
      top: 95px;
      right: -100%;
      width: 100%;
      height: calc(100vh - 95px);
      background-color: rgba(0, 53, 84, 0.95);
      backdrop-filter: blur(10px);
      flex-direction: column;
      align-items: center;
      padding-top: 2rem;
      transition: 0.5s ease-in-out;
      z-index: 999;
      overflow-y: auto; /* Add scrolling to the menu if needed */
  }
  
  /* Make sure the navbar stays fixed at the top */
  .navbar {
      position: fixed; /* Change from sticky to fixed */
      width: 100%; /* Ensure it spans the full width */
      top: 0;
      left: 0;
      z-index: 1000;
  }
  
  /* Add padding to the body to prevent content from hiding under the fixed navbar */
  body {
      padding-top: 95px; /* Same as navbar height */
  }
  
  .nav-links.active {
      right: 0;
  }
  
  .nav-links li {
      margin: 1.5rem 0;
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.5s ease;
  }
  
  .nav-links.active li {
      opacity: 1;
      transform: translateX(0);
      transition-delay: calc(0.1s * var(--i));
  }
  
  .hamburger {
      display: block;
      cursor: pointer;
  }
  
  .hamburger .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: white;
  }
  
  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  
  .variants-container {
      grid-template-columns: 1fr;
  }

  .logo p{
      display: none;
  }
}



  /* Footer Styles */
footer {
    position: relative;
    background-color: rgb(0, 0, 0); /* Fallback color */
    color: white;
    padding: 3rem 5% 1rem;
    overflow: hidden; /* Prevents unwanted overflow */
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/lamp-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04; /* Adjust this value (0 to 1) to control opacity */
    z-index: 0;
}

footer * {
    position: relative;
    z-index: 1; /* Ensures text and content stay above the background */
}

  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    margin-bottom: 1.5rem;
    position: relative;
  }

  .footer-section img{
    width: 127px;
    height: 121px;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-section a:hover {
    color: #DDAF40;
    padding-left: 5px;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Animation Classes */
  .animate-element {
    opacity: 0;
    transform: translateY(30px);
  }


  .top-sect {
    display: flex;
    justify-content: center;
    height: 100%;
    margin: 0 180px; /* Add margin to center the section */
}

.top-sect > div {
/*     background: #DDAF40;
    border: 3px solid #ffcc80; */
    border-radius: 5px;
    padding: 8px;
}

.carousel {
    position: relative; /* Make the carousel a positioned element */
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: calc(100% - 40px); /* Adjust width to account for button margins */
    display: flex;
    justify-content: space-between; /* Space between buttons */
    transform: translateY(-50%); /* Center vertically */
    left: 20px; /* Add left offset to center the buttons */
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #111;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 15px;
    margin: 0; /* Remove margin to avoid extra space */
    transition: background-color 0.3s;
}

.carousel-controls button:hover {
    background-color: #DDAF40; /* Change color on hover */
}

.left-img-cont {
    order: 0;
    flex-grow: 0;
    flex-shrink: 1;
}

.left-img-cont img {
    width: 1045px;
    height: 820px;
}


.underline {
    border: none; /* Remove default border */
    height: 2px; /* Set the height of the line */
    background-color: #DDAF40; /* Set the color of the line */
    margin: 20px 0; /* Add spacing above and below the line */
}


.right-info {
    margin-top: 60px;
 }

.right-info h1{
    font-size: large;
    font-size: 38px;
 }

.right-info h2{
   font-size: larger;
   font-size: 24px;
}

.right-info p{
    font-size: 15px;
    letter-spacing: 1.5px;
}

.btn-now{
    display: flex;
    gap: 10px;
    
}

.product-info{
    margin-top: 10px;
}

.button-56 {
    margin-top: 20px;
    align-items: center;
    background-color: #c3c2f0;
    border: 2px solid #111;
    border-radius: 8px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-family: 'ArchitectsDaughter', sans-serif; /* Fallback to sans-serif if the font fails to load */
  }
  
  .button-56:after {
    background-color: #01132b;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
  }

  .button-57 {
    margin-top: 20px;
    align-items: center;
    border: 2px solid #111;
    border-radius: 8px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-family: 'ArchitectsDaughter', sans-serif; /* Fallback to sans-serif if the font fails to load */
  }
  
  .button-57:after {
    background-color: #01132b;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
  }
  
  .button-56:hover:after {
    transform: translate(0, 0);
  }
  
  .button-56:active {
    background-color: #ffdeda;
    outline: 0;
  }
  
  .button-56:hover {
    outline: 0;
  }
  
  @media (min-width: 768px) {
    .button-56 {
      padding: 0 40px;
    }
  }


  .button-57:hover:after {
    transform: translate(0, 0);
  }
  
  .button-57:active {
    background-color: #ffdeda;
    outline: 0;
  }
  
  .button-57:hover {
    outline: 0;
  }
  
  @media (min-width: 768px) {
    .button-57 {
      padding: 0 40px;
    }
  }

  

  /* 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;
  background: #f5f5f5;
}

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

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

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

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

  .product__carousel-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
  }
}

.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: #f8f9fa;
    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;
    }
}



/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('../images/1churchinterior.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--spacing-unit);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Project Sections */
.church-projects {
  padding: var(--spacing-unit);
  max-width: 1400px;
  margin: 0 auto;
}

.project {
  display: flex;
  gap: var(--spacing-unit);
  margin: calc(var(--spacing-unit) * 2) 0;
  align-items: center;
}

.project.reverse {
  flex-direction: row-reverse;
}

.project-image {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.project-image:hover img {
  transform: scale(1.05);
}

.project-content {
  flex: 1;
  padding: var(--spacing-unit);
}

.project-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.location {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.project-details p {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.features li::before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .project {
      flex-direction: column;
  }

  .project.reverse {
      flex-direction: column;
  }

  .project-content {
      padding: var(--spacing-unit) 0;
  }

  .hero h1 {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
      --spacing-unit: 1rem;
  }

  .hero {
      height: 60vh;
  }

  .project-content h2 {
      font-size: 2rem;
  }

  .project-details p {
      font-size: 1rem;
  }
}