:root {
    --primary-color: #6C5CE7;
    --text-color: #2D3436;
    --light-bg: #F8F9FA;
    --secondary-color: #1f8bc3;
    --tertiary-color: #fdc82f;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/webfonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/webfonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* --- Responsive Transparent Navbar & Mega Menu --- */
.rg-navbar {
    width: 100%;
    background: white;
    position: relative;
    top: 0;
    left: 0;
    z-index: 30;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
    /* backdrop-filter: blur(6px); */
  }
  .rg-navbar-container {
    max-width: 1466px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 70px;
  }
  .rg-navbar-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
  }
  .rg-navbar-logo img{
    height: 50px;
    width: auto;
  }
  .rg-navbar-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
  .rg-navbar-hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .rg-navbar-hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .rg-navbar-close {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .rg-navbar-toggle.menu-open .rg-navbar-hamburger {
    opacity: 0;
  }
  .rg-navbar-toggle.menu-open .rg-navbar-close {
    display: flex !important;
    opacity: 1;
  }
  
  .rg-navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .rg-navbar-menu li a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 8px;
    transition: all 0.3s ease;
    position: relative;
  }
  .rg-navbar-menu li a:hover {
    color: var(--primary-color) !important;
  }
  .rg-dropdown-menu a:hover {
    color: var(--primary-color) !important;
    padding-left: 30px !important;
  }
  
  .rg-navbar-has-mega {
    position: relative;
  }
  .rg-mega-menu {
    display: none;
    position: absolute;
    left: 160%;
    top: 130%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    padding: 32px 24px 24px 24px;
    min-width: 900px;
    min-height: 140px;
    z-index: 100;
    transition: 0.2s;
  }
  .rg-navbar-has-mega:hover .rg-mega-menu,
  .rg-navbar-has-mega:focus-within .rg-mega-menu {
    display: block;
  }
  /* .rg-mega-menu-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 40px;
  } */
  .rg-mega-menu-content img {
    height: 90px;
    width: 100px;
    object-fit: contain;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  }
  .rg-mega-menu-content img:hover {
    transform: scale(1.08);
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
  
  .nav-item.dropdown .fa-chevron-down {
    margin-left: 6px;
    font-size: 13px;
    transition: transform 0.2s;
  }
  
  .nav-item.dropdown.show .fa-chevron-down,
  .nav-item.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav-item.dropdown ul li a{
    color: var(--text-color) !important;
    font-size: 14px !important;
    padding: 12px 17px;
  }
  .nav-item.dropdown ul li a:hover{
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  .nav-item.dropdown {
    position: relative;
  }
  
  .nav-item.dropdown .dropdown-menu {
    top: 100%;
    left: 0;
    margin-top: -2px !important;
    pointer-events: auto;
    min-width: 200px;
    position: absolute;
    z-index: 1000;
    padding-top: 0 !important;
  }
  .nav-auth {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-item.signup-btn {
    list-style: none;
  }

  .nav-item.signup-btn .nav-link {
    border: 1px solid #5C50E3;
    border-radius: 5px;
    padding: 5px 22px;
    transition: all 0.3s;
    white-space: nowrap;
    background: #5C50E3;
    color: white;
    font-size: 14px;
  }

  .nav-item.signup-btn .nav-link:hover {
    background: white;
    border: 1px solid #5C50E3;
    color: #5C50E3;
  }
  /* Responsive Styles */
  @media (max-width: 900px) {
    .rg-navbar-container { padding: 0 10px; }
    .rg-mega-menu { min-width: 90vw; }
    .rg-mega-menu-content { gap: 16px; }
  }
  @media (max-width: 992px) {
    .rg-navbar-toggle {
      display: flex;
    }
    .rg-navbar-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100vw;
      background: white;
      padding: 24px 0 0 0;
      z-index: 100;
      gap: 0;
    }
    .rg-navbar-menu.rg-navbar-menu-open { display: flex; }
    .rg-navbar-menu li { width: 100%; text-align: left; }
    .rg-navbar-menu li a { display: block; width: 100%; padding: 16px 24px; color: var(--text-color); }
    .rg-mega-menu {
      position: static;
      transform: none;
      min-width: 0;
      min-height: 0;
      border-radius: 0;
      box-shadow: none;
      padding: 18px 10px;
      background: rgba(255,255,255,0.98);
    }
    .rg-mega-menu-content {
      flex-wrap: wrap !important;
      gap: 10px !important;
      justify-content: flex-start !important;
    }
    .rg-mega-menu-content img { height: 60px; width: 130px; }
    .rg-dropdown-menu {
      position: static;
      min-width: 0;
      box-shadow: none;
      border-radius: 0;
      background: var(--text-color);
      padding: 0;
    }
    .rg-dropdown-menu a {
      color: var(--text-color-dark) !important;
      padding: 14px 24px;
      border-bottom: 1px solid #333;
    }
    .rg-dropdown-menu a:last-child {
      border-bottom: none;
    }
    .nav-auth{
        padding-left: 23px;
        padding-bottom: 20px;
    }
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-top: 0;
        position: relative !important;
        inset: auto !important;
        transform: none !important;
      }
  }
  
  /* Dropdown Chevron Icon */
  .rg-navbar-chevron {
    display: inline-block;
    /* margin-left: 6px; */
    font-size: 14px;
    transition: transform 0.3s;
    /* vertical-align: middle; */
  }
  .rg-navbar-has-mega.open > a .rg-navbar-chevron {
    transform: rotate(180deg);
  }
  
  /* Dropdown menu for Home */
  .rg-navbar-has-dropdown {
    position: relative;
  }
  .rg-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    padding: 12px 0;
    z-index: 101;
    flex-direction: column;
    background: var(--text-color);
  }
  .rg-dropdown-menu a {
    display: block;
    padding: 10px 24px !important;
    color: var(--text-color-dark) !important;
    text-decoration: none;
    font-size: 13px !important;
    transition: background 0.2s, color 0.2s;
  }
  .rg-dropdown-menu a:hover {
    background: var(--text-color);
    color: var(--primary-color);
  }
  .rg-navbar-has-dropdown:hover .rg-dropdown-menu,
  .rg-navbar-has-dropdown.open .rg-dropdown-menu,
  .rg-navbar-has-dropdown:focus-within .rg-dropdown-menu {
    display: flex;
  }
  .rg-navbar-has-dropdown.open > a .rg-navbar-chevron {
    transform: rotate(180deg);
  }
  @media (max-width: 1920px) {
    .rg-navbar-container{
      max-width: 1377px !important;
    }
  }
  @media (max-width: 1600px) {
    .rg-navbar-container{
      max-width: 1371px !important;
    }
  }
  @media (max-width: 1400px) {
    .rg-navbar-container{
      max-width: 1190px !important;
    }
}
@media (max-width: 500px) {
    .rg-navbar-logo img{
        height: 35px !important;
    }
}
/* Navbar End */

