body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ===== HERO SECTION ===== */
.hero {
  background: url("../../assets/imgs/m-2-img.jpeg") center/cover no-repeat;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Navbar Wrapper */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.534);
  /* Dark transparent bg */
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  backdrop-filter: blur(6px);
  /* Glassy effect (optional) */
}

/* Brand Name - Top Left */
.brand-top {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.brand-top span {
  color: #00bfff;
}

/* Navbar Links - Top Right */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #00bfff;
  transition: width 0.3s ease;
}

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

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

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  padding: 20px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Modern Gradient Button */
.btn-custom {
  background: linear-gradient(45deg, #1e8fff51, #00bfff7f);
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 10px;
  border: none;
  border-radius: 10px;

  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: linear-gradient(45deg, #1e8fff51, #00bfff7f);
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0, 191, 255, 0.6);
}

/* Outline Button */
.btn-outline-custom {
  background: transparent;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 10px;
  border: 1px solid white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: #00bfff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero {
    background-position: right top;
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content {
    margin-top: 300px;
  }

  .btn {
    display: flex;
    flex-direction: row;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero {
    background-position: right center;
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content {
    margin-top: 300px;
  }

  .btn {
    display: flex;
    flex-direction: row;
  }
}

/* Menu Button (hidden on desktop) */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.578);
    flex-direction: column;
    width: 200px;
    text-align: left;
    padding: 20px;
    display: none;
    /* hidden by default */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #0a0a2a, #1a1a4a);
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

/* Heading */
.about-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.about-heading h2 span {
  color: #4cc3ff;
}

/* Content Layout */
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image Styling */
.about-img img {
  width: 320px;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* About Text Box */
.about-text {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 30px;
  border-radius: 15px;
  max-width: 450px;
  color: #eaeaea;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-text:hover {
  transform: translateY(-5px);
}

.about-text strong {
  color: #4cc3ff;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #4cc3ff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #1e8fff51, #00bfff7f);
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0, 191, 255, 0.6);
}

/* Highlights Section */
.about-highlights {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-8px);
}

.highlight-box h3 {
  font-size: 2rem;
  color: #4cc3ff;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .about-heading h2 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 40px 20px;
  background: #fdfdfd;
}

/* Heading */
.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 25px;
  font-weight: bold;
}

/* Masonry Grid */
.gallery-container {
  column-count: 3;
  /* number of columns */
  column-gap: 15px;
  /* space between columns */
  max-width: 1100px;
  margin: auto;
}

.gallery-container img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.gallery-container img:hover {
  transform: scale(1.03);
  border: 3px solid #00bfff;
  /* Blue border highlight */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-container {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-container {
    column-count: 1;
  }
}

/* Services Section */
.services-section {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 50px auto;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #00bfff;
}

.service-buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  margin-left: 150px;
}

.service-buttons button {
  padding: 10px 20px;
  border: none;
  background: #b3ecff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.service-buttons button.active {
  background: white;
  border: 2px solid #00bfff;
  color: #00bfff;
}

.service-content {
  display: none;
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-content.active {
  display: block;
}

.service-content img {
  width: 100%;
  border-radius: 12px;
}

.service-content h3 {
  margin-top: 15px;
  color: #333;
}

.service-content p {
  color: #555;
}

.service-content .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #00bfff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.service-content .btn:hover {
  background: #008ecc;
}
.responsive-img {
  width: 100%;
  max-width: 880px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service-buttons {
    margin-left: 0;
    justify-content: center;
  }
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #0a0a2a, #1d1d4f);
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  width: 100vw;
}

/* Heading */
.reviews-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.reviews-heading h2 span {
  color: #4cc3ff;
}

.reviews-heading p {
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* Review Cards */
.reviews-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #4cc3ff;
}

.review-card h3 {
  color: #4cc3ff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.review-card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

/* Contact Section */

.contact-section {
  padding: 80px 10%;
  background: #111;
  color: #fff;
  text-align: center;
  width: 100vw;
}

.contact-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.contact-heading h2 span {
  color: #00bfff;
}

.contact-heading p {
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info {
  text-align: left;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-info .contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-info .contact-link:hover {
  color: #00bfff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.4rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
}

.contact-map iframe {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/*  Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-info {
    padding: 20px;
    text-align: center;
  }

  .contact-map iframe {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    font-size: 0.9rem;

    padding: 15px;
  }

  .contact-map iframe {
    min-height: 200px;
  }
}
