/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
}

#logo {
  transition: transform 0.3s ease;
  height: auto;
}

#logo:hover {
  transform: scale(1.05);
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Hamburger Menu Styles */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

/* Media Queries for Hamburger Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: -90%;
  }
  
  .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);
  }
  

  .nav-links.active {
    left: 0;
    top: 75px;
    gap: 25px;
    width: 100%;
  }
  
  .nav-links li {
    margin: 0;
    width: 100%;
  }
  
  .nav-links li a {
    display: block;
    padding-left: 45%;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  .header-container {
    padding-right: 0 !important;
    justify-content: flex-end;
  }
  
  .header {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
 
  .hamburger {
    display: block;
    margin-right: -90%;
  }
  
  .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);
  }
  
  .nav-links {
    margin-top: -10px;
    max-width: 550px;
  }
  
  .nav-links li a {
    font-size: 15px;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    margin: 4px auto;
  }
}

@media (max-width: 480px) {
  .hamburger {
    display: block;
    margin-right: -90%;
  }
  
  .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);
  }
  
  .nav-links {
    margin-top: -10px;
    max-width: 550px;
  }
  
  .nav-links li a {
    font-size: 15px;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    margin: 4px auto;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Hero Section */


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Carousel Section */
.carosel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

.heading {
  text-align: center;
  padding: 20px 0;
}

.heading h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Left side images */
.left-images {
  width: 45%;
  position: relative;
  height: 400px;
}

.left-images #firstimg {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.left-images #secondimg {
  width: 40%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.left-images #thirdimg {
  width: 50%;
  max-width: 240px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  right: 0;
  bottom: 60px;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Right side images */
.right-images {
  width: 45%;
  position: relative;
  height: 400px;
}

.right-images #fourthimg {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.right-images #fifthimg {
  width: 40%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.right-images #sixthimg {
  width: 50%;
  max-width: 240px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  left: 0;
  bottom: 60px;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Media Queries */
@media (max-width: 1200px) {
  .left-images, .right-images {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .left-images, .right-images {
    height: 320px;
  }
  
  .left-images #firstimg, .right-images #fourthimg {
    max-height: 200px;
  }
  
  .left-images #secondimg, .right-images #fifthimg {
    max-width: 160px;
  }
  
  .left-images #thirdimg, .right-images #sixthimg {
    max-width: 200px;
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .carosel {
    flex-direction: column;
    padding: 20px;
  }
  
  .left-images, .right-images {
    display: none;
  }
}

@media (max-width: 576px) {
  .left-images, .right-images {
    height: auto;
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .left-images #firstimg, .right-images #fourthimg,
  .left-images #secondimg, .right-images #fifthimg,
  .left-images #thirdimg, .right-images #sixthimg {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .heading h2 {
    font-size: 20px;
  }
}
/* Image Carousel Sections */
.image-carousel, .image-carousel2 {
  overflow: hidden;
  padding: 2.5rem 0;
  background-color: #f9f9f9;
}

.carousel-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollCarousel 120s linear infinite;
}

.carousel-track2 {
  display: flex;
  width: max-content;
  animation: scrollLeft 120s linear infinite;
}

.carousel-track img, .carousel-track2 img {
  width: 450px;
  height: 250px;
  margin-right: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.carousel-track img:hover, .carousel-track2 img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

@keyframes scrollCarousel {
  0% {
      transform: translateX(0);
  }
  80% {
      transform: translateX(calc(-450px * 29 - 30px * 29));
  }
}

@keyframes scrollLeft {
  0% {
      transform: translateX(calc(-450px * 29 - 30px * 29));
  }
  60% {
      transform: translateX(0);
  }
}

/* Categories Section */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3.5rem 5%;
  gap: 2rem;
  background-color: #fafafa;
}

.category {
  flex: 1 1 400px;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 35%;
  height: 40%;
  background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.category:hover::before {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  0% {
      left: -75%;
  }
  100% {
      left: 125%;
  }
}

.category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.category p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

#productbtn a, #productbtn2 a {
  background-color: #000000;
  font-weight: 700;
  height: 40px;
  text-decoration: none;
  border-radius: 5px;
  width: 60%;
  margin-left: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

#productbtn p, #productbtn2 p {
  color: white;
  margin: 0;
  padding: 0.5rem;
}

