* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 100;
}
/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.nav-links a:hover {
  color: #0073e6;
  transform: translateY(-2px);
}
/* Book button */
.book-btn {
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}
.book-btn a{
  color: white;
}
.book-btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 220px;
    border-left: 1px solid #e0e0e0;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.08);
    display: none;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Transform hamburger into X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* Smooth transition for navbar */
.navbar, .nav-links, .book-btn, .nav-links a {
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url("./assets/310b938a7c552b968798e04010e4d219.jpg") center/cover no-repeat;
  min-height: 91vh;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}
/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}
/* Typography */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}
/* Hero button */
.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #0073e6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 115, 230, 0.3);
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 91, 181, 0.35);
}
/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}
/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Choose Our Space Section */
.why-choose {
  padding: 100px 8%;
  background-color: #f8f9fa;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}
.why-choose h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
.why-choose h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0073e6;
  margin: 15px auto 0;
  border-radius: 2px;
}
.why-choose p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
}
/* Cards container */
.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Individual Card */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 25px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.35rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}
.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 1024px) {
  .cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .why-choose {
    padding: 70px 15px;
  }

  .why-choose h2 {
    font-size: 2.2rem;
  }

  .why-choose p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .card {
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }

  .card img {
    margin: 0 auto 15px;
  }
}

/* Flexible Membership Plans Section */
.membership-plans {
  padding: 100px 8%;
  background-color: #ebebeb;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}
.membership-plans h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
.membership-plans h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0073e6;
  margin: 15px auto 0;
  border-radius: 2px;
}
.membership-plans p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
}
/* Cards container */
.membership-plans .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
/* Individual Card */
.membership-plans .card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 40px 25px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.membership-plans .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
/* Featured Dedicated Desk Card */
.membership-plans .card.featured {
  background-color: #0073e6;
  color: #fff;
  max-width: 360px;
  padding: 50px 30px;
}
.membership-plans .card.featured .price {
  color: #fff;
}
.membership-plans .card h3 {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 15px;
  font-weight: 600;
}
.membership-plans .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0073e6;
  margin-bottom: 25px;
}
.membership-plans .card.featured .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.membership-plans .card ul {
  list-style: disc inside;
  margin-bottom: 25px;
  color: inherit;
  line-height: 1.6;
  padding-left: 0;
}
.membership-plans .plan-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #0073e6;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.membership-plans .card.featured .plan-btn {
  background-color: #fff;
  color: #0073e6;
}
.membership-plans .plan-btn:hover {
  background-color: #005bb5;
}
.membership-plans .card.featured .plan-btn:hover {
  background-color: #e6f0ff;
}
/* Responsive */
@media (max-width: 1024px) {
  .membership-plans .cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .membership-plans {
    padding: 70px 15px;
  }

  .membership-plans h2 {
    font-size: 2.2rem;
  }

  .membership-plans p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .membership-plans .card,
  .membership-plans .card.featured {
    max-width: 100%;
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 8%;
  background-color: #f8f9fa;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}
.gallery h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
.gallery h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0073e6;
  margin: 15px auto 0;
  border-radius: 2px;
}
.gallery p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
}
/* Gallery Grid - Masonry style */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}
.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .gallery {
    padding: 70px 15px;
  }
  .gallery h2 {
    font-size: 2.2rem;
  }
  .gallery p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


/* Testimonials Section */
.testimonials {
  padding: 100px 8%;
  background-color: #ebebeb;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}
.testimonials h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}
.testimonials h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0073e6;
  margin: 15px auto 0;
  border-radius: 2px;
}
.testimonials p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
}
/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 180px;
}
.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: opacity 1s ease-in-out, transform 0.5s ease;
}
.testimonial.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}
.testimonial p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial h4 {
  font-size: 1rem;
  color: #0073e6;
  font-weight: 500;
}
/* Optional: add quote icon */
.testimonial p::before {
  content: "";
  font-size: 2rem;
  color: #0073e6;
  margin-right: 8px;
  vertical-align: top;
}
/* Responsive */
@media (max-width: 1024px) {
  .testimonials h2 {
    font-size: 2.2rem;
  }
  .testimonials p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .testimonial p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 15px;
  }

  .testimonial-slider {
    min-height: auto;
  }
}
/* Testimonial bullets */
.testimonial-bullets {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.bullet.active {
  background-color: #0073e6;
}

/* Footer Section */
.footer {
  background: linear-gradient(180deg, #222, #111);
  color: #fff;
  padding: 60px 8% 20px 8%;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 12px;
}
.footer p, .footer a, .footer li {
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: #0073e6;
  transition: color 0.3s ease;
}
.footer-social .social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 24px; /* increase size for visibility */
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social .social-icons a:hover {
  transform: scale(1.3);
  color: #0073e6;
}
.footer-social .social-icons a.facebook:hover {
  color: #3b5998;
}
.footer-social .social-icons a.twitter:hover {
  color: #1da1f2;
}
.footer-social .social-icons a.linkedin:hover {
  color: #0077b5;
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #444;
  margin-top: 30px;
  color: #aaa;
}
.footer-bottom .footer-credit {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 6px;
}
/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    justify-content: space-around;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 20px 15px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

