/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  margin: 0;
}

.container {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 50px;
  width: auto;
  cursor: pointer;
  margin-left: -220px;
}

.site-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a.active {
  color: #800000;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #800000;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 60vh;
  background-image: url("images/cover.jpg");
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: zoomIn 6s ease-in-out forwards;
  position: relative;
}

@keyframes zoomIn {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

.slideshow {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay on slideshow */
.slideshow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

/* Hero Text Animation */
.hero-text {
  position: absolute;
  top: 30%;
  left: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.hero-text .line {
  display: inline-block;
  transform: translateX(-80px);
  opacity: 0;
  animation: slideInFromLeft 0.7s ease-out forwards;
}

.hero-text .line1 { animation-delay: 0.2s; }
.hero-text .line2 { animation-delay: 0.6s; }
.hero-text .line3 { animation-delay: 1s; }
.hero-text .line4 { animation-delay: 1.4s; }

@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* CTA Button */
.hero-text .cta-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-text .cta-btn:hover {
  background-color: #c2185b;
}

/* Section Generic */
section {
  padding: 50px 0;
}
/* ✂️ Everything before remains unchanged */

/* About Section */
.about {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e91e63;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #444;
}

.about {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #e91e63;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.about-img {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e91e63;
}

.contact-info {
  text-align: center;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 10px;
}

/* Keep rest styles if map and float button exist */
.contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-details,
.whatsapp-float {
  width: 100%;
  max-width: 150px;
}

/* ... (map-container, whatsapp-float, etc., already exist and can stay unchanged) */

.map-container {
  width: 100%;
  max-width: 500px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.map-container {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: fadeInUp 1s ease forwards;
}

.whatsapp-chat {
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-chat img {
  width: 30px;
  height: 30px;
}

.whatsapp-chat span {
  font-weight: 600;
  font-size: 14px;
}

.whatsapp-float:hover .whatsapp-chat {
  transform: scale(1.05);
}

.whatsapp-float a {
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
}

/* Gallery */
.gallery-title {
  text-align: center;
  margin: 100px 0 20px;
  font-size: 2rem;
  font-weight: bold;
}

.gallery-title p {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 50px 100px;
}

.gallery-item {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInZoom 0.6s ease-in-out forwards;
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}
/* Services */
.services {
  text-align: center;
  margin: 50px 0 20px;
}
  
.section-heading {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 3rem;
  font-weight: bold;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: px;
  color: #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  background-color: #fff;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #da0087;
}

.service-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

.slide-in {
  position: relative;
  opacity: 0;
  animation: slideIn 1.5s ease-out forwards;
}

/* Individual image tweaks */
.service-img-1 { margin-left: 10px; }
.service-img-2 { max-width: 10px; }
.service-img-3 { margin-top: 20px; }
.service-img-4 { transform: rotate(-1deg); }
.service-img-5 { padding: 10px; }
.service-img-6 { filter: grayscale(5%); }

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text {
    top: 15%;
    left: 8%;
    gap: 4px;
  }

  .hero-text h2 {
    font-size: 2rem;
    text-align: left;
  }

  .hero-text .cta-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .map-container {
    max-width: 400px;
    height: 250px;
  }

  .hero-heading {
    padding-left: 0;
    font-size: 2.5rem;
  }
}
/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1001;
}
