 body {
    background: #f9fafc; /* Light gray-blue professional bg */
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
  }

  /* ===== Section Title ===== */
  .section-title {
    background-color: #d0d8e3;
    text-align: center;
    margin: 50px 0 30px;
  }
  .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
  .section-title p {
   
    font-size: 30px;
    color:red;
  }

  /* ===== Tabs ===== */
  .tabs {
      background-color: #d0d8e3;
    text-align: center;
    margin-bottom: 40px;
  }
  .tab-btn {
    padding: 12px 24px;
    margin: 6px;
    border: none;
    border-radius: 30px;
    background: #e9eef5;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
  }
  .tab-btn:hover {
    background: #d0d8e3;
  }
  .tab-btn.active {
    background: linear-gradient(135deg, #007bff, #0056d2);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 91, 187, 0.3);
  }

  /* ===== Section Block ===== */
  .section-block {
    display: none;
    padding: 30px 20px;
    background:lightblue;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 1250px;
    margin: auto;
  }
  .section-block.active {
    display: block;
    animation: fadeIn 0.6s ease;
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }

  /* ===== Grid Layout ===== */
  .grid {
   
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }

  /* ===== Cards ===== */
  .card {
    width: 250px;
     background-color: linen;
    /* background: #ffffff; */
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card img {
    width: 150px;       /* image size */
    height: 80px;      /* fixed height */
    /* object-fit: cover;  image crop ho ke fit hogi */
    /* border-radius: 50%; gol circle image */
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
  }
  .card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
  }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  .card:hover img {
    transform: scale(1.08);
  }


  /* View button styling */
.view-btn {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 8px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover effect on button */
.view-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Hover effect on card */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}