/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #FFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #000;
}

h1, h2, h3 {
  line-height: 1.2;
}

p {
  line-height: 1.6;
  color: #CCC;
}

a {
  text-decoration: none;
  color: #00f7ff;
  margin: 0 10px;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

/* Preloader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  font-size: 2rem;
  color: #0ab2b7;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  font-weight: 600;
  align-items: center;
  animation: spin 5s ease-in-out infinite;
}

@keyframes spin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
  font-size: 18vw;
  font-weight: 800;
  position: relative;
  z-index: 2;
  text-align: center;
  text-shadow: 0 0 10px rgba(188, 5, 255, 0.5);
  margin-bottom: 10px;
}

.hero-section h2 {
  font-size: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.5rem;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

/* Buttons */
.btn, .btn1, .btn2 {
  margin: 30px 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn {
  background-image: linear-gradient(165deg, #d255ff, #0B295D);
  animation: seesaw 2s ease-in-out infinite;
  box-shadow: rgba(255, 255, 255, 0.5) 1px 2px 4px 1px;
}

.btn1 {
  background-image: linear-gradient(165deg, #3d005f, #ff00008c);
  animation: seesaw 20s ease-in-out infinite;
  box-shadow: rgb(0, 208, 255) 1px 2px 4px 1px;
}

.btn2 {
  background-image: linear-gradient(165deg, #9831ff, #00ff95);
  animation: seesaw 20s ease-in-out infinite;
  box-shadow: rgb(0, 208, 255) 1px 2px 4px 1px;
}

.btn:hover, .btn1:hover, .btn2:hover {
  background: transparent;
}

@keyframes seesaw {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Water Effect */
.water-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.water-effect span {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: rippleEffect 4s ease-out;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Intro Section */
.intro-section {
  padding: 90px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

.intro-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.intro-section p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

.about-img img {
  max-width: 100%;
  border-radius: 10px;
}

.about-text {
  margin-left: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.services-section h2 {
  font-size: 2.5rem;
  margin: 20px 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.service {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.service img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

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

.service h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #FFF;
}

.service p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
  color: #CCC;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.contact-section h2 {
  font-size: 2.5rem;
  margin: 20px 0;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info {
  max-width: 600px;
  text-align: center;
}

.contact-info p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  max-width: 90%;
}

.cookie-notice p {
  margin: 0;
  padding-right: 15px;
  line-height: 1.5;
}

.cookie-notice a {
  color: #00f7ff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-notice a:hover {
  color: #ffffff;
}

.cookie-btn {
  background: #00f7ff;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.cookie-btn:hover {
  background: #ffffff;
  color: #00f7ff;
}

/* Footer Section */
.footer-section {
  background: #121212;
  text-align: center;
  padding: 15px 20px;
}

.footer-section p {
  margin-bottom: 10px;
  color: #AAA;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 12vw;
  }

  .hero-section h2 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 1.2rem;
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    margin-bottom: 20px;
  }

  .about-text {
    margin-left: 0;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .service h3 {
    font-size: 1.3rem;
  }

  .service p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 14vw;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service {
    padding: 15px;
  }

  .service h3 {
    font-size: 1.2rem;
  }

  .service p {
    font-size: 0.8rem;
  }
}