body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: none;
  color: #fff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.background-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url('https://i.pinimg.com/originals/e7/be/02/e7be02ddd579c1230e96447af8e6eb00.gif') center/cover no-repeat;
  filter: blur(2px) brightness(0.7);
  pointer-events: none;
}

.glassy,
.header {
  background: rgba(30,30,30,0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  border-radius: 0 0 18px 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 50%;
  border: 2px solid #a6c1ee;
  box-shadow: 0 2px 8px rgba(161,140,209,0.12);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 2px 8px rgba(161,140,209,0.10);
  outline: none;
}

.btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(161,140,209,0.13);
  overflow: hidden;
  position: relative;
}

.btn:hover,
.btn:focus {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 4px 24px rgba(161,140,209,0.18);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

section,
.about-section,
.features-section,
.hero {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 auto 2rem;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-direction: row;
  min-height: 60vh;
  margin-top: 6rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 4s ease-in-out infinite;
}

.hero-img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #a6c1ee;
  box-shadow: 0 0 32px rgba(161,140,209,0.18), 0 0 0 8px rgba(161,140,209,0.10);
  animation: rotate 12s linear infinite;
  background: #fff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.features-section h2,
.about-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.2rem;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 260px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.about-text p {
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.about-img {
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
}

.slider {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(30,30,30,0.7);
  box-shadow: 0 2px 8px #e0c3fc88;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  opacity: 0;
  text-align: center;
  transition: opacity 0.5s;
}

.slide.active {
  display: flex;
  opacity: 1;
}

.slide img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #a6c1ee;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px #e0c3fc88;
}

.slide h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.slide p {
  font-size: 1.01rem;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 2rem;
  color: #fff;
  border-radius: 50%;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.slider-btn:hover {
  background: #fbc2eb;
  color: #000;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem 1rem;
    margin-top: 7rem;
  }

  .hero-img {
    margin-top: 2rem;
  }
}

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
    position: static;
    border-radius: 0;
  }

  .hero {
    padding: 2rem 0.5rem 1rem;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .hero-img img {
    width: 200px;
    height: 200px;
  }

  .features-section,
  .about-section {
    padding: 2rem 0.5rem 1rem;
  }
}

@media (max-width: 400px) {
  .logo-img {
    height: 40px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }
}
