/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
}

.container {
  display: flex;
  min-height: 100vh;
}

.chooseprogram{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  }
/* Sidebar Styles */
.sidebar {
  width: 250px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  height: 100vh;
  z-index: 100;
  transition: transform 0.3s ease;
  transform: translateX(0%); /* Initially hidden */
}

.sidebar.active {
  transform: translateX(0); /* Show sidebar */
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  background-color: rgb(250, 250, 250);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;

}

.profile-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #FFC107;
}

.profile-info p:first-child {
  font-weight: bold;
}

.profile-info p:last-child {
  color: #666;
}

.sidebar-nav {
  padding: 5px 0;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;

}

.sidebar-nav li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.sidebar-nav li:hover, .sidebar-nav li.active {
  background-color: #fffbf3;
  color: #FFC107;
}

.sidebar-nav li i {
  width: 20px;
  text-align: center;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 22px;
}
  .nav-link:hover{
  background-color: #fffbf3;
  color: #FFC107;

}

.nav-link i {
  font-size: 1.2rem;
}

.sign-out {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border: none;
  color: #FFC107;
  background: none;

}
.sign-out i{
  font-size: 1.5rem;
}

.sign-out:hover {
  color: #f89b44;

}

/* Main Content Styles */
.main-content {
  flex: 1;
  margin-left: 250px;
  position: relative;
}

.page {
  display: none;
  padding-bottom: 40px;
}

.page.active {
  display: block;
}

