body, html{
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
    background-image: url(../images2/blacklines.png);
    background-size: cover;
}

.header {
  position: relative;
  text-align: center;
  padding: 20px;
}

.backicon {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo1 {
  display: inline-block;
}

.logo1 h3{
  font-weight: bold;
  text-align: center;
  color: #f4b545;
  font-family: sans-serif;
  padding: 8px;
}

.tabs1 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
  padding: 20px;
}

.tab1-btn {
  padding: 10px 20px;
  border: none;
  background: black;
  font-weight: 600;
  border: 2px solid #f4b545;
  color: white;
  border-radius: 5px;
}

.tab1-btn.active {
  background: #f4b545;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.tab1-content {
  display: none;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}

.tab1-content.active {
  display: flex;
  justify-content: center;
}

.tab1-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.btn1know {
    padding: 0;
    background: none;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.btn1know a {
    display: block;
    padding: 10px;
    width: 100px;
    text-align: center;
    background-color: #f4b545;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn1know a:hover {
    background-color: transparent;
    color: #f4b545;
    border: 2px solid #f4b545;
}

/* floor plans css */
.tab-content {
  /* display: none; */
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}

.tab-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.image-caption {
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 10px 0;
  font-size: 16px;
}

/* Media css */
.media_section {
  padding: 20px 20px;
  background-color: #111; /* Optional: dark background for contrast */
  text-align: center;
}

.media_section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #fff;
}

.media_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.video_wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 768px) {
  .tabs1 {
    flex-direction: column;
    align-items: center;
  }

  .tab1-btn {
    width: 90%;
    font-size: 16px;
  }

  .tab1-content {
    flex-direction: column;
    align-items: center;
  }

  .tab1-content img {
    width: 90%;
  }
}