.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-69a2647 *//* General */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 15px;
  box-sizing: border-box;
}

.title {
  color: #F57D19;
  font-size: 26px;
  margin-bottom: 10px;
}

.desc {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Tables */
.table-box {
  width: 100%;
  overflow-x: auto; /* Scroll on small screens */
  margin: 15px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px; /* So columns don’t shrink too much */
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

th {
  background: #F57D19;
  color: white;
}

/* Admission Form */
.form-title {
  margin-top: 30px;
  font-size: 22px;
  color: #F57D19;
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.admission-form input,
.admission-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.admission-form button {
  background: #F57D19;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.admission-form button:hover {
  background: #e26d15;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 22px;
  }
  .form-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .admission-form button {
    font-size: 14px;
    padding: 10px;
  }
}












































body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #fff;
}

.table-container {
  max-width: 1200px;
  margin: auto;
}

.table-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.responsive-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.semester {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.semester h3 {
  background: #F57D19;
  color: #fff;
  padding: 10px;
  margin: -15px -15px 15px -15px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.semester ol {
  margin: 0;
  padding-left: 20px;
}

.semester .module {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  background: #fff7f0;
  padding: 8px;
  border-radius: 5px;
}

.note {
  margin-top: 20px;
  font-size: 14px;
  color: #222;
  text-align: center;
}/* End custom CSS */