/* Reset and base styles */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navbar-height: 4.5rem;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #2c5282;
  padding: 1rem 2rem;
  height: var(--navbar-height);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(44, 82, 130, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.brand:hover {
  color: #ffd700;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background-color: #2c5282;
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@keyframes float1 {
  0% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  25% {
    transform: translateY(-20px) scale(1.08) rotate(2deg);
  }
  50% { 
    transform: translateY(-25px) scale(1.1) rotate(-1deg); 
  }
  75% {
    transform: translateY(-15px) scale(1.05) rotate(1deg);
  }
  100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
}

@keyframes float2 {
  0% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  25% {
    transform: translateY(-25px) scale(1.1) rotate(-2deg);
  }
  50% { 
    transform: translateY(-30px) scale(1.12) rotate(2deg); 
  }
  75% {
    transform: translateY(-20px) scale(1.08) rotate(-1deg);
  }
  100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
}

@keyframes float3 {
  0% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  25% {
    transform: translateY(-22px) scale(1.09) rotate(1deg);
  }
  50% { 
    transform: translateY(-28px) scale(1.11) rotate(-2deg); 
  }
  75% {
    transform: translateY(-18px) scale(1.07) rotate(1.5deg);
  }
  100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
}

.brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-links a.active {
  color: #ffd700;
}

/* Hero section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Sky and grass */
.sky {
  height: 70vh;
  background: linear-gradient(to bottom, 
      #1a4ba5 0%,
      #3277d0 20%,
      #50a4ed 40%,
      #87ceeb 65%,
      #b4e0f3 100%
  );
  position: relative;
  overflow: hidden;
}

.grass {
  height: 30vh;
  background: 
      linear-gradient(90deg, rgba(37,87,38,0.8) 0%, rgba(37,87,38,0) 100%),
      linear-gradient(-90deg, rgba(37,87,38,0.8) 0%, rgba(37,87,38,0) 100%),
      linear-gradient(0deg, #1a4411 0%, #2d6a1e 50%, #388e3c 100%);
  position: relative;
  overflow: hidden;
}

.grass::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
      repeating-linear-gradient(
          80deg,
          transparent 0px,
          transparent 2px,
          rgba(26, 68, 17, 0.3) 2px,
          rgba(26, 68, 17, 0.3) 4px
      ),
      repeating-linear-gradient(
          -85deg,
          transparent 0px,
          transparent 3px,
          rgba(26, 68, 17, 0.3) 3px,
          rgba(26, 68, 17, 0.3) 6px
      );
}

.grass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
      radial-gradient(circle at 50% 0%, rgba(56, 142, 60, 0.4) 0%, rgba(26, 68, 17, 0) 70%),
      radial-gradient(circle at 15% 25%, rgba(56, 142, 60, 0.4) 0%, rgba(26, 68, 17, 0) 50%),
      radial-gradient(circle at 85% 35%, rgba(56, 142, 60, 0.4) 0%, rgba(26, 68, 17, 0) 50%);
  pointer-events: none;
}

.grass::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: 
      repeating-linear-gradient(
          75deg,
          transparent 0px,
          transparent 3px,
          rgba(26, 68, 17, 0.2) 3px,
          rgba(26, 68, 17, 0.2) 6px
      );
  filter: blur(0.5px);
}

/* Sun */
.sun {
  width: 120px;
  height: 120px;
  background: #ffd700;
  border-radius: 50%;
  position: absolute;
  top: 120px;
  right: 100px;
  box-shadow: 
      0 0 50px #ffd700,
      0 0 100px #ff8c00,
      0 0 150px rgba(255, 140, 0, 0.5);
  animation: glow 3s infinite alternate;
}

.sun::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  right: -30%;
  bottom: -30%;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0) 70%);
  border-radius: 50%;
}

/* Clouds */
.cloud {
  background: white;
  border-radius: 15px;
  position: absolute;
  opacity: 0.85;
  filter: blur(0.2px);
  transition: opacity 0.3s ease;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 50%;
}

/* Large cloud */
.cloud.large {
  width: 120px;
  height: 35px;
}

.cloud.large::before {
  width: 55px;
  height: 55px;
  top: -25px;
  left: 15px;
}

.cloud.large::after {
  width: 35px;
  height: 35px;
  top: -18px;
  left: 55px;
}

/* Medium cloud */
.cloud.medium {
  width: 90px;
  height: 28px;
}

.cloud.medium::before {
  width: 40px;
  height: 40px;
  top: -18px;
  left: 12px;
}

.cloud.medium::after {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 40px;
}

/* Small cloud */
.cloud.small {
  width: 70px;
  height: 22px;
}

.cloud.small::before {
  width: 32px;
  height: 32px;
  top: -15px;
  left: 10px;
}

.cloud.small::after {
  width: 22px;
  height: 22px;
  top: -12px;
  left: 32px;
}

/* Cloud positions and animations */
.cloud1 {
  top: 180px;
  left: -120px;
  animation: moveCloud 28s linear infinite;
  transform: scale(1.2);
}

