@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
body {
  background-color: rgb(244 242 238);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.footer-heading {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #343a40;
}
footer a {
  color: #6c757d;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.post .btn-link {
  font-size: 0.9rem;
}
.post .btn-light {
  font-size: 0.8rem;
  padding: 4px 10px;
}
.post .btn-link:hover, .post .btn-light:hover {
  background-color: #eef3f8;
}
footer {
  border-top: 1px solid #dee2e6;
}
.trending, .puzzles {
  background-color: #f8f9fa;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trending h3, .puzzles h3 {
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}

.trending ul, .puzzles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trending ul li, .puzzles ul li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  color: #555;
}

.trending ul li:last-child, .puzzles ul li:last-child {
  border-bottom: none;
}

/* Common Layout */
.nav-head {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  position: relative;
}
.nav-head .container {
  margin: auto;
  padding: 0 16px;
}
.nav-head .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.nav-head .navbar .nav-left {
  display: flex;
  align-items: center;
}
.nav-head .navbar .nav-left img {
  width: 35px;
}
.nav-head .navbar .nav-left .search-bar {
  margin-left: 10px;
  padding: 8px;
  border: 1px solid #053594;
  border-radius: 20px;
}
.nav-head .navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-head .navbar .nav-right.show {
  display: flex;
}
.nav-head .navbar .nav-right .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  text-align: center;
  padding-left: 10px;
}
.nav-head .navbar .nav-right .nav-item:first-child {
  padding-left: 0;
}
.nav-head .navbar .nav-right .nav-item i {
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}
.nav-head .navbar .nav-right .nav-item a {
  text-decoration: none;
  color: #333;
}
.nav-head .navbar .nav-right .notification {
  position: relative;
}
.nav-head .navbar .nav-right .notification .badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: whitesmoke;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
}
.nav-head .navbar .nav-right .dropdown {
  position: relative;
}
.nav-head .navbar .nav-right .dropdown .dropdown-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.nav-head .navbar .nav-right .dropdown .dropdown-toggle::after {
  display: none;
}
.nav-head .navbar .nav-right .dropdown .dropdown-toggle .profile-pics {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-bottom: 4px;
}
.nav-head .navbar .nav-right .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: whitesmoke;
  border: 1px solid lightgray;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 160px;
}
.nav-head .navbar .nav-right .dropdown .dropdown-menu a {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #333;
}
.nav-head .navbar .nav-right .dropdown .dropdown-menu a:hover {
  background-color: #f2f2f2;
}
.nav-head .navbar .nav-right .dropdown:hover .dropdown-menu {
  display: block;
}
.nav-head .navbar .hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-head .navbar .hamburger {
    display: block;
  }
  .nav-head .navbar .nav-right {
    display: none;
    flex-direction: column;
    background: whitesmoke;
    position: absolute;
    right: 0;
    top: 60px;
    width: 100%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-head .navbar .nav-right.show {
    display: flex;
    align-items: baseline;
  }
  .nav-head .navbar .nav-right .nav-item {
    padding-left: 0;
    text-align: left;
  }
  .nav-head .navbar .nav-right .dropdown .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
  }
  .nav-head .navbar .nav-right .dropdown .dropdown-menu a {
    padding: 8px 10px;
  }
}
/***************************************************/
footer {
  background-color: #f8f9fa;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
footer a:hover {
  color: #0073b1;
  text-decoration: underline;
}
footer .footer-heading {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #212529;
}
footer select.form-select-sm {
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  footer .footer-heading {
    font-size: 1.1rem;
  }
  footer ul {
    margin-bottom: 0 !important;
  }
  footer .col-md-3 {
    text-align: center;
    margin-bottom: 0;
  }
  footer select.form-select-sm {
    width: 100%;
  }
}

.padding-t {
  padding-top: 63px;
}

/************************111**************************/
.linkedin-logos {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #0073b1;
  margin: 60px auto 20px;
}

.signup-container {
  max-width: 400px;
  margin: 30px auto 60px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.signup-container h5 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
}
.signup-container form {
  display: flex;
  flex-direction: column;
}
.signup-container form input[type=text],
.signup-container form input[type=password] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.signup-container form .password-wrapper {
  position: relative;
}
.signup-container form .password-wrapper .show-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #0073b1;
  font-size: 0.9rem;
  cursor: pointer;
}
.signup-container form .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.signup-container form .form-check input {
  margin-right: 8px;
}
.signup-container form .form-check label {
  font-size: 0.9rem;
}
.signup-container form .small-text {
  font-size: 0.8rem;
  color: red;
  margin-bottom: 20px;
}
.signup-container form .small-text a {
  text-decoration: underline;
  color: #0073b1;
}
.signup-container form .btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.signup-container form .btn.btn-primary {
  background-color: #0a66c2;
  color: white;
}
.signup-container form .btn.btn-outline-google, .signup-container form .btn.btn-microsoft {
  background-color: #fff;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.signup-container form .btn.btn-outline-google img, .signup-container form .btn.btn-microsoft img {
  height: 16px;
  width: 16px;
}
.signup-container form .btn.btn-microsoft {
  background-color: whitesmoke;
}
.signup-container .text-center {
  text-align: center;
}
.signup-container .extra-links {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 20px;
}
.signup-container .extra-links a {
  color: gray;
}

