body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header img.logo {
    height: 50px;
  }

  /* Logo styling */
header .logo img {
    height: 60px;   /* adjust as you like */
    width: auto;    /* keeps proportions */
    object-fit: contain;
  }
  
  nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #2f4f4f;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 50vh;
    background: url('Assets/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    color: #fff;
  }
  
  .hero-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 6px;
  }
  
  .hero-text h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  .hero-text p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
  }
  
  .about {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #444;
  }  

  /* Main Content */
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  main h2 {
    color: #2f4f4f;
    margin-top: 0;
  }

  /* Blog Cards on Home */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .blog-card-content {
    padding: 1rem;
  }
  
  .blog-card-content h3 {
    margin: 0;
    color: #2f4f4f;
    font-size: 1.2rem;
  }
  
  .blog-card-content p {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    color: #555;
  }  

  /* Footer styles */
footer {
  background-color: #222; /* dark background */
  color: #fff; /* white text */
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
}

footer a:hover {
  color: #1da1f2; /* light blue hover */
}

footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  font-size: 24px; /* make icons bigger */
  margin: 0 8px;
}




  
  