@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
.text-gradient,
.text-gradient-green,
.text-gradient-info {
  -webkit-text-fill-color: transparent;
}

.btn-enroll:hover,
.btn-gradient:hover {
  background: var(--gradient-primary-hover);
}

.btn-details:hover,
.btn-enroll:hover,
.btn-gradient:hover,
.floating-badge {
  box-shadow: var(--shadow-lg);
  color: #fff;
}

:root {
  --primary-color: #0052cc;
  --primary-color-light: #4c82f7;
  --secondary-color: #0891b2;
  --accent-color: #f59e0b;
  --success-color: #16a34a;
  --warning-color: #f59e0b;
  --danger-color: #dc2626;
  --info-color: #0ea5e9;
  --dark-color: #111827;
  --light-color: #f8fafc;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-color-light) 100%
  );
  --gradient-primary-hover: linear-gradient(
    335deg,
    var(--primary-color) 0%,
    var(--primary-color-light) 100%
  );
  --gradient-success: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  --gradient-info: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --gradient-light: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gk-body-font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

body {
  font-family: var(--gk-body-font-family);
  line-height: 1.6;
  color: var(--dark-color);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-green {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-info {
  background: var(--gradient-info);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-enroll,
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
}

.bg-gradient-light {
  background: var(--gradient-light);
}

.btn-details {
  background: linear-gradient(135deg, #334155 0, #0f172a 100%);
  border: none;
  color: #fff;
  transition: 0.3s;
}

.btn-details:hover {
  background: linear-gradient(135deg, #1e293b 0, #020617 100%);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar {
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 767.98px){
  .navbar-brand {
    font-size: 1.2rem;
  }
}

.nav-link {
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-color);
  transition: 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(135deg, #eff6ff 0, #fff 50%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}

.hero-cta-btn,
.progress-card {
  background: var(--gradient-primary);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E5E7EB" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-cta-btn {
  border: none;
  transition: 0.3s;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #2563eb 0, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.dashboard-card {
  transform: rotate(3deg);
  transition: transform 0.5s;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: rotate(0);
}

.course-card:hover,
.feature-card:hover,
.story-cards:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.progress-card {
  padding: 1rem;
  border-radius: 0.5rem;
  color: #fff;
}

.progress-card .progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.progress-card .progress-bar {
  background: #fff;
}

.floating-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-1 {
  background: var(--warning-color);
  top: -20px;
  right: -20px;
  animation: 2s infinite bounce;
}

.badge-2 {
  background: var(--success-color);
  bottom: -20px;
  left: -20px;
  animation: 2s infinite pulse;
}

.course-overlay,
.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.course-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
  overflow: hidden;
  border: none;
}

.course-image {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.feature-icon,
.play-button {
  width: 60px;
  height: 60px;
  display: flex;
}

.course-card:hover .course-image {
  transform: scale(1.1);
}

.course-overlay {
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.course-card:hover .course-overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.play-button {
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--primary-color);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--success-color);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-card,
.story-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: 0.3s;
  border: 1px solid #e5e7eb;
  position: relative;
}

.feature-card:hover {
  border-color: var(--primary-color);
}

.feature-card::before {
  content: "";
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: border-color 0.3s;
}

.feature-card:hover::before {
  border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
  border-radius: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.story-card {
  border-radius: 1rem;
  transition: 0.3s;
  /*height: 100%!important;*/
}

.story-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}

.achievement-badge {
  background: linear-gradient(135deg, #ecfdf5 0, #f0fdf4 100%);
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1rem;
}

.after-card,
.before-card {
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.5rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.before-card {
  background: #fef2f2;
}

.after-card,
.benefit-item.salary {
  background: #ecfdf5;
}

.mentor-info {
  position: sticky;
  top: 2rem;
}

.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.benefit-item.flexible {
  background: #eff6ff;
}

.benefit-item.growth {
  background: #f3e8ff;
}

.benefit-item.impact {
  background: #f0fdfa;
}

.expertise-checkbox:hover,
.upload-area:hover {
  background: #f8fafc;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.requirements-list .requirement-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.requirement-item i {
  color: var(--success-color);
  margin-right: 0.75rem;
}

.form-control,
.form-select {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.upload-area {
  cursor: pointer;
  transition: 0.3s;
}

.upload-area:hover {
  border-color: var(--primary-color) !important;
}

.expertise-checkbox {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: background 0.3s;
  cursor: pointer;
}

.expertise-checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: var(--primary-color);
}

footer {
  background: var(--dark-color) !important;
}

footer .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

footer .btn-outline-light:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.dropdown:hover .user-dropdown-menu {
  display: block;
  right: 0;
  left: auto;
}

.dropdown-menu {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
  border: none;
  min-width: 240px;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .dashboard-card {
    transform: rotate(0);
  }

  .floating-badge {
    display: none;
  }

  .mentor-info {
    position: static;
  }
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  .hero-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/*.card-title:hover {
    transition: .3s
}*/

/*Title Hover Style */
.card-title {
  display: inline;
  background-image: linear-gradient(var(--primary-color), var(--primary-color)),
    linear-gradient(var(--primary-color), var(--primary-color));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  padding: 0 0 1% 0;
}
.card-title:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--primary-color) !important;
}

/*Clamp */
.card-title-clamp { display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  height: 3rem; 
  transition: all 0.4s linear;
}
.card-title-clamp:hover {
  color: var(--primary-color) !important;
}

/*Books Style*/
.book-cover-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
}
.book-cover-large {
  width: 100%;
  height: 400px;
  /*object-fit: cover;*/
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.book-cover-large:hover {
  transform: scale(1.02);
}
.detail-label {
  font-weight: 600;
  color: #374151;
}
.detail-value {
  color: #6b7280;
  text-align: right;
}
a.detail-value:hover {
  color: var(--primary-color);
}

@media(min-width: 767.98px){
  .course-thumbnail{
    height: 24rem;
    object-fit: cover;
  }
}

@media (max-width: 991.98px) {
  .book-cover-large {
    height: 224px;
  }
}
@media (max-width: 767.98px) {
  .book-cover-large {
    height: 196px;
  }
}
@media (max-width: 576px) {
  .book-cover-large {
    height: 400px;
  }
}
/*Books Home */
.hero,
.hero img {
  border-radius: 10px;
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero {
  background-position: center;
  background-size: cover;
  width: 250px !important;
  height: 380px !important;
}
.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.book-cover-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}
.book-cover {
  width: 180px;
  height: 260px;
  object-fit: cover;
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.book-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.book-badge.bestseller {
  background: linear-gradient(135deg, #f59e0b 0, #ea580c 100%);
  color: #fff;
}
.book-badge.new {
  background: linear-gradient(135deg, #10b981 0, #059669 100%);
  color: #fff;
}
.book-badge.trending {
  background: linear-gradient(135deg, #8b5cf6 0, #7c3aed 100%);
  color: #fff;
}
.book-badge.recommended {
  background: linear-gradient(135deg, #3b82f6 0, #1d4ed8 100%);
  color: #fff;
}
.book-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  overflow: hidden;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Hero Search */
.hero-search-container {
    position: relative;
    max-width: 600px;
}

.hero-search-box {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    margin-right: 0.75rem;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #374151;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #9ca3af;
}

.hero-search-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #2563EB 0%, #0F766E 100%);
    transform: scale(1.05);
}
.category-card{
  border: 0px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.category-card:hover {
  /*transform: translateY(-8px);*/
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.category-card:hover::before {
    transform: scaleX(1);
}

/*Custom Style for List */
.course-description ul{
  /*padding-left: 0!important;*/
  list-style: none!important;
}
.course-description ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.course-description ul li::before {
  content: "\f26a"!important;
  font-family: "bootstrap-icons";
  color: #0d6efd;
  font-size: 1rem;
  position: absolute;
  left: 0;
}


/*Category-Chip*/
/*.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5ff;
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.category-chip:hover {
  background: #0d6efd;
  color: #fff !important;
  transform: translateY(-2px);
  text-decoration: none;
}*/