#productbtn a:hover, #productbtn2 a:hover {
  background-color: #4843ac;
}

/* About Us Section */
.about-us {
  padding: 4rem 5%;
  background-color: #f5f5f5;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  background-color: white;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-images {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 300px;
}

#img1, #img2, #img3, #img4, #img5, #img6 {
  position: absolute;
  width: 100px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-in-out;
}

#img1 {
  left: 0;
  top: 0;
}

#img2 {
  left: 120px;
  top: 20px;
}

#img3 {
  left: 240px;
  top: 40px;
}

#img4 {
  left: 30px;
  top: 120px;
}

#img5 {
  left: 150px;
  top: 140px;
}

#img6 {
  left: 270px;
  top: 160px;
}

.about-images img:hover {
  transform: scale(1.1) rotate(3deg);
  z-index: 10;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  width: auto;
  margin-left: 0;
}

/* Finish Styles Section */
.finish-styles {
  padding: 4rem 5%;
  background-color: #f5f5f5;
  text-align: center;
}

.finish-styles h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.finish-styles h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.finish-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.finish-item {
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease;
}

.finish-item:hover {
  transform: translateY(-8px);
}

.finish-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.finish-item h3 {
  font-size: 1.2rem;
  margin: 0.8rem 0 0.5rem;
  color: #333;
}

.finish-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Featured Collections Section */
.featured-collections {
  padding: 5rem 5%;
  background-color: #f8f9fa;
  text-align: center;
}

.featured-collections h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.featured-collections h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.collections-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  padding-bottom: 1.5rem;
}

.collection-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.collection-item h3 {
  padding: 1.8rem 1.5rem 0.5rem;
  font-size: 1.8rem;
  text-align: left;
}

