.info-card {
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      padding: 25px;
      background: #fff;
    }
    .info-card h3 {
      font-size: 2rem;
      color: #00a859;
      margin-bottom: 10px;
    }
    .info-card p {
      font-weight: 500;
      margin: 0;
    }
    .section-title {
      color: #007bff;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .custom-btn {
      background-color: #e02235;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-color: #0077BF;
    padding:10px 15px;
    border-radius: 40px 40px 40px 40px;
    }
    .custom-btn:hover {
      background-color: #0056b3;
      color: #fff;
    }
    
    .custom-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 30px;
      height: 100%;
    }
    .custom-card img {
      max-width: 120px;
      margin-bottom: 20px;
    }
    .custom-card h5 {
      font-weight: 600;
      color: #0d6efd;
    }
    .form-title {
      font-weight: 700;
      color: #00796b;
    }
    .form-check-label {
      font-size: 14px;
    }
    .btn-custom {
      background: #007bff;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      width: 100%;
      padding: 12px;
      border: none;
    }
    .btn-custom:hover {
      background: #0056b3;
    }
    
    .service-card {
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      height:100%;
      transition: all 0.3s ease;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-card img {
      max-width: 80px;
      margin-bottom: 15px;
    }
    .service-card h6 {
      font-weight: 600;
      margin-bottom: 15px;
    }
    .read-more {
      color: #0d6efd;
      font-weight: 500;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }
    
    
     /* Courses Section */
    .course-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .course-card img {
      width: 100%;
      /*height: 180px;*/
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .course-card:hover img {
      transform: scale(1.05);
    }
    .course-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      text-align: center;
      font-weight: bold;
      padding: 8px 0;
      font-size: 18px;
    }

    /* About Section */
    .about-section {
      padding: 60px 0;
    }
    .about-section h3 {
      color: #40a9e0;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .about-section p {
      color: #555;
      font-size: 16px;
      line-height: 1.8;
    }
    .about-img {
      border-radius: 15px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    .testimonial-box {
      background-color: #0078c8; /* Blue background */
      color: #fff;
      padding: 25px;
      border-radius: 10px;
      position: relative;
      margin: 10px;
      font-style: italic;
    }
    .testimonial-box::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 10px;
      border-style: solid;
      border-color: #0078c8 transparent transparent transparent;
    }
    .testimonial-user {
      display: flex;
      align-items: center;
      margin-top: 15px;
    }
    .testimonial-user img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .testimonial-user h6 {
      margin: 0;
      font-weight: bold;
      color: #000;
    }
    .testimonial-user small {
      color: #555;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #000;
      border-radius: 50%;
      padding: 10px;
    }
    
    .carousel-control-next, .carousel-control-prev{
        width:6%;
        
    }
    
    
    .carousel-control-next, .carousel-control-prev {

    background: transparent;
    border: none;
}