
/* mentor section */



.mentor-hero {
    position: relative;
    height: 100vh; /* Set to 100% of viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure the image does not overflow the container */
}

.mentor-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Adjust to ensure the image covers the area */
    z-index: -1; /* Place the image behind the content */
}


.mentor-hero::before {
    content: "";
    position: absolute;
    top: 20;
    left: 20;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust overlay as needed */
    z-index: -1;
}

.mentor-hero-content {
    text-align: center;
    color: #ffffff; 
    padding: 20px; 
    background: rgba(255, 255, 255, 0.1);
}  

.mentor-hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: bold;
}

.mentor-hero-content p {
    font-size: 1.5em;
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: bold;

}
/* Section Styling */
.zenn-mentor {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading Styling */
  .zenn-mentor h2 {
    color: #2C3E50;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  /* Subheading Styling */
  .zenn-mentor h3 {
    color: #2C3E50;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  /* Paragraph Styling */
  .zenn-mentor p {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  /* Highlighted Text */
  .highlight {
    color: #007BFF;
    font-weight: bold;
  }

    /* Service List Styling */
 .zenn-mentor ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0 80px; /* Removes default padding */
    margin: 0; /* Removes default margin */
    text-align: left; /* Aligns text to the left */
  }

 .zenn-mentor li {
    display: flex; /* Uses flexbox for alignment */
    align-items: flex-start; 
    margin-bottom: 15px; /* Adds space between list items */
    padding: 10px; /* Adds padding for better spacing */
    border: 1px solid #ddd; /* Adds a border around each item */
    border-radius: 5px; /* Rounds the corners */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    font-size: 1.1rem;
  }

 .zenn-mentor li::before {
    content: "✔"; /* Adds a checkmark before each item */
    color: #4CAF50; /* Green color for the checkmark */
    font-weight: bold; /* Makes the checkmark bold */
    margin-right: 10px; /* Adds space between the checkmark and text */
  }
  
  /* Service Point Styling */
  .service-point {
    color: #28A745; /* Green color for key services */
    font-weight: bold;
    display: block; /* Display as block for alignment */
    margin-bottom: 2px; /* Space between title and description */
  }

  