body {
  background-color: #f2f4f8;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100vh;
  background: #0b0e1a;
  color: white;
  transition: all 0.4s ease;
  overflow-y: auto;
}

.sidebar .logo-details {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1e2130;
}

.sidebar .logo-details img {
  width: 180px;
}

.sidebar .nav-links {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.sidebar .nav-links li {
  position: relative;
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #dcdcdc;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.sidebar .nav-links li a:hover {
  background: #1c1f2b;
  color: #fff;
}

.sidebar .nav-links i {
  font-size: 22px;
  margin-right: 12px;
}

.sidebar .iocn-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sidebar .arrow {
  font-size: 20px;
  transition: all 0.3s ease;
}

.sidebar .sub-menu {
  padding-left: 60px;
  display: none;
  background: #121422;
}

.sidebar .sub-menu li a {
  padding: 10px 0;
  font-size: 14px;
  color: #bbb;
  display: block;
}

.sidebar .sub-menu li a:hover {
  color: #fff;
}

.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}

.sidebar .nav-links li.showMenu .arrow {
  transform: rotate(-180deg);
}

/* Content */
.content {
  margin-left: 270px;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.profile-card h4 {
  font-weight: 700;
  margin-bottom: 25px;
  color: #0b0e1a;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.btn-warning {
  font-weight: 600;
  color: #000;
}

/* Mobile */
@media (max-width: 991px) {
  .sidebar {
    left: -270px;
  }

  .sidebar.active {
    left: 0;
    z-index: 999;
  }

  .content {
    margin-left: 0;
    padding: 20px;
  }

  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 26px;
    background: #0b0e1a;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 1000;
  }
}
.video-container {
  max-width: 900px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.video-player {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.video-player::-webkit-media-controls {
  background-color: rgba(0, 0, 0, 0.4);
}

.video-info {
  text-align: left;
}

@media (max-width: 768px) {
  .video-container {
    padding: 15px;
  }

  .video-player {
    border-radius: 10px;
  }
}
.video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  font-size: 30px;
  color: #fff;
}

.video-info {
  padding: 15px;
  text-align: left;
}

.youtube-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 40px 25px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-thumb img {
    height: 180px;
  }
}
.analysis-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  max-width: 700px;
}

#SelSubject {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

#SelSubject:focus {
  border-color: #f1b500;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
.mock-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.mock-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mock-thumb {
  background-size: cover;
  background-position: center;
  height: 200px;
  position: relative;
  transition: 0.4s ease;
}

.mock-thumb:hover {
  filter: brightness(0.85);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
}

.mock-thumb:hover .overlay {
  opacity: 1;
}

.overlay .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.mock-thumb:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

.mock-info h5 {
  font-size: 1rem;
}

.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .mock-thumb {
    height: 180px;
  }
}
.checkout-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  max-width: 500px;
}

.checkout-card h4 {
  color: #0b0e1a;
}

.checkout-card .btn-warning {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.checkout-card .btn-warning:hover {
  transform: translateY(-3px);
}


/* Add */
.navbar {
  background-color: #0b0e1a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  color: #fff !important;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

.navbar-brand:hover {
  color: #ffc107 !important;
}

.navbar-nav .nav-link {
  color: #dcdcdc !important;
  font-weight: 500;
  margin: 0 6px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffc107 !important;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.alert-light {
  background-color: #f8f9fa;
  border-radius: 12px;
}

.card {
  border-radius: 12px;
}

h2 {
  color: #0b0e1a;
}

canvas {
  width: 100% !important;
}

.subscription-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  max-width: 750px;
}

.subscription-card .form-label {
  color: #333;
}

.subscription-card input,
.subscription-card select {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

.subscription-card input:focus,
.subscription-card select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.subscription-card .btn-warning {
  font-size: 1rem;
  transition: 0.3s ease;
}

.subscription-card .btn-warning:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .subscription-card {
    padding: 25px;
  }
}

.subscription-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  max-width: 850px;
}

.payment-box {
  background: #fdfdfd;
  transition: 0.3s ease;
}

.payment-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.payment-box h6 {
  color: #0b0e1a;
}

.handbooks-table table {
  border-radius: 10px;
  overflow: hidden;
}

.alert-light {
  background-color: #f8f9fa;
  border-radius: 10px;
  font-size: 0.95rem;
}
.table a {
  color: #0b0e1a;
  font-weight: 500;
  text-decoration: none;
}

.table a:hover {
  color: #d29d00;
  text-decoration: underline;
}

.table-section td {
  background-color: #fff8e1 !important;
  font-size: 1rem;
  border-top: 2px solid #ffc107;
}

.table thead th {
  font-size: 1rem;
  font-weight: 600;
}

.card {
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 768px) {
  .table {
    font-size: 0.9rem;
  }
}
.table a.btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.table a.btn:hover {
  transform: translateY(-2px);
  background-color: #ffc107;
  color: #000 !important;
}

.card {
  border-radius: 12px;
  background: #fff;
}

.table thead {
  font-weight: 600;
}

.table-hover tbody tr:hover {
  background-color: #fff8e1;
}

@media (max-width: 768px) {
  .table {
    font-size: 0.9rem;
  }
}
