* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* imaage bg  */

.hero {
  background: url("../image/assets/living.jpg") center / cover
    no-repeat;
  height: 300px;
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  font-size: 1rem;
  margin-top: 10px;
  font-weight: normal;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

/*  */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* undre bg img */

.main-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 800px;
  margin: 40px auto 40px;
  line-height: 1.3;
}

.content-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.column {
  flex: 1;
}

.column p {
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95rem;
}

/* .video-container {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}

.video-container img {
  width: 100%;
  height: 405px;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
} */


/* Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* Fallback color if video doesn't load */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Play Button Styles */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-icon {
  color: #333;
  margin-left: 4px; /* Adjusts the play icon to look centered */
}

/* Hide play button when video is playing */
.video-container.playing .play-button {
  opacity: 0;
  visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
    margin: 30px auto;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 40px;
    height: 40px;
  }
  
  .play-icon {
    width: 18px;
    height: 18px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .content-columns {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    height: 250px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .main-heading {
    font-size: 1.5rem;
  }
}
/* body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f8fb;
  color: #333;
} */
.section {
  background-color: #ffffff;
  margin: 50px auto;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(241, 238, 238, 0.1);
  max-width: 1000px;
  padding: 50px 20px;
}
.section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1a4d7e;
  text-align: center;
}
.section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.team-member {
  position: relative;
  background-color: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}
.team-member:hover {
  transform: translateY(-5px);
}
.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.team-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-info h3 {
  font-size: 18px;
  margin: 0;
  color: #1a4d7e;
}

.team-info p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #777;
}

/* Furniture Design Section Styles */
.furniture-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
}
.background-circle {
  position: absolute;
  right: -100px;
  top: -50px;
  width: 600px;
  height: 600px;
  background-color: #e8f1f8;
  border-radius: 50%;
  z-index: 0;
}

.content {
  flex: 1;
  z-index: 1;
  padding-right: 20px;
}

.content h2 {
  font-size: 28px;
  color: #1a4d7e;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #1a4d7e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #143d63;
}

.image-wrapper {
  flex: 1;
  z-index: 1;
  text-align: right;
}

.image-wrapper img {
  width: 400px;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .furniture-section {
      flex-direction: column;
      text-align: center;
  }

  .image-wrapper {
      margin-top: 20px;
      text-align: center;
  }

  .background-circle {
      width: 400px;
      height: 400px;
      right: -50px;
      top: -100px;
  }

  .team-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}