/* Header Banner */
.header-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.program-btn {
  position: absolute;
  bottom: 20px; 
  right: 20px; 
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.program-btn:hover {
  background-color: #FFD54F;
}

.program-btn1 {
  position: absolute;
  bottom: 60px;
  right: 800px;
  color: #ffffff;
  font-weight: bold;
  font-size: 3rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.program-btn1:hover {
  background-color: #FFD54F;
}

.page-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Section Titles */
.section-title {
  margin: 30px 20px 20px;
  position: relative;
}

.section-title h2, .section-title h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

/* Program Cards */
.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  justify-content: space-between;
}

.program-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: calc(33.333% - 14px);
  transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.program-img {
  height: 150px;
  overflow: hidden;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-category {
  background-color: #FFC107;
  color: #333;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

.program-details {
  padding: 15px;
}

.detail {
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail i {
  color: #FFC107;
  width: 20px;
  text-align: center;
}

.detail.date {
  font-weight: bold;
  color: #FFC107;
}

.apply-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.apply-btn:hover {
  background-color: #FFD54F;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #FFC107;
}

/* Dashboard Layout */
.dashboard-container {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.dashboard-left {
  flex: 3;
}

.dashboard-right {
  flex: 1;
  margin-top: 30px;
  display: block;
}

/* Small Program Cards */
.program-card.small {
  width: calc(33.333% - 14px);
}

.program-details.small {
  padding: 10px;
}

.apply-btn.small {
  padding: 8px;
  font-size: 0.8rem;
}

/* Mini Program Cards */
.program-card.mini {
  width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
}

.program-card.mini .program-img {
  height: 100px;
}

.program-actions {
  display: flex;
  justify-content: flex-end;
  padding: 5px 10px;
}

.dots {
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

.review {
  color: #FFC107;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Data Analysis Section */
.data-analysis {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 20px auto;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
}

.progress-message {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Info Boxes */
.info-box {
  background-color: #FFC107;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  color: #333;
  margin-bottom: 15px;
}

/* Search Bar */
.search-container {
  padding: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 25px;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-bar i {
  color: #666;
  margin-right: 10px;
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
}

.maincontainer{
  display: flex;
  gap: 22px;
  margin: 22px;
}

.leftcontainer{
  width: 70%;
}
/* Program Selection */
.program-selection {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.program-option {
  display: flex;;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
  flex: 1 1 calc(25% - 20px);
  text-align: center;
}
.program-icon {
  width: 200px;
  height: 200px;
  background-color: #FFF8E1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.program-select-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: background-color 0.2s;
  width: 100%;
  padding: 10px;
  background-color: #FFC107;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.program-select-btn:hover {
  background-color: #333;
  background-color: #e6a700;
}

/* Mobile Dashboard */
.dashboard-right.mobile {
  display: none;
}

/* Profile Page Styles */
.profile-container {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.profile-avatar {
  position: relative;
}

.profile-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #FFC107;
}

.change-avatar-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #FFC107;
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-name h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.profile-name p {
  color: #666;
  font-size: 1.1rem;
}

.profile-details {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-section {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.profile-section h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.3rem;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.profile-info-item label {
  display: block;
  color: #666;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.profile-info-item p {
  font-weight: 500;
}

.edit-profile-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.edit-profile-btn:hover {
  background-color: #FFD54F;
}

.education-item {
  margin-bottom: 15px;
}

.education-item h4 {
  margin-bottom: 5px;
}

.education-item p {
  color: #666;
  font-size: 0.9rem;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background-color: #f0f0f0;
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Mentors Page Styles */
.mentors-container {
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.mentor-card {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
}

.mentor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mentor-img {
  height: 300px;
  overflow: hidden;
}

.mentor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-info {
  padding: 20px;
}

.mentor-info h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.mentor-title {
  color: #FFC107;
  font-weight: 500;
  margin-bottom: 5px;
}

.mentor-exp {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.mentor-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.mentor-skills span {
  background-color: #f0f0f0;
  color: #333;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.connect-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
  margin-top: 10px;
}

.connect-btn:hover {
  background-color: #FFD54F;
}

/* Companies Page Styles */
.companies-container {
  padding: 0 20px;
}

.company-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
}

.company-logo {
  width: 150px;
  /* height: 150px; */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.company-info {
  flex: 1;
  padding: 20px;
}

.company-info h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.company-type {
  color: #FFC107;
  font-weight: 500;
  margin-bottom: 5px;
}

.company-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.company-location i {
  margin-right: 5px;
  color: #FFC107;
}

.company-desc {
  margin-bottom: 15px;
  line-height: 1.4;
}

.company-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFC107;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
}

.view-company-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.view-company-btn:hover {
  background-color: #FFD54F;
}

/* Webinars Page Styles */
.filter-options {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.filter-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active {
  background-color: #FFC107;
  color: #333;
  font-weight: bold;
}

.webinars-container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.webinar-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.webinar-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.webinar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinar-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #FFC107;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.webinar-date .date {
  display: block;
  font-size: 1.2rem;
}

.webinar-date .month {
  font-size: 0.8rem;
}

.webinar-date.recorded {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 10px;
}

.webinar-date.recorded i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.webinar-info {
  padding: 20px;
}

.webinar-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.webinar-time, .webinar-speaker {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.webinar-time i, .webinar-speaker i {
  color: #FFC107;
}

.webinar-desc {
  margin: 15px 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

.register-btn, .watch-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.register-btn:hover, .watch-btn:hover {
  background-color: #FFD54F;
}

/* Notifications Page Styles */
.notifications-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mark-all-read {
  background: none;
  border: none;
  color: #FFC107;
  font-weight: 500;
  cursor: pointer;
}

.empty-notifications {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.empty-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.empty-notifications h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.empty-notifications p {
  color: #666;
}

/* App Settings Page Styles */
.settings-container {
  padding: 20px;
  display: flex;
  gap: 20px;
}

.settings-sidebar {
  width: 200px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.settings-sidebar ul {
  list-style: none;
}

.settings-sidebar li {
  padding: 12px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.settings-sidebar li.active {
  background-color: #FFC107;
  color: #333;
  font-weight: bold;
}

.settings-sidebar li:hover:not(.active) {
  background-color: #f0f0f0;
}

.settings-content {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.settings-section {
  margin-bottom: 30px;
}

.settings-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.setting-info h4 {
  margin-bottom: 5px;
}

.setting-info p {
  color: #666;
  font-size: 0.9rem;
}

.theme-selector, .font-size-selector {
  display: flex;
  gap: 10px;
}

.theme-btn, .font-size-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.theme-btn.active, .font-size-btn.active {
  background-color: #FFC107;
  color: #333;
  font-weight: bold;
}

.theme-btn.dark {
  background-color: #333;
  color: white;
}

.theme-btn.dark.active {
  background-color: #FFC107;
  color: #333;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
  background-color: #FFC107;
}

.toggle input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.dashboard-select {
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  width: 200px;
}

.save-settings-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.save-settings-btn:hover {
  background-color: #FFD54F;
}

/* Contact Support Page Styles */
.support-container {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.support-option {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-icon {
  width: 60px;
  height: 60px;
  background-color: #FFF8E1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.support-icon i {
  font-size: 1.5rem;
  color: #FFC107;
}

.support-details h3 {
  margin-bottom: 10px;
}

.support-details p {
  color: #666;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.contact-info {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.support-hours {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
}

.contact-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: #FFD54F;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #FFD54F;
}

.social-support {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.social-support h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
}

/* Updates Page Styles */
.updates-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.update-profile-form {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.update-profile-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row .form-group {
  flex: 1;
}

.profile-upload {
  display: flex;
  align-items: center;
  gap: 20px;
}

#profile-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.upload-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upload-btn, .remove-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.upload-btn {
  background-color: #FFC107;
  color: #333;
}

.upload-btn:hover {
  background-color: #FFD54F;
}

.remove-btn:hover {
  background-color: #e0e0e0;
}

.update-profile-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.update-profile-btn:hover {
  background-color: #FFD54F;
}

/* Dark Theme Styles */
body.dark-theme {
  background-color: #121212;
  color: #f5f5f5;
}

body.dark-theme .sidebar {
  background-color: #1e1e1e;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

body.dark-theme .sidebar-header {
  border-bottom: 1px solid #333;
}

body.dark-theme .close-btn {
  color: #f5f5f5;
}

body.dark-theme .profile-info p:last-child {
  color: #aaa;
}

body.dark-theme .sidebar-nav li:hover, 
body.dark-theme .sidebar-nav li.active {
  background-color: #333;
}

body.dark-theme .sign-out {
  color: #aaa;
}

body.dark-theme .program-card,
body.dark-theme .data-analysis,
body.dark-theme .profile-details,
body.dark-theme .mentor-card,
body.dark-theme .company-card,
body.dark-theme .webinar-card,
body.dark-theme .empty-notifications,
body.dark-theme .settings-sidebar,
body.dark-theme .settings-content,
body.dark-theme .support-option,
body.dark-theme .contact-form,
body.dark-theme .social-support,
body.dark-theme .update-profile-form {
  background-color: #1e1e1e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .section-title h2, 
body.dark-theme .section-title h3 {
  color: #f5f5f5;
}

body.dark-theme .detail {
  color: #ddd;
}

body.dark-theme .progress-message,
body.dark-theme .mentor-exp,
body.dark-theme .company-location,
body.dark-theme .webinar-time, 
body.dark-theme .webinar-speaker,
body.dark-theme .empty-notifications p,
body.dark-theme .setting-info p {
  color: #aaa;
}

body.dark-theme .skill-tag,
body.dark-theme .mentor-skills span {
  background-color: #333;
  color: #ddd;
}

body.dark-theme .search-bar,
body.dark-theme .form-group input, 
body.dark-theme .form-group textarea,
body.dark-theme .dashboard-select {
  background-color: #333;
  border-color: #444;
  color: #f5f5f5;
}

body.dark-theme .search-bar i {
  color: #aaa;
}

body.dark-theme .company-logo {
  background-color: #2a2a2a;
}

body.dark-theme .settings-sidebar li:hover:not(.active) {
  background-color: #333;
}

body.dark-theme .theme-btn, 
body.dark-theme .font-size-btn {
  background-color: #333;
  color: #ddd;
}

body.dark-theme .theme-btn.light {
  background-color: #f5f5f5;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .program-card, .program-card.small, .program-card.mini {
    width: calc(50% - 10px);
  }
  
  .settings-container {
    flex-direction: column;
  }
  
  .settings-sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .settings-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .settings-sidebar li {
    flex: 1;
    text-align: center;
  }
}

.profile-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*overflow-wrap: anywhere;*/
}
.profile-info p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80%;     /* or any % you want */
}


@media (max-width: 992px) {
  .dashboard-container {
    flex-direction: column;
  }
  .leftcontainer {
    width: 100%;
}
  .dashboard-right {
    margin-top: 0;
    display: block; /* Ensure it is visible on smaller screens */
  }
  
  .dashboard-right.mobile {
    display: block;
  }
  
  .dashboard-right:not(.mobile) {
    display: none;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-info-grid {
    grid-template-columns: 1fr;
  }
  
  .company-card {
    flex-direction: column;
  }
  
  .company-logo {
    width: 100%;
    height: 120px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .program-card, .program-card.small, .program-card.mini {
    width: 100%;
  }
  
  .header-banner {
    height: 150px;
  }
  
  .program-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .section-title h2, .section-title h3 {
    font-size: 1.2rem;
  }
  
  .program-option {
    text-align: center;
  }
  
  .program-select-btn {
    width: 100%;
  }
  
  .setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .profile-upload {
    flex-direction: column;
  }

  .sidebar {
    background-color: #fff; /* or any other solid color you prefer */
  }
}

@media (max-width: 576px) {
  .program-details {
    padding: 10px;
  }
  
  
  .detail {
    font-size: 0.8rem;
  }
  
  .apply-btn {
    font-size: 0.9rem;
  }
  
  .program-icon {
    width: 100px;
    height: 100px;
  }
  
  .webinars-container,
  .mentors-container {
    grid-template-columns: 1fr;
  }
  
  .support-options {
    grid-template .support-options {
    grid-template-columns: 1fr;
  }
}
}

/* Fullscreen Styles */
.fullscreen .sidebar .close-btn {
  display: none;
}

.fullscreen .main-content {
  margin-left: 0;
}

.fullscreen .sidebar {
  transform: translateX(-100%);
}

/* Hide close button on larger screens */
@media (min-width: 992px) {
  .close-btn {
    display: none;
  }
}

/* Show close button on smaller screens */
@media (max-width: 991px) {
  .close-btn {
    display: block;
  }
}

/* Ensure .dashboard-right is visible on larger screens and hidden on smaller screens */
.dashboard-right {
  display: block;
}

@media (max-width: 991px) {
  .dashboard-right {
    display: none;
  }

  .dashboard-left {
    width: 100%;
  }

  .program-option {
    flex: 1 1 100%;
  }

  .program-icon {
    width: 100px;
    height: 100px;
  }
}

/* Flexbox layout for program selection */
.program-selection {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.program-option {
flex: 1 1 calc(25% - 20px);
display: flex;
align-items: center;
text-align: center;
}

.program-option img {
max-width: 100%;
height: auto;
}

.program-select-btn {
width: 100%;
padding: 10px;
background-color: #FFC107;
border: none;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

.program-select-btn:hover {
background-color: #e6a700;
}

/* Ensure .dashboard-right is visible on larger screens and hidden on smaller screens */
.dashboard-right {
display: block;
}

@media (max-width: 991px) {
.dashboard-right {
  display: none;
}

.dashboard-left {
  width: 100%;
}

.program-option {
  flex: 1 1 100%;
}

.program-icon {
  width: 100px;
  height: 100px;
}
}

@media (max-width: 768px) {
.program-option {
  flex: 1 1 100%;
}

.program-icon {
  width: 80px;
  height: 80px;
}

.program-select-btn {
  font-size: 14px;
  padding: 8px;
}
}

@media (max-width: 576px) {
.program-option {
  flex: 1 1 100%;
}

.program-icon {
  width: 100px;
  height: 100px;
}

.program-select-btn {
  font-size: 12px;
  padding: 6px;
}
}

/* Program Form Styles */
.program-form-container {
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.progress-bar {
height: 10px;
background: #eee;
border-radius: 5px;
margin-bottom: 2rem;
}

.progress {
height: 100%;
background: #FFC107;
width: 0;
transition: width 0.3s ease;
}

.question-page {
display: none;
}

.question-page.active {
display: block;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}

.form-navigation {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 2rem;
}

.nav-btn {
padding: 0.8rem 1.5rem;
background: #FFC107;
border: none;
border-radius: 5px;
cursor: pointer;
}

.submit-btns {
background: #4CAF50;
color: white;
display: none;
padding: 10px 20px;
border-radius: 10px;
border: none; /* Initially hidden */
}

/* Analysis Section Styles */
.data-analysis {
text-align: center;
padding: 2rem;
background: #fff;
border-radius: 10px;
margin-bottom: 2rem;
}

.progress-circle {
position: relative;
width: 150px;
height: 150px;
margin: 0 auto 1rem;
}

.progress-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
font-weight: bold;
}


/* In style.css */
.maincontainers {
display: flex;
gap: 40px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}

.program-form-container {
flex: 2;
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.analysis-container {
flex: 1;
min-width: 300px;
position: sticky;
top: 20px;
height: fit-content;
}

.data-analysis {
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.loading-spinner {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}

.spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #000;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
}

@keyframes spin {
to {
  transform: rotate(360deg);
}
}

.program-summary-container {
  display: flex;
  gap: 20px;
  flex: 2;
}

.summary-box {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.analysis-container {
  flex: 1;
  min-width: 300px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.data-analysis {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Add these styles to your existing CSS */

/* Analysis Results Page */
.results-container {
  max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
    width: 75%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 10px;
}

.mentor-profile-container{
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  max-width: 70%;
  margin-top: 30px;

}

.results-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.progress-circle.large {
  width: 200px;
  height: 200px;
  margin: 2rem auto;
}

.results-content {
  margin-top: 2rem;
}

.recommendation {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.field-box {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  margin: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.recommendation-image {
  margin: 2rem 0;
}

.recommendation-image img {
  max-width: 150px;
  background-color: #FFC107;
  border-radius: 90%;
}

.action-btn {
  background: #9DC45F;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.action-btn:hover {
  background: #8AB54E;
}

/* Mentors List Page */
.mentors-list-container {
  max-width: 800px;
  /*margin: 2rem auto;*/
  padding: 0 1rem;
  width: 75%;
}

.mentor-card {
  display: flex;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mentor-image {
  width: 100px;
  height: 100px;
  margin-right: 1rem;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.mentor-info {
  flex: 1;
}

.mentor-actions {
  display: flex;
  /* flex-direction: column; */
  gap: 1rem;
  margin-top: 1rem;
}

.view-profile-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.join-now-btn {
  background: #000;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Booking Page */
.booking-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.selected-mentor {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.date-selector {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  overflow-x: auto;
  padding: 0.5rem;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.date-btn.active {
  background: #FFC107;
  color: white;
  background-color: #FFC107;
  color: #fff;
}

.slot-section {
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}

.slot-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slot-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.slot-btn:hover {
  background: #f5f5f5;
}

.slot-btn.active {
  background: #FFC107;
  color: white;
  border-color: #FFC107;
  background-color: #FFC107;
  color: #fff;
}

.continue-booking-btn {
  background: #9DC45F;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  width: 100%;
  margin-top: 2rem;
  cursor: pointer;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.continue-booking-btn:hover {
  background: #8AB54E;
  background-color: #45a049;
}

/* Booking Page Styles */
/*.booking-container {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  padding: 20px;*/
/*  background-color: #fff;*/
/*  border-radius: 10px;*/
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*}*/

.selected-mentor {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.mentor-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.view-profile-btn {
  background-color: #FFC107;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-profile-btn:hover {
  background-color: #FFD54F;
}

.date-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.date-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.date-btn.active {
  background-color: #FFC107;
  color: #fff;
}

.slot-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}

.slot-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.slot-btn.active {
  background-color: #FFC107;
  color: #fff;
}

.continue-booking-btn {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.continue-booking-btn:hover {
  background-color: #45a049;
}


.back-button{
  color: black;
  background-color: white;
}

/* Hamburger button styles */
.hamburger-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 99;
  background: #FFC107;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Show hamburger button on mobile devices */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
}

.date-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.date-btn {
  padding: 10px 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.date-btn.active {
  background-color: #ffc107;
  color: #fff;
}

.date-btn:hover {
  background-color: #f0f0f0;
}