 /* Blogs Section */
        .blog-section {
            padding: 60px 8%;
            background: #f8f9fc;
            font-family: "Segoe UI", sans-serif;
        }

        .blog-section h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1d3557;
        }

        .blog-intro {
            text-align: center;
            max-width: 9000px;
            margin: 15px auto 40px;
            color: #555;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 100px;
        }

        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-6px);
        }

        .media {
            width: 100%;
            height: 180px;
            background: #ccc;
        }

        .media iframe,
        .media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media.image {
            background: url("./grey.jpg") center/cover no-repeat;
        }

        .content {
            padding: 18px;
        }

        .content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #1d3557;
        }

        .content p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

   
        .card {
  width: 300px;
  height: 200px;
  background-image: url("./grey.jpg");
  background-size: cover;      /* fills the card */
  background-position: center; /* centers image */
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 20px;
  color: white;

}
