* {
  box-sizing: border-box;
}


.edunest-navbar {
  height: 95px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.edunest-logo {
  width: 145px;
  height: auto;
  display: block;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #172033 !important;
  padding: 10px 15px !important;
  transition: all 0.25s ease;
}


.nav-link:hover {
  color: #1268e8 !important;
}

.nav-link.active {
  color: #1268e8 !important;
}

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;
  bottom: 2px;

  height: 3px;

  background: #1268e8;

  border-radius: 10px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 9px;

  background: white;

  color: #1268e8;

  border: 1.5px solid #1268e8;

  border-radius: 9px;

  padding: 11px 20px;

  font-size: 16px;
  font-weight: 600;

  transition: all 0.25s ease;
}

.login-btn:hover {
  background: #1268e8;
  color: white;
}

.login-btn::after {
  margin-left: 5px;
}

.dropdown-menu {
  min-width: 220px;
  margin-top: 12px !important;
  padding: 8px;
  border: none;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 14px;

  border-radius: 8px;

  font-size: 15px;

  color: #172033;

  transition: 0.2s;
}

.dropdown-item i {
  width: 20px;

  color: #1268e8;
}

.dropdown-item:hover {
  background: #eef5ff;

  color: #1268e8;
}

@media (max-width: 991px) {
  .edunest-navbar {
    height: auto;

    padding: 12px 0;
  }

  .navbar-nav {
    gap: 0;

    margin-top: 15px;
  }

  .nav-link {
    padding: 12px 5px !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .dropdown {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .login-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  main h1 {
    font-size: 2rem;
  }

  main p {
    font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  main p {
    font-size: 2rem;
  }

  .content-section div {
    font-size: 20px;
    font-weight: 500;
  }
}

@media (min-width: 200px) and (max-width: 991px) {
  .content-section {
    font-size: 1.1rem;
  }

  .content-section div {
    height: 70px;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .content-section div {
    height: 70px;
  }
}

.outer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px !important;
  min-height: 200px !important;
}

@media (max-width: 991px) {
  .content-section {
    display: flex;
    justify-content: center;
  }
}

.parts:hover {
  background-color: #1877f2 !important;
  cursor: pointer;
  border-radius: 15px !important;
  transition: all 0.6s ease !important;
}

.banner-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.banner-content img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
}

.banner-content-last h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.banner-content-last p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
}

.banner-content-last .btn {
  width: auto;
  height: 55px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .banner-section {
    padding: 60px 0;
  }

  .banner-content-last {
    text-align: center;
  }

  .banner-content-last h2 {
    font-size: 38px;
  }

  .banner-content-last p {
    font-size: 18px;
  }

  .banner-content-last .d-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .banner-content img {
    max-width: 320px;
  }

  .banner-content-last h2 {
    font-size: 28px;
  }

  .banner-content-last p {
    font-size: 16px;
  }

  .banner-content-last .btn {
    width: auto;
    height: 45px;
    font-size: 15px;
  }
}

.course-section {
  background-color: #f5f7fa;
}

.course-slider-wrapper {
  background-color: white;
  padding: 50px 20px;
}

.course-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.course-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.course-slide {
  min-width: 100%;
  padding: 10px;
}

.course-card {
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.course-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.course-card .card-body {
  padding: 25px;
}

.course-card p {
  color: #555;
  line-height: 1.6;
}

.course-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.course-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #b6b6b6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.course-dot.active {
  background-color: #0d6efd;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .course-slider-wrapper {
    padding: 40px 15px;
    border-radius: 20px;
  }

  .course-card {
    max-width: 360px;
  }

  .course-image {
    height: 210px;
  }
}

@media (max-width: 576px) {
  .course-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .course-slider-wrapper {
    padding: 30px 10px;
    border-radius: 16px;
  }

  .course-card {
    max-width: 310px;
    border-radius: 15px;
  }

  .course-image {
    height: 180px;
    border-radius: 15px 15px 0 0;
  }

  .course-card .card-body {
    padding: 18px;
  }
}

.learning-section {
  background: #eef3ff;
  padding: 80px 0;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%;
}

.skill-card {
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.skill-card span {
  font-size: 21px;
  font-weight: 600;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.blue {
  border-left: 8px solid #2f5bff;
}

.orange {
  border-left: 8px solid orange;
}

@media (max-width: 768px) {
  .skill-card span {
    font-size: 16px;
  }
}

.card {
  border-radius: 20px;
}

.card-header {
  border-radius: 20px 20px 0 0 !important;
}

.form-control,
.form-select {
  height: 50px;
  border-radius: 10px;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

button {
  border-radius: 10px;
}

#sendRequest {
  width: auto;
}

.footer-header{
  color:white;
  padding:10px;
  font-size: 19px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}
.ft-links{
  padding-left:0px;
}

.ft-links li a{
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-part{
  background-color: #191970;
}

.footer-text{
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
}

.ft-details{
  padding-left: 0px;
  list-style: none;
}

.ft-details li {
  font-size: 16px;
  font-weight: 400;
  padding : 3px
}

.ft-social{
  display: flex;
  justify-content: center;
  gap:30px;
  background-color: white;
  font-size: 29px;
  padding-left:0px;
  text-decoration: none;
  list-style: none;
}
