@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f1116, #181a22);
  color: #f0f0f0;
  line-height: 1.65;
  cursor: none;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(22, 25, 34, 0.9);
  backdrop-filter: saturate(180%) blur(22px);
  padding: 1.2rem 0;
  box-shadow: 0 5px 25px rgba(0, 255, 225, 0.2);
  border-bottom: 2px solid #00ffe1;
  animation: fadeInDown 1s ease forwards;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ffe1;
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00ffe1cc;
  user-select: none;
  cursor: default;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  color: #e0e0e0;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  user-select: none;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #00ffe1;
  text-shadow: 0 0 12px #00ffe1dd;
  outline: none;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00ffe1;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1620332371083-94d21bc63317?auto=format&fit=crop&w=1470&q=80') no-repeat center center / cover;
  padding: 7rem 1rem 8rem;
  text-align: center;
  overflow: hidden;
  color: #e0f7f7;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 17, 22, 0.85) 20%, rgba(0, 255, 225, 0.3) 60%, rgba(15, 17, 22, 0.85) 90%);
  z-index: 0;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
  user-select: none;
}

.hero h1:hover {
  color: #00ffe1;
  transform: scale(1.12) rotate(-1deg);
  text-shadow: 0 0 15px #00ffe1cc;
}

.hero p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2.2rem;
  color: #c4f0f0cc;
  user-select: none;
}

/* Buttons */
.btn,
.btn-signup {
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, #00ffe1, #00c2b7);
  color: #000;
  padding: 0.8rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 18px #00ffe1bb;
  cursor: pointer;
  user-select: none;
  border: none;
  overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover,
.btn-signup:hover,
.btn:focus,
.btn-signup:focus {
  background: linear-gradient(145deg, #00ccba, #009984);
  box-shadow: 0 0 28px #00ffe1ee;
  transform: scale(1.07);
  outline: none;
}

.btn:active,
.btn-signup:active {
  transform: scale(0.95);
  box-shadow: 0 0 16px #00b49dcc;
}

.btn::after {
  content: "";
  position: absolute;
  background: rgba(0, 255, 225, 0.45);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease, opacity 0.8s ease;
  z-index: 0;
}

.btn:active::after {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 1;
  transition: 0s;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding: 4rem 0 3rem;
}

.feature {
  flex: 1 1 280px;
  background: linear-gradient(160deg, #1b1c26, #262933);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 255, 225, 0.15);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: default;
  user-select: none;
}

.feature:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(0, 255, 225, 0.4);
}

.feature h3 {
  color: #00ffe1;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #16171e, #101114);
  padding: 5rem 3rem 5rem;
  margin-top: 4rem;
  border-radius: 24px;
  box-shadow: 0 12px 50px rgba(0, 255, 225, 0.3);
  text-align: center;
  user-select: none;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #00ffe1;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.why-choose-us h2:hover {
  transform: scale(1.15);
  text-shadow: 0 0 20px #00ffe1dd;
}

.why-choose-us p {
  font-size: 1.15rem;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.85;
  color: #b7ebebcc;
  text-align: justify;
}

/* Footer */
footer {
  background-color: #1a1c23;
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 1.2px;
  user-select: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s ease;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background-color: #00ffe1;
  box-shadow: 0 0 12px #00ffe1cc;
}

.cursor-outline {
  width: 42px;
  height: 42px;
  border: 2.5px solid #00ffe1;
  opacity: 0.7;
  box-shadow: 0 0 18px #00ffe1bb;
  transition: transform 0.2s ease-out, opacity 0.3s ease;
}

/* JS-enabled cursor */
body.active-cursor .cursor-dot,
body.active-cursor .cursor-outline {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .why-choose-us h2 {
    font-size: 2.2rem;
  }

  .why-choose-us p {
    font-size: 1rem;
    text-align: left;
  }

  .features {
    flex-direction: column;
    gap: 2rem;
  }

  .hero {
    padding: 5rem 1.5rem 6rem;
    background-size: cover;
  }

  .nav-links {
    gap: 1.3rem;
  }
}
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #00ffe1;
  box-shadow: 0 0 8px #00ffe1cc;
}

.cursor-outline {
  width: 35px;
  height: 35px;
  border: 2px solid #00ffe1;
  opacity: 0.6;
  box-shadow: 0 0 15px #00ffe1aa;
  transition: transform 0.2s ease-out, opacity 0.3s ease;
}

/* JS will enable cursor */
body.active-cursor .cursor-dot,
body.active-cursor .cursor-outline {
  opacity: 1;
}


/* Contact form input and textarea styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 2px solid #00ffe1; /* Neon-ish teal */
  border-radius: 6px;
  background-color: #121212; /* dark background for contrast */
  color: #e0f7fa; /* light text */
  font-size: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 5px #00ffe1aa;
  outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
  color: #66fff9cc; /* lighter placeholder */
  font-style: italic;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #ff00d4; /* neon pink */
  box-shadow: 0 0 10px #ff00d4cc;
  background-color: #1a1a1a;
  color: #fff;
}

/* Button style improvements */
.contact-form .btn {
  background-color: #00ffe1;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 0 10px #00ffe1cc;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form .btn:hover,
.contact-form .btn:focus {
  background-color: #ff00d4;
  color: #fff;
  box-shadow: 0 0 15px #ff00d4cc;
  outline: none;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 10000;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 0;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.cursor-scale {
  transform: scale(1.5) translate(-50%, -50%) !important;
  opacity: 0.8 !important;
}

