<style>

}

.whatsapp-btn:hover{
    background: #1ebe5d;
}

/* RESET */
* {margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif;}

/* NAVBAR */
.navbar {
  display:flex; justify-content:space-between; align-items:center; padding:10px 20px; background:#004d40; position:relative;
}
.logo {color:#00c897; font-size:22px; font-weight:bold;}
.nav-links {list-style:none; display:flex; gap:10px;}
.nav-links li a {color:#fff; text-decoration:none; padding:10px 15px; font-weight:600;}
.nav-links li a.active {border-bottom:2px solid #ffeb3b;}
.social-icons {display:flex; gap:10px;}
.social-icons img {width:30px; height:30px;}
#menu-toggle {position:absolute; opacity:0; width:0; height:0; pointer-events:none;}
.menu-icon {display:none; font-size:28px; color:#fff; cursor:pointer;}



/* FOOTER */
footer {padding:20px; background:#00251a; color:#fff; text-align:center; font-size:14px;}

/* RESPONSIVE */
@media(max-width:992px){
  .navbar {flex-direction:column; align-items:center;}
  .logo {margin-bottom:10px; text-align:center;}
  .menu-icon {display:block; margin-bottom:10px; text-align:center;}
  .nav-links {display:none; flex-direction:column; width:100%; text-align:center;}
  #menu-toggle:checked + .menu-icon + .nav-links {display:flex;}
  .nav-links li {margin:5px 0;}
  .social-icons {justify-content:center; margin-top:10px;}

  .founder-grid {flex-direction:column; text-align:center;}
  .principle-grid, .principle-grid.reverse {flex-direction:column;}
  .principle-image img {max-width:100%;}
  .principle-content {padding:10px;}
}
@media(min-width:993px){
  .menu-icon, #menu-toggle {display:none;}
}
	
#founder-message {
    font-family: 'Arial', sans-serif;  /* Font */
    font-size: 18px;                   /* Font size */
    color: #0077aa;                    /* Text color */
    line-height: 1.6;                  /* Line spacing */
    margin: 5px 0;                    /* Top & bottom margin */
    text-align: center;                /* Alignment */
}






/*try*/
}


/* --- Timetable Content --- */
        .container { max-width: 1200px; margin: auto; padding: 40px 20px; }
        .timetable-header { text-align: center; margin-bottom: 40px; background: white; padding: 30px; border-radius: 15px; border-bottom: 5px solid #f1c40f; }
        .timetable-header h2 { color: #0b4d2c; font-size: 2rem; margin-bottom: 10px; }
        .timetable-header p { color: #666; font-size: 1.1rem; }

        /* Schedule Grid */
        .schedule-info { display: flex; justify-content: space-around; margin-bottom: 30px; background: #0b4d2c; color: white; padding: 15px; border-radius: 8px; font-weight: bold; }

        .table-responsive { overflow-x: auto; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 20px; }
        table { width: 100%; border-collapse: collapse; min-width: 800px; }
        th { background: #0b4d2c; color: white; padding: 15px; text-align: center; border: 1px solid #08361f; }
        td { padding: 12px; text-align: center; border: 1px solid #ddd; font-size: 14px; }
        
        /* Highlighting Slots */
        .slot-title { background: #f1c40f; color: #0b4d2c; font-weight: bold; }
        .class-active { background: #e8f5e9; color: #2e7d32; font-weight: 600; }
        .time-col { background: #f9f9f9; font-weight: bold; color: #0b4d2c; width: 150px; }

        /* --- Action Boxes --- */
        .action-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
        .action-box { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-top: 5px solid #0b4d2c; }
        input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }
        .btn-submit { background: #0b4d2c; color: white; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; width: 100%; font-weight: bold; }

</style>