@media (max-width: 576px) {
  .linkedin-logos {
    margin: 30px auto 0px;
  }
  .signup-container {
    margin: 15px 10px 30px;
    padding: 20px;
  }
  .signup-container .linkedin-logos {
    font-size: 24px;
    margin-top: 30px;
  }
  .signup-container .btn,
  .signup-container .btn-outline-google,
  .signup-container .btn-microsoft {
    font-size: 0.9rem;
    padding: 10px;
  }
  .signup-container .show-password {
    font-size: 0.8rem;
  }
}
/***********************2222***************************/
.login-container {
  max-width: 400px;
  margin: 60px auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.login-container .logo {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.login-container .heading {
  font-size: 20px;
  margin-bottom: 8px;
}
.login-container .subtext {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 20px;
}
.login-container form .form-group {
  text-align: left;
  margin-bottom: 15px;
}
.login-container form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.login-container form .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login-container form .form-group .forgot-link {
  text-align: right;
  margin-top: 6px;
}
.login-container form .form-group .forgot-link a {
  font-size: 0.85rem;
  color: #0073b1;
  text-decoration: none;
}
.login-container form .btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #0073b1;
  color: white;
  border: none;
  border-radius: 5px;
  margin: 10px 0 16px 0;
  font-size: 1rem;
  cursor: pointer;
}
.login-container form .agreement {
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
}
.login-container form .agreement a {
  color: #0073b1;
  text-decoration: none;
}
.login-container .btn-google,
.login-container .btn-apple {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}
.login-container .btn-google {
  background-color: white;
  border: 1px solid #ccc;
}
.login-container .btn-apple {
  background-color: black;
  color: white;
}
.login-container .apple-icon {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.login-container .signup {
  margin-top: 20px;
  font-size: 0.9rem;
}
.login-container .signup a {
  color: #0073b1;
  text-decoration: none;
}

@media (max-width: 576px) {
  .login-container {
    margin: 30px 10px;
    padding: 20px;
  }
  .login-container .logo {
    font-size: 24px;
  }
  .login-container .heading {
    font-size: 1.1rem;
  }
  .login-container .form-group label {
    font-size: 0.9rem;
  }
  .login-container .btn-google,
  .login-container .btn-apple {
    font-size: 0.9rem;
    padding: 10px;
  }
  .login-container .agreement,
  .login-container .subtext {
    font-size: 0.75rem;
  }
}
/**********************333333****************************/
.text-center {
  text-align: center;
}

.linkedin-logo {
  font-size: 30px;
  font-weight: bold;
  color: #0077b5;
  margin-bottom: 10px;
}

.text-primary {
  color: #004182;
}

.form-container {
  max-width: 500px;
  margin: 30px auto 60px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.form-container .form-heading {
  margin-bottom: 20px;
}
.form-container .form-group {
  margin-bottom: 16px;
  text-align: left;
}
.form-container .form-group label {
  display: block;
  margin-bottom: 6px;
}
.form-container .form-group .input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.form-container .form-group .input.invalid {
  border-color: #555;
}
.form-container .form-group .invalid-feedback {
  color: #999;
  font-size: 0.85rem;
  margin-top: 4px;
}
.form-container .btn-primary {
  background-color: #004182;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}
.form-container .btn-primary:hover {
  background-color: #004182;
}

.full-width {
  width: 100%;
}

@media (max-width: 576px) {
  .linkedin-logo {
    font-size: 24px;
    padding-top: 40px;
  }
  .form-container {
    margin: 20px 10px 40px;
    padding: 20px;
  }
  .form-container .form-heading {
    font-size: 1rem;
  }
  .form-container .form-group label {
    font-size: 0.9rem;
  }
  .form-container .form-group .invalid-feedback {
    font-size: 0.75rem;
  }
  .form-container .btn-primary {
    font-size: 0.9rem;
    padding: 10px;
  }
}
/**********************444444****************************/
.verify-box {
  max-width: 500px;
  margin: 60px auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.verify-box .verify-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.verify-box .verify-header .close-btn {
  font-size: 20px;
  color: #999;
  cursor: pointer;
}
.verify-box form .form-control {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.verify-box form .btn-primary {
  background-color: #0073b1;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}
.verify-box form .btn-primary:hover {
  background-color: #999;
}
.verify-box .resend-section {
  margin-top: 20px;
  text-align: center;
}
.verify-box .resend-section .text-muted {
  color: #555;
  font-size: 0.85rem;
}
.verify-box .resend-section .resend-links {
  margin-top: 8px;
}
.verify-box .resend-section .resend-links a {
  margin: 0 5px;
  color: #0073b1;
  text-decoration: none;
  font-size: 0.9rem;
}
.verify-box .resend-section .resend-links a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .verify-box {
    margin: 30px 10px;
    padding: 20px;
    text-align: center;
  }
  .verify-box h5 {
    font-size: 1.1rem;
  }
  .verify-box .form-control {
    font-size: 0.95rem;
  }
  .verify-box .btn-primary {
    font-size: 0.95rem;
    padding: 10px;
  }
  .verify-box .close-btn {
    font-size: 18px;
  }
  .verify-box .text-muted,
  .verify-box .resend-links a {
    font-size: 0.85rem;
  }
}
/**********************555555****************************/
/***********************666666***************************/
.page-six .container {
  padding: 0 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.border-dashed {
    border-style: dashed !important;
  }
.profile-header {
  background-color: #f3f2ef;
  padding: 20px;
  border-radius: 10px;
}
.profile-actions button {
  margin: 5px;
}
.suggestion-box, .analytics-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}
.list-group-item {
              position: relative;
              padding-right: 80px; /* Add space for top-right date */
            }
            .message-time {
              position: absolute;
              top: 8px;
              right: 15px;
              font-size: 0.75rem;
              color: #888;
            }

            .btn:hover {
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.message-bubble {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  background-color: #e9ecef;
}

.chat-header small {
  color: #6c757d;
}

.page-six .container .left-column, .page-six {
  background: #fff;
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-six , .page-six .container .right-column {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-six .container .left-column {
  flex: 1 1 70%;
}
.page-six .container .right-column {
  flex: 1 1 25%;
}

.page-six .container .left-column-job {
  flex: 1 1 20%;
}
.page-six .container .right-column-job {
  flex: 1 1 70%;
}
.page-six .profile-header {
  position: relative;
  height: 200px;
  background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2c1-jyk4sHUDY-s_jvOaaPWnoqdhvJy-Nvw&s") center/cover no-repeat;
}
.page-six .profile-header .profile-avatar {
  position: absolute;
  bottom: -50px;
  left: 30px;
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcStoJASkd2OkiCTYq22ttmA9OA3TYw4PuR1uw&s") center/cover no-repeat;
}
.page-six .profile-info {
  margin-top: 60px;
}
.page-six .profile-info h4 {
  margin-bottom: 5px;
}
.page-six .profile-info p {
  margin: 0 0 10px;
}
.page-six .button-group {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-six .button-group button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}
.page-six .analytics-list {
  list-style: none;
  padding: 0;
}
.page-six .analytics-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}
.page-six .alert {
  background: #f9f9f9;
  padding: 10px;
  margin: 10px 0;
  border-left: 4px solid #ccc;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .profile-header .profile-avatar {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }
  .profile-info {
    margin-top: 80px;
    text-align: center;
  }
  .button-group {
    justify-content: center;
  }
}
/**********************777777****************************/
.page-seven {
  padding: 30px 0;
}
.page-seven .profile-section,
.page-seven .about-section,
.page-seven .activity-section,
.page-seven .right-sidebar {
  background: white;
  border-radius: 10px;
  padding: 20px 20px 0;
  margin-bottom: 0;
}
.page-seven .profile-picture {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.page-seven .btn-light-custom {
  background: #eef3f8;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
}
.page-seven .tab-buttons button {
  border: none;
  background: none;
  padding: 10px;
  font-weight: bold;
}
.page-seven .tab-buttons button.active {
  border-bottom: 2px solid #0a66c2;
  color: #0a66c2;
}
.page-seven .post-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 0;
}
.page-seven .post-card img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .page-seven .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-seven .profile-section img.profile-picture {
    margin-bottom: 15px;
  }
  .page-seven .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .page-seven .tab-buttons button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .page-seven .activity-section .btn-outline-primary {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .page-seven .right-sidebar {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .page-seven .container {
    padding: 0 15px;
  }
  .page-seven .col-md-8,
  .page-seven .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-seven .profile-picture {
    width: 70px;
    height: 70px;
  }
  .page-seven .btn-sm {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}
@media (max-width: 575.98px) {
  .page-seven .post-card {
    padding: 12px;
    font-size: 0.9rem;
  }
  .page-seven .tab-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-seven .tab-buttons button {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
  }
  .page-seven .right-sidebar h6,
  .page-seven .right-sidebar p,
  .page-seven .right-sidebar small {
    text-align: center;
  }
  .page-seven .right-sidebar .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-seven .right-sidebar .d-flex img {
    margin-bottom: 8px;
  }
  .page-seven .profile-section,
  .page-seven .about-section,
  .page-seven .activity-section,
  .page-seven .right-sidebar {
    margin-bottom: 0;
  }
}

/***********************8888888***************************/
.pg-8 {
  margin: 30px auto;
}
.pg-8 .profile-mini {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.pg-8 .profile-mini img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.pg-8 .card-experience {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.pg-8 .experience-item {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.pg-8 .experience-item:last-child {
  border-bottom: none;
}
.pg-8 .experience-item .exp-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #ddd center/cover no-repeat;
  flex-shrink: 0;
  margin-right: 15px;
}
.pg-8 .sidebar-panel .card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.pg-8 .small-link {
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .experience-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .experience-item .exp-logo {
    margin-bottom: 10px;
  }
  .sidebar-panel {
    margin-top: 30px;
  }
  .sidebar-panel .btn {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 15px;
  }
  .col-lg-8,
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .profile-mini {
    text-align: center;
    flex-direction: column !important;
    align-items: center !important;
  }
  .profile-mini img {
    margin-bottom: 10px;
  }
  .profile-mini h6 {
    font-size: 1rem;
  }
  .experience-item {
    padding: 12px;
  }
  .experience-item h6 {
    font-size: 0.95rem;
  }
  .experience-item small {
    font-size: 0.8rem;
  }
  .sidebar-panel .card h6,
  .sidebar-panel .card small,
  .sidebar-panel .card strong {
    text-align: center;
  }
  .sidebar-panel .card .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sidebar-panel .card .d-flex img {
    margin-bottom: 8px;
  }
  .sidebar-panel .card .d-flex .btn {
    margin-top: 8px;
  }
  .sidebar-panel .card .btn {
    width: 100%;
  }
  .small-link {
    display: inline-block;
    margin-top: 8px;
    text-align: center;
    font-size: 0.8rem;
  }
}
@media (max-width: 575.98px) {
  .pg-8 {
    margin: 0 auto 0;
  }
  .exp-logo {
    width: 35px;
    height: 35px;
  }
}
/************************9999999**************************/
.page-nine .profile-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.page-nine .section-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.page-nine .edu-item, .page-nine .cert-item {
  margin-bottom: 15px;
}
.page-nine .btn-link-custom {
  text-decoration: none;
  color: #0a66c2;
  font-weight: 500;
}
.page-nine .btn-link-custom:hover {
  text-decoration: underline;
}
.page-nine .credential-button {
  background-color: #e6f0ff;
  color: #0a66c2;
  font-weight: 500;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
}
.page-nine .credential-button:hover {
  background-color: #d0e3ff;
}

/* Tablet and below */
@media (max-width: 991.98px) {
  .profile-section {
    padding: 15px;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .credential-button {
    font-size: 0.9rem;
  }
}
/* Small devices (≤768px) */
@media (max-width: 767.98px) {
  .profile-section {
    margin-bottom: 15px;
  }
  .edu-item h6,
  .cert-item h6 {
    font-size: 1rem;
  }
  .edu-item small,
  .cert-item small {
    font-size: 0.85rem;
  }
  .credential-button {
    padding: 5px 8px;
    font-size: 0.85rem;
  }
  .btn-link-custom {
    font-size: 0.9rem;
  }
}
/* Extra small devices (≤576px) */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .edu-item,
  .cert-item {
    margin-bottom: 12px;
  }
  .edu-item h6,
  .cert-item h6 {
    font-size: 0.95rem;
  }
  .edu-item small,
  .cert-item small {
    font-size: 0.8rem;
  }
  .credential-button {
    width: 100%;
    text-align: center;
  }
}
/********************10******************************/
.page-ten .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.page-ten .profile-headerer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.page-ten .profile-headerer .profile-picow {
  width: 60px;
  border-radius: 50%;
}
.page-ten .profile-headerer .profile-infos {
  flex: 1;
  margin-left: 15px;
}
.page-ten .profile-headerer .header-actions {
  display: flex;
  gap: 10px;
}
.page-ten .profile-headerer .header-actions .btnowp {
  background-color: #e0e0e0;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.page-ten .profile-headerer .header-actions .btnowp.primary {
  background-color: #0a66c2;
  color: white;
}
.page-ten .profile-headerer .header-actions .btnowp.open {
  border: 1px solid #0a66c2;
  background-color: white;
  color: #0a66c2;
}
.page-ten .skills,
.page-ten .interests {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 60%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.page-ten .skills ul,
.page-ten .interests ul {
  list-style: none;
  padding-left: 0;
}
.page-ten .skills ul li,
.page-ten .interests ul li {
  margin-bottom: 10px;
}
.page-ten .skills .endorsement,
.page-ten .interests .endorsement {
  color: gray;
  font-size: 14px;
  margin-bottom: 0;
}
.page-ten .skills .interest-card,
.page-ten .interests .interest-card {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
  background-color: #f9f9f9;
}
.page-ten .skills .interest-card .btnowp.follow,
.page-ten .interests .interest-card .btnowp.follow {
  margin-top: 8px;
  background-color: white;
  border: 1px solid gray;
}
.page-ten .sidebaroor {
  flex: 1 1 30%;
}
.page-ten .sidebaroor img {
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .page-ten .container {
    flex-direction: column;
    padding: 20px 10px;
  }
  .page-ten .profile-headerer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-ten .profile-headerer .profile-picow {
    width: 50px;
    margin-bottom: 10px;
  }
  .page-ten .profile-headerer .profile-infos {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page-ten .profile-headerer .header-actions {
    flex-direction: column;
    width: 100%;
  }
  .page-ten .profile-headerer .header-actions .btnowp {
    width: 100%;
    text-align: center;
  }
  .page-ten .skills,
  .page-ten .interests,
  .page-ten .sidebaroor {
    flex: 1 1 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .page-ten .sidebaroor img {
    width: auto;
    text-align: center;
  }
}

/************************11**************************/
.uyuy {
  /* General responsiveness for the layout */
  /* Tablet and small device (≤768px) */
  /* Small device (≤575px) */
}
.uyuy .sidebarrs {
  margin: 20px 0;
  min-height: 60vh;
  background-color: #f3f2ef;
}
.uyuy .connection-card img {
  border-radius: 50%;
}
.uyuy .connection-card {
  min-height: 250px;
}
@media (max-width: 991.98px) {
  .uyuy .container {
    padding: 20px;
  }
  .uyuy .sidebarrs {
    margin-bottom: 20px;
    min-height: auto;
    background-color: #f3f2ef;
  }
  .uyuy .connection-card img {
    width: 50px;
    height: 50px;
  }
  .uyuy .connection-card {
    min-height: auto;
    text-align: center;
    padding: 15px;
  }
  .uyuy .row-cols-md-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (max-width: 767.98px) {
  .uyuy .sidebarrs {
    padding: 15px;
  }
  .uyuy .container {
    padding: 15px;
  }
  .uyuy .nav-tabs {
    flex-direction: column;
    text-align: center;
  }
  .uyuy .nav-link {
    font-size: 1rem;
  }
  .uyuy .connection-card {
    min-height: 200px;
    flex: 1 0 48%;
    margin: 0;
  }
  .uyuy .connection-card img {
    width: 40px;
    height: 40px;
  }
  .uyuy .btn-outline-primary {
    width: 100%;
    margin-top: 10px;
  }
  .uyuy .uyuy {
    padding: 0 15px;
  }
}
@media (max-width: 575.98px) {
  .uyuy .sidebarrs {
    padding: 10px;
  }
  .uyuy .connection-card {
    min-height: 200px;
    flex: 1 0 100%;
  }
  .uyuy .connection-card img {
    width: 35px;
    height: 35px;
  }
  .uyuy .btn-outline-primary {
    width: 100%;
    font-size: 0.85rem;
    margin-top: 8px;
  }
  .uyuy .container {
    padding: 10px;
  }
  .uyuy .nav-tabs {
    flex-direction: column;
    text-align: center;
  }
  .uyuy .nav-link {
    font-size: 0.9rem;
  }
}

/************************12**************************/
.thirteen-page {
  padding: 30px 0;
}
.thirteen-page .container .profile-card, .thirteen-page .container .job-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.thirteen-page .container .job-title {
  font-weight: 600;
  font-size: 16px;
}
.thirteen-page .container .location {
  font-size: 14px;
  color: gray;
}
.thirteen-page .container .job-card a {
  color: #0077b5;
}
.thirteen-page .container .job-card a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .container {
    padding: 20px;
  }
  .col-md-3,
  .col-md-6 {
    margin-bottom: 20px;
  }
  .profile-card,
  .job-card {
    padding: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  .btn-outline-primary {
    width: 100%;
  }
}
/*********************13*****************************/
.page-13 {
  margin: 30px auto;
}
.page-13 .chat-sidebar {
  height: auto;
  overflow-y: auto;
  background-color: white;
  border-right: 1px solid #ddd;
}
.page-13 .chat-window {
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.page-13 .chat-header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.page-13 .chat-messages {
  flex-grow: inherit;
  padding: 15px;
  overflow-y: auto;
}
.page-13 .chat-input {
  border-top: 1px solid #ddd;
  padding: 10px;
}
.page-13 .message-bubble {
  background-color: #eef3f8;
  padding: 8px 12px;
  border-radius: 15px;
  margin-bottom: 10px;
  display: inline-block;
}
.page-13 .right-panel {
  background-color: white;
  padding: 15px;
  height: auto;
  overflow-y: auto;
  border-left: 1px solid #ddd;
}

/* General layout for the entire chat interface */
@media (max-width: 991.98px) {
  .container {
    padding: 15px 15px 0;
  }
  .col-md-3, .col-md-6 {
    margin-bottom: 20px;
  }
  .chat-sidebar, .chat-window, .right-panel {
    height: auto; /* Remove fixed height for smaller screens */
  }
  .chat-header {
    padding: 10px;
  }
  .message-bubble {
    font-size: 14px; /* Make message bubbles smaller on smaller screens */
  }
  .input-group input {
    font-size: 14px;
  }
  .btn-outline-secondary {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .chat-sidebar, .chat-window, .right-panel {
    padding: 10px;
  }
  .chat-sidebar {
    margin-bottom: 15px;
  }
  .chat-window {
    margin-bottom: 15px;
  }
  /* Stack the chat components vertically on smaller screens */
  .col-md-3, .col-md-6 {
    width: 100%;
  }
  .chat-header h6 {
    font-size: 16px; /* Make header text smaller */
  }
  .message-bubble {
    font-size: 13px;
    padding: 6px 10px;
  }
  .btn-outline-secondary, .btn-primary {
    width: 100%; /* Make buttons full width on small screens */
  }
  .input-group input {
    font-size: 13px;
    padding: 10px;
  }
  .right-panel img {
    width: 40px;
    height: 40px; /* Make profile image smaller */
  }
}
/* Mobile devices (≤576px) */
@media (max-width: 575.98px) {
  .page-13 {
    text-align: center;
    margin: 0 auto 0;
  }
  .chat-sidebar {
    height: auto;
    margin-bottom: 10px;
  }
  .chat-window {
    height: auto;
  }
  .message-bubble {
    font-size: 12px;
    padding: 6px 10px;
  }
  .chat-header h6 {
    font-size: 14px;
  }
  .input-group input {
    font-size: 12px;
    padding: 8px;
  }
  .btn-outline-secondary, .btn-primary {
    font-size: 12px;
  }
  .right-panel img {
    width: 35px;
    height: 35px; /* Further reduce profile image size on small screens */
  }
}
/********************14******************************/
.page-14 {
  padding: 30px 0;
  /* Media Queries for Smaller Screens */
}
.page-14 .profile-card, .page-14 .notification-card, .page-14 .promo-card {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
.page-14 .notification-card:hover, .page-14 .promo-card:hover {
  background-color: #eef3f8;
  cursor: pointer;
}
.page-14 .btn-filter {
  margin-right: 10px;
}
.page-14 .notification-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-14 .profile-card, .page-14 .notification-card, .page-14 .promo-card {
    margin-bottom: 10px;
  }
  .page-14 .btn-filter {
    margin-bottom: 10px;
  }
  .page-14 .col-md-3 {
    margin-bottom: 20px; /* Adjust margin for responsiveness */
  }
}

/**************************************************/
/* Base layout for mobile devices */
.containerorr {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 20px;
}

/* Shared styles for sidebar and feed */
.sidebar-left,
.sidebar-right,
.feed {
  width: 100%;
  padding: 10px;
}

/* Profile card, trending, puzzles, post creator, and post styles */
.profile-card,
.trending,
.puzzles,
.post-creator,
.post {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Profile and post images */
.profile-img,
.post-img {
  width: 100%;
  border-radius: 8px;
}

/* Profile card header */
.profile-card h2 {
  font-size: 22px;
  margin: 10px 0;
}

/* Post creator input */
.post-creator {
  width: 100%;
  margin: auto;
}

.post-creator input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 27px;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.actions button {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.3s ease;
}

.actions button:hover {
  transform: scale(1.05);
}

.profile-card {
  max-width: 100%;
  width: 320px;
  margin: 20px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease;
  text-align: center;
}

.profile-card:hover {
  transform: scale(1.02);
}

.profile-img {
  padding: 5px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a66c2;
  margin-bottom: 10px;
}

.profile-card h2 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #333;
}

.profile-card p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.profile-card i {
  margin-right: 6px;
  color: #0a66c2;
}

.profile-card hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #eee;
}

.profile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-links a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  text-align: left;
}

.profile-links a:hover {
  color: #004182;
}

@media (max-width: 400px) {
  .profile-card {
    width: 90%;
    padding: 15px;
  }

  .profile-card h2 {
    font-size: 18px;
  }

  .profile-links a {
    font-size: 13px;
  }
}


/* Tablet and up (≥768px) */
@media (min-width: 768px) {
  .containerorr {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1340px;
    margin: 0 auto;
  }
  .sidebar-left,
  .sidebar-right {
    width: 20%;
  }
  .feed {
    width: 58%;
  }
}
/* Optional: Desktop (≥992px) */
@media (min-width: 992px) {
  .profile-card h2 {
    font-size: 26px;
  }
  .actions button {
    font-size: 0.95rem;
  }
}


/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************//*# sourceMappingURL=main.css.map */