.cloud2 {
  top: 180px;
  left: -350px;
  animation: moveCloud 32s linear infinite;
  animation-delay: -15s;
  transform: scale(0.85);
}

.cloud3 {
  top: 220px;
  left: -200px;
  animation: moveCloud 25s linear infinite;
  animation-delay: -8s;
}

.cloud4 {
  top: 160px;
  left: -500px;
  animation: moveCloud 30s linear infinite;
  animation-delay: -20s;
  transform: scale(0.7);
}

.cloud5 {
  top: 200px;
  left: -600px;
  animation: moveCloud 35s linear infinite;
  animation-delay: -25s;
  transform: scale(1.1);
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #333;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 
    2px 2px 0 rgba(0, 0, 0, 0.2),
    4px 4px 0 rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
}

/* Services */
.services {
  margin: 2rem auto 1rem;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}

.services .highlight {
  color: #2c5282;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.3rem;
}

/* Floating images */
.floating-images {
  margin-top: 4rem;
  position: relative;
  height: 380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4rem;
  gap: 3rem;
}

.floating {
  width: 340px;
  height: 340px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}

.floating:hover {
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.tent {
  animation: float1 4s ease-in-out infinite, tilt1 8s ease-in-out infinite;
  transform-origin: center center;
}

.bounce-house {
  animation: float2 4.2s ease-in-out infinite 0.4s, tilt2 8.5s ease-in-out infinite;
  transform-origin: center center;
}

.tables {
  width: 300px;
  height: 300px;
  animation: float3 4.4s ease-in-out infinite 0.8s, tilt3 9s ease-in-out infinite 0.5s;
  transform-origin: center center;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-left: 0;
  z-index: 10;
}

.scroll-arrow {
  cursor: pointer;
}

.scroll-text {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: -0.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  animation: fadeInOut 2s ease-in-out infinite;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 2;
}

.arrow {
  font-size: 3.5rem;
  line-height: 0.7;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: relative;
  animation: pulseArrow 2s ease-in-out infinite;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 1;
}

.arrow:hover {
  animation: pulseArrowHover 1s ease-in-out infinite;
}

@keyframes pulseArrow {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(12px);
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    opacity: 1;
  }
}

@keyframes pulseArrowHover {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  50% {
    transform: translateY(8px) scale(1.1);
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    color: #ffd700;
  }
}

/* FAQ Section */
.section-faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dcecff 0%, #c9e2ff 50%, #b8d9ff 100%);
  position: relative;
  overflow: hidden;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(0deg, rgba(44, 82, 130, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 82, 130, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(66, 153, 225, 0.02) 0%, rgba(66, 153, 225, 0.02) 2px, transparent 2px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.02) 2px, transparent 2px, transparent 10px);
  background-size: 20px 20px, 20px 20px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  pointer-events: none;
  animation: shimmerBg 20s ease-in-out infinite alternate;
}

.section-faq::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-conic-gradient(rgba(66, 153, 225, 0.03) 0% 25%, transparent 25% 50%);
  pointer-events: none;
  animation: rotateBg 30s linear infinite;
}

@keyframes shimmerBg {
  0% {
    background-position: 0 0, 0 0, 0% 0%, 0% 0%, 50% 50%;
  }
  100% {
    background-position: 10px 10px, 10px 10px, 20% 20%, 80% 80%, 51% 51%;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(44, 82, 130, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at top right, rgba(66, 153, 225, 0.08) 0%, transparent 70%),
    radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2c5282, #4299e1, #ffd700);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 25px rgba(44, 82, 130, 0.1),
    0 5px 10px rgba(44, 82, 130, 0.05);
  border-color: rgba(66, 153, 225, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover::after {
  transform: scaleX(1);
}

.faq-item h3 {
  color: #2c5282;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

/* Map Section */
.section-map {
  padding: 6rem 0;
  background: linear-gradient(135deg, #e8f3ff 0%, #d1e6ff 50%, #c4e0ff 100%);
  position: relative;
  overflow: hidden;
}

.section-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(66, 153, 225, 0.03) 0%, rgba(66, 153, 225, 0.03) 1px, transparent 1px, transparent 15px),
    repeating-linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 1px, transparent 1px, transparent 15px);
  pointer-events: none;
}

.section-map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(66, 153, 225, 0.05) 49%, rgba(255, 215, 0, 0.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(66, 153, 225, 0.05) 49%, rgba(255, 215, 0, 0.05) 51%, transparent 52%);
  background-size: 60px 60px;
  animation: shiftMapPattern 30s linear infinite;
  pointer-events: none;
}

@keyframes shiftMapPattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(44, 82, 130, 0.15),
    0 8px 16px rgba(44, 82, 130, 0.1);
  border: 1px solid rgba(66, 153, 225, 0.2);
  background: white;
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5282, #4299e1, #ffd700);
  z-index: 1;
}

