* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffe6f0;
  color: #333;
}

a{
  text-decoration: none;
}

/* Navbar */
nav {
  background-color: #d63384;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffe6f0;
}

/* Banner */
.banner {
  position: relative;
  text-align: center;
  color: #fff;
}

.banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 2s ease-in-out;
}

.banner .banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner .banner-text p {
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Profiles */
.profiles {
  max-width: 1200px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.profile-card h3 {
  color: #d63384;
  margin: 10px 0;
}

.profile-card p {
  font-size: 0.9rem;
  padding: 0 10px 15px;
  color: #666;
}

/* About Section */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 50px auto;
  gap: 30px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: #d63384;
  margin-bottom: 15px;
  font-size: 2rem;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  font-size: 1rem;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  animation: fadeInUp 1.5s ease-in-out;
}

/* FAQ Section */
.faq-section {
  padding: 20px;
  background: #fff0f5;
}

.faq-section h2 {
  text-align: center;
  color: #ff4081;
  margin-bottom: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #ffe6f0;
}

.faq-question {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}


@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Location Buttons */
.location {
  text-align: center;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
}

.location-buttons{
  max-width: 1200px;
  margin: 20px auto;
  gap: 10px;
  padding: 0 10px;
}

.location-buttons a {
  background: #d63384;
  color: #fff;
  border: none;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  font-size: .8rem;
  transition: background 0.3s;
}

.location-buttons a:hover {
  background: #b0256a;
}

/* Footer */
footer {
  background-color: #d63384;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-btn, .call-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
}

.whatsapp-btn {
  background: #25d366;
  right: 20px;
}

.call-btn {
  background: #d63384;
  left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .banner img {
    height: 250px;
  }

  .banner .banner-text h1 {
    font-size: 1.8rem;
  }

  .banner .banner-text p {
    font-size: 1rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }
}