
    body {
      background: linear-gradient(135deg, #f0f4f8, #d9e4f5);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }

    /*----body ke content ko copy se rokna--------*/
    body {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;

    }

    header {
      background: #2c3e50;
      color: #fff;
      padding: 1px 1px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      gap: 0%;
      font-weight: bold;
      font-family: 'Times New Roman', Times, serif;
      font-size: 100%;
    }
    header h5{
        margin-top: 1%;
        
    }

    .about-section {
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      font-family: 'Times New Roman', Times, serif;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
      justify-content: center;
    }

    .card {
      background: #f9fafc;
      border-radius: 10px;
      padding: 20px;
      width: 280px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    /* Avatar Message Section */
    .testimonial {
      max-width: 800px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      font-family: 'Times New Roman', Times, serif;
    }

    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-right: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .testimonial-content {
      flex: 1;
    }

    .testimonial-content p {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #333;
    }

    .testimonial-content h4 {
      margin: 0;
      color: #3498db;
      font-weight: bold;
    }

  
    /* -----------Extra content ka css-------------------- */

    /* Extra About Section Styles */
.about-extra {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  font-family: 'Times New Roman', Times, serif;
}

.about-extra h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.about-extra h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  /*
  background: #3498db;  */
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-extra p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.about-extra ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.about-extra ul li {
  background: #f9fafc;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  font-size: 1rem;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-extra ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background: #eef6ff;
}


    /*-------------The end extra content css-----------------*/
