/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  /* Container to center the content */
  .container {
    width: 80%;
    margin: 0 auto;
  }
  
  /* Section Title */
  h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007bff;
    text-align: center;
    animation: fadeIn 2s ease-out;
  }
  
  /* Navbar */
  .navbar {
    background-color: #001f3f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
  }
  
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .navbar .logo span {
    color: #00b1f2;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a.active::after,
  .nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00b1f2;
  }
  
  .nav-links a:hover {
    color: #00b1f2;
  }
  
  /* Blog Section */
  .blog-section {
    padding: 60px 0;
    background-color: #fff;
    margin-top: 80px; /* To avoid content overlapping with navbar */
    animation: fadeIn 2s ease-out;
  }
  
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  /* Blog Card */
  .blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .blog-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .blog-card img:hover {
    transform: scale(1.05);
  }
  
  .blog-card-content {
    margin-top: 15px;
  }
  
  .blog-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .blog-card h3:hover {
    color: #00b1f2;
  }
  
  .blog-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .blog-card a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .blog-card a:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px; /* Adds space between the content and footer */
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 30px; /* Adds space between columns */
  }
  
  .footer-about, .footer-links, .footer-contact {
    width: 30%;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    background-color: #444;
    padding: 10px 0;
  }
  
  /* Footer Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-about, .footer-links, .footer-contact {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .blog-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  