.collection-item p {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

.collection-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

/* Tiles by Space Section */
.tiles-by-space {
  padding: 5rem 5%;
  background-color: #fff;
  text-align: center;
}

.tiles-by-space h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.tiles-by-space h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.tiles-by-space > p {
  max-width: 900px;
  margin: 2rem auto 3rem;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.tiles-grid, .tiles-grid1 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tile-item, .tile-item1 {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tile-item:hover, .tile-item1:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tile-item img, .tile-item1 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.tile-item:hover img, .tile-item1:hover img {
  transform: scale(1.1);
}

.tile-item span, .tile-item1 span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(109, 109, 110, 0.8);
  color: white;
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: padding 0.3s ease;
}

.tile-item:hover span, .tile-item1:hover span {
  padding: 0.5rem 1rem;
}

/* Footer */
footer {
  padding: 0 0 1.5rem;
}

.contact-us {
  margin-left: 20%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  width: 60%;
  padding: 50px 30px;
  background-color: #ffffff;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
.contact-us:hover{
  transform: scale(1.05);
  transition: transform 2s ease;
}

.contact-us h2 {
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-thickness: 2px;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

.contact-us p {
  font-size: 0.9rem; /* Smaller but still readable */
  margin: 10px 0;
  line-height: 1.4;
  margin-left: 25%;
}

/* ========== Responsive Media Queries ========== */

/* Large screens */
@media (min-width: 1441px) {
  .contact-us {
    width: 50%;
    margin-left: 25%;
    padding: 60px 40px;
  }

  .contact-us p {
    font-size: 1rem;
  }
}

/* Tablets and medium screens */
@media (max-width: 1024px) {
  .contact-us {
    width: 80%;
    margin-left: 10%;
    padding: 40px 25px;
  }

  .contact-us p {
    font-size: 0.85rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .contact-us {
    width: 90%;
    margin-left: 5%;
    padding: 30px 20px;
  }

  .contact-us h2 {
    font-size: 2rem;
  }

  .contact-us p {
    font-size: 0.8rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .contact-us {
    padding: 25px 15px;
  }

  .contact-us h2 {
    font-size: 1.6rem;
  }

  .contact-us p {
    font-size: 0.75rem;
  }
}

/* Very small screens */
@media (max-width: 330px) {
  .contact-us h2 {
    font-size: 1.4rem;
  }

  .contact-us p {
    font-size: 0.7rem;
  }
}


.partners1 {
  padding: 40px 20px;
  margin-top: 10px;
  text-align: center;
  background-color: #ffffff;
}

.partners1 h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.partner-logos1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30px;
}

.partner-logos1 img {
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;

}

.partner-logos1 img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ========== Media Queries ========== */

/* 2500px to 1441px */
@media (min-width: 1441px) {
  .partner-logos1 img {
      height: 100px;
      max-width: 150px;
  }
  .partner-logos1{
    gap: 7rem;
  }
}

/* 1440px to 1025px */
@media (max-width: 1440px) {
  .partners1 h2 {
      font-size: 2.2rem;
  }

  .partner-logos1 img {
      height: 80px;
      max-width: 160px;
  }
 
}

/* 1024px to 769px */
@media (max-width: 1024px) {
  .partners1 h2 {
      font-size: 2rem;
  }

  .partner-logos1 {
      gap: 20px;
  }

  .partner-logos1 img {
      height: 70px;
      max-width: 140px;
  }
}

/* 768px to 481px */
@media (max-width: 768px) {
  .partners1 {
      padding: 30px 15px;
  }

  .partners1 h2 {
      font-size: 1.8rem;
  }

  .partner-logos1 {
      gap: 15px;
  }

  .partner-logos1 img {
      height: 60px;
      max-width: 100px;
  }
}

/* 480px to 331px */
@media (max-width: 480px) {
  .partners1 h2 {
      font-size: 1.5rem;
  }

  .partner-logos1 {
      flex-direction: row;
      align-items: center;
      gap: 10px;
  }

  .partner-logos1 img {
      height: 30px;
      max-width: 600px;
  }
}

/* 330px and below */
@media (max-width: 330px) {
  .partners1 {
      padding: 20px 10px;
  }

  .partners1 h2 {
      font-size: 1.3rem;
  }

  .partner-logos1 img {
      height: 45px;
      max-width: 90px;
  }
}

footer{
  margin-top: 30px;
}

.footer-content {
  display: grid;
  align-items: center;
  justify-items: center;
  /* flex-wrap: wrap; */
  grid-template-columns: repeat(4, 1fr);
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 800px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media screen and (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Logo section */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 180px;
  height: auto;
}

/* Links section */
.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: flex-start;
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
  text-transform: uppercase;
}


.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #000000;
  opacity: 0.85;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-column ul li:hover {
  opacity: 1;
  transform: translate(5px);
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.footer-column a{
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: #333;
}
.footer-column a:hover{
  transform: scale(1.02);
}


/* Extra large screens */
@media (min-width: 1441px) {
  .footer-column h3 {
    font-size: 1.4rem;
  }

  .footer-column ul li {
    font-size: 1.05rem;
  }
}

/* Laptops and desktops */
@media (max-width: 1440px) {
  .footer-column h3 {
    font-size: 1.25rem;
  }

  .footer-column ul li {
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-column {
    min-width: 250px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-column h3 {
    font-size: 1.15rem;
  }

  .footer-column ul li {
    font-size: 0.95rem;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-column ul li {
    font-size: 0.9rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .footer-logo img {
    max-width: 140px;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column ul li {
    font-size: 0.85rem;
  }
}

/* Ultra small devices */
@media (max-width: 330px) {
  .footer-column h3 {
    font-size: 0.95rem;
  }

  .footer-column ul li {
    font-size: 0.8rem;
  }
}

.footer-bottom {
  font-size: 14px;
  color: #666;
  padding-top: 20px;
}


/* ========== BASE STYLES ========== */
.header-container1 {
  padding: 40px 130px;
  color: #333;
}

.header-container1 h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.nav-links1 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.nav-links1 a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-links1 a:hover {
  color: #000;
  padding-left: 8px;
}

/* ========== SMOOTH SCROLL ========== */
html {
  scroll-behavior: smooth;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* 2500px to 1600px */
@media screen and (max-width: 2500px) {
  .header-container1 {
    margin-left: 10px;
  }
  .header-container1 h3 {
    font-size: 26px;
  }
}

/* 1600px to 1280px */
@media screen and (max-width: 1600px) {
  .header-container1 {
    padding: 35px 80px;
  }
  .header-container1 h3 {
    font-size: 24px;
  }
}

/* 1280px to 1024px */
@media screen and (max-width: 1280px) {
  .header-container1 {
    padding: 30px 60px;
  }
  .header-container1 h3 {
    font-size: 22px;
  }
}

/* 1024px to 768px */
@media screen and (max-width: 1024px) {
  .header-container1 {
    padding: 30px 40px;
  }
  .nav-links1 a {
    font-size: 15px;
  }
}

/* 768px to 600px */
@media screen and (max-width: 768px) {
  .header-container1 {
    padding: 25px 30px;
  }

}

/* 600px to 480px */
@media screen and (max-width: 600px) {
  .header-container1 h3 {
    font-size: 20px;
  }
  .nav-links1 a {
    font-size: 14px;
  }
}

/* 480px to 330px */
@media screen and (max-width: 480px) {
  .header-container1 {
    padding: 20px 20px;
  }
  .header-container1 h3 {
    font-size: 18px;
  }
  .nav-links1 a {
    font-size: 13px;
  }
}

/* Minimum width 330px */
@media screen and (max-width: 330px) {
  .header-container1 {
    padding: 20px 15px;
  }
  .nav-links1 a {
    font-size: 12.5px;
  }
}


.social-icons {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

#fb {
  margin-right: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.social-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 5%;
}



/* Comprehensive Media Queries */
/* Large Desktops */
@media screen and (max-width: 1440px) {
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 2.2rem;
  }
  
  .collection-item {
      min-width: 280px;
  }
  
  .tile-item, .tile-item1 {
      min-width: 220px;
  }
  

}

/* Medium Desktops and Laptops */
@media screen and (max-width: 1200px) {
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 2rem;
  }
  
  .collections-grid {
      gap: 2.5rem;
  }
  
  .collection-item h3 {
      font-size: 1.6rem;
  }
  
  .tiles-grid, .tiles-grid1 {
      gap: 1.5rem;
  }
  
  .tile-item img, .tile-item1 img {
      height: 220px;
  }
  
  .partner-logos {
      gap: 10rem;
  }
  
  .partner-logos img {
      height: 50px;
      max-width: 130px;
  }
}

/* Small Laptops and Large Tablets */
@media screen and (max-width: 992px) {
  .featured-collections,
  .tiles-by-space,
  .partners {
      padding: 4rem 4%;
  }
  
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 1.8rem;
  }
  
  .collections-grid {
      gap: 2rem;
  }
  
  .collection-item {
      min-width: 260px;
  }
  
  .collection-item h3 {
      font-size: 1.5rem;
      padding: 1.5rem 1.2rem 0.5rem;
  }
  
  .collection-item p {
      padding: 0 1.2rem 1.2rem;
      font-size: 0.95rem;
  }
  
  .collection-item img {
      height: 250px;
  }
  
  .tiles-by-space > p {
      font-size: 1rem;
  }
  
  .tiles-grid, .tiles-grid1 {
      gap: 1.2rem;
  }
  
  .tile-item, .tile-item1 {
      min-width: 200px;
  }
  
  .tile-item img, .tile-item1 img {
      height: 200px;
  }
  
  .tile-item span, .tile-item1 span {
      font-size: 1rem;
      padding: 0.8rem;
  }
  
  .partner-logos {
      gap: 7rem;
  }
  
  .partner-logos img {
      height: 45px;
      max-width: 120px;
  }
  

}

/* Tablets */
@media screen and (max-width: 768px) {
  .featured-collections,
  .tiles-by-space,
  .partners {
      padding: 3.5rem 3%;
  }
  
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 1.6rem;
      margin-bottom: 2.5rem;
  }
  
  .featured-collections h2::after,
  .tiles-by-space h2::after,
  .partners h2::after {
      width: 60px;
      bottom: -10px;
  }
  
  .collections-grid {
      flex-direction: column;
      align-items: center;
      gap: 2.5rem;
  }
  
  .collection-item {
      width: 100%;
      max-width: 450px;
  }
  
  .collection-item img {
      height: 280px;
  }
  
  .tiles-by-space > p {
      margin: 2rem auto 2.5rem;
  }
  
  .tiles-grid, .tiles-grid1 {
      justify-content: center;
  }
  
  .tile-item, .tile-item1 {
      min-width: 180px;
      max-width: 300px;
  }
  
  .partner-logos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
  }

  .partners img{
    margin-left: 50px;
  }
  

}

/* Large Mobile Devices */
@media screen and (max-width: 576px) {
  .featured-collections,
  .tiles-by-space,
  .partners {
      padding: 3rem 3%;
  }
  
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 1.5rem;
      margin-bottom: 2rem;
  }
  
  .featured-collections h2::after,
  .tiles-by-space h2::after,
  .partners h2::after {
      width: 50px;
  }
  
  .collection-item h3 {
      font-size: 1.4rem;
      padding: 1.2rem 1rem 0.4rem;
  }
  
  .collection-item p {
      padding: 0 1rem 1rem;
      font-size: 0.9rem;
  }
  
  .tiles-by-space > p {
      font-size: 0.9rem;
      margin: 1.5rem auto 2rem;
  }
  
  .tiles-grid, .tiles-grid1 {
      gap: 1rem;
  }
  
  .tile-item, .tile-item1 {
      min-width: 150px;
  }
  
  .tile-item img, .tile-item1 img {
      height: 180px;
  }
  
  .tile-item span, .tile-item1 span {
      font-size: 0.9rem;
      padding: 0.7rem;
  }
  
  .partner-logos {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
  
  .back-too-top a {
      width: 45px;
      height: 45px;
      line-height: 45px;
      font-size: 1.6rem;
  }
  

}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .featured-collections,
  .tiles-by-space,
  .partners {
      padding: 2.5rem 3%;
  }
  
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 1.4rem;
      margin-bottom: 1.8rem;
  }
  
  .collection-item {
      max-width: 320px;
  }
  
  .collection-item img {
      height: 220px;
  }
  
  .tiles-by-space > p {
      font-size: 0.85rem;
  }
  
  .tiles-grid, .tiles-grid1 {
      flex-direction: column;
      align-items: center;
  }
  
  .tile-item, .tile-item1 {
      width: 100%;
      max-width: 300px;
      margin-bottom: 0.5rem;
  }
  
  .tile-item img, .tile-item1 img {
      height: 200px;
  }
  
  .partner-logos img {
      height: 40px;
      max-width: 100px;
  }
  
  .social-icons {
      justify-content: center;
  }
}

/* Very Small Mobile Devices */
@media screen and (max-width: 320px) {
  .featured-collections h2, 
  .tiles-by-space h2, 
  .partners h2 {
      font-size: 1.3rem;
  }
  
  .collection-item h3 {
      font-size: 1.3rem;
  }
  
  .collection-item p {
      font-size: 0.85rem;
  }
  
  .collection-item img {
      height: 180px;
  }
  
  .partner-logos {
      grid-template-columns: 1fr;
  }
  

}



.contact-info span {
  display: block;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-info span i {
  margin-right: 0.6rem;
  color: white;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  background-color: #6d6d6e;
  color: rgb(210, 204, 204);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  font-size: 25px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #333;
  transform: translateY(-5px);
}


/* Comprehensive Media Queries */
/* Large Desktops */
@media screen and (max-width:2500px) {
  .left-images, .right-images{
    margin-top: 3%;
  }
}
@media screen and (max-width: 1440px) {
  html {
      font-size: 15px;
  }
  
  .about-text p {
      width: auto;
      font-size: 1rem;
  }
  .about-images{
    margin-right: 20px;
  }
  .left-images, .right-images{
    margin-top: 5%;
  }
}

/* Medium Desktops and Laptops */
@media screen and (max-width: 1200px) {
  html {
      font-size: 14px;
  }
  
  .heading h2 {
      font-size: 1.6rem;
  }
  
  .left-images, .right-images {
      transform: scale(0.9);
      
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 400px;
      height: 230px;
  }
  
  .about-images {
      height: 400px;
  }
  
  #img1, #img2, #img3, #img4, #img5, #img6 {
      position: relative;
      left: auto;
      top: auto;
      margin: 5px;
      display: inline-block;
  }


}
@media screen and (max-width:1024px) {
  .footer-column a{
    margin-left: 30%;
  }
}


/* Small Laptops and Large Tablets */
@media screen and (max-width: 992px) {
  html {
      font-size: 14px;
  }
  
  .header-container {
      padding-right: 0;
  }
  
  .nav-links {
      gap: 2rem;
  }
  
  .carosel {
      padding: 2rem 3%;
  }
  
  #firstimg {
      width: 300px;
  }
  
  #fourthimg {
      width: 300px;
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 350px;
      height: 200px;
  }
  
  .about-container {
      flex-direction: column;
  }
  
  .about-images {
      order: 2;
      margin-top: 30px;
      height: auto;
      text-align: center;
  }
  
  .about-text {
      order: 1;
  }
  
  .about-text p {
      font-size: 1rem;
      margin-left: 0;
      width: 100%;
  }
  
  .finish-grid {
      gap: 1.5rem;
  }
  
  .footer-section {
      flex: 1 1 45%;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  html {
      font-size: 13px;
  }
  
  .header {
      padding: 15px 4%;
  }
  
  .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
  }
  
  .header-container {
      justify-content: center;
      width: 100%;
      position: static;
  }
  
  .nav-links {
      position: fixed;
      top: 80px;
      right: -100%;
      flex-direction: column;
      background-color: white;
      width: 250px;
      height: 100vh;
      padding: 20px;
      gap: 0;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      z-index: 999;
  }
  
  .nav-links.active {
      right: 0;
  }
  
  .nav-links li {
      width: 100%;
  }
  
  .nav-links a {
      display: block;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
  }
  
  .nav-links a::after {
      display: none;
  }
  
  .heading h2 {
      font-size: 1.rem;
  }
  
  .carosel {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
  }
  
  .left-images, .right-images {
      display: none;
  }
  
  #firstimg, #secondimg, #thirdimg, #fourthimg, #fifthimg, #sixthimg {
      position: static;
      width: 80%;
      max-width: 350px;
      margin-bottom: 1rem;
      border: 3px solid white;
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 300px;
      height: 180px;
  }
  
  .category {
      flex: 1 1 100%;
  }
  
  .about-text h2 {
      font-size: 1.8rem;
      text-align: center;
  }
  
  .finish-item {
      width: 160px;
  }
}

@media (max-width: 629px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin: 5px 0;
    font-size: 14px;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.5;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  #fb {
    font-size: 14px;
    margin: 0;
  }
}


/* Large Mobile Devices */
@media screen and (max-width: 576px) {
  html {
      font-size: 12px;
  }
  
  .header {
      padding: 12px 3%;
  }
  
  #logo {
      width: 120px;
      height: auto;
  }
  
  .heading {
      padding: 2.5rem 3%;
  }
  
  .heading h2 {
      font-size: 1.4rem;
  }
  
  .carosel {
      padding: 1.5rem 3%;
  }
  
  #firstimg, #secondimg, #thirdimg, #fourthimg, #fifthimg, #sixthimg {
      width: 90%;
  }
  
  .carousel-title {
      font-size: 1.5rem;
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 250px;
      height: 150px;
      margin-right: 15px;
  }
  
  .categories {
      padding: 2.5rem 3%;
  }
  
  .category {
      padding: 1.2rem;
  }
  
  .category h2 {
      font-size: 1.3rem;
  }
  
  .category p {
      font-size: 0.9rem;
  }
  
  #productbtn a, #productbtn2 a {
      width: 80%;
      margin-left: 10%;
  }
  
  .about-us {
      padding: 2.5rem 3%;
  }
  
  .about-container {
      padding: 1.5rem;
  }
  
  .about-text h2 {
      font-size: 1.5rem;
  }
  
  .about-text p {
      font-size: 0.9rem;
  }
  
  .finish-styles, .footer {
      padding: 2.5rem 3% 1.5rem;
  }
  
  .finish-styles h2 {
      font-size: 1.5rem;
  }
  
  .finish-item {
      width: 140px;
  }
  
  .footer-section {
      flex: 1 1 100%;
  }
  
  .back-to-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 20px;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  html {
      font-size: 11px;
  }
  
  .heading h2 {
      font-size: 1.2rem;
  }
  
  #firstimg, #secondimg, #thirdimg, #fourthimg, #fifthimg, #sixthimg {
      width: 100%;
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 200px;
      height: 120px;
      margin-right: 10px;
      border-radius: 4px;
  }
  
  .category {
      padding: 1rem;
  }
  
  .category img {
      height: 150px;
  }
  
  .category h2 {
      font-size: 1.2rem;
  }
  
  .category p {
      font-size: 0.85rem;
  }
  
  #productbtn a, #productbtn2 a {
      width: 100%;
      margin-left: 0;
      height: 35px;
  }
  
  .finish-item {
      width: 120px;
  }
  
  .finish-item h3 {
      font-size: 1rem;
  }
  
  .footer-section h3 {
      font-size: 1.2rem;
  }
  
  .copyright {
      margin-top: 2rem;
      font-size: 0.8rem;
  }
}

