  
 /* General Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
html{
  scroll-behavior: smooth;
}
 /* body {
     font-family: 'Inter', sans-serif;
     background-color: #f9fafd;
     color: #333;
     line-height: 1.7;
 } */
  body {
  font-family: Arial, sans-serif;

}
 
/* Header */
 header {
     background: linear-gradient(135deg, #3498db, #2980b9);
     color: white;
     padding: 50px 10%;
     text-align: center;
 }

 header h1 {
     margin: 0;
     font-size: 2.5em;
 }

 header p {
     font-size: 1.2em;
     margin-top: 10px;
 }

 /* Navigation */
 nav {
     background-color: #2c3e50;
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     padding: 15px 0;
 }

 nav a {
     color: white;
     margin: 10px 20px;
     font-weight: 600;
     padding: 5px 10px;
     border-radius: 5px;
     transition: background 0.3s;
 }

 nav a:hover {
     background-color: #34495e;
 }


 

 /* Main Content */
 main {
     padding: 50px 10%;
 }

 section {
     margin-bottom: 60px;
 }

 h2 {
     color: #2c3e50;
     font-size: 2.3em;
     margin-bottom: 25px;
     position: relative;
     display: inline-block;
 }

 h2::after {
     content: '';
     display: block;
     width: 70px;
     height: 4px;
     background-color: #6a11cb;
     margin-top: 8px;
     border-radius: 2px;
 }

 h3 {
     color: #34495e;
     margin-bottom: 15px;
     font-size: 1.5em;
 }

 p,
 li {
     font-size: 1em;
     line-height: 1.8;
 }

 ul {
     margin-left: 25px;
 }

 /* Card Styles */
 .card {
     background-color: #fff;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     padding: 30px;
     margin: 30px 0;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 /* Card Icons */
 .card i {
     font-size: 2.5em;
     color: #6a11cb;
     margin-bottom: 15px;
 }

 /* Buttons */
 .btn_Enroll {
     display: inline-block;
     background: linear-gradient(135deg, #6a11cb, #2575fc);
     color: white;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     margin-top: 20px;
     transition: all 0.3s ease;
 }

 .btn_Enroll:hover {
     background: linear-gradient(135deg, #2575fc, #6a11cb);
     transform: translateY(-3px);
 }

 /* Footer */
 footer {
     background-color: #2c3e50;
     color: white;
     text-align: center;
     padding: 35px 10%;
     font-size: 0.95em;
 }
