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

body {
  color: #fff;
  font-family: "Outfit";
}

/* NAVBAR  */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
   /* align-items: center;
  justify-content: center */
}
.right{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 45px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
}

nav a.active,
nav a:hover {
  color: #fff;
  font-weight: bold;
  font-size: large;
}

/* ===== HERO COMMON ===== */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 900px;
}

/* ===== HERO ONE ===== */
.hero-one {
  background: url("../images/sitting.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8%;
}

.hero-one h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

.hero-one span {
  color: #4caf50;
}
/* ===== SECTION ===== */
.form-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===== CARD ===== */
.form-card {
  background: #e8faee;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

/* ===== INPUT GROUP ===== */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group label {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #e8faee;
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 20px;
  color: #111;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  resize: none;
}

/* ===== BUTTON ===== */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #4fa85a;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #44964e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .form-card {
    padding: 25px;
  }

  .input-group label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 20px;
  }

  .submit-btn {
    font-size: 16px;
  }
}

/* footer */
.footer {
  background: linear-gradient(135deg, #1e1e1a, #2a2a22);
  padding: 60px 5%;
  color: #ccc;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* Logo */
.footer-logo {
  width: 90px;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #4caf50;
}

/* Headings */
.footer h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #4caf50;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4caf50;
}

/* Contact */
.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

/* Subscribe */
.subscribe-box {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.subscribe-box input {
  border: none;
  padding: 12px;
  flex: 1;
  outline: none;
}

.subscribe-box button {
  background: #4caf50;
  border: none;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
}

.subscribe-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #4caf50;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-btn:hover {
  background: #43a047;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}
