 .elearning-section {
     background: linear-gradient(to right, #006dcc, #1795db);
     /* blue gradient */
     color: white;
     padding: 40px 20px;
     text-align: center;
     position: relative;
     font-family: Arial, sans-serif;
 }

 .elearning-section::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border-left: 10px solid transparent;
     border-right: 10px solid transparent;
     border-top: 15px solid #1795db;
     /* match gradient end color */
 }

 .elearning-section p {
     max-width: 900px;
     margin: 0 auto;
     font-size: 16px;
     line-height: 1.8;
 }

 .educat_section {
     padding: 60px 20px;
     text-align: center;
 }

 .educat_section h2 {
     font-size: 32px;
     margin-bottom: 10px;
 }

 .educat_subtitle {
     font-size: 16px;
     color: #d1d1d1;
     margin-bottom: 40px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .educat_grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     max-width: 1100px;
     margin: 0 auto 40px auto;
 }

 .educat_box {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     text-align: left;
 }

 .educat_dot {
     width: 10px;
     height: 10px;
     background-color: orange;
     border-radius: 50%;
     margin-top: 6px;
     flex-shrink: 0;
 }

 .educat_text h4 {
     font-size: 18px;
     margin-bottom: 8px;
     color: #ffffff;
 }

 .educat_text p {
     font-size: 14px;
     color: #c0c0c0;
     line-height: 1.6;
 }

 .educat_btn {
     background: linear-gradient(to right, #ff6600, #ffaa00);
     color: #fff;
     border: none;
     padding: 12px 28px;
     font-size: 14px;
     font-weight: bold;
     border-radius: 4px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .educat_btn:hover {
     background: linear-gradient(to right, #ffaa00, #ff6600);
 }

 .educat_features_section_main {
     background-color: #ffffff;
 }

 .educat_features_section {
     padding: 60px 20px;
     text-align: center;
     max-width: 1200px;
     margin: 0 auto;

 }

 .educat_features_section h2 {
     font-size: 30px;
     margin-bottom: 10px;
     color: #0e1f33;
 }

 .educat_features_section p {
     color: #666;
     font-size: 15px;
     max-width: 800px;
     margin: 0 auto 40px;
 }

 .educat_grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .educat_card {
     text-align: left;
     padding: 20px;
     background: #f9f9f9;
     border-radius: 8px;
     transition: box-shadow 0.3s ease;
 }

 .educat_card:hover {
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .educat_icon {
     width: 50px;
     height: 50px;
     color: #666;
     border-radius: 6px;
     display: inline-block;
     margin-bottom: 12px;
 }

 .educat_card h4 {
     font-size: 18px;
     margin: 10px 0 8px;
     color: #0e1f33;
 }

 .educat_card p {
     font-size: 14px;
     color: #555;
     line-height: 1.6;
 }


 .educat_card i {
     width: 40px;
     text-align: center;
 }

 .educat_card h5 {
     font-size: 1.1rem;
 }

 .educat_card p {
     font-size: 0.95rem;
     color: #444;
 }

 .fw-semibold {
     color: #0e1f33;
 }





 /* Media Page Css Start here  */
 .media_section {
     background-color: #0e1f35;
     color: #ffffff;
     padding: 60px 0;
 }

 .media_section h2 {
     font-weight: 700;
     font-size: 28px;
     margin-bottom: 10px;
 }


  .media_section p {
     color: #d3d3d3;
    
 }

 .media_point {
     border-left: 2px solid #ffaa00;
     padding-left: 20px;
     margin-bottom: 40px;
 }

 .media_point h5 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #ffffff;
 }

 .media_solutions {
     background-color: #061020;
     padding: 40px 20px;
     border-radius: 10px;
     margin-top: 40px;
 }

 .media_solutions ul {
     list-style: none;
     padding-left: 0;
     column-count: 3;
     column-gap: 40px;
     text-align: justify;
 }

 .media_solutions ul li {
     padding: 6px 0;
     color: #ffffff;
 }

 .media_btn {
     margin-top: 30px;
 }

 .media_btn .btn {
     background-color: #ffaa00;
     color: #fff;
     font-weight: 600;
     border-radius: 50px;
     padding: 10px 25px;
     border: none;
 }

 @media (max-width: 768px) {
     .media_solutions ul {
         column-count: 1;
     }
 }

 /* Media Page Css End here  */