/* Index */
/* Header css */
.ka-header {
    border-radius: 0 0 24px 24px;
    z-index: 1050;
}
.top-bar {
    background: #007075;
    height: 90px;
    border-radius: 14px;
}
.top-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}
.top-bar .btn img {
  display: inline-block;
  vertical-align: middle;
}
.brand-text {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.nav-bar {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 14px 0;
  background: #fff;
}
.nav-item {
  font-weight: 500;
  cursor: pointer;
}
.mega-menu {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: none;
  padding: 24px;
  z-index: 999;
}
.mega-menu.active {
  display: flex;
}
.mega-left {
  width: 260px;
  border-right: 1px solid #eee;
}
.mega-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-left li {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 16px;
}
.mega-left li.active,
.mega-left li:hover {
  background: #f2f7ff;
  color: #007075;
  font-weight: 600;
}
.mega-right {
  flex: 1;
  padding-left: 30px;
}
.college-list {
  overflow-y: auto;
  flex: 1;
  padding-right: 8px;
  margin-top: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.college-list::-webkit-scrollbar {
  display: none;
}
.view-all {
  display: inline-block;
  margin-top: 18px;
  color: #007075;
  font-weight: 500;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
@media (max-width: 1200px) {
  .brand-text {
    font-size: 20px;
  }
  .nav-bar {
    gap: 25px;
  }
  .mega-menu {
    width: 96%;
    padding: 22px;
  }
}
@media (max-width: 992px) {
  .brand-text {
    font-size: 18px;
  }
  .nav-bar {
    gap: 20px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px 15px;
    -webkit-overflow-scrolling: touch;
  }
  .nav-bar::-webkit-scrollbar {
    display: none;
  }
  .nav-item {
    font-size: 15px;
    white-space: nowrap;
  }
  .mega-menu {
    width: 98%;
    top: 140px;
    padding: 20px;
  }
  .mega-left {
    width: 240px;
  }
  .mega-left li {
    font-size: 15px;
    padding: 10px 14px;
  }
  .mega-right {
    padding-left: 25px;
  }
}
@media (max-width: 768px) {
  .ka-header {
    border-radius: 0 0 20px 20px;
  }
  .brand-text {
    font-size: 16px;
    white-space: nowrap;
  }
  .top-bar .btn {
    padding: 6px 10px;
    font-size: 13px;
    gap: 4px;
  }
  .top-bar .btn img {
    width: 18px;
    height: 18px;
  }
  .nav-bar {
    gap: 15px;
    padding: 10px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-item {
    font-size: 14px;
    white-space: nowrap;
  }
  .mega-menu {
    position: fixed;
    top: auto;
    top: 80px;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: calc(100vh - 80px);
    border-radius: 18px 18px 0 0;
    padding: 18px;
    overflow-y: auto;
    flex-direction: column;
  }
  .mega-menu.active {
    display: flex;
    flex-direction: column;
  }
  .mega-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
    max-height: 200px;
    overflow-y: auto;
  }
  .mega-left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .mega-left li {
    flex: 0 0 auto;
    width: calc(50% - 5px);
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 5px;
    text-align: center;
  }
  .mega-left li.active,
  .mega-left li:hover {
    background: #007075;
    color: #fff;
  }
  .mega-right {
    width: 100%;
    padding-left: 0;
  }
  .college-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
  }
  .view-all {
    margin-top: 15px;
    padding-top: 10px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .brand-text {
    font-size: 15px;
  }
  .top-bar .btn {
    padding: 5px 8px;
    font-size: 12px;
    gap: 3px;
  }
  .top-bar .btn img {
    width: 16px;
    height: 16px;
  }
  .nav-bar {
    gap: 12px;
    padding: 8px 10px;
  }
  .nav-item {
    font-size: 13px;
  }
  .mega-menu {
    top: 75px;
    height: calc(100vh - 75px);
    padding: 15px;
    border-radius: 15px 15px 0 0;
  }
  .mega-left li {
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
  }
  .college-list {
    max-height: 200px;
  }
  .view-all {
    font-size: 13px;
    margin-top: 12px;
    padding-top: 8px;
  }
}
@media (max-width: 480px) {
  .ka-header {
    border-radius: 0 0 16px 16px;
  }
  .brand-text {
    font-size: 14px;
  }
  .top-bar .btn {
    padding: 4px 6px;
    font-size: 11px;
    gap: 2px;
  }
  .top-bar .btn img {
    width: 14px;
    height: 14px;
  }
  .nav-bar {
    gap: 10px;
    padding: 6px 8px;
  }
  .nav-item {
    font-size: 12px;
  }
  .mega-menu {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 12px;
    border-radius: 12px 12px 0 0;
  }
  .mega-left {
    max-height: 150px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  .mega-left li {
    font-size: 12px;
    padding: 7px 8px;
  }
  .mega-right {
    padding-left: 0;
  }
  .college-list {
    max-height: 180px;
  }
  .view-all {
    font-size: 12px;
    margin-top: 10px;
    padding-top: 7px;
  }
}
@media (max-width: 375px) {
  .top-bar {
    min-height: 55px;
    padding: 5px 8px;
  }
  .brand-text {
    font-size: 13px;
  }
  .top-bar .btn {
    padding: 3px 5px;
    font-size: 10px;
  }
  .top-bar .btn img {
    width: 12px;
    height: 12px;
  }
  .nav-bar {
    gap: 8px;
    padding: 5px 6px;
  }
  .nav-item {
    font-size: 11px;
  }
  .mega-menu {
    top: 65px;
    height: calc(100vh - 65px);
    padding: 10px;
  }
  .mega-left li {
    font-size: 11px;
    padding: 6px 6px;
  }
  .college-list {
    max-height: 160px;
  }
  .view-all {
    font-size: 11px;
    margin-top: 8px;
    padding-top: 6px;
  }
}
@media (max-width: 320px) {
  .top-bar {
    min-height: 50px;
    padding: 4px 6px;
  }
  .brand-text {
    font-size: 12px;
  }
  .top-bar .btn {
    padding: 2px 4px;
    font-size: 9px;
  }
  .top-bar .btn img {
    width: 10px;
    height: 10px;
  }
  .nav-bar {
    gap: 6px;
    padding: 4px 5px;
  }
  .nav-item {
    font-size: 10px;
  }
  .mega-menu {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 8px;
  }
  .mega-left li {
    font-size: 10px;
    padding: 5px 4px;
  }
  .college-list {
    max-height: 140px;
  }
  .view-all {
    font-size: 10px;
    margin-top: 6px;
    padding-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: landscape) {
  .mega-menu {
    max-height: 80vh;
    overflow-y: auto;
  }
  .mega-left {
    width: 220px;
  }
  .college-list {
    max-height: 300px;
  }
}
@media (max-width: 768px) {
  .nav-item,
  .mega-left li,
  .view-all,
  .top-bar .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .mega-menu {
      top: max(80px, env(safe-area-inset-top));
      height: calc(100vh - max(80px, env(safe-area-inset-top)));
      padding-bottom: max(18px, env(safe-area-inset-bottom));
      padding-left: max(18px, env(safe-area-inset-left));
      padding-right: max(18px, env(safe-area-inset-right));
    }
  }
  @media (max-width: 480px) {
    .mega-menu {
      top: max(70px, env(safe-area-inset-top));
      height: calc(100vh - max(70px, env(safe-area-inset-top)));
    }
  }
}
@media (max-width: 768px) {
  .nav-bar,
  .mega-menu,
  .college-list {
    -webkit-overflow-scrolling: touch;
  }
}
/* Continue with google modal */
.login-modal {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}
.login-header {
  background: #007075;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}
.google-btn {
  border: 1px solid #dcdcdc;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  font-weight: 500;
}
.google-btn:hover {
  background: #f8f9fa;
  border-color: #080b0f;
}
@media (max-width: 992px) {
  .login-modal {
    border-radius: 14px;
  }
  .login-header {
    height: 56px;
    padding: 0 16px;
  }
  .google-btn {
    padding: 10px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .login-modal {
    width: 95%;
    margin: auto;
    border-radius: 14px;
  }
  .login-header {
    height: auto;
    min-height: 52px;
    padding: 10px 14px;
  }
  .google-btn {
    padding: 10px;
    gap: 8px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .login-modal {
    border-radius: 12px;
  }
  .login-header {
    padding: 8px 12px;
  }
  .google-btn {
    padding: 8px;
    font-size: 13px;
  }
}
/* End Continue with google modal */
/* End Header css */
/* Hero Section */
.hero-section {
  height: 520px;
  background: url("../images/image.webp") center center / cover no-repeat;
  position: relative;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.container {
  width: 90%;
  margin: auto;
}
.hero-box {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 16px;
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-box h1,
.hero-box p,
.hero-box span {
  color: #ffffff;
}
.hero-rotating-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-height: 22px;
  margin-top: 6px;
  white-space: nowrap;
}
.hero-rotating-text::after {
  content: "|";
  margin-left: 3px;
  animation: blink 0.5s infinite;
}
.stat-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
  vertical-align: middle;
}
.stats span {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 16px;
}
.stats .dot {
  background: none;
  padding: 0;
  font-size: 22px;
  color: #fff;
}
.search-area {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.search-area input {
    border: none;
    padding: 14px;
    font-size: 14px;
}
.search-area input:focus {
    box-shadow: none;
}
.btn-search {
    background: #007075;
    color: #fff;
    padding: 0 28px;
    border-radius: 0;
}
.hero-college-btn {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background: #ff6f61;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  z-index: 5;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.hero-arrow.left { left: 16px; }
.hero-arrow.right { right: 16px; }
.hero-arrow:hover {
  background: rgba(0,0,0,0.7);
}
@media screen and (max-width: 992px) {
  .hero-section {
    height: 480px;
    margin-top: 100px;
  }
  .hero-box {
    max-width: 700px;
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 450px;
    margin-top: 80px;
    padding: 30px 0;
  }
  .hero-box {
    padding: 20px;
    width: 95%;
  }
  .hero-box h1 {
    font-size: 26px;
  }
  .hero-rotating-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;
  }
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stats span {
    font-size: 14px;
    padding: 6px 10px;
  }
  .stat-icon {
    width: 24px;
    height: 24px;
  }
  .stats .dot {
    font-size: 18px;
  }
  .search-area {
    display: flex;
    flex-direction: column;
  }
  .search-area input {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
  .btn-search {
    width: 100%;
    padding: 14px;
    border-radius: 0 0 8px 8px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }
  .hero-arrow.left { left: 10px; }
  .hero-arrow.right { right: 10px; }
}
@media screen and (max-width: 576px) {
  .hero-section {
    min-height: 400px;
    margin-top: 150px;
  }
  .hero-box {
    padding: 18px;
  }
  .hero-box h1 {
    font-size: 22px;
  }
  .hero-box p {
    font-size: 14px;
  }
  .hero-rotating-text {
    font-size: 13px;
    min-height: 36px;
  }
  .stats span {
    font-size: 12px;
    padding: 5px 8px;
  }
  .stat-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  .hero-college-btn {
    bottom: 12px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 380px;
  }
  .hero-box {
    padding: 15px;
  }
  .hero-box h1 {
    font-size: 20px;
  }
  .hero-box p {
    font-size: 13px;
  }
  .hero-rotating-text {
    font-size: 12px;
    min-height: 34px;
  }
  .stats span {
    font-size: 11px;
    padding: 4px 6px;
  }
  .stat-icon {
    width: 18px;
    height: 18px;
  }
  .stats .dot {
    font-size: 14px;
  }
  .search-area input {
    padding: 12px;
    font-size: 13px;
  }
  .btn-search {
    padding: 12px;
    font-size: 13px;
  }
  .hero-arrow {
    width: 34px;
    height: 34px;
  }
  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 375px) {
  .hero-box h1 {
    font-size: 18px;
  }
  .hero-box p {
    font-size: 12px;
  }
  .hero-rotating-text {
    font-size: 11px;
    min-height: 30px;
  }
  .stats span {
    font-size: 10px;
    padding: 3px 5px;
  }
  .stat-icon {
    width: 16px;
    height: 16px;
  }
  .hero-college-btn {
    padding: 5px 10px;
    font-size: 10px;
    bottom: 10px;
    left: 12px;
  }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* Call Icon/Modal */
.call-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ff7a66, #ff6f61);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 3000;
}
.call-fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.call-fab:hover {
  transform: scale(1.08);
}
.call-box {
  border: 1px solid;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}
.call-box.blue {
  border-color: #007075;
  color: #007075;
      margin-top: 20px;
}
.call-box.orange {
  border-color: #ff6f61;
  color: #ff6f61;
}
@media (max-width: 992px) {
  .call-fab {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .call-fab svg {
    width: 24px;
    height: 24px;
  }
  .call-box {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .call-fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .call-fab svg {
    width: 22px;
    height: 22px;
  }
  .call-box {
    padding: 10px;
    font-size: 14px;
  }
  .call-fab {
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
  }
}
@media (max-width: 480px) {
  .call-fab {
    width: 44px;
    height: 44px;
    bottom: 14px;
    right: 14px;
  }
  .call-fab svg {
    width: 20px;
    height: 20px;
  }
  .call-box {
    padding: 8px;
    font-size: 13px;
  }
}
/* End Call Icon/Modal */
/* Search Modal */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.search-box input {
  flex: 1;
  padding: 12px 14px 12px 42px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #6b7280;
  pointer-events: none;
}
.search-input:focus {
  box-shadow: none;
  border-color: #007075;
}
.text-orange {
  color: #ff6f61;
}
.popular-searches {
  max-width: 720px;
}
.search-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  cursor: pointer;
}
.search-item:hover {
  color: #007075;
}
@media screen and (max-width: 992px) {
  .popular-searches {
    max-width: 100%;
  }
  .search-item {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 768px) {
  .search-box {
    gap: 8px;
    padding: 6px;
    flex-direction: column;
    align-items: stretch;
  }
  .search-box input {
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    width: 100%;
  }
  .search-icon {
    left: 14px;
    font-size: 16px;
  }
  .search-item {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 576px) {
  .search-box input {
    padding: 10px 12px 10px 38px;
    font-size: 13px;
  }
  .search-icon {
    left: 12px;
    font-size: 14px;
  }
  .search-item {
    font-size: 13px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .search-box {
    padding: 5px;
    gap: 6px;
  }
  .search-box input {
    padding: 10px 10px 10px 36px;
    font-size: 13px;
  }
  .search-icon {
    left: 10px;
    font-size: 14px;
  }
  .search-item {
    font-size: 13px;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media screen and (max-width: 375px) {
  .search-box input {
    padding: 8px 8px 8px 32px;
    font-size: 12px;
  }
  .search-icon {
    left: 8px;
    font-size: 13px;
  }
  .search-item {
    font-size: 12px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 320px) {
  .search-box input {
    padding: 8px 8px 8px 30px;
    font-size: 11px;
  }
  .search-icon {
    left: 8px;
    font-size: 12px;
  }
  .search-item {
    font-size: 11px;
    padding: 6px 0;
  }
}
/* End Search Modal */
/* End HERO SECTION */

/* Explore Programs */
.explore-programs {
  padding: 50px 0;
}
.explore-header h2 {
  font-size: 32px;
  font-weight: 600;
}
/* ---------- Tabs ---------- */
.program-tabs-wrapper {
  position: relative;
  margin-top: 20px;
}
.program-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.program-tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  padding: 4px 22px;
  border-radius: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  font-weight: 500;
}
.tab.active {
  background: #007075;
  color: #fff;
  font-weight: 500;
  border-color: #007075;
}
.tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #080202;
}
.tab-arrow.left { left: -18px; }
.tab-arrow.right { right: -18px; }
/* ---------- Slider ---------- */
.program-slider-wrapper {
  position: relative;
  background: #f6f8fb;
  margin-top: 40px;
  padding: 30px 0;
}
.program-slider {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* padding: 0 90px; */
  margin-right: 90px;
  margin-left: 90px;
}
.program-slider::-webkit-scrollbar {
  display: none;
}
.program-card {
  min-width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  padding-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: .3s;
  position: relative;
}
.program-card:hover {
  transform: scale(1.03);
}
.program-card.hide {
  display: none;
}
.card-head {
  display: flex;
  gap: 14px;
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #007075;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: 30px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.slider-arrow.left { left: 50px; }
.slider-arrow.right { right: 50px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-btn.left { left: 0px; }
.slider-btn.right { right: 0px; }
.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: #000;
  stroke-width: 2;
  fill: none;
}
.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
}
.no-scrollbar::-webkit-scrollbar,
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.no-scrollbar,
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tags span {
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.card-link {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-size: 13px;
  color: #ff6f61;
  font-weight: 500;
}
.card-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .program-slider {
    margin-left: 60px;
    margin-right: 60px;
    gap: 28px;
  }
  .program-card {
    min-width: 320px;
  }
  .slider-arrow.left { left: 30px; }
  .slider-arrow.right { right: 30px; }
}

@media screen and (max-width: 992px) {
  .explore-header h2 {
    font-size: 28px;
  }
  .program-tabs {
    gap: 10px;
  }
  .tab {
    padding: 4px 18px;
    font-size: 14px;
  }
  .program-slider {
    margin-left: 40px;
    margin-right: 40px;
    gap: 24px;
  }
  .program-card {
    min-width: 300px;
  }
  .slider-arrow.left { left: 20px; }
  .slider-arrow.right { right: 20px; }
}

@media screen and (max-width: 768px) {
  .explore-programs {
    padding: 40px 0;
  }
  .explore-header h2 {
    font-size: 24px;
    padding-left: 15px;
  }
  .program-tabs-wrapper {
    margin-top: 15px;
    padding-left: 15px;
  }
  .program-tabs {
    gap: 8px;
    padding-bottom: 5px;
  }
  .tab {
    padding: 4px 16px;
    font-size: 13px;
  }
  .tab-arrow {
    display: none;
  }
  .program-slider-wrapper {
    margin-top: 30px;
    padding: 20px 0;
  }
  .program-slider {
    margin-left: 20px;
    margin-right: 20px;
    gap: 20px;
  }
  .program-card {
    min-width: 280px;
    padding: 18px;
    padding-bottom: 55px;
  }
  .icon-box {
    width: 52px;
    height: 52px;
  }
  .icon-box img {
    width: 26px;
  }
  .card-head h3 {
    font-size: 18px;
  }
  .tags span {
    font-size: 12px;
    padding: 5px 8px;
  }
  .slider-arrow, .slider-btn {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .explore-header h2 {
    font-size: 22px;
  }
  .program-tabs {
    gap: 6px;
  }
  .tab {
    padding: 4px 14px;
    font-size: 12px;
  }
  .program-slider {
    margin-left: 15px;
    margin-right: 15px;
    gap: 15px;
  }
  .program-card {
    min-width: 260px;
    padding: 16px;
    padding-bottom: 50px;
  }
  .icon-box {
    width: 48px;
    height: 48px;
  }
  .icon-box img {
    width: 24px;
  }
  .card-head h3 {
    font-size: 16px;
  }
  .card-head p {
    font-size: 13px;
  }
  .tags {
    gap: 6px;
    margin-top: 12px;
  }
  .tags span {
    font-size: 11px;
    padding: 4px 6px;
  }
  .card-link {
    font-size: 12px;
    bottom: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .explore-programs {
    padding: 30px 0;
  }
  .explore-header h2 {
    font-size: 20px;
  }
  .tab {
    padding: 4px 12px;
    font-size: 11px;
  }
  .program-slider {
    margin-left: 12px;
    margin-right: 12px;
    gap: 12px;
  }
  .program-card {
    min-width: 240px;
    padding: 15px;
    padding-bottom: 48px;
  }
  .icon-box {
    width: 44px;
    height: 44px;
  }
  .icon-box img {
    width: 22px;
  }
  .card-head {
    gap: 10px;
  }
  .card-head h3 {
    font-size: 15px;
  }
  .card-head p {
    font-size: 12px;
  }
  .tags span {
    font-size: 10px;
    padding: 3px 5px;
  }
  .card-link {
    font-size: 11px;
    bottom: 12px;
    right: 12px;
  }
}
@media screen and (max-width: 375px) {
  .explore-header h2 {
    font-size: 18px;
  }
  .program-tabs {
    gap: 5px;
  }
  .tab {
    padding: 3px 10px;
    font-size: 10px;
  }
  .program-slider {
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
  .program-card {
    min-width: 220px;
    padding: 12px;
    padding-bottom: 45px;
  }
  .icon-box {
    width: 40px;
    height: 40px;
  }
  .icon-box img {
    width: 20px;
  }
  .card-head h3 {
    font-size: 14px;
  }
  .card-head p {
    font-size: 11px;
  }
  .tags span {
    font-size: 9px;
    padding: 3px 4px;
  }
  .card-link {
    font-size: 10px;
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 320px) {
  .program-card {
    min-width: 200px;
    padding: 10px;
    padding-bottom: 40px;
  }
  .icon-box {
    width: 36px;
    height: 36px;
  }
  .icon-box img {
    width: 18px;
  }
  .card-head h3 {
    font-size: 13px;
  }
  .tags span {
    font-size: 8px;
    padding: 2px 3px;
  }
}
/* End Explore Programs */

/* Top Colleges in India */
.college-card.hide {
  display: none;
}
/* List View modal */
.college-list-modal {
  border-radius: 14px;
  overflow: hidden;
}
.college-list-header {
  background: #007075;
  color: #fff;
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr 1fr auto;
  padding: 18px 24px;
  font-weight: 600;
  align-items: center;
}
.college-list-body {
  padding: 20px;
}
.college-row {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr 1fr;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.college-info {
  display: flex;
  gap: 14px;
  align-items: center;
}
.college-info img {
  width: 42px;
  height: 42px;
}
.college-info h6 {
  margin: 0;
  font-weight: 600;
}
.college-info p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #6b7280;
}
.ranking {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ef4444;
}
.fees,
.courses {
  font-weight: 600;
}
@media (max-width: 992px) {
  .college-list-header {
    grid-template-columns: 2.5fr 1.5fr 1.5fr 1fr auto;
    padding: 16px 20px;
    font-size: 14px;
  }
  .college-row {
    grid-template-columns: 2.5fr 1.5fr 1.5fr 1fr;
    padding: 16px;
  }
  .college-info img {
    width: 38px;
    height: 38px;
  }
  .college-info p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .college-list-modal {
    border-radius: 12px;
  }
  .college-list-header {
    grid-template-columns: 220px 120px 120px 100px auto;
    overflow-x: auto;
    white-space: nowrap;
  }
  .college-list-header::-webkit-scrollbar {
    display: none;
  }
  .college-list-body {
    padding: 16px;
  }
  .college-row {
    grid-template-columns: 220px 120px 120px 100px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .college-row::-webkit-scrollbar {
    display: none;
  }
  .college-info h6 {
    font-size: 14px;
  }
  .ranking,
  .fees,
  .courses {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .college-list-header {
    padding: 14px 16px;
    font-size: 13px;
  }
  .college-row {
    padding: 14px;
    margin-bottom: 14px;
  }
  .college-info img {
    width: 34px;
    height: 34px;
  }
  .college-info p {
    font-size: 12px;
  }
  .ranking,
  .fees,
  .courses {
    font-size: 13px;
  }
}
/* End List View modal */
/* End Top Colleges in India */

/* Confused between colleges */
.compare-section {
  padding: 32px 16px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 32px;
}
.compare-card {
  background: #007075;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 20px;
  max-width: 1300px;
  margin: auto;
  gap: 20px;
}
.compare-image {
  flex: 0 0 220px;
  text-align: center;
}
.compare-image img {
  width: 150px;
  max-width: 100%;
}
.compare-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.compare-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.compare-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.compare-text span {
  font-weight: 700;
  color: #fff;
}
.compare-btn {
  background: #ff7a59;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.compare-btn:hover {
  background: #ff633d;
}
@media (max-width: 1200px) {
  .compare-text h3 {
    font-size: 24px;
  }
  .compare-text p {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .compare-card {
    padding: 18px;
    gap: 16px;
  }
  .compare-image {
    flex: 0 0 180px;
  }
  .compare-image img {
    width: 130px;
  }
  .compare-text h3 {
    font-size: 22px;
  }
  .compare-text p {
    font-size: 14px;
  }
  .compare-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .compare-card {
    flex-direction: column;
    text-align: center;
  }
  .compare-image {
    flex: none;
  }
  .compare-content {
    flex-direction: column;
    gap: 16px;
  }
  .compare-text h3 {
    font-size: 20px;
  }
  .compare-text p {
    font-size: 14px;
  }
  .compare-btn {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .compare-section {
    padding: 24px 12px;
  }
  .compare-card {
    padding: 16px;
  }
  .compare-text h3 {
    font-size: 18px;
  }
  .compare-text p {
    font-size: 13px;
  }
  .compare-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}
/* End Confused between colleges */

/* Upcoming Exams */
.upcoming-exams {
  position: relative;
  padding: 40px 20px;
}
.exam-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 20;
}
.exam-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #111827;
  stroke-width: 2.5;
  fill: none;
}
.exam-arrow-left {
  left: -26px;
}
.exam-arrow-right {
  right: -26px;
}
.exam-arrow:hover {
  background: #007075; /* dark blue */
  transform: translateY(-50%) scale(1.08);
}
.exam-arrow:hover svg {
  stroke: #ffffff;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.exam-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.exam-slider {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exam-slider::-webkit-scrollbar {
  display: none;
}
.exam-card {
  min-width: 260px;
  border: 2px solid #007075;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s;
}
.exam-card:hover {
  transform: scale(0.96);
}
.exam-card h3 {
  font-size: 18px;
  margin-top: 12px;
}
.exam-card small {
  color: #555;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-top img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.mode {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}
.mode.online {
  color: #ff6f61;
  border: 1px solid #ff6f61;
  background: rgba(255,111,97,.1);
}
.mode.offline {
  color: #007075;
  border: 1px solid #007075;
  background: rgba(37,99,235,.1);
}
.date {
  margin-top: 16px;
}
.date p {
  font-size: 13px;
}
.date strong {
  color: #ff6f61;
}
.card-btn {
  margin: 16px -16px -16px;
  padding: 12px;
  background: #007075;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 16px 16px;
}
.card-btn {
  margin-top: 15px;
  background: #007075;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .section-header h2 {
    font-size: 32px;
  }
  .exam-card {
    min-width: 240px;
  }
  .exam-arrow-left { left: -18px; }
  .exam-arrow-right { right: -18px; }
}
@media (max-width: 992px) {
  .upcoming-exams {
    padding: 32px 16px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .exam-card {
    min-width: 220px;
    padding: 14px;
  }
  .exam-card h3 {
    font-size: 16px;
  }
  .exam-arrow {
    width: 40px;
    height: 40px;
  }
  .exam-arrow svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }
  .exam-slider {
    gap: 14px;
  }
  .exam-card {
    min-width: 200px;
  }
  .exam-arrow {
    display: none;
  }
  .card-btn {
    font-size: 13px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .upcoming-exams {
    padding: 24px 12px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .exam-card {
    min-width: 180px;
  }
  .exam-card h3 {
    font-size: 15px;
  }
  .date p {
    font-size: 12px;
  }
  .mode {
    font-size: 10px;
    padding: 3px 8px;
  }
}
/* End Upcoming Exams */

/* Stream/Courses */
.streams-courses-section {
  padding: 50px 90px;
  background: #f4f6fb;
}
.search-wrapper {
  display: flex;
  justify-content: center;
}
.search-box {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  width: 700px;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
}
.search-btn {
  background: #007075;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}
.tabs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px auto 25px;
  background: #fff;
  width: fit-content;
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  color: #333;
}
.tab-btn.active {
  background: #ff7a66;
  color: #fff;
}
.tab-content {
  display: none;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.tab-content.active {
  display: grid;
}
.tab-content h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.tab-content p {
  margin-bottom: 14px;
  font-size: 16px;
}
.tab-constant {
  display: none;
  /* grid-template-columns: 2fr 1fr 1fr; */
  gap: 40px;
}

.tab-constant.active {
  display: grid;
}
.tab-constant h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.tab-constant p {
  margin-bottom: 14px;
  font-size: 16px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.stream-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stream-card:hover {
  transform: scale(1.08);
}
.stream-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: block;
}
.stream-card h4 {
  font-size: 16px;
  margin: 5px 0;
      font-weight: bold;

}
.stream-card p {
  font-size: 13px;
  color: #666;
}
@media (max-width: 1200px) {
  .streams-courses-section {
    padding: 40px 60px;
  }
  .search-box {
    width: 600px;
  }
  .tab-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}
@media (max-width: 992px) {
  .streams-courses-section {
    padding: 40px 40px;
  }
  .search-box {
    width: 100%;
    max-width: 520px;
  }
  .search-box input {
    font-size: 15px;
  }
  .search-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  .tab-btn {
    font-size: 15px;
    padding: 8px 20px;
  }
  .cards-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .streams-courses-section {
    padding: 30px 20px;
  }
  .search-wrapper {
    padding: 0 10px;
  }
  .search-box {
    width: 100%;
    padding: 8px;
    gap: 8px;
  }
  .search-box input {
    font-size: 14px;
  }
  .search-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .tabs-wrapper {
    margin: 25px auto 20px;
  }
  .tab-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px;
  }
  .stream-card {
    padding: 20px 12px;
  }
}
@media (max-width: 480px) {
  .streams-courses-section {
    padding: 24px 14px;
  }
  .search-box {
    padding: 6px;
  }
  .search-box input {
    font-size: 13px;
  }
  .search-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .tab-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
  }
  .stream-card h4 {
    font-size: 14px;
  }
  .stream-card p {
    font-size: 12px;
  }
}
/* End Stream/Courses */

/* Top Courses */
.ka-top-courses {
  background: #fff;
  margin: 20px 90px;
}
.ka-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}
.ka-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.ka-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #e1e5ea;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}
.ka-tab.active {
  background: #007075;
  color: #fff;
  border-color: #007075;
}
.ka-slider-wrap {
  position: relative;
}
.ka-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.ka-slider::-webkit-scrollbar {
  display: none;
}
.ka-row {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 24px;
}
.ka-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.ka-tag {
  display: inline-block;
  font-size: 12px;
  color: #ff4d2d;
  border: 1px solid #ff4d2d;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.ka-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.ka-card p {
  font-size: 14px;
  margin-bottom: 6px;
}
.ka-card span {
  color: #777;
}
.ka-card button {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #007075;
  color: #fff;
  border: none;
  cursor: pointer;
}
.ka-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  font-size: 22px;
  cursor: pointer;
}
.ka-left { left: -20px; }
.ka-right { right: -20px; }
@media (max-width: 1200px) {
  .ka-top-courses {
    margin: 20px 60px;
  }
  .ka-title {
    font-size: 30px;
  }
  .ka-row {
    grid-template-columns: repeat(4, 260px);
    gap: 20px;
  }
  .ka-slider {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .ka-top-courses {
    margin: 20px 40px;
  }
  .ka-title {
    font-size: 26px;
  }
  .ka-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
  .ka-tabs::-webkit-scrollbar {
    display: none;
  }
  .ka-row {
    grid-template-columns: repeat(3, 260px);
  }
  .ka-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .ka-left { left: -14px; }
  .ka-right { right: -14px; }
}
@media (max-width: 768px) {
  .ka-top-courses {
    margin: 20px;
  }
  .ka-title {
    font-size: 22px;
  }
  .ka-tabs {
    gap: 10px;
    margin-bottom: 20px;
  }
  .ka-tab {
    font-size: 13px;
    padding: 6px 14px;
  }
  .ka-row {
    grid-template-columns: repeat(2, 240px);
    gap: 18px;
  }
  .ka-slider {
    gap: 20px;
  }
  .ka-arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .ka-title {
    font-size: 20px;
  }
  .ka-row {
    grid-template-columns: repeat(1, 260px);
  }
  .ka-card h3 {
    font-size: 16px;
  }
  .ka-card p {
    font-size: 13px;
  }
  .ka-card button {
    font-size: 13px;
    padding: 9px;
  }
}
/* End Top Courses */

/* Find Colleges near you */
.find-nearby-colleges {
  background: #f8f9fb url("/img/home/india-map.png") no-repeat right center;
  background-size: contain;
  padding: 60px 24px;
  text-align: center;
}
.find-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.find-subheading {
  font-size: 22px;
  color: #1f2937;
}
.find-subheading span {
  color: #ff6b57;
  font-weight: 700;
}
.find-search-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 30px;
}
.find-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.find-search-icon {
  font-size: 18px;
  color: #64748b;
}
.find-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
}
.find-search-btn {
  background: #007075;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}
.find-city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.find-city-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 12px;
  text-align: center;
  text-decoration: none;
  color: #111827;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.find-city-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  display: block;
}
.find-city-card p {
  font-weight: 700;
  font-size: 16px;
}
.find-city-card:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.find-explore {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .find-heading {
    font-size: 36px;
  }
  .find-subheading {
    font-size: 20px;
  }
  .find-city-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (max-width: 992px) {
  .find-nearby-colleges {
    background-position: center top;
    background-size: 70%;
    padding: 50px 20px;
  }
  .find-heading {
    font-size: 32px;
  }
  .find-subheading {
    font-size: 18px;
  }
  .find-search-wrap {
    margin: 30px 0 25px;
  }
  .find-city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .find-nearby-colleges {
    background: #f8f9fb;
    padding: 40px 16px;
  }
  .find-heading {
    font-size: 26px;
  }
  .find-subheading {
    font-size: 16px;
  }
  .find-search-box {
    flex-direction: column;
    gap: 10px;
  }
  .find-search-btn {
    width: 100%;
  }
  .find-city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .find-city-card img {
    width: 48px;
    height: 48px;
  }
  .find-city-card p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .find-heading {
    font-size: 22px;
  }
  .find-subheading {
    font-size: 14px;
  }
  .find-city-grid {
    grid-template-columns: 1fr;
  }
  .find-city-card {
    padding: 18px 10px;
  }
}
/* End Find Colleges near you */

/* Find the Right College for Your Future */
.find-college-section {
  max-width: 1100px;
  margin: 40px auto;
  position: relative;
  font-family: Arial, sans-serif;
}
.fc-content-wrapper {
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.find-college-section.expanded .fc-content-wrapper {
  max-height: 5000px;
}
.find-college-section ul {
  list-style-type: disc;
  padding-left: 22px;
  margin: 12px 0;
}
.find-college-section li {
  line-height: 1.9;
  margin-bottom: 10px;
}
.fc-content-wrapper h2,
.fc-content-wrapper h3 {
  margin-top: 24px;
  font-weight: 700;
}
.fc-content-wrapper a {
  color: #007075;
  text-decoration: underline;
}
.fc-fade {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.find-college-section.expanded .fc-fade {
  display: none;
}
.fc-toggle-btn {
  display: block;
  margin: 20px 0 0 auto;
  background: none;
  border: none;
  color: #007075;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .find-college-section {
    max-width: 95%;
    margin: 35px auto;
  }
}
@media (max-width: 992px) {
  .find-college-section {
    margin: 30px 20px;
  }
  .fc-content-wrapper {
    max-height: 300px;
  }
  .fc-content-wrapper h2,
  .fc-content-wrapper h3 {
    font-size: 20px;
  }
  .find-college-section li {
    line-height: 1.8;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .find-college-section {
    margin: 25px 16px;
  }
  .fc-content-wrapper {
    max-height: 260px;
  }
  .fc-content-wrapper h2,
  .fc-content-wrapper h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .find-college-section ul {
    padding-left: 18px;
  }
  .find-college-section li {
    font-size: 14px;
    line-height: 1.7;
  }
  .fc-fade {
    height: 60px;
    bottom: 50px;
  }
  .fc-toggle-btn {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .find-college-section {
    margin: 20px 12px;
  }
  .fc-content-wrapper {
    max-height: 220px;
  }
  .fc-content-wrapper h2,
  .fc-content-wrapper h3 {
    font-size: 16px;
  }
  .find-college-section li {
    font-size: 13px;
  }
  .fc-toggle-btn {
    font-size: 13px;
  }
}
/* End Find the Right College for Your Future */

/* Subscribe to our news letter */
.newsletter-wrap {
  padding: 40px 20px;
}
.newsletter-card {
  background: #007075 url("img/home/newsletter-bg.png") no-repeat center;
  background-size: cover;
  border-radius: 28px;
  padding: 40px 30px 60px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #fff;
  position: relative;
}
.newsletter-card h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.newsletter-card p {
  font-size: 16px;
  margin-bottom: 30px;
}
.newsletter-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.input-box {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 12px;
}
.input-box input,
.input-box select {
  color: #111;
  font-size: 14px;
}
.input-box input::placeholder {
  color: #9ca3af;
}
.input-box select {
  appearance: none;
  cursor: pointer;
}
.icon {
  margin-right: 8px;
  font-size: 16px;
}
.submit-btn {
  height: 48px;
  background: #ff7a66;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #ff604a;
}
.newsletter-img {
  position: absolute;
  right: 100px;
  top: 25%;
  transform: translateY(-50%);
  width: 140px;
  display: none;
}
.select-box {
  position: relative;
}
.select-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 48px;
  padding-left: 14px;
  padding-right: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #111;
  cursor: pointer;
}
.select-box select:focus,
.select-box select:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.select-box::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239ca3af' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
input,
select,
textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.input-box input {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-size: 14px;
  color: #111;
  background: transparent;
  cursor: text;
}
.input-box input::placeholder {
  color: #9ca3af;
  opacity: 1;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #111 !important;
}
select {
  cursor: pointer;
}
@media (max-width: 1200px) {
  .newsletter-card {
    padding: 35px 25px 55px;
  }
  .newsletter-card h2 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .newsletter-card {
    padding: 30px 22px 50px;
  }
  .newsletter-card h2 {
    font-size: 30px;
  }
  .newsletter-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .submit-btn {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .newsletter-wrap {
    padding: 30px 14px;
  }
  .newsletter-card {
    padding: 28px 18px 45px;
    border-radius: 22px;
  }
  .newsletter-card h2 {
    font-size: 24px;
  }
  .newsletter-card p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .submit-btn {
    font-size: 16px;
    height: 46px;
  }
}
@media (max-width: 480px) {
  .newsletter-card {
    padding: 24px 14px 40px;
    border-radius: 18px;
  }
  .newsletter-card h2 {
    font-size: 20px;
  }
  .newsletter-card p {
    font-size: 13px;
  }
  .input-box,
  .submit-btn {
    height: 44px;
  }
  .submit-btn {
    font-size: 15px;
  }
}
/* End Subscribe to our news letter */

/* Footer */
.ka-footer {
  background: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.25);
  font-family: Arial, sans-serif;
}
.ka-footer-top {
  max-width: 1300px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}
.ka-footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #222;
}
.ka-footer-col ul {
  list-style: none;
  padding: 0;
}
.ka-footer-col ul li {
  margin-bottom: 8px;
}
.ka-footer-col a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}
.ka-footer-col a:hover {
  text-decoration: underline;
}
.brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand img {
  width: 80px;
}
.brand span {
  font-size: 22px;
  font-weight: 600;
  color: #007075;
}
.tagline {
  font-size: 12px;
  color: #007075;
  margin: 4px 0 16px;
}
.brand-links li {
  margin-bottom: 6px;
}
.ka-footer .brand-links a {
  color: #007075;
  font-weight: 500;
}
.ka-footer .brand-links a:hover {
  color: #007075;
  text-decoration: underline;
}
.social .icons a {
  font-size: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: #007075;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.social .icons {
  display: flex;
  gap: 12px;
}
.social .icons a:hover {
  background: #007075;
  color: #fff;
  transform: scale(1.1);
}
.social .icons a:nth-child(1)::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-size: 16px;
}
.social .icons a:nth-child(2)::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-size: 16px;
}
.social .icons a:nth-child(3)::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-size: 16px;
}
.social .icons a:nth-child(4)::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-size: 16px;
}
.ka-footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
.footer-heading {
  font-weight: 700;
  color: #1f2937;
}
@media (max-width: 1200px) {
  .ka-footer-top {
    padding: 50px 30px;
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .ka-footer {
    border-radius: 30px 30px 0 0;
  }
  .ka-footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 45px 24px;
  }
  .brand {
    grid-column: span 2;
  }
  .ka-footer-bottom {
    padding: 14px 24px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .ka-footer {
    border-radius: 24px 24px 0 0;
  }
  .ka-footer-top {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 26px;
    text-align: center;
  }
  .brand .logo {
    justify-content: center;
  }
  .brand img {
    width: 70px;
  }
  .brand span {
    font-size: 20px;
  }
  .social .icons {
    justify-content: center;
  }
  .ka-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 14px 18px;
  }
}
@media (max-width: 480px) {
  .ka-footer-top {
    padding: 32px 16px;
  }
  .ka-footer-col h4 {
    font-size: 15px;
  }
  .ka-footer-col a {
    font-size: 13px;
  }
  .social .icons a {
    width: 34px;
    height: 34px;
  }
  .ka-footer-bottom {
    font-size: 11px;
  }
}
/* EndFooter */
/* End Index */


/* Index2 */
body {
  background: #f5f7fb;
}
/* Header */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.site-header {
  background: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 15px 10px -5px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
    transition: transform 0.35s ease;
}
.site-header.hide-header {
  transform: translateY(-100%);
}
.site-topbar {
  background: #007075;
  border-radius: 16px;
  margin: 12px 40px 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.site-logo img {
  width: 80px;
  height: 60px;
}
.site-search {
  width: 550px;
  margin: 0 auto;
  background: #fff;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}
.site-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}
.site-search input::placeholder {
  color: #9ca3af;
}
.site-search-btn {
  background: #007075;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.site-google-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-left: auto;
}
.site-google-btn img {
  width: 18px;
}
.site-menu {
  padding: 14px 40px 18px;
  display: flex;
  justify-content: center;
}
.site-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
.site-menu li {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.site-menu li:hover {
  color: #007075;
}
.site-menu .menu-plain {
  font-weight: 500;
}
.content-offset {
  padding-top: 160px;
  padding: 40px;
  font-size: 18px;
}
.MiniStickyHeader {
  position: sticky;
  top: 0;
  z-index: 998;
  background: linear-gradient(to right, #fdf2f2, #eef7ff);
  border-bottom: 1px solid #e5e7eb;
  display: none;
}
.MiniHeaderInner {
  max-width: 1350px;
  margin: auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* End Header */
/* PAGE LAYOUT */
.page-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}
.page-left {
  width: 950px;
  margin-left: 80px;
}
.page-right {
  flex: 1;
  position: sticky;
  top: 140px;
  padding-right: 30px;
  margin-right: 90px;
  width: 320px;
}
/* End PAGE LAYOUT */
/* Hero Section */
.college-header-section {
  padding: 24px 90px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}
.breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}
.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb .active,
.breadcrumb .current {
  color: #007075;
  font-weight: 600;
}
.college-header-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.college-left {
  display: flex;
  gap: 20px;
  flex: 1;
}
.college-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.college-info2 h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
.meta-row {
  margin: 15px 0;
  display: flex;
  gap: 10px;
  font-size: 14px;
}
.meta-row a {
  color: #007075;
  font-weight: 500;
  text-decoration: none;
}
.meta-row a:hover {
  text-decoration: underline;
}
.sep {
  color: #cbd5e1;
}
.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  background: #e5e7eb;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}
.college-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.bookmark-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}
.bookmark-btn img {
  width: 22px;
  opacity: 0.7;
}
.action-buttons {
  display: flex;
  gap: 14px;
}
.btn2 {
  height: 42px;
  padding: 0 28px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 2px 3px 6px rgba(0,0,0,.25);
}
.brochure {
  background: #f47062;
  color: #fff;
  height: 44px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(244,112,98,.45);
  transition: all .25s ease;
}
.brochure svg {
  stroke: #fff;
}
.brochure:hover {
  background: #e85e50;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(244,112,98,.55);
}
.apply {
  background: #007075;
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
}
/* End Hero Section */
/* Tab */
.CollegeTabsWrapper {
  position: sticky;
  top: 64px;
  z-index: 997;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.CollegeTabsInner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 16px 12px;
  position: relative;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.25);
}
.CollegeTabsNav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.CollegeTabsNav::-webkit-scrollbar {
  display: none;
}
.CollegeTab {
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.CollegeTab:hover {
  background: #f8fafc;
}
.CollegeTab.active {
  background: #007075;
  color: #ffffff;
  border-color: #007075;
  box-shadow: 0 6px 18px rgba(15,42,68,0.4);
}
.CollegeTab.dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.TabsScrollBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #000;
  box-shadow: 5px 0 10px rgba(0,0,0,0.75);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.TabsScrollBtn svg {
  width: 20px;
  height: 20px;
  fill: #000;
}
.TabsScrollLeft {
  left: -10px;
  display: none;
}
.TabsScrollRight {
  right: -10px;
  display: flex;
}
.cutoff-Arrow svg {
  width: 16px;
  height: 16px;
  fill: #6b7280;
}
@media (max-width: 768px) {
  .TabsScrollBtn {
    display: none;
  }
}
@media (max-width: 768px) {
  .TabsScrollBtn {
    display: none;
  }
}
/* End Tab */
/* About */
.AboutCard {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  padding: 24px;
  position: relative;
}
.AboutMeta {
  font-size: 14px;
  margin: 10px 20px 12px 10px;
}
.AboutMeta a {
  color: #007075;
  font-weight: 500;
}
.AboutTitle,
.AboutSectionTitle,
.AboutMainTitle {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.AboutSectionTitle {
  margin-top: 30px;
}
.AboutSectionDesc {
  font-size: 15px;
  line-height: 1.7;
  color: #0a0a0a;
  margin-bottom: 20px;
}
.AboutContentWrapper {
  max-height: 260px;
  overflow: hidden;
  transition: max-height .4s ease;
}
.AboutContentWrapper.expanded {
  max-height: 6000px;
}
.AboutText {
  font-size: 15px;
  line-height: 1.7;
}
.AboutFade {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.AboutFade.hide {
  display: none;
}
.AboutToggleBtn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #007075;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin-left: auto;
}
.AboutTOC {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.AboutTOCHeader {
  background: #007075;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
}
.AboutTOC ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.AboutTOC li {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.AboutTOC a {
  color: #007075;
  font-weight: 500;
}
.AboutFAQ details {
  background: #fff;
  border-radius: 10px;
  margin-top: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.AboutFAQ summary {
  cursor: pointer;
  font-weight: 600;
}
.AboutFAQ p {
  margin-top: 10px;
  color: #374151;
}
.AboutHighlightsSection {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.AboutHighlightsImage img {
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}
.AboutTableWrapper {
  border-radius: 14px;
  overflow-x: auto;
  border: 1px solid #dcdcdc;
  background: #fff;
}
.AboutTable,
.AboutHighlightsTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.AboutTable thead th,
.AboutHighlightsTable thead th {
  background: #007075;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #357ac7;
}
.AboutTable thead th:last-child,
.AboutHighlightsTable thead th:last-child {
  border-right: none;
}
.AboutTable td,
.AboutHighlightsTable td {
  padding: 14px 16px;
  border-top: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: middle;
}
.AboutTable td:last-child,
.AboutHighlightsTable td:last-child {
  border-right: none;
}
.AboutHighlightsTable th:first-child,
.AboutHighlightsTable td:first-child {
  width: 220px;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}
.AboutTable a,
.AboutHighlightsTable a {
  color: #007075;
  font-weight: 500;
  text-decoration: none;
}
.AboutTable a:hover,
.AboutHighlightsTable a:hover {
  text-decoration: underline;
}
.AboutRankingTable td:nth-child(2) {
  text-align: center;
  font-weight: 500;
}
.AboutReachList {
  padding-left: 18px;
}
.AboutReachList li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.AboutMultiLine {
  line-height: 2.2;
}
@media (max-width: 768px) {
  .AboutMainTitle {
    font-size: 22px;
  }

  .AboutHighlightsSection {
    padding: 20px;
  }

  .AboutCard {
    width: 100%;
    margin-left: 0;
  }

  .AboutMeta {
    margin-left: 0;
  }
}
.AboutOrderList {
  padding-left: 20px;
}
/* End About */
/* GGSIPU Highlights */
.HighlightsCard {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin-top: 30px;
}
.HighlightsTitle {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}
.HighlightsTableWrap {
  overflow-x: auto;
}
.HighlightsTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
}
.HighlightsTable thead th {
  background: #007075;
  color: #ffffff;
  padding: 14px 16px;
  font-weight: 600;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.HighlightsTable thead th:last-child {
  border-right: none;
}
.HighlightsTable td {
  padding: 14px 16px;
  border-top: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  font-size: 14.5px;
  vertical-align: middle;
}
.HighlightsTable td:first-child {
  width: 260px;
  font-weight: 500;
}
.HighlightsTable td:last-child {
  border-right: none;
}
.HighlightsTable a {
  color: #007075;
  font-weight: 500;
  text-decoration: none;
}
.HighlightsTable a:hover {
  text-decoration: underline;
}
.HighlightsTable .link {
  color: #007075;
}
/* End GGSIPU Highlights */
/* Explore GGSIPU programs */
.ExploreGOuterWrapper {
  background: #ffffff;
  margin-top: 30px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.ExploreGSection {
  margin-top: 0;
  padding: 28px 0;
  font-family: Inter, sans-serif;
}
.ExploreGContainer {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.ExploreGTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}
.ExploreGCard {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e9f0;
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 8px 24px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
}

.ExploreGCardBottom {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
}
.ExploreGBookmarkBtn {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
}
.ExploreGBookmarkBtn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}
.ExploreGBookmarkBtn svg {
  color: #111827;
}
.ExploreGBadges {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ExploreGProgramTitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

.ExploreGBadge {
  background: #ff6b57;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
}
.ExploreGMeta {
  font-size: 14px;
  color: #0f172a;
  font-weight: 500;
}
.ExploreGDivider {
  color: #9ca3af;
}
.ExploreGStats {
  display: flex;
  gap: 80px;
  margin-top: 20px;
  align-items: flex-start;
}
.ExploreGStatsRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.ExploreGLabel {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}
.ExploreGValue {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
.ExploreGExam a {
  font-size: 14px;
  color: #007075;
  text-decoration: none;
  font-weight: 500;
}
.ExploreGExam a:hover {
  text-decoration: underline;
}
.ExploreGExamMore {
  display: inline-block;
  margin-top: 4px;
}
.ExploreGExamMoreWrap {
  position: relative;
  display: inline-block;
}
.ExploreGExamLinks {
  position: relative;
  display: inline-block;
}
.ExploreGExamHoverLink {
  display: block;
  font-size: 14px;
  color: #007075;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}
.ExploreGExamHoverLink:hover {
  text-decoration: underline;
}
.ExploreGExamInfoBox {
  position: absolute;
  top: 42px;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  z-index: 100;
  min-width: 140px;
}
.ExploreGExamInfoBox span {
  display: block;
  font-size: 14px;
  color: #007075;
  padding: 4px 0;
}
.ExploreGExamLinks:hover .ExploreGExamInfoBox {
  display: block;
}
.ExploreGExamMore {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  color: #007075;
  font-weight: 500;
  cursor: pointer;
}
.ExploreGCardRight {
  display: flex;
  gap: 14px;
}
.ExploreGCompareBtn {
  background: #fff;
  color: #ff6b57;
  border: 1px solid #ff6b57;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.ExploreGBrochureBtn {
  background: #007075;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ExploreGDownloadIcon {
  color: #ffffff;
}
.ExploreGActionBtns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ExploreGCard {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ExploreGStats {
    gap: 30px;
  }
  .ExploreGCardRight {
    width: 100%;
  }
}
.ExploreGViewAllWrap {
  text-align: center;
  margin-top: 24px;
}
.ExploreGViewAllLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}
.ExploreGViewAllLink:hover {
  text-decoration: underline;
}
.ExploreGViewAllIcon {
  transition: transform 0.2s ease;
}
.ExploreGViewAllLink:hover .ExploreGViewAllIcon {
  transform: translateY(2px);
}
/* End Explore GGSIPU programs */
/* GGSIPU Popular Courses */
.PopularGSection {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-top: 30px
}
.PopularGWrapper {
  max-width: 1200px;
  margin: auto;
}
.PopularGTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f2a44;
}
.PopularGFilters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 16px;
}
.PopularGFilterBtn {
  background: #fff;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.PopularGFilterBtn svg {
  width: 14px;
  height: 14px;
}
.PopularGCardRow {
  display: flex;
  gap: 20px;
  background: #f0f1f7;
  padding: 16px;
  border-radius: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.PopularGCardRow::-webkit-scrollbar {
  display: none;
}
.PopularGCard {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  min-width: 320px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.PopularGCard h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f2a44;
  margin-bottom: 10px;
}
.PopularGBadges {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.PopularGBadge {
  background: #ff6b57;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
}
.PopularGInfo {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 40px;
}
.PopularGInfo label {
  font-weight: 600;
  display: block;
  color: #374151;
}
.PopularGInfo p {
  color: #ff6b57;
  font-weight: 600;
}
.PopularGLink {
  color: #007075;
}
.PopularGBrochureBtn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #007075;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.PopularGViewAll {
  text-align: center;
  margin-top: 18px;
}
.PopularGViewAll a {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.PopularGViewAll a:hover {
  text-decoration: underline;
}
/* End GGSIPU Popular Courses */
/* GGSIPU Upcoming Important */
.UpcomingSection {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  font-family: Inter, sans-serif;
  margin-top:30px;
}
.UpcomingContainer {
  max-width: 1100px;
  margin: auto;
}
.UpcomingMainTitle {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.UpcomingFilterRow {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 22px;
  margin-top: 30px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.UpcomingFilterRow::-webkit-scrollbar {
  display: none;
}
.UpcomingFilter {
  padding: 6px 16px;
  border-radius: 10px;
  border: 2px solid #d1d5db;
  background: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
.UpcomingFilter.active {
  border-color: #007075;
  color: #007075;
}
.UpcomingSubTitle {
  font-size: 20px;
  font-weight: 700;
  margin: 22px 0 14px;
  color: #0f172a;
}
.UpcomingTableWrap {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.UpcomingTable {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}
.UpcomingTable thead {
  background: #007075;
  color: #ffffff;
}
.UpcomingTable th,
.UpcomingTable td {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
}
.UpcomingTable td:first-child {
  font-weight: 600;
}
.UpcomingBadge {
  background: #007075;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
}
.UpcomingShowMore {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.UpcomingShowMore button {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #007075;
  cursor: pointer;
  text-decoration: none;
}
.UpcomingShowMore button span {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.25s ease;
}
.UpcomingShowMore button:hover {
  text-decoration: underline;
}
.UpcomingShowMore button:hover span {
  transform: translateY(3px);
  text-decoration: underline;
}
/* End GGSIPU Upcoming Important */
/* GGSIPU Ranking  */
.rankingSection {
margin-top: 30px;
  background: #f8fafc;
  font-family: Inter, sans-serif;
}
.rankingCard {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding-bottom: 20px;
}
.rankingTitle {
  font-size: 22px;
  font-weight: 700;
  padding: 20px;
  color: #0f172a;
}
.rankingFilters {
  display: flex;
  gap: 12px;
  padding: 0 20px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.rankingFilters::-webkit-scrollbar {
  display: none;
}
.rankingFilterBtn {
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d1d5db;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.rankingFilterBtn.active {
  border-color: #000;
  font-weight: 600;
}
.rankingBlock {
  padding: 0 20px 28px;
}
.rankingBlockHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rankingBlockHeader img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.rankingBlockHeader h3 {
  font-size: 18px;
  font-weight: 600;
}
.rankingTableWrap {
  overflow-x: auto;
  border-radius: 14px;
  scrollbar-width: none;
}
.rankingTableWrap::-webkit-scrollbar {
  display: none;
}
.rankingTable {
  width: 100%;
  border-collapse: collapse;
}
.rankingTable thead {
  background: #007075;
  color: #fff;
}
.rankingTable th {
  padding: 12px;
  font-size: 14px;
  text-align: center;
}
.rankingTable th:first-child,
.rankingTable td:first-child {
  text-align: left;
}
.rankingTable td {
  padding: 12px;
  font-size: 14px;
  color: #374151;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
/* End GGSIPU Ranking  */
/* GGSIPU VS Other College's */
.vsSection {
  margin-top: 30px;
}
.vsCard {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.vsTitle {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}
.vsTableWrap {
  overflow-x: auto;
}
.vsTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}
.vsTable thead tr {
  background: #007075;
  color: #ffffff;
}
.vsTable thead th {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.vsTable thead th:first-child {
  text-align: left;
  border-top-left-radius: 16px;
}
.vsTable thead th:last-child {
  border-top-right-radius: 16px;
  border-right: none;
}
.vsTable tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.vsTable tbody td {
  padding: 14px 16px;
  font-size: 15px;
  color: #111827;
  text-align: center;
}
.vsTable tbody td:first-child {
  font-weight: 600;
  text-align: left;
}
.vsTable tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
.vsTable tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}
/* End GGSIPU VS Other College's */
/* Rating */
.opinionSection {
  margin-top: 30px;
  font-family: Inter, sans-serif;
}
.opinionCard {
  background: #007075;
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(63, 139, 220, 0.35);
}
.opinionImage img {
  height: 160px;
  object-fit: contain;
}
.opinionContent {
  flex: 1;
  text-align: center;
}
.opinionTitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.opinionSubtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 12px;
}
.opinionStars {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.opinionStar {
  font-size: 34px;
  color: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.opinionStar:hover {
  transform: scale(1.15);
  color: #fbbf24;
}
.opinionReviewBox {
  background: #f4f8ff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 18px;
}
.opinionReviewBox p {
  text-align: center;
  font-size: 16px;
  color: #334155;
  margin-bottom: 16px;
}
.opinionInputRow {
  display: flex;
  gap: 12px;
}
.opinionInputRow input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #c7d2fe;
  font-size: 15px;
}
.opinionInputRow button {
  background: #007075;
  color: #ffffff;
  border: none;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.opinionInputRow button:hover {
  background: #007075;
}
@media (max-width: 768px) {
  .opinionCard {
    flex-direction: column;
    text-align: center;
  }
  .opinionImage img {
    height: 120px;
  }
  .opinionTitle {
    font-size: 22px;
  }
  .opinionStar {
    font-size: 26px;
  }
  .opinionInputRow {
    flex-direction: column;
  }
}
/* End Rating */
/* FAQ */
.qa-section {
  margin-top: 30px;
  font-family: Inter, sans-serif;
}
.qa-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
.qa-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.qa-badge {
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.qa-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.qa-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}
.qa-input-box {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: text;
}
.qa-input-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qa-icon {
  color: #ff6b57;
  display: flex;
  align-items: center;
}
.qa-input-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}
.qa-placeholder {
  font-size: 14px;
  color: #6b7280;
  margin-top: 8px;
}
.qa-underline {
  margin-top: 6px;
  border-bottom: 1px solid #e5e7eb;
}
.qa-modal {
  display: none;
}
.qa-modal.is-open {
  display: flex;
}
/* FAQ Modal */
.qa-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.qa-modal.is-open {
  display: flex;
}
.qa-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: qaScaleIn 0.25s ease;
}
.qa-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
  color: #9ca3af;
}
.qa-modal-close:hover {
  color: #111827;
}
.qa-modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.qa-modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}
.qa-modal-header span {
  color: #007075;
}
.qa-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qa-form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #374151;
}
.qa-form-group input,
.qa-form-group textarea,
.qa-form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
}
.qa-form-group textarea {
  height: 110px;
  resize: none;
}
.qa-form-group input:focus,
.qa-form-group textarea:focus,
.qa-form-group select:focus {
  border-color: #007075;
}
.qa-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.qa-btn-outline {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
}
.qa-btn-primary {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: #007075;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
@keyframes qaScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* End FAQ Modal */
/* End FAQ */
/* Useful Links */
.useful-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  padding: 24px;
  margin-top: 30px;
}
.useful-title {
  font-size: 24px;
  font-weight: 750;
  color: #050607;
  margin-bottom: 24px;
}
.useful-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.useful-block {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.useful-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.useful-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.useful-left {
  left: 0;
  right: auto;
  display: none;
}
.useful-right {
  right: 0;
}
.useful-scroll {
  padding: 0 36px;
}
.useful-scroll::-webkit-scrollbar {
  display: none;
}
.useful-row {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  min-width: max-content;
}
.useful-row a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  white-space: nowrap;
}
.useful-row a:hover {
  color: #007075;
  text-decoration: underline;
}
.useful-arrow {
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.useful-arrow:hover {
  background: #f3f4f6;
}
/* End Useful Links */
/* Right Sidebar */
/* Get Started */
.right-cta-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #000102;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}
.right-cta-header {
  background: #007075;
  color: #ffffff;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
}
.right-cta-body {
  padding: 20px;
  text-align: center;
}
.right-cta-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.right-cta-body p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}
.right-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.right-btn.outline {
  background: #ffffff;
  border: 2px solid #0f2a44;
  color: #007075;
}
.right-btn.brochure {
  background: #f47062;
  color: #ffffff;
  border: none;
}
.right-btn.apply {
  background: #007075;
  color: #ffffff;
  border: none;
}
.right-btn:hover {
  opacity: 0.9;
}
.right-btn .arrow {
  margin-left: 6px;
  font-weight: 700;
}
/* End Get Started */
/* College Predictor */
/* Right sidebar wrapper */
.predictor-banner {
  display: block;
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.predictor-banner img {
  width: 100%;
  display: block;
}
.predictor-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
/* End College Predictor */
/* Gallery */
.right-gallery-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
  margin-top: 20px;
}
.right-gallery-header {
  background: #007075;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 18px;
  font-weight: 700;
}
.right-gallery-body {
  padding: 16px;
}
.gallery-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-image-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}
.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }
.gallery-viewall {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1.5px solid #3b82f6;
  border-radius: 10px;
  color: #007075;
  font-weight: 600;
  text-decoration: none;
}
/* End Gallery */
/* News & Updates */
.right-news-wrapper {
  width: 326px;
  margin-top: 20px;
}
.right-news-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  font-family: Inter, sans-serif;
}
.right-news-header {
  background: #007075;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}
.right-news-title {
  font-size: 16px;
  font-weight: 700;
}
.right-news-icon {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}
.right-news-body {
  padding: 16px;
}
.right-news-heading {
  font-size: 16px;
  font-weight: 550;
  color: #007075;
  line-height: 1.45;
}
.right-news-item a {
  text-decoration: none;
}
.right-news-heading:hover {
  text-decoration: none;
}
.right-news-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
}
.right-news-date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.right-news-date svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.right-news-author {
  color: #007075;
  font-weight: 500;
}
.right-news-footer {
  padding: 14px 16px 18px;
}
.right-news-footer a {
  text-decoration: none;
}
.right-news-footer a:hover {
  text-decoration: none;
}
.right-news-btn {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #2563eb;
  color: #007075;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.right-news-btn:hover {
  background: #f0f8ff;
}
.right-news-btn,
.right-news-btn:hover {
  text-decoration: none;
}
/* End News & Updates */
/* Review */
.right-review-wrapper {
  width: 100%;
  margin-top: 20px;
}
.right-review-link {
  display: block;
  text-decoration: none;
}
.right-review-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.right-review-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
/* End Review */
/* Top Courses */
.right-top-courses-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  overflow: hidden;
  font-family: Inter, sans-serif;
  margin-top: 20px;
}
.right-top-courses-header {
  background: #007075;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.right-top-courses-header svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
}
.right-top-courses-header h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.right-top-courses-item {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.right-top-courses-item:last-child {
  border-bottom: none;
}
.right-course-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  color: #ef4444;
  border: 1px solid #ef4444;
  background: rgba(239,68,68,0.05);
  margin-bottom: 10px;
}
.right-top-courses-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #007075;
  margin: 6px 0 10px;
  line-height: 1.3;
}
.right-top-courses-item a {
  text-decoration: none;
}
.right-top-courses-item a:hover h4 {
  text-decoration: none;
}
.right-course-meta p {
  font-size: 14px;
  color: #444;
  margin: 4px 0;
}
.right-course-meta strong {
  font-weight: 500;
}
.right-course-meta .highlight {
  color: #ef4444;
  font-weight: 600;
}
.right-top-courses-footer {
  padding: 14px;
  display: flex;
  justify-content: center;
}
.right-top-courses-footer button {
  background: #fff;
  border: 1px solid #007075;
  color: #007075;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.right-top-courses-footer button:hover {
  background: #f0f8ff;
}
.right-top-courses-footer a {
  text-decoration: none;
}
/* End Top Courses */
/* Top Government Courses */
.right-govt-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  overflow: hidden;
  font-family: Inter, sans-serif;
  margin-top: 20px;
}
.right-govt-header {
  background: #007075;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.right-govt-header svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
}
.right-govt-header h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.right-govt-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}
.right-govt-item:last-child {
  border-bottom: none;
}
.right-govt-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.right-govt-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.right-govt-logo.text-only {
  font-weight: 700;
  color: #007075;
  font-size: 18px;
}
.right-govt-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #007075;
  margin: 0 0 4px;
  line-height: 1.3;
}
.right-govt-info p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.right-govt-footer {
  padding: 14px;
}
.right-govt-footer button {
  width: 100%;
  background: #007075;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.right-govt-footer button:hover {
  background: #007075;
}
.right-govt-footer a {
  text-decoration: none;
}
/* End Top Government Courses */
/* End Right Sidebar */
/* End Index2 */
/* Index3 */
.EducationCard,
.EducationCard * {
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}
.EducationCard {
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  max-width: 1310px;
  margin: 40px auto;
  overflow: hidden;
  margin-top: 200px;
}
.EducationHeader {
  background: #eef6ff;
  padding: 18px 24px;
}
.EducationHeader h1 {
  font-size: 22px;
  font-weight: 600;
  color: #0f2a44;
  margin: 0;
}
.EducationBody {
  padding: 22px 24px 18px;
  font-size: 14px;
  /* line-height: 1.75; */
  color: #475467;
}
.EducationIntro {
  position: relative;
}
.EducationFade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    #ffffff
  );
}
.EducationReadMoreWrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
.EducationMoreContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.EducationMoreContent.EducationShow {
  max-height: 6000px;
}
.EducationReadLessWrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.EducationToggleBtn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #007075;
  cursor: pointer;
}
.EducationToggleBtn:hover {
  color: #007075;
}
.EducationSection h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d2939;
}
.EducationFaqItem {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.EducationFaqItem summary {
  cursor: pointer;
  font-weight: 600;
  color: #007075;
}
.EducationFaqItem p {
  margin-top: 8px;
}
.EducationHighlightsSection {
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.EducationHighlightsTitle {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}
.EducationHighlightsCard {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.EducationHighlightsTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.EducationHighlightsTable thead th {
  background: #007075;
  color: #ffffff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
}
.EducationHighlightsTable tbody td {
  padding: 14px 16px;
  color: #101828;
  border-top: 1px solid #dcdcdc;
}
.EducationHighlightsTable tbody td:first-child,
.EducationHighlightsTable thead th:first-child {
  border-right: 2px solid #dcdcdc;
}
.EducationHighlightsTable thead th:first-child {
  border-top-left-radius: 10px;
}
.EducationHighlightsTable thead th:last-child {
  border-top-right-radius: 10px;
}
@media (max-width: 768px) {
  .EducationHighlightsTitle {
    font-size: 18px;
  }

  .EducationHighlightsTable {
    font-size: 13px;
  }
}
.EducationCompareSection {
  margin-top: 30px;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.EducationSectionTitle {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}
.EducationSubTitle {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 18px 0 10px;
}
.EducationSectionDesc {
  font-size: 14px;
  color: #475467;
  line-height: 1.7;
  margin-bottom: 16px;
}
.EducationTableCard {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.EducationTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.EducationTable thead th {
  background: #007075;
  color: #ffffff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
}
.EducationTable tbody td {
  padding: 14px 16px;
  color: #101828;
  border-top: 1px solid #dcdcdc;
}
.EducationTable thead th:first-child,
.EducationTable tbody td:first-child {
  border-right: 2px solid #dcdcdc;
}
.EducationTable thead th:first-child {
  border-top-left-radius: 10px;
}
.EducationTable thead th:last-child {
  border-top-right-radius: 10px;
}
.EducationInsight {
  font-size: 14px;
  color: #344054;
  margin: 10px 0 20px;
}
.EducationInsight strong {
  font-weight: 600;
  color: #101828;
}
@media (max-width: 768px) {
  .EducationSectionTitle {
    font-size: 18px;
  }
  .EducationSubTitle {
    font-size: 16px;
  }
  .EducationTable {
    font-size: 13px;
  }
}
.EducationTrendingSection {
  margin-top: 30px;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.EducationTableCard {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.EducationTrendingTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.EducationTrendingTable thead th {
  background: #007075;
  color: #ffffff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}
.EducationTrendingTable tbody td {
  padding: 14px 16px;
  color: #101828;
  vertical-align: top;
  border-top: 1px solid #dcdcdc;
}
.EducationTrendingTable thead th:not(:last-child),
.EducationTrendingTable tbody td:not(:last-child) {
  border-right: 2px solid #dcdcdc;
}
.EducationTrendingTable thead th:first-child {
  border-top-left-radius: 10px;
}
.EducationTrendingTable thead th:last-child {
  border-top-right-radius: 10px;
}
@media (max-width: 768px) {
  .EducationTrendingTable {
    font-size: 13px;
  }
}
.EducationStateSection {
  margin-top: 30px;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.EducationSectionTitle {
  font-size: 22px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 10px;
}
.EducationStateHeading {
  font-size: 16px;
  font-weight: 700;
  margin: 14px 0 10px;
  color: #000;
}
.EducationSectionDesc {
  font-size: 14px;
  color: #475467;
  line-height: 1.6;
  margin-bottom: 16px;
}
.EducationStateBlock {
  margin-bottom: 22px;
}
.EducationTableCard {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.EducationTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.EducationTable thead th {
  background: #007075;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.EducationTable tbody td {
  padding: 12px 16px;
  color: #101828;
  border-top: 1px solid #dcdcdc;
}
.EducationTable thead th:not(:last-child),
.EducationTable tbody td:not(:last-child) {
  border-right: 2px solid #dcdcdc;
}
.EducationTable thead th:first-child {
  border-top-left-radius: 10px;
}
.EducationTable thead th:last-child {
  border-top-right-radius: 10px;
}
.EducationViewAllLink {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #007075;
  text-decoration: none;
  font-weight: 500;
}
.EducationViewAllLink:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .EducationTable {
    font-size: 13px;
  }
}
.FilterBar {
  max-width: 1310px;
  margin: 0 auto 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.FilterCountCard {
  flex: 0 0 300px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.15);
  font-size: 14px;
}
.FilterCountNumber {
  color: #007075;
  font-weight: 600;
}
.FilterActions {
  flex: 1;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ActiveFilters {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ActiveFiltersTitle {
  font-weight: 600;
  font-size: 14px;
}
.FilterChips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.FilterChip {
  background: rgba(248,113,113,0.25);
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.FilterChipClose {
  font-size: 14px;
  line-height: 1;
}
.SortDropdown {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.SortArrow {
  font-size: 14px;
}
@media (max-width: 768px) {
  .FilterBar {
    flex-direction: column;
    align-items: stretch;
  }
  .FilterCountCard,
  .FilterActions {
    width: 100%;
  }
  .FilterActions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .SortDropdown {
    align-self: flex-end;
  }
}
body {
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.FilterBodyContainer {
  max-width: 1310px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.FilterBodySidebar {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.15);
  width: 300px;
  height: auto;
}
.FilterBodyHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 16px;
}
.FilterBodyHeader a {
  color: #007075;
  font-size: 14px;
  text-decoration: none;
}
.FilterBodyBlock {
  margin-bottom: 22px;
}
.FilterBodyBlockTitle {
  font-weight: 600;
  margin-bottom: 8px;
}
.FilterBodySearch {
  position: relative;
}
.FilterBodySearch input {
  width: 90%;
  padding: 8px 10px 8px 34px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
  font-size: 14px;
}
.FilterSearchIcon {
  position: absolute;
  left: 10px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #64748b;
  pointer-events: none;
}
.FilterBodyCheckbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.FilterBodyResults {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  margin-left: 45px;
}
.FilterBodyCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.15);
}
.FilterBodyCardTop {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.FilterBodyCollegeLeft {
  display: flex;
  gap: 14px;
}
.FilterBodyCollegeLogo img {
  width: 60px;
  height: 60px;
}
.FilterBodyCollegeAvatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.FilterBodyCollegeInfo h3 {
  margin: 0;
  font-size: 18px;
}
.FilterBodyCollegeTitle {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}
.FilterBodyCollegeTitle:hover {
  text-decoration: underline;
}
.FilterBodyHighlight {
  text-decoration: none;
}
.FilterBodyMeta {
  font-size: 14px;
  color: #475569;
}
.FilterBodyStat {
  font-size: 14px;
  margin-top: 6px;
}
.FilterBodyHighlight {
  color: #ef4444;
  font-weight: 600;
}
.FilterBodyActions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.FilterBodyActions a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.FilterBodyBtnOutline {
  border: 1px solid #1e3a8a;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.FilterBodyBtnOrange {
  background: #fb7185;
  border: none;
  color: #ffffff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.FilterBodyBtnDark {
  background: #007075;
  border: none;
  color: #ffffff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.FilterBodyActions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.BtnIcon {
  width: 16px;
  height: 16px;
}
.ApplyArrow {
  font-weight: 700;
  margin-left: 5px;
}
.FilterBodyLinks {
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  font-size: 14px;
}
.FilterBodyLinks a {
  color: #007075;
  text-decoration: none;
  margin: 0 4px;
}
@media (max-width: 992px) {
  .FilterBodyContainer {
    grid-template-columns: 1fr;
  }

  .FilterBodyActions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.FilterBodyScrollableList {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 6px;
}
.FilterBodyScrollableList::-webkit-scrollbar {
  width: 6px;
}
.FilterBodyScrollableList::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}
.FilterBodyScrollableList::-webkit-scrollbar-track {
  background: transparent;
}
/* Index3 */
/* Index4 */
/* Hero Section */
.diploma-header {
  width: 100%;
  padding-top: 160px;
  padding-left: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.diploma-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 60px;
  margin-bottom: 12px;
}
.diploma-crumb {
  text-decoration: none;
}
.diploma-crumb.muted {
  color: #9ca3af;
}
.diploma-crumb.active,
.diploma-crumb.current {
  color: #007075;
}
.diploma-sep {
  color: #6b7280;
}
.diploma-header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px 12px;
  gap: 20px;
}
.diploma-header-desktop h1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}
.diploma-header-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.diploma-btn-outline {
  height: 40px;
  padding: 0 16px;
  border: 2px solid #007075;
  background: transparent;
  color: #007075;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.diploma-btn-outline:hover {
  background: #eff6ff;
}
.diploma-btn-primary {
  height: 40px;
  padding: 0 20px;
  background: #007075;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.diploma-btn-primary:hover {
  background: #007075;
}
.diploma-arrow {
  margin-left: 6px;
}
.diploma-header-mobile {
  display: none;
  padding: 0 16px;
}
.diploma-title-mobile {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .diploma-breadcrumb {
    padding-left: 16px;
  }
  .diploma-header-desktop {
    display: none;
  }
  .diploma-header-mobile {
    display: block;
  }
  .diploma-header-actions {
    justify-content: space-between;
  }
}
/* End Hero Section */
/* Tab */
.overview-sticky-tabs {
  position: sticky;
  top: 64px;
  z-index: 9;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.overview-tabs-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
    padding-left: 90px;
}
.overview-tabs-nav {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.overview-tabs-nav::-webkit-scrollbar {
  display: none;
}
.overview-tab {
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition: all 0.2s ease;
}
.overview-tab a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #007075;
  white-space: nowrap;
}
.overview-active {
  background: #007075;
  border-color: #007075;
}
.overview-active a {
  color: #ffffff;
}
.overview-tab:not(.overview-active):hover {
  background: #f9fafb;
}
@media (max-width: 768px) {
  .overview-tabs-inner {
    padding: 12px 16px;
  }
  .overview-tab a {
    font-size: 13px;
    padding: 6px 14px;
  }
}
/* End Tab */
/* Updated */
.overview-body-update {
  margin-bottom: 12px;
}
.overview-body-update p {
  font-size: 14px;
  color: #374151;
  margin: 0;
}
.overview-body-update strong {
  font-weight: 700;
  color: #000;
}
.overview-body-update a {
  color: #007075;
  font-weight: 600;
  text-decoration: none;
  margin-left: 2px;
}
.overview-body-update a:hover {
  text-decoration: underline;
}
/* End Updated */
/* Overview definition */
#highlights2 {
  font-size: 22px;
  font-weight: 700;
  color: #060707;
  margin-bottom: 6px;
}
#highlights2 + p {
  font-size: 15px;
  line-height: 1.7;
  color: #040505;
  margin: 10px 0 1px;
}
.Occupation-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 24px;
  margin-bottom: 28px;
}
.Occupation-body {
  font-family: Arial, sans-serif;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
}
.Occupation-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 26px 0 12px;
}
.Occupation-toc {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  margin: 22px 0;
  overflow: hidden;
  font-family: Inter, sans-serif;
}
.Occupation-toc h3 {
  background: #007075;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 16px;
  margin: 0;
}
.Occupation-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.Occupation-toc li {
  border-bottom: 1px solid #e5e7eb;
}
.Occupation-toc li a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #007075;
  text-decoration: none;
}
.Occupation-toc li a:hover {
  background: #f5f9ff;
  text-decoration: underline;
}
.Occupation-toc-btn {
  background: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #007075;
  cursor: pointer;
  text-align: left;
}
.Occupation-toc li:last-child {
  border-bottom: none;
}
.Occupation-toc.collapsed li:nth-child(n+6) {
  display: none;
}
.Occupation-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
}
.Occupation-table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
}
.Occupation-table-wrap th {
  background: #007075;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.Occupation-table-wrap th:last-child {
  border-right: none;
}
.Occupation-table-wrap td {
  font-size: 14px;
  color: #007075;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  font-weight: 400;
  background: #fff;
}
.Occupation-table-wrap td:last-child {
  border-right: none;
}
.Occupation-table-wrap tr:last-child td {
  border-bottom: none;
}
.Occupation-table-wrap td:first-child {
  width: 28%;
  font-weight: 400;
  background: #fff;
}
.syllabus-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
}
.syllabus-table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}
.syllabus-table-wrap th {
  background: #007075;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.syllabus-table-wrap th:last-child {
  border-right: none;
}
.syllabus-table-wrap td {
  font-size: 14px;
  color: #007075;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: middle;
}
.syllabus-table-wrap td:last-child {
  border-right: none;
}
.syllabus-table-wrap tr:last-child td {
  border-bottom: none;
}
.syllabus-table-wrap td:first-child {
  width: 20%;
  white-space: nowrap;
  font-weight: 500;
  background: #ffffff;
}
.syllabus-table-wrap td:nth-child(2) {
  width: 84%;
}
.Occupation-faq {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.Occupation-faq summary {
  font-weight: 600;
  cursor: pointer;
}
.Occupation-faq p {
  margin-top: 8px;
  font-size: 14px;
}
/* End Overview definition */
/* Diploma in Occupational Therapy Major Events */
.important-wrapper {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.important-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #007075;
}
.important-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.important-tab {
  padding: 8px 16px;
  border: 2px solid #d1d5db;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.important-tab.active {
  border-color: #000;
}
.important-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 30px;
}
.important-table-wrap {
  overflow-x: auto;
}
.important-table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.important-table-wrap th {
  background: #007075;
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
}
.important-table-wrap td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}
.important-table-wrap td:last-child,
.important-table-wrap th:last-child {
  border-right: none;
}
.important-table-wrap tr:last-child td {
  border-bottom: none;
}
.important-badge {
  display: inline-block;
  margin-left: 10px;
  background: #007075;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}
/* End Diploma in Occupational Therapy Major Events */
/* Exam Accepting */
.accepting-section {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  font-family: Poppins, sans-serif;
  margin-top: 20px;
}
.accepting-container {
  max-width: 1200px;
  margin: auto;
}
.accepting-title {
  font-size: 20px;
  font-weight: 600;
  color: #007075;
  margin-bottom: 16px;
}
.accepting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
}
.accepting-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.accepting-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.accepting-header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}
.accepting-header a {
  font-size: 16px;
  font-weight: 600;
  color: #007075;
  text-decoration: none;
}
.accepting-tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  font-size: 14px;
  margin-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.accepting-tags::-webkit-scrollbar {
  display: none;
}
.accepting-tags span {
  white-space: nowrap;
}
.tag2 {
  padding: 2px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
}
.tag2.online { background: #f47062; }
.tag2.offline { background: #f47062; }
.accepting-info {
  font-size: 14px;
  margin-bottom: 10px;
}
.accepting-info div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.red {
  color: #f47062;
}
.accepting-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  border-top: 1px solid #e5e7eb;
  padding-top: 8px;
  font-size: 13px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.accepting-links::-webkit-scrollbar {
  display: none;
}
.accepting-links a {
  color: #007075;
  text-decoration: none;
  border-right: 1px solid #9ca3af;
  padding-right: 8px;
  white-space: nowrap;
}
.accepting-links a:last-child {
  border-right: none;
}
.accepting-btn {
  margin-top: 14px;
  background: #007075;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
/* End Exam Accepting */
/* Explore Popular After 10th Diploma Courses */
.popular-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-family: Poppins, sans-serif;
}
.popular-container {
  max-width: 1200px;
  margin: auto;
}
.popular-title {
  font-size: 20px;
  font-weight: 700;
  color: #007075;
  margin-bottom: 20px;
}
.popular-list {
  display: grid;
  gap: 18px;
}
.popular-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.popular-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}
.popular-course {
  font-size: 18px;
  font-weight: 600;
  color: #007075;
  text-decoration: none;
}
.popular-bookmark {
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.popular-bookmark img {
  width: 18px;
  filter: grayscale(100%);
}
.popular-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.popular-badge {
  background: #f47062;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.popular-divider {
  width: 1px;
  height: 14px;
  background: #969696;
}
.popular-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
  align-items: center;
}
.popular-info .label {
  font-size: 13px;
  color: #969696;
}
.popular-info .value {
  font-size: 14px;
  font-weight: 600;
}
.red {
  color: #f47062;
}
.popular-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.popular-consult {
  border: 2px solid #007075;
  background: transparent;
  color: #007075;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.popular-apply {
  background: #007075;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  cursor: pointer;
    display: flex;
  align-items: center;
  gap: 6px;
}
.popular-arrow {
  font-size: 18px;
  line-height: 1;
}
.popular-info > div:not(.popular-actions) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .popular-info {
    grid-template-columns: 1fr;
  }
  .popular-actions {
    justify-content: space-between;
  }
}
/* End Explore Popular After 10th Diploma Courses */
/* End Index4 */
/* About */
/* Hero Section */
.education-hero {
  width: 100%;
  background: linear-gradient(
    95.69deg,
    rgb(0,112,117),
    rgba(0,112,117, 0.85),
    rgba(234, 234, 234, 0.04)
  );
  margin-top: 110px;
  overflow: hidden;
}
.education-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}
.education-content {
  width: 70%;
  color: #ffffff;
}
.education-title {
  font-size: 43px;
  line-height: 1.25;
  margin-bottom: 24px;
  margin-top: 80px;
}
.education-title span {
  color: #ff6b4a;
}
.education-description {
  font-size: 18px;
  line-height: 1.8;
  color: #d1d5db;
}
.education-image-wrap {
  width: 50%;
  display: flex;
  justify-content: center;
}
.education-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 110px;
}
@media (max-width: 1024px) {
  .education-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .education-content,
  .education-image-wrap {
    width: 100%;
  }
  .education-title {
    font-size: 38px;
  }
}
@media (max-width: 640px) {
  .education-hero {
    padding: 60px 0;
  }
  .education-title {
    font-size: 30px;
  }
  .education-description {
    font-size: 16px;
  }
}
/* End Hero Section */
/* Number Section */
.about-education-stats {
  width: 100%;
  background: #ffffff;
  padding: 20px 0;
}
.about-education-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-education-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.about-education-item {
  padding: 24px 10px;
  text-align: center;
  position: relative;
}
.about-education-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #007075;
}
.about-education-number {
  display: block;
  font-size: 32px;
  font-weight: 550;
  color: #ff6b4a;
}
.about-education-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #ff6b4a;
}
@media (max-width: 1024px) {
  .about-education-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-education-item:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .about-education-grid {
    grid-template-columns: repeat(2, 1fr);
    border: none;
  }
  .about-education-item::after {
    display: none;
  }
  .about-education-number {
    font-size: 26px;
  }
}
/* End Number Section */
/* Here's What Our Platform Offers */
.about-offers-section {
  background: #007075;
  padding: 80px 0;
  overflow: hidden;
}
.about-offers-container {
  margin: 0 auto;
  padding: 0 24px;
}
.about-offers-heading {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.about-offers-slider-wrapper {
  position: relative;
}
.about-offers-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-offers-arrow-left {
  left: 10px;
  display: none;
}
.about-offers-arrow-right {
  right: 10px;
}
.about-offers-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  margin-right: 20px;
  margin-left: 20px;
}
.about-offers-slider::-webkit-scrollbar {
  display: none;
}
.about-offers-card {
  min-width: 350px;
  max-width: 350px;
  background: linear-gradient(
    135deg,
    #fde6e0,
    #eaf2f8,
    #d8efff
  );
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.about-offers-card {
  position: relative;
  z-index: 1;
}
.about-offers-icon {
  background: #ffffff;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.about-offers-icon img {
  width: 40px;
  height: 40px;
}
.about-offers-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #007075;
}
.about-offers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.about-offers-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}
.about-offers-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007075;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-offers-heading {
    font-size: 26px;
  }
  .about-offers-card {
    min-width: 300px;
    max-width: 300px;
  }
}
/* End Here's What Our Platform Offers */
/* Form */
.about-form-wrapper {
  padding: 40px 0;
}
.about-form-card {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(64, 142, 224, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.about-form {
  width: 100%;
}
.about-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.about-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.about-form-label span {
  color: #ef4444;
}
.about-form-input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.about-form-input:focus,
.about-form-textarea:focus {
  border-color: #408ee0;
}
.about-form-textarea {
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  resize: none;
  font-size: 14px;
}
.about-form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.about-form-submit {
  background: #ff6b57;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  height: 44px;
  width: 180px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.about-form-submit:hover {
  background: #ff5a45;
}
@media (max-width: 768px) {
  .about-form-grid {
    grid-template-columns: 1fr;
  }
  .about-form-card {
    padding: 20px;
    border-radius: 14px;
  }
}
/* End Form */
/* End About */
/* Contact Us */
.contact-section-wrapper {
  background: #ffffff;
  padding: 40px 20px;
  margin-top: 150px;
}
.contact-section-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.contact-section-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-section-image {
  max-width: 220px;
  width: 100%;
}
.contact-section-heading h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 16px;
  color: #000;
}
.contact-section-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  color: #007075;
}
.contact-section-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-section-icon {
  font-size: 20px;
  margin-top: 4px;
}
.contact-section-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-section-item a,
.contact-section-item p {
  font-size: 14px;
  color: #16324f;
  text-decoration: none;
}
@media (max-width: 900px) {
  .contact-section-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-section-right {
    grid-template-columns: 1fr;
  }
  .contact-section-heading h2 {
    font-size: 22px;
  }
}
/* Map */
  .map-section {
    padding: 40px 16px;
    background: #f9fafb;
  }
  .map-wrapper {
    max-width: 1270px;
    margin: 0 auto;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: #e5e7eb;
  }
  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  @media (max-width: 768px) {
    .map-wrapper {
      height: 260px;
      border-radius: 12px;
    }
  }
/* End Map */

/* End Contact Us */


/* Counselling Modal */
.counselling-modal {
  border-radius: 16px;
}
.brand-blue {
  color: #163a5f;
}
.kickstart-badge {
  background: #007075;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.course-type-toggle {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px;
}
.course-type-toggle input {
  display: none;
}
.course-type-toggle label {
  padding: 6px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  color: #007075;
}
.course-type-toggle input:checked + label {
  background: linear-gradient(135deg, #ff7a66, #ff6f61);
  color: #fff;
}
.submit-btn2 {
  background: #007075;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
}
.submit-btn2:hover {
  background: #007075;
  color: #fff;
}
.modal-body a {
  color: #007075;
  text-decoration: none;
}
.modal-body a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .counselling-modal {
    border-radius: 14px;
  }
  .kickstart-badge {
    padding: 5px 14px;
    font-size: 12px;
  }
  .course-type-toggle label {
    padding: 5px 16px;
    font-size: 14px;
  }
  .submit-btn2 {
    font-size: 16px;
    padding: 11px;
  }
}
@media (max-width: 768px) {
  .counselling-modal {
    border-radius: 12px;
    width: 95%;
    margin: 0 auto;
  }
  .modal-content {
    border-radius: 12px;
    overflow: hidden;
  }
  .kickstart-badge {
    padding: 4px 12px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .modal-body {
    padding: 20px 15px;
  }
  .modal-body h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .modal-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .modal-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .modal-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .course-type-toggle {
    display: flex;
    width: 100%;
    margin: 15px 0;
  }
  .course-type-toggle label {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
  .submit-btn2 {
    font-size: 16px;
    padding: 12px;
    width: 100%;
    margin-top: 10px;
  }
  .modal-body .form-control,
  .modal-body .form-select {
    font-size: 14px;
    padding: 10px 12px;
    height: auto;
    margin-bottom: 12px;
  }
  .modal-body .row {
    margin: 0 -5px;
  }
  .modal-body .col-6 {
    padding: 0 5px;
  }
  .modal-body .form-check {
    margin-bottom: 10px;
  }
  .modal-body .form-check-label {
    font-size: 13px;
  }
  .modal-body a {
    font-size: 13px;
  }
  .modal-footer {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  }
  .modal-footer .btn {
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .counselling-modal {
    border-radius: 10px;
  }
  .modal-content {
    border-radius: 10px;
  }
  .kickstart-badge {
    padding: 3px 10px;
    font-size: 10px;
  }
  .modal-body {
    padding: 18px 12px;
  }
  .modal-body h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .modal-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .modal-body h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .modal-body p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .course-type-toggle {
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    gap: 8px;
  }
  .course-type-toggle label {
    flex: 0 0 calc(50% - 4px);
    background: #f1f5f9;
    border-radius: 8px;
    padding: 10px 5px;
    font-size: 13px;
    white-space: normal;
    word-break: break-word;
  }
  .course-type-toggle input:checked + label {
    background: linear-gradient(135deg, #ff7a66, #ff6f61);
  }
  .submit-btn2 {
    font-size: 15px;
    padding: 12px;
  }
  .modal-body .form-control,
  .modal-body .form-select {
    font-size: 13px;
    padding: 8px 10px;
    margin-bottom: 10px;
  }
  .modal-body .form-check-label {
    font-size: 12px;
  }
  .modal-body a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .counselling-modal {
    border-radius: 8px;
  }
  .modal-content {
    border-radius: 8px;
  }
  .kickstart-badge {
    padding: 3px 8px;
    font-size: 9px;
    border-radius: 16px;
  }
  .modal-body {
    padding: 15px 10px;
  }
  .modal-body h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .modal-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .modal-body h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .modal-body p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .course-type-toggle label {
    padding: 8px 4px;
    font-size: 12px;
  }
  .submit-btn2 {
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
  }
  .modal-body .form-control,
  .modal-body .form-select {
    font-size: 12px;
    padding: 8px 8px;
    margin-bottom: 8px;
    border-radius: 6px;
  }
  .modal-body .form-check {
    margin-bottom: 8px;
  }
  .modal-body .form-check-label {
    font-size: 11px;
  }
  .modal-body a {
    font-size: 11px;
  }
  .brand-blue {
    font-size: 14px;
  }
  .modal-footer {
    padding: 12px;
  }
  .modal-footer .btn {
    padding: 8px;
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .modal-body h2 {
    font-size: 18px;
  }
  .modal-body h3 {
    font-size: 15px;
  }
  .modal-body p {
    font-size: 11px;
  }
  .course-type-toggle {
    gap: 5px;
  }
  .course-type-toggle label {
    flex: 0 0 100%;
    font-size: 12px;
    padding: 10px 5px;
  }
  .submit-btn2 {
    font-size: 13px;
    padding: 10px;
  }
  .modal-body .form-check-label {
    font-size: 10px;
  }
  .modal-body a {
    font-size: 10px;
    display: inline-block;
    margin-top: 5px;
  }
  .modal-footer .btn {
    font-size: 12px;
    padding: 8px;
  }
}
@media (max-width: 320px) {
  .modal-body {
    padding: 12px 8px;
  }
  .modal-body h2 {
    font-size: 16px;
  }
  .modal-body h3 {
    font-size: 14px;
  }
  .modal-body p {
    font-size: 10px;
  }
  .kickstart-badge {
    font-size: 8px;
    padding: 2px 6px;
  }
  .submit-btn2 {
    font-size: 12px;
    padding: 8px;
  }
  .brand-blue {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .modal-dialog {
    max-width: 90%;
    margin: 20px auto;
  }
  .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .course-type-toggle label {
    padding: 6px 12px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .modal-dialog {
    max-width: 700px;
    margin: 30px auto;
  }
  .modal-body {
    padding: 25px;
  }
  .course-type-toggle label {
    padding: 6px 20px;
    font-size: 15px;
  }
  .submit-btn2 {
    font-size: 17px;
    padding: 12px 20px;
    width: auto;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .course-type-toggle label,
  .submit-btn2,
  .modal-footer .btn,
  .modal-body a,
  .modal-body .form-check-input {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-body .form-check-input {
    min-height: 20px;
    min-width: 20px;
  }
  .modal-body .form-check-label {
    padding-left: 8px;
    line-height: 1.4;
  }
}
/* @supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .modal-dialog {
      margin-left: max(10px, env(safe-area-inset-left));
      margin-right: max(10px, env(safe-area-inset-right));
      margin-bottom: max(10px, env(safe-area-inset-bottom));
    }
    .modal-body {
      padding-left: max(15px, env(safe-area-inset-left));
      padding-right: max(15px, env(safe-area-inset-right));
      padding-bottom: max(15px, env(safe-area-inset-bottom));
    }
  }
} */
@media (max-width: 768px) {
  .modal-body {
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 360px) {
  .course-type-toggle label {
    font-size: 11px;
    padding: 8px 2px;
  }
  .modal-body h2 {
    font-size: 16px;
  }
  .modal-body p {
    font-size: 10px;
  }
  .brand-blue {
    font-size: 11px;
  }

  .submit-btn2 {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .modal-open .modal {
    padding-right: 0 !important;
  }
}
/* Counselling Modal */

