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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.custom-style{
  font-family: "Platypi", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing:-2px;
  font-style: italic;
}

.logo {
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  list-style: none;
  opacity: 1;
  max-height: none;
  position: static;
  background: none;
  box-shadow: none;
  padding-block: 0;
  transition: none;
}

.nav-links.active {
  max-height: 300px;
  opacity: 1;
  padding-block: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #666;
}

.contact-btn {
  background: #000;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Mobile Navigation */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu span {
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.hero .tagline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 1s ease 0.6s both;
}

.primary-btn {
  background: #000;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.secondary-text {
  color: #888;
  font-size: 1rem;
}

.secondary-text a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.secondary-text a:hover {
  color: #666;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left:50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}


.scroll-indicator img {
  border-radius: 5px;
  width: 50px;
  height: 50px;
}

/* Background Animation */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-element {
  position: absolute;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(0px) rotate(180deg);
    opacity: 0.3;
  }

  75% {
    transform: translateY(20px) rotate(270deg);
    opacity: 0.1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-block: 0;
    list-style-type: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease,
      padding-block 0.3s;
  }

  .nav-links.active {
    max-height: 300px;
    opacity: 1;
    padding-block: 20px;
  }

  .mobile-menu {
    display: flex;
  }

  .navbar {
    padding: 1rem;
  }

  .hero {
    padding: 4rem 1rem 2rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .primary-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {

  .hero h1,
  .hero .tagline {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width:80%;
  }

  .navbar {
    padding: 0.75rem;
  }
}

/* Hover Effects for Interactive Elements */
.hero-content:hover .floating-element {
  animation-duration: 4s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}