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

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f6fb;
  color: #222;
  
}
.nav-links a.active {
  color: #fff !important;
  background: #7A1E1E !important;
  border-radius: 20px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 20px auto;
  padding: 14px 30px;
  background: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* position: relative; */
  /* z-index: 1000; */
  position: sticky;
  top: 0;
  z-index: 50; 
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-top: 81px;
            margin-bottom: -44px;

    }
  }
.nav-brand h4 {
  color: #7A1E1E;
  font-size: 28px;
  font-weight: 700;
  margin-right: 109px;
}

/* Nav menu container */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #2C2C2C;
  font-weight: 500;
  font-size: 20px;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: #7A1E1E;
}

/* Buttons */
.get-started-btn {
  background: linear-gradient(135deg, #7A1E1E, #5E1212);
  color: #fff;
  border: none;
  padding: 18px 27px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.get-started-btn:hover {
  transform: scale(1.05);
}

.get-started-btn.outline {
  background: transparent;
  color: #7A1E1E;
  border: 1.8px solid #7A1E1E;
}

/* Align buttons in one line */
.nav-mobile-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile view */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    padding: 70px 35px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .nav-mobile-ctas {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
}