/*--------------------------------------------------------------
# Sign In Section
--------------------------------------------------------------*/
/*-----------------------------------*/
profile Page start
/*-----------------------------------*/
.engineering-background {
  background-image: url('assets/img/4154.jpg'); /* এখানে ইমেজ পাথ দিন */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 20px;
  border-radius: 12px;
  overflow: hidden;
}

.nav-tabs {
  justify-content: center;
  border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
  color: #495057;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #f1f1f1;
}

.nav-tabs .nav-link.active {
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
  font-weight: bold;
}

.profile-body {
    display: flex;
    gap: 20px; /* Left & Right panel এর মাঝে স্পেস */
    flex-wrap: wrap;
}

.leftside {
    width: 25%; /* সাইডবারের প্রস্থ */
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.rightpanel {
    width: 75%; /* রাইট প্যানেলের প্রস্থ */
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.rightpanel h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rightpanel .list-group-item {
    background-color: #f7f7f7;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.leftside ul {
    padding-left: 0;
}

.leftside ul li {
    padding: 8px 0;
}

.leftside ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

.leftside ul li a:hover {
    color: #0056b3;
}
.engineering-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1); /* light overlay reduced */
  z-index: 1;
}

.engineering-background > * {
  position: relative;
  z-index: 2;
}
.profile-header {
  position: relative;
  background: url('assets/img/cover.jpg') center center no-repeat;
  background-size: cover;
  height: 250px;
  border-radius: 0 0 15px 15px;
}


.profile-image {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-body {
  margin-top: 80px;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.profile-body h3 {
  font-weight: bold;
}

.profile-body .btn {
  border-radius: 25px;
}
/*-----------------------------------*/
profile Page end
/*-----------------------------------*/

/*-----------------------------------*/
profile Background start
/*-----------------------------------*/
.engineering-background {
  background-image: url('assets/img/4154.jpg'); /* এখানে ইমেজ পাথ দিন */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 20px;
  border-radius: 12px;
  overflow: hidden;
}

.engineering-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.85); /* light overlay */
  z-index: 1;
}

.engineering-background > * {
  position: relative;
  z-index: 2;
}

/*-----------------------------------*/
profile Background End
/*-----------------------------------*/
.signin {
  padding: 100px 0;
  background-color: var(--background-color);
}

.signin .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}


.card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.btn {
  border-radius: 2rem;
  padding: 10px 20px;
}

.signin .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.signin-form {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.signin-form .form-control {
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin-bottom: 20px;
}

.signin-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.signin-form .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.signin-form .float-right {
  color: var(--accent-color);
  text-decoration: none;
}

.signin-form .float-right:hover {
  text-decoration: underline;
}

.signin-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 12px 40px;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
}

.signin-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.social-login .mb-3 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.social-login .mb-3:before,
.social-login .mb-3:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30%;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  top: 50%;
}

.social-login .mb-3:before {
  left: 0;
}

.social-login .mb-3:after {
  right: 0;
}

.facebook-btn, .google-btn {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  text-align: center;
  color: var(--contrast-color);
  text-decoration: none;
  font-weight: 500;
}

.facebook-btn {
  background: #3b5998;
}

.google-btn {
  background: #db4437;
}

.facebook-btn:hover, .google-btn:hover {
  color: var(--contrast-color);
  opacity: 0.9;
}
.form-group {
  margin-bottom: 15px; /* আপনি চাইলে 10px বা 20px করতে পারেন */
}

.register-link p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register-link a {
  color: var(--accent-color);
  font-weight: 600;
}

.register-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .signin {
    padding: 60px 0;
  }
  
  .signin-form {
    padding: 30px;
  }
}
/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register {
  padding: 100px 0;
  background-color: var(--background-color);
}

.register .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.register .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Sidebar Styles */
.sidebar {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.sidebar-box {
  margin-bottom: 30px;
}

.sidebar h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.sidebar h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.registration-steps {
  list-style: none;
  padding: 0;
}

.registration-steps li {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
}

.registration-steps li i {
  margin-right: 10px;
  font-size: 18px;
}

.registration-steps li.active {
  color: var(--accent-color);
  font-weight: 500;
}

.registration-steps li.active i {
  color: var(--accent-color);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 14px;
}

/* Form Styles */
.register-form {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.form-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.register-form .form-control {
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin-bottom: 20px;
}

.register-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.register-form .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 50%) !important;
}

.register-form .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register-form .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.register-form .form-check-label a:hover {
  text-decoration: underline;
}

.btn-register {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 12px 40px;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
}

.btn-register:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.login-link p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.login-link a {
  color: var(--accent-color);
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .sidebar {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .register {
    padding: 60px 0;
  }
  
  .register-form {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Register Section - Right Sidebar Version
--------------------------------------------------------------*/
.register {
  padding: 100px 0;
  background-color: var(--background-color);
}

/* Right Sidebar Styles */
.right-sidebar {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.right-sidebar .sidebar-box {
  margin-bottom: 30px;
}

.right-sidebar h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.right-sidebar h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.right-sidebar .benefits-list {
  list-style: none;
  padding: 0;
}

.right-sidebar .benefits-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.right-sidebar .benefits-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.right-sidebar p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-signin-sidebar, .btn-help-sidebar {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 15px;
  transition: all 0.3s;
}

.btn-signin-sidebar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-help-sidebar {
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-signin-sidebar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.btn-help-sidebar:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .right-sidebar {
    margin-bottom: 30px;
  }
  
  .register-form {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .register {
    padding: 60px 0;
  }
  
  .register-form {
    padding: 30px;
  }
}