/* Very Small Mobile Devices */
@media screen and (max-width: 320px) {
  html {
      font-size: 10px;
  }
  
  .heading h2 {
      font-size: 1.1rem;
  }
  
  .carousel-track img, .carousel-track2 img {
      width: 180px;
      height: 100px;
  }
  
  .category h2 {
      font-size: 1.1rem;
  }
  
  .category p {
      font-size: 0.8rem;
  }
  
  .finish-item {
      width: 100px;
  }
  
  .social-links a {
      width: 35px;
      height: 35px;
  }
}

/* ========== IFRAME STYLING ========== */

/* General iframe styling */
iframe {
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 90%; /* Default width */
  height: 300px; /* Default height */
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 2500px and larger - Very Large Screens */
@media screen and (min-width: 2500px) {
  iframe {
    width: 90%; /* Slightly wider for very large screens */
    height: 450px; /* Slightly taller for better visibility */
    margin-left: 10%; /* Centered on very large screens */
  }
}

/* 1800px to 2500px - Large Screens */
@media screen and (max-width: 2500px) and (min-width: 1800px) {
  iframe {
    width: 90%; /* Maintain similar width for large screens */
    margin-left: 20%; /* Adjust for larger screens */
  }
}

/* 1500px to 1800px - Medium Large Screens */
@media screen and (max-width: 1800px) and (min-width: 1500px) {
  iframe {
    width: 90%; /* Maintain similar width */
  }
}

/* 1300px to 1500px - Medium Screens */
@media screen and (max-width: 1500px) and (min-width: 1300px) {
  iframe {
    width: 90%; /* Maintain similar width */
  }
}

/* 1024px to 1300px - Tablet Screens */
@media screen and (max-width: 1300px) and (min-width: 1024px) {
  iframe {
    width: 90%; /* Increase width on tablet */
    height: 350px; /* Adjust height for better view */
    margin-left: auto;
    margin-right: auto;
  }
}

/* 768px to 1024px - Small Tablet Screens */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  iframe {
    width: 90%; /* Increase width on smaller devices */
    height: 300px; /* Adjust height */
  }
}

/* 600px to 768px - Mobile Devices */
@media screen and (max-width: 768px) and (min-width: 600px) {
  iframe {
    width: 90%; /* Full width for mobile devices */
    height: 250px; /* Adjust height for better visibility */
  }
}

/* 480px to 600px - Very Small Mobile Devices */
@media screen and (max-width: 600px) and (min-width: 480px) {
  iframe {
    width: 90%; /* Full width for small mobile devices */
    height: 220px; /* Adjust height for small mobile screens */
  }
}

/* 330px to 480px - Ultra Small Mobile Devices */
@media screen and (max-width: 480px) and (min-width: 330px) {
  iframe {
    width: 90%; /* Full width for very small screens */
    height: 200px; /* Minimal height */
  }
}

/* Less than 330px - Extremely Small Devices */
@media screen and (max-width: 330px) {
  iframe {
    width: 90%; /* Full width for extremely small screens */
    height: 180px; /* Minimal height */
  }
}
