    html {
        scroll-behavior: smooth;
    } 
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f8f9fa;
      color: #333;
    }

    /* NAVBAR */
    header {
      max-width: 100%;
      background: #ffffff;
      padding: 0px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 10;
      box-sizing: border-box;
    }


 .logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    cursor: pointer;

 }

    nav a {
        font-family: cursive;
      margin-left: 30px;
      text-decoration: none;
      font-weight:500;
      font-size: large;
      color: #333;
    }

    nav a:hover {
      color: #000;
    }

    /* HERO */
    .hero {
      width: 100%;
      padding: 100px 40px;
      background: linear-gradient(135deg, #111 0%, #444 100%);
      color: #fff;
      text-align: center;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 25px;
    }

    .hero button {
      padding: 12px 25px;
      border: none;
      background: #fff;
      font-size: 1rem;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
    }

    /* BLOG PREVIEW */
    .blog-section {
      padding: 60px 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .post-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.2s ease;
    }

    .post-card:hover {
      transform: translateY(-5px);
    }

    .post-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-content {
      padding: 20px;
    }

    .post-content h3 {
      margin: 0 0 10px;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .post-content p {
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .post-content a {
      color: #111;
      font-weight: 600;
      text-decoration: none;
    }

    /* CATEGORY SECTION */
.categories {
padding: 60px 40px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}


.category-card {
padding: 40px 20px;
border-radius: 12px;
color: #fff;
text-align: center;
font-weight: 700;
font-size: 1.3rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


.category-card.green {
background: #2ecc71;
}


.category-card.blue {
background: #3498db;
}
.category-title {
text-align: center;
font-size: 2rem;
margin-top: 60px;
margin-bottom: 20px;
font-weight: 800;
color: #111;
}
.category-card {
padding: 60px 20px;
border-radius: 12px;
color: #fff;
text-align: center;
font-weight: 700;
font-size: 1.4rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
background-size: cover;
background-position: center;
background-blend-mode: multiply;
} 

.contact-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  /* background: #fff; */
  border-radius: 14px;
  /* box-shadow: 0 6px 32px rgba(0,0,0,0.06); */
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap; /* stacks on smaller screens */
}

/* Left side */
.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  color: #555;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.8rem;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #2ecc71; /* change to your theme color */
}


/* Right side: form */
.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 12px;
  background-color: black;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #27ae60;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 30px;
  }

  .social-icons a {
    margin-right: 10px;
  }
}



    /* FOOTER */
    footer {
      padding: 30px;
      text-align: center;
      background: #111;
      color: #fff;
      margin-top: 50px;
    }
    /* RESPONSIVE DESIGN */
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: flex-start;
padding: 20px;
}


nav {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
gap: 15px;
}


nav a {
margin-left: 0;
}


.hero h2 {
font-size: 2.2rem;
}


.hero p {
font-size: 1rem;
}


.blog-section {
grid-template-columns: 1fr;
padding: 40px 20px;
}
}


@media (max-width: 480px) {
header h1 {
font-size: 1.5rem;
}


.hero {
padding: 80px 20px;
}


.hero h2 {
font-size: 1.8rem;
}


.post-card img {
height: 160px;
}
}