/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff0f5;
  color: #444;
  line-height: 1.6;
}

/* Hero Section with Video Background and Curve */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 50% 85%);
}

.bg-video {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:initial;
  opacity: 1;
  z-index: 0;
}

/* Overlay Box */
.overlay {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  background: linear-gradient(135deg, #3244cf, #6866e1, #36b8f4);
  padding: 40px 60px;
  text-align: center;
  border-radius: 20px;
  color: white;
  backdrop-filter: blur(6px);

  max-width: 90%;
  width: 600px;
  box-shadow:
    0 10px 30px rgba(255, 105, 180, 0.3),
    0 0 20px rgba(255, 182, 193, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.overlay:hover {
  transform: translateX(-50%) translateY(-5px);
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Section Defaults */
section {
  padding: 80px 20px 60px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #5526df;
  margin-bottom: 30px;
}

/* About Section */
.about p {
  font-size: 1.15rem;
  text-align: center;
  margin: 15px auto;
  max-width: 800px;
  line-height: 1.8;
}

/* Services List */
.services ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

.services li {
  background: #ffe3ec;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #33b8d6;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* Gallery */
.gallery .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.image-item {
  text-align: center;
}

.image-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #8357fa;
  font-weight: 500;
}

/* Contact Section */
.contact p {
  text-align: center;
  font-size: 1.1rem;
}

.contact-info {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #1b5bd2;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* WhatsApp Sticky Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
  z-index: 999;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}
