* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.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(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 80px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
  left: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a {
  display: block;
  padding: 1.5rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  background: rgba(255, 107, 107, 0.1);
  padding-left: 2.5rem;
  color: #ff6b6b;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
  transform: scaleY(1);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/8613089/pexels-photo-8613089.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
  opacity: 0.2;
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Parallax Background Elements */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
  z-index: -2;
  will-change: transform;
}

/* Animated Children */
.animated-children {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.child-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 107, 107, 0.3);
  animation: float 20s linear infinite;
}

.child-icon:nth-child(1) {
  top: 10%;
  animation-delay: 0s;
  font-size: 1.8rem;
  color: rgba(78, 205, 196, 0.4);
}

.child-icon:nth-child(2) {
  top: 30%;
  animation-delay: -5s;
  font-size: 2.2rem;
  color: rgba(255, 107, 107, 0.3);
}

.child-icon:nth-child(3) {
  top: 50%;
  animation-delay: -10s;
  font-size: 1.6rem;
  color: rgba(69, 183, 209, 0.4);
}

.child-icon:nth-child(4) {
  top: 70%;
  animation-delay: -15s;
  font-size: 2rem;
  color: rgba(255, 107, 107, 0.25);
}

.child-icon:nth-child(5) {
  top: 20%;
  animation-delay: -8s;
  font-size: 1.9rem;
  color: rgba(78, 205, 196, 0.3);
}

.child-icon:nth-child(6) {
  top: 60%;
  animation-delay: -3s;
  font-size: 1.7rem;
  color: rgba(69, 183, 209, 0.35);
}

@keyframes float {
  0% {
    transform: translateX(-100px) translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: floatUpDown 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  font-size: 3rem;
  color: #ff6b6b;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: -2s;
  font-size: 2.5rem;
  color: #4ecdc4;
}

.floating-element:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-delay: -4s;
  font-size: 2.8rem;
  color: #45b7d1;
}

.floating-element:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: -1s;
  font-size: 2.2rem;
  color: #ff6b6b;
}

.floating-element:nth-child(5) {
  top: 15%;
  right: 40%;
  animation-delay: -3s;
  font-size: 2.6rem;
  color: #4ecdc4;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Parallax Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

/* Slideshow Section */
.slideshow-section {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.slideshow-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  animation: rotateBackground 30s linear infinite;
  z-index: -1;
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slideshow-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  height: 500px;
  width: 100%;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  filter: blur(5px);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
  z-index: 3;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 1.2s ease;
  z-index: 2;
}

.slide.active::before {
  background: rgba(0, 0, 0, 0.4);
}

.slide-content {
  text-align: center;
  z-index: 4;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5), 0 0 40px rgba(78, 205, 196, 0.3);
  }
}

.slide-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover, .next:hover {
  background: rgba(255, 107, 107, 0.8);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  border-color: rgba(255, 107, 107, 0.6);
}

/* Dots indicators */
.dots-container {
  text-align: center;
  margin-top: 2rem;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(-50%, -50%);
}

.dot.active, .dot:hover {
  background-color: rgba(255, 107, 107, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.dot.active::before, .dot:hover::before {
  width: 100%;
  height: 100%;
}

/* Slideshow container enhancements */
.slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.slideshow-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(78, 205, 196, 0.1) 100%);
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow-container:hover::before {
  opacity: 1;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

.services-grid::-webkit-scrollbar {
  height: 8px;
}

.services-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 10px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  width: 200px;
  height: 200px;
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.service-card i {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #4ecdc4;
  font-weight: 600;
}

.service-card p {
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Section */
.social-media {
  margin-bottom: 2rem;
}

.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-link i {
  font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .child-icon {
    font-size: 1.5rem;
  }
  
  .floating-element {
    font-size: 2rem !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .logo-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 200px;
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}