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

body {
    font-family: 'Helvetica', sans-serif;
    color: #222;
}

/* ===== NAVBAR ===== */
.site-nav {
  display: flex;

  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  border-radius: 4px;
  z-index: 1000;


  width: 100%;
  
  color: black;

  
  box-sizing: border-box; 
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
   font-size: 26px;
    font-weight: 600;
    color: #000;
    
 
 
}
#logo {
  text-decoration: none;
}
.logo span {
  color: #1e3a8a;
}
.center {
    display: flex;
    gap: 40px;
    
  
  
}
.center p{
    margin: 0;
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.center .nav-link{
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.center .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #cfcfcf;
    transition: width 0.25s ease;
}

/* hover */
.center .nav-link:hover::after{
    width: 100%;
}

/* active page */
.center .nav-link.active::after{
    width: 100%;
}

.nav-links {
  list-style: none;

  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.3s ease;
}
.nav-links.active {
  display: flex;
  flex-direction: column;
  background: #ffffff;

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  
  padding: 20px;
  z-index: 1000;
}


/* HERO */
.hero {
    height: 50vh;
    background: url('images/blueprint-bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 2.5rem;
}

.overlay p {
    margin-top: 10px;
}

/* CONTENT */
.content {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.content h2 {
    margin-bottom: 15px;
}

.content p {
    color: #555;
    margin-bottom: 20px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: white;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}





/* HERO */
.how-hero {
    height: 60vh;
    background: url('images/how-bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.2rem;
}

/* STEPS */
.steps-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.step {
    margin-bottom: 50px;
    text-align: center;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 10px;
}

.step h2 {
    margin-bottom: 10px;
}

.step p {
    color: #555;
}

/* BENEFITS */
.benefits-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.benefits-section h2 {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.benefit h3 {
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: white;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