/* Register/Login Split Section */
.register-login-section {
  /* width: 100vw; */
  min-height: 100vh;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 0;
}

.register-login-container {
  /* width: 90vw;
  max-width: 1400px;
  min-height: 600px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 8px 40px 0 rgba(0, 60, 180, 0.08); */
  display: flex;
  position: relative;
  overflow: visible;
  margin: 10px 0;
}

.register-login-left {
  background: var(--secondary-color);
  color: #fff;
  flex: 2;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; */
  padding: 160px 50px 0 70px;
  position: relative;
  /* Curved right edge */
  clip-path: ellipse(61% 109% at 34% 17%);
  min-height: 600px;
  overflow: visible;
}

.register-login-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.register-login-subtitle {
  font-size: 1.3rem;
  margin-bottom: 32px;
  color: #e3eaf6;
}

.register-login-btn {
  display: inline-block;
  padding: 10px 36px;
  font-size: 1.2rem;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.register-login-btn:hover {
  background: #fff;
  color: #0357b3;
}

.register-login-illustration {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  right: 652px;
  bottom: 88px;
  z-index: 10;
  pointer-events: none;
}
.register-login-illustration img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}

/* Ensure text and button are above the illustration */
.register-login-left > *:not(.register-login-illustration) {
  position: relative;
  z-index: 3;
}