.map-info {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 153, 225, 0.15);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-areas span {
  background: rgba(44, 82, 130, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  color: #2c5282;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-areas span:hover {
  background: rgba(44, 82, 130, 0.2);
  transform: translateY(-2px);
}

.service-note {
  color: #4a5568;
  font-style: italic;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #2c5282, #1e4b7e);
  color: white;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 50%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.footer-phone {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
}

.footer-phone:hover {
  color: white;
  transform: translateY(-1px);
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.footer-hours {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

.copyright {
  opacity: 0.9;
  padding: 0.2rem 0;
}

.creator {
  opacity: 0.8;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  padding: 0.2rem 0;
}

.creator a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
}

.creator a:hover {
  color: white;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Bird */
.bird {
  position: absolute;
  top: 15%;
  left: -50px;
  width: 30px;
  height: 20px;
  animation: flyBird 15s linear infinite;
}

.bird::before,
.bird::after {
  content: '';
  position: absolute;
  background: #333;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  animation: flapWings 0.8s ease-in-out infinite;
}

.bird::before {
  width: 15px;
  height: 10px;
  transform-origin: right center;
}

.bird::after {
  width: 15px;
  height: 10px;
  top: 10px;
  transform-origin: right center;
}

/* Animations */
@keyframes flyBird {
  0% {
    left: -50px;
    transform: translateY(0);
  }
  10% {
    transform: translateY(-20px);
  }
  30% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-15px);
  }
  70% {
    transform: translateY(5px);
  }
  90% {
    transform: translateY(-10px);
  }
  100% {
    left: calc(100vw + 50px);
    transform: translateY(0);
  }
}

@keyframes flapWings {
  0%, 100% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(60deg);
  }
}

@keyframes moveCloud {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 150px));
    opacity: 0;
  }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes tilt1 {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes tilt2 {
  0%, 100% { transform: rotate(1deg); }
  50% { transform: rotate(-1deg); }
}

@keyframes tilt3 {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

@keyframes glow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.3);
  }
}

/* Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: -2s; }
.particle:nth-child(3) { left: 50%; top: 10%; animation-delay: -4s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: -6s; }
.particle:nth-child(5) { left: 90%; top: 50%; animation-delay: -8s; }
.particle:nth-child(6) { left: 20%; top: 60%; animation-delay: -10s; }
.particle:nth-child(7) { left: 40%; top: 25%; animation-delay: -12s; }
.particle:nth-child(8) { left: 60%; top: 45%; animation-delay: -14s; }

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* Social Section */
.social-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(44, 82, 130, 0.1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: #2c5282;
  box-shadow: 0 2px 8px rgba(44, 82, 130, 0.2);
  animation: pulse 2s infinite;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #4299e1;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
  animation: none;
}

.animate-bounce {
  animation: iconBounce 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 82, 130, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(44, 82, 130, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 82, 130, 0);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-link span {
  position: relative;
  top: 1px;
}

/* Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: #2c5282;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #2c5282;
}

/* Services Section */
.section-services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #e3efff 0%, #c9e2ff 50%, #dbeaff 100%);
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2c5282, #4299e1, #ffd700);
  opacity: 0.8;
}

.section-services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(66, 153, 225, 0.03) 0%, rgba(66, 153, 225, 0.03) 2px, transparent 2px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 2px, transparent 2px, transparent 20px);
  pointer-events: none;
  animation: shiftBackground 30s linear infinite;
}

.services-grid {
  position: relative;
}

.services-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: radial-gradient(circle at center, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes shiftBackground {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100% 100%, 100% 100%, 20% 20%, 80% 80%, 50px 50px, 50px 50px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 82, 130, 0.12);
  backdrop-filter: blur(5px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(255, 215, 0, 0.08) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(66, 153, 225, 0.08) 50%, transparent 52%);
  background-size: 30px 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent 70%),
    radial-gradient(circle at bottom left, rgba(66, 153, 225, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 30px rgba(44, 82, 130, 0.15),
    0 8px 12px rgba(44, 82, 130, 0.1),
    0 0 0 2px rgba(66, 153, 225, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

@keyframes shiftPattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #2c5282;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* About Section */
.section-about {
  padding: 7rem 0;
  background: linear-gradient(45deg, #f0f7ff 0%, #e8f3ff 50%, #dceaff 100%);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(66, 153, 225, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(44, 82, 130, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
  animation: rotateBg 30s linear infinite;
  pointer-events: none;
}

.section-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 90%, rgba(44, 82, 130, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(66, 153, 225, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text p {
  color: #2d3748;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.about-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.about-features li {
  color: #2d3748;
  font-size: 1.15rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(44, 82, 130, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about-features li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.section-contact {
  padding: 7rem 0;
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  position: relative;
  color: white;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 60% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 30% 70%, rgba(66, 153, 225, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.section-contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Removed animations */

.section-contact .section-title {
  color: white;
}

.section-contact .section-title::after {
  background: white;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.contact-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-item h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
}

.contact-item a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-item a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
.contact-item a {
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin: 0.2rem 0;
}

.contact-item a:hover {
  background: rgba(44, 82, 130, 0.1);
  transform: translateY(-2px);
}

.cta-text {
  color: #2c5282;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer */
.footer {
  background: #2c5282;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

.creator a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.creator a:hover {
  border-color: white;
}


