/* end */
.social-one {
  text-align: center;

  margin: 20px;
}

.social-one ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-one ul li {
  display: inline-block;
  margin-right: 7px;
}

.social-one ul li:last-child {
  margin-left: 10px;
  margin-right: 10px;
}

.social-one ul li a {
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* .socialone ul li a:hover {
  transform: scale(1.1);
} */

@media (max-width: 768px) {
  .social-one {
    text-align: center;
  }

  .social-one ul li {
    display: inline;
  }
}
.button-nav {
  display: inline-block;
  background-color: #bf0c7a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1rem;
  padding: 5px 7px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.button-nav:hover {
  background-color: #7c004d;
}

/* end */

/*-------------------------------- navbar------------------------------------  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100vh;
}

/* -------------------------navbar one----------------------------------- */
.nav-one {
  padding: 1rem 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #78335d;
  color: #ffffff;
  font-size: 1.5rem; /* Adjusted font size */
  position: relative;
  z-index: 8;
  height: 55px;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.list-inline-item {
  margin-right: 1rem;
}
.list-inline-item-one {
  margin-right: 1rem;
  display: hide;
  color: #822626;
}

.list-inline-item a {
  color: #ffffff;
  text-decoration: none;
}

.list-inline-item-one a {
  color: #78335d;
  text-decoration: none;
}

.list-inline-item a:hover {
  opacity: 0.8;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-one {
    flex-direction: row;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    padding: 1rem 0rem;
    padding-left: 30px;
  }

  .list-inline {
    display: inline-block;
    flex-direction: row;
    align-items: center;
  }

  .list-inline-item {
    margin-right: 0;
    margin-bottom: 1rem;
    display: none;
  }
  .list-inline-item-one {
    margin-right: 0;

    font-size: 1.5rem;
  }
  .list-inline-item-one a {
    color: #ffffff;
    margin-left: 1px;
    margin-right: 1px;
  }
}
.apply-now-btn {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border-top-left-radius: 20px; /* Rounded top left corner */
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px; /* Rounded top left corner */
  border-bottom-left-radius: 20px;
}

.apply-now-btn:hover {
  background-color: #ffffff;
}

/*------------------------------- navbar two----------------------------- */
.nav-two {
  padding: 0 7.8rem;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f7f7;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 8;
}

.nav-two .logo {
  height: 5.9rem;
}

.navbar-list {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.navbar-link {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  transition: all 0.3s;
}

.navbar-link:hover {
  color: #78335d;
}
.drop-one:hover {
  color: #78335d;
}

.mobile-navbar-btn {
  display: flex;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-icon {
  width: 4rem;
  height: 4rem;
  color: #000000;
  display: none;
}

.mobile-navbar-btn.open .mobile-nav-icon[name="menu-outline"] {
  display: none;
}

.mobile-navbar-btn.open .mobile-nav-icon[name="close-outline"] {
  display: flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-two {
    padding: 0 2.4rem;
  }

  .nav-two .logo {
    width: 55%;
    height: 50%;
  }

  .navbar {
    width: 100%;
    height: auto;
    background: #e7e7e7;
    position: absolute;
    top: 8rem;
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-list {
    flex-direction: column;
    align-items: left;
    gap: 0.5rem;
  }

  .active .navbar {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-navbar-btn {
    display: block;
    z-index: 999;
  }

  .mobile-nav-icon[name="menu-outline"] {
    display: block;
  }

  .mobile-nav-icon[name="close-outline"] {
    display: none;
  }
}
/* Main Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px; /* Adjust width for the main dropdown */
  border: 2px solid rgb(214, 214, 214);
  border-radius: 5px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 2px 20px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* .....................................dropdown */
.drop-one {
  font-size: 1.4rem;
}
.dropdown-content,
.dropdown-content-sub {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 350px;
  z-index: 1;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 1.4rem;
}

.dropdown-content-sub {
  position: relative;
}

.dropdown-content.show,
.dropdown-content-sub.show {
  display: block;
}

.dropbtn {
  cursor: pointer;
}

/* end ............................................*/