.register-login-right {
  flex: 1.5;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; */
  padding: 60px 70px 60px 50px;
  position: relative;
  z-index: 2;
}

.register-signup-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-align: center;
}

.register-signup-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 32px;
  text-align: center;
}

.register-signup-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.register-input-group {
  display: flex;
  align-items: center;
  background: #f4f8fc;
  border-radius: 32px;
  padding: 0 22px;
  height: 60px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(3, 87, 179, 0.03);
  transition: box-shadow 0.2s;
}
.register-input-group:focus-within {
  box-shadow: 0 4px 16px 0 rgba(3, 87, 179, 0.10);
  border: 1px solid var(--secondary-color);
}

.register-input-icon {
  color: #b0c4e6;
  font-size: 1.3rem;
  margin-right: 14px;
}

.register-input-group input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  color: var(--text-color);
  width: 100%;
  padding: 16px 0;
}

.register-signup-btn {
  width: 100%;
  padding: 16px 0;
  background: var(--tertiary-color);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  margin-top: 10px;
  box-shadow: 0 2px 8px 0 rgba(122, 209, 28, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.register-signup-btn:hover,
.register-signup-btn:focus {
  background: var(--tertiary-color);
  box-shadow: 0 4px 16px 0 rgba(122, 209, 28, 0.18);
}

input::placeholder {
    font-weight: bold;

  }
/* Responsive Styles */
@media (max-width: 1920px) {
    .register-login-illustration{
        right: 795px;
    }
    .register-signup-form{
        max-width: 100%;
    }
    .register-login-section{
        min-height: 70vh;
    }
}
@media (max-width: 1600px) {
    .register-login-illustration{
        right: 630px;
        bottom: 20px;
    }
}
@media (max-width: 1400px) {
    .register-login-illustration{
        right: 510px !important;
    }
}
@media (max-width: 1200px) {
    .register-login-illustration{
        display: none;
    }
}
@media (max-width: 1100px) {
  .register-login-container {
    flex-direction: column;
    min-height: unset;
    border-radius: 32px;
  }
  .register-login-left {
    clip-path: ellipse(65% 57% at 50% 19%);
    min-height: 400px;
    padding: 40px 20px 0 20px;
    text-align: center;
  }
  .register-login-right {
    border-radius: 0;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }
  .register-login-illustration img {
    max-width: 220px;
  }
  .register-login-illustration {
    right: -10px;
  }
}
@media (max-width: 700px) {
  .register-login-section {
    min-height: unset;
    padding: 30px 0;
  }
  .register-login-container {
    width: 100vw;
    min-width: unset;
  }
  .register-login-left {
    min-height: unset;
    padding: 28px 10px 80px 10px;
    clip-path: ellipse(65% 57% at 50% 19%);
  }
  .register-login-title, .register-signup-title {
    font-size: 2rem;
  }
  .register-login-illustration {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }
  .register-login-illustration img {
    max-width: 160px;
  }
  .register-signup-form {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
    .register-login-title{
        font-size: 25px !important;
    }
    .register-login-subtitle,
    .register-login-btn{
        font-size: 17px !important;
    }
    .register-login-section{
        padding: 0 !important;
    }
    .register-login-right{
        padding-top: 0 !important;
    }
}

/* Login Page */
.login-section .register-login-illustration img{
    width: 440px;
}
.login-section .register-login-illustration{
    bottom:90px;
}

/* ===========================================================
Student Dashboard Page Start
=========================================================== */
.student-dashboard-wrapper {
  background: #f7fafd;
  min-height: 80vh;
  padding-left: 24px;
  padding-right: 24px;
}
.student-dashboard-wrapper .student-sidebar {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  padding: 24px 12px 24px 12px;
  min-height: 100%;
}
.student-dashboard-wrapper .student-profile-box {
  background: #f4f8fc;
  border-radius: 14px;
  padding: 24px 10px 18px 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
}
.student-dashboard-wrapper .student-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  background: #fff;
}
.student-dashboard-wrapper .student-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}
.student-dashboard-wrapper .student-logout {
  font-size: 0.95rem;
  color: #6c757d;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.2s;
}
.student-dashboard-wrapper .student-logout:hover { color: var(--secondary-color); }
.student-dashboard-wrapper .student-nav-list {
  margin: 0;
  padding: 0;
}
.student-dashboard-wrapper .student-nav-list li {
  margin-bottom: 12px;
}
.student-dashboard-wrapper .student-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 1.05rem;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.student-dashboard-wrapper .student-nav-list a:hover, .student-dashboard-wrapper .student-nav-list a.active {
  background: var(--secondary-color);
  color: #fff;
}

.student-dashboard-wrapper .student-dashboard-main {
  min-height: 100%;
}
.student-dashboard-wrapper .dashboard-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 18px;
  min-height: 90px;
}
.student-dashboard-wrapper .dashboard-card-blue {
  border-left: 6px solid var(--secondary-color);
}
.student-dashboard-wrapper .dashboard-card-icon {
  font-size: 2.1rem;
  color: var(--secondary-color);
  background: #eaf6fb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.student-dashboard-wrapper .dashboard-card-label {
  font-size: 1.05rem;
  color: #6c757d;
  font-weight: 500;
}
.student-dashboard-wrapper .dashboard-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222 !important;
}
.student-dashboard-wrapper .dashboard-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
}
.student-dashboard-wrapper .dashboard-enrolled-courses {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 60px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
}
.student-dashboard-wrapper .suggested-course-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  padding: 14px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.student-dashboard-wrapper .suggested-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
}
.student-dashboard-wrapper .suggested-course-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.student-dashboard-wrapper .suggested-course-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  min-height: 48px;
}
.student-dashboard-wrapper .suggested-course-meta {
  font-size: 0.97rem;
  color: #6c757d;
}
.student-dashboard-wrapper .suggested-course-bottom {
  margin-top: 8px;
}
.student-dashboard-wrapper .suggested-course-price {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--secondary-color) !important;
}
.student-dashboard-wrapper .suggested-course-bottom a {
  background: var(--secondary-color) !important;
  border:1px solid var(--secondary-color) !important;
}
.student-dashboard-wrapper .suggested-course-bottom a:hover {
  background: var(--tertiary-color) !important;
  border:1px solid var(--tertiary-color) !important;
}
.student-dashboard-wrapper .old-price {
  text-decoration: line-through;
  color: #bbb;
  font-size: 0.98rem;
  margin-left: 4px;
}
.student-dashboard-wrapper .dashboard-announcement .announcement-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
}
.student-dashboard-wrapper .calendar-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}
.student-dashboard-wrapper .calendar-title {
  font-weight: 600;
}
.student-dashboard-wrapper .calendar-month {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}
.student-dashboard-wrapper .calendar-table {
  width: 100%;
  text-align: center;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.student-dashboard-wrapper .calendar-table th,
.student-dashboard-wrapper .calendar-table td {
  padding: 2px 4px;
  border-radius: 4px;
}
.student-dashboard-wrapper .calendar-today {
  background: var(--tertiary-color);
  color: #fff;
  font-weight: 700;
}
.student-dashboard-wrapper .calendar-event {
  font-size: 0.98rem;
  color: #6c757d;
  margin-top: 6px;
}
.student-dashboard-wrapper .calendar-event-day {
  font-weight: 600;
  color: var(--secondary-color);
  margin-right: 8px;
}
.student-dashboard-wrapper .announcement-header {
  font-size: 1.1rem;
  color: var(--secondary-color);
}
.student-dashboard-wrapper .announcement-title {
  font-weight: 600;
}
.student-dashboard-wrapper .announcement-highlight {
  font-size: 1.01rem;
}
.student-dashboard-wrapper .announcement-text {
  color: #444;
}
@media (max-width: 1200px) {
  .student-dashboard-wrapper .student-sidebar { margin-bottom: 24px; }
  .student-dashboard-wrapper .student-dashboard-main { margin-bottom: 24px; }
}
@media (max-width: 992px) {
  .student-dashboard-wrapper .student-sidebar { min-height: unset; }
  .student-dashboard-wrapper .student-dashboard-main { min-height: unset; }
  .student-dashboard-wrapper .student-dashboard-right { margin-top: 24px; }
}
@media (max-width: 768px) {
  .student-dashboard-wrapper { padding: 0 4px; }
  .student-dashboard-wrapper .student-sidebar, .student-dashboard-wrapper .student-dashboard-main, .student-dashboard-wrapper .student-dashboard-right {
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
    padding: 10px 40px;
  }
  .student-dashboard-wrapper .dashboard-card { flex-direction: column; gap: 8px; text-align: center; }
  .student-dashboard-wrapper .dashboard-section-title { font-size: 1rem; }
  .student-dashboard-wrapper .suggested-course-title { min-height: unset; }
}
@media (max-width: 576px) {
  .student-dashboard-wrapper { padding: 0 40px; }
  .student-dashboard-wrapper .student-sidebar, .student-dashboard-wrapper .student-dashboard-main, .student-dashboard-wrapper .student-dashboard-right {
    padding: 6px 2px;
  }
  .student-dashboard-wrapper .dashboard-card { padding: 12px 6px; }
  .student-dashboard-wrapper .suggested-course-img { height: 80px; }
}
/* ===========================================================
Student Dashboard Page End
=========================================================== */


/* ===========================================================
Redirect Page Start
=========================================================== */
.already-loggedin-unique {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fafd 60%, #eaf6fb 100%);
  position: relative;
  overflow: hidden;
}

.already-loggedin-unique .already-loggedin-glass {
  background: rgba(255,255,255,0.7);
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(31,139,195,0.10);
  backdrop-filter: blur(8px);
  padding: 48px 36px 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.already-loggedin-unique .already-loggedin-icon-unique {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.already-loggedin-unique .already-loggedin-icon-unique .icon-bg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #1f8bc3 60%, #fdc82f 100%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
  animation: pulse 1.5s infinite alternate;
}
.already-loggedin-unique .already-loggedin-icon-unique i {
  position: relative;
  font-size: 2rem;
  color: #1f8bc3;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  padding: 12px 20px;
  box-shadow: 0 2px 12px 0 rgba(31,139,195,0.10);
  animation: pop 1s cubic-bezier(.17,.67,.83,.67) 1;
}
@keyframes pulse {
  0% { opacity: 0.7; transform: translate(-50%,-50%) scale(1);}
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1.1);}
}
@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.already-loggedin-unique .already-loggedin-title-unique {
  color: #1f8bc3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.already-loggedin-unique .already-loggedin-desc-unique {
  color: #21996b;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.already-loggedin-unique .already-loggedin-btn-unique {
  padding: 12px 38px;
  font-size: 1.1rem;
  border-radius: 30px;
  background: linear-gradient(90deg, #1f8bc3 60%, #fdc82f 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px 0 rgba(31,139,195,0.10);
}
.already-loggedin-unique .already-loggedin-btn-unique:hover {
  background: linear-gradient(90deg, #176b97 60%, #e6b800 100%);
  color: #fff;
}
@media all and (max-width:440px){
    .already-loggedin-unique{
        padding: 0 20px;
    }
}