@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --dark-blue: #2b235e;
  --light-purple: #9754a1;
  --green: #29aa62;
  --linear: linear-gradient(135deg, #1b325e, #23aa62, #9655a2);
  --light-blue: #f0f9ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 
Primary Font:
Font: Montserrat
Usage: For headings and prominent text to give a modern and clean look.

Secondary Font:
Font: Open Sans
Usage: For body text and secondary information to ensure readability and a professional appearance. 
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--light-blue);
  font-family: "Open Sans", sans-serif;
}

.bg-linear {
  background: var(--linear) !important;
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.txt-dark-blue {
  color: var(--dark-blue);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.txt-green {
  color: var(--green);
}

.bg-green {
  background-color: var(--green) !important;
}

.txt-purple {
  color: var(--light-purple);
}

.txt-dark-purple {
  color: var(--dark-purple);
}

.bg-purple {
  background-color: var(--light-purple);
}

/***** GENERAL STYLES START *****/

a {
  text-decoration: none;
}

.pageContainer {
  overflow: hidden;
}

/* UTILILTIES START */

.invalid {
  border-color: #dc3545 !important;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.valid {
  border-color: #198754 !important;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.ellipsis-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1 !important;
}

.links {
  position: relative;
  text-decoration: none;
}

.links::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

.links:hover::before {
  width: 100%;
}

@media (width<=992px) {
  .w-sm-100 {
    width: 100% !important;
  }
  .mt-xs-5 {
    margin-top: 3rem !important;
  }

  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
}

@media (width>=992px) {
  .position-lg-absolute {
    position: absolute !important;
  }

  .vh-lg-80 {
    height: 80vh !important;
  }

  .w-lg-80 {
    width: 80% !important;
  }

  .my-lg-10 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
  }

  .py-lg-10 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .mb-lg-7 {
    margin-bottom: 5rem !important;
  }

  .vh-lg-100 {
    height: 100vh !important;
  }
}

/* BG COLORS */
.bg-dark-blue {
  background-color: var(--dark-blue);
}

/* BUTTONS */

.btn {
  transition: 0.3s all ease-in-out;
}

.btn-main,
.btn-main:first-child:active,
:not(.btn-check) + .btn-main:active {
  background-color: var(--dark-blue);
  color: #ffffff;
  box-shadow: none;
  border: 1.5px solid var(--dark-blue);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.btn-main:hover,
.btn-main:focus-visible,
.btn-main:active {
  border: 1.5px solid var(--light-purple);
  background-color: var(--light-purple);
  color: #fff;
}

.btn-main-reverse,
.btn-main-reverse:first-child:active,
:not(.btn-check) + .btn-main-reverse:active {
  color: #fff;
  background-color: var(--light-purple);
  border: 1.5px solid var(--light-purple);
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.btn-main-reverse:hover,
.btn-main-reverse:focus-visible,
.btn-main-reverse:active {
  background-color: var(--dark-blue);
  color: #ffffff;
  box-shadow: none;
  border: 1.5px solid var(--dark-blue);
}

.btn-green,
.btn-green:first-child:active,
:not(.btn-check) + .btn-green:active {
  background-color: var(--green);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
}

.btn-green:hover,
.btn-green:focus-visible,
.btn-green:active {
  background-color: var(--light-purple);
  color: #ffffff;
  box-shadow: none;
}

/* DIVIDER */
.divider {
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* BOX */
.box {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  padding: 1em;
  transition: box-shadow 0.3s ease-in-out;
}

.box:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

.w-75 {
  min-width: 70%;
}

@media (width>=992px) {
  .w-lg-75 {
    width: 75%;
  }
}

/* UTILITIES END */

/***** GENERAL STYLES END *****/

/***** HEADER START *****/

/* nav-links */
.header .navbar-nav .nav-link {
  color: var(--dark-blue);
  /* font-weight: bold; */
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--green);
}

.navbar-toggler {
  z-index: 10000;
}

.navbar-toggler:focus {
  box-shadow: none;
}
/* sign-in-btn */
.header .btn-main {
  width: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 25px;
}

.header .dropdown-menu {
  background-color: var(--light-blue);
}

.header .dropdown-menu .dropdown-item:hover {
  background-color: var(--light-purple);
}
/* language links */
/* .l-links {
  color: var(--grenishBlue);
  text-decoration: none;
}
.l-links:hover {
  color: var(--dark-grey);
  transition: color 0.3s ease-in-out;
} */

/* Mobile Toggler */
.mobile-menu-btn:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.mobile-menu-btn .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
  z-index: 10001;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
  height: 3px;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

/* mobile navbar dropdown toggled */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 150px;
  }

  .navbar-toggler.active {
    position: absolute;
    top: 30%;
    right: 0;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #f8f9fa;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .header .navbar-nav .nav-link {
    text-align: center;
    padding: 20px;
  }
}

/***** HEADER END ******/

/******************************************************* HOME-PAGE START *******************************************************/

/* HERO START  */
.hero .hero-slider img {
  /* height: 460px; */
  object-fit: cover;
  width: -webkit-fill-available !important;
}

.hero .hero-slider .btn-main {
  border-radius: 5px;
}

/* .hero .single-slider .img-slide {
  background-image: url(/assets/small-banner-bg.png);
} */

/* @media (width<=992px) {
  .hero .hero-slider img {
    height: 100%;
  }
} */

.hero .slider-head {
  position: relative;
  overflow: hidden;
}

.hero .slider-head:hover .tns-controls button:first-child {
  left: 0;
}

.hero .slider-head:hover .tns-controls button:last-child {
  right: 0;
}

.hero .tns-controls button {
  width: 35px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 17px;
  background: var(--dark-blue);
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -30px;
  border-radius: 0;
}

.hero .tns-controls button:hover {
  background-color: var(--light-purple);
  color: #fff;
}

.hero .tns-controls button:first-child {
  left: -40px;
  border-radius: 0 4px 4px 0;
}

.hero .tns-controls button:last-child {
  right: -40px;
  border-radius: 4px 0px 0px 4px;
}

.hero .hero-slider .single-slider .content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
}

/* SMALL SLIDER END */

/* HOW IT WORKS START */
.how-it-works {
  background: var(--dark-blue);
}

.how-it-works .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  .how-it-works .video-container {
    padding-bottom: 80.25%;
  }
}

.how-it-works .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.how-it-works .video-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-it-works .play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.how-it-works .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.how-it-works .box .circle {
  width: 40px;
  height: 40px;
  /* background: linear-gradient(135deg, #1b325e, #23aa62, #9655a2); */
  /* background-color: var(--green); */
  /* background-color: rgb(12, 29, 60); */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.how-it-works .box {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
  /* background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7)); */
  border: 1px solid var(--dark-blue);
  transition: all 0.5s ease-in-out;
}

.how-it-works .box:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  transform: scale(1.09);
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7));
}

.how-it-works .box .heading h3 {
  color: white;
}

.how-it-works .box .text {
  /* color: rgba(255, 255, 255, 0.6); */
  /* color: rgb(23, 236, 122, 1); */
  /* color: rgb(12, 29, 60); */
  color: rgba(0, 0, 0, 0.5);
}
/* HOW IT WORKS END */

/* ABOUT START */
.about .box {
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.about .box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.about .col-md-6:first-child .box {
  background: linear-gradient(125deg, rgba(68, 58, 142, 0.7), rgba(181, 124, 195, 0.7));
  border: 1px solid white;
}

@media (width>=992px) {
  .about .box {
    height: 300px;
  }
}

.about .col-md-6:first-child .box .feature-icon {
  /* color: var(--green); */
  color: var(--dark-blue);
}

.about .col-md-6:first-child .box p {
  color: var(--dark-blue);
}

.about .col-md-6:nth-child(2) .box {
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7));
  border: 1px solid white;
}

.about .col-md-6:nth-child(2) .box .feature-icon {
  color: #1e532b;
}

.about .col-md-6:nth-child(2) .box p {
  color: #1e532b;
}

.about .btn-main {
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.about .btn-main:hover,
.about .btn-main:focus,
.about .btn-main:active {
  animation: pulse 1s infinite !important;
}

.about .btn-green {
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #1e532b;
}

.about .btn-green:hover,
.about .btn-green:focus,
.about .btn-green:active {
  background-color: var(--light-purple);
  animation: pulse 1s infinite !important;
}
/* ABOUT END */

/* FEATURES START */
.features .box {
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.features .box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.features .box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.features .col-lg-4:first-child .box {
  background: linear-gradient(125deg, rgba(68, 58, 142, 0.7), rgba(181, 124, 195, 0.7));
  border: 1px solid white;
}

.features .col-lg-4:first-child .box .feature-icon {
  /* color: var(--green); */
  color: var(--dark-blue);
}

.features .col-lg-4:first-child .box p {
  color: var(--dark-blue);
}

.features .col-lg-4:nth-child(2) .box {
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7));
  border: 1px solid white;
}

.features .col-lg-4:nth-child(2) .box .feature-icon {
  color: #1e532b;
}

.features .col-lg-4:nth-child(2) .box p {
  color: #1e532b;
}

.features .col-lg-4:last-child .box {
  background: linear-gradient(135deg, #1b325e, #9655a2);
  border: 1px solid white;
}

.features .col-lg-4:last-child .box .feature-icon {
  color: #390a41;
}

.features .col-lg-4:last-child .box p {
  color: #390a41;
}

.features .box {
  margin-bottom: 30px;
}
/* FEATURES END */

/* CALL-TO-ACTION START */
.callToAction {
  background: var(--green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* color: white;  */
  position: relative;
}

.callToAction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/lines.png");
  background-repeat: no-repeat;
  background-position: right center;
  /* background-size: ; */
  z-index: 1;
}

.callToAction .container {
  position: relative;
  z-index: 2;
}

.callToAction .btn-main {
  padding-inline: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
}

.callToAction .btn-main:hover {
  transform: scale(1.2);
}

/* CALL-TO-ACTION2 START */
.callToAction2 .container {
  /* background: linear-gradient(135deg, #b2dfdb, #fff); */
  background: linear-gradient(125deg, #443a8e, #b57cc3);
}
.callToAction2 .card {
  border: 1px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  padding: 1em;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.callToAction2 .card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.callToAction2 textarea:focus,
.callToAction2 input:focus {
  outline: none;
  border-color: #23aa62;
  box-shadow: 0 0 0 0.2rem rgba(35, 170, 98, 0.25);
}

@media (width>=992px) {
  .callToAction2 {
    margin-bottom: 100px;
    margin-top: 150px;
  }
}
/* CALL-TO-ACTION END */

/* INTERNSHIPS-CAROUSEL START */

.internships .title {
  text-decoration: none;
  /* font-size: 2.6rem; */
  color: var(--green);
  font-weight: 600;
}

.internships .title-link {
  font-size: 1.2rem;
  font-weight: 500;
  /* padding-top: 0.5rem; */
}

.internships .title-link a {
  text-decoration: none;
  /* color: #313131; */
  background: var(--linear);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.internships .title-link a:hover {
  font-weight: 600;
  letter-spacing: 1px;
}

.internships .img-a {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.internships .title-link span {
  font-size: 20px;
  padding-right: 4px;
  vertical-align: middle;
}

.internships .card-box {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.internships .card-box span {
  line-height: 0;
}

.internships .card-box .img-a {
  transition: 0.8s all ease-in-out;
}

@media (max-width: 767px) {
  .internships .card-box {
    margin-bottom: 2.5rem;
  }

  /* .internships .card-box .card-overlay-a-content {
    bottom: 65px;
  }

  .internships .card-box .card-body-a {
    padding-bottom: 1rem;
  } */
}

@media (min-width: 768px) {
  .internships .card-box:hover .img-a {
    transform: scale(1.2);
  }

  .internships .card-box .price-a {
    font-size: 0.9rem;
  }

  /* .internships .card-box:hover .card-overlay-a-content {
    bottom: 60px;
  }

  .internships .card-box:hover .card-body-a {
    padding-bottom: 1rem;
  } */
}

@media (min-width: 992px) {
  .internships .card-box .price-a {
    font-size: 1rem;
  }
}

/* @media (min-width: 768px) and (min-width: 992px) {
  .internships .card-box:hover .card-overlay-a-content {
    bottom: 64px;
  }
} */

.internships .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.internships .card-overlay-a-content {
  transition: all 0.5s ease-in;
  position: absolute;
  width: 100%;
  bottom: 0px;
  z-index: 2;
}

@media (min-width: 768px) {
  .internships .card-overlay-a-content {
    bottom: -20px;
  }
}

@media (min-width: 992px) {
  .internships .card-overlay-a-content {
    bottom: 0px;
  }
}

.internships .card-header-a {
  padding: 0 1rem;
}

.internships .card-header-a .card-title-a {
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0.7rem;
}

@media (min-width: 768px) {
  .internships .card-header-a .card-title-a {
    font-size: 1.3rem;
  }
}

@media (min-width: 992px) {
  .internships .card-header-a .card-title-a {
    font-size: 2rem;
  }
}

.internships .card-header-a .card-title-a a {
  color: #ffffff;
  text-decoration: none;
}

.internships .card-body-a {
  z-index: 2;
  transition: all 0.5s ease-in;
  padding: 0rem 1rem 2rem 1rem;
}

.internships .card-body-a .price-box {
  padding-bottom: 0.5rem;
}

.internships .price-a {
  color: #ffffff;
  padding: 0.6rem 0.8rem;
  border: 2px solid #2eca6a;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.internships .link-a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.internships .link-a:hover {
  padding-right: 5px;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .internships .link-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .internships .link-a {
    font-size: 1rem;
  }
}

.internships .link-a:hover {
  text-decoration: none;
}

.internships .link-a span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .internships .link-a span {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .internships .link-a span {
    font-size: 18px;
  }
}

/* .internships .card-footer-a {
  width: 100%;
  position: absolute;
  z-index: 2;
  background: var(--linear);
} */

.internships .card-info {
  list-style: none;
  margin-bottom: 0;
  padding: 0.5rem 0;
}

.internships .card-info .card-info-title {
  font-size: 1rem;
  color: #313131;
}

@media (min-width: 768px) {
  .internships .card-info .card-info-title {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .internships .card-info .card-info-title {
    font-size: 1rem;
  }
}

.internships .card-info li span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .internships .card-info li span {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .internships .card-info li span {
    font-size: 1rem;
  }
}

.internships .card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.internships .card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.internships .owl-carousel .owl-nav button.owl-next,
.internships .owl-carousel .owl-nav button.owl-prev {
  width: 35px;
  height: 35px;
  background: var(--green);
  border-radius: 50%;
  outline: 0 !important;
  border: none !important;
  font-size: 28px;
  color: #fff;
  padding: 8px 6px !important;
  transition: 0.3s all ease-in-out;
}

.internships .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--light-purple);
  color: #fff;
}

.internships .owl-carousel .owl-nav button span {
  position: relative;
  top: -14px !important;
}

.internships .owl-carousel .owl-nav {
  margin: 30px 0 0 0;
}

/* PAGINATION */
.pagination-a {
  text-decoration: none;
}

.pagination-a .pagination .page-link {
  margin: 0 0.2rem;
  border-color: transparent;
  padding: 0.5rem 0.8rem;
  color: #000000;
}

.pagination-a .pagination .page-link:hover,
.pagination-a .pagination .page-link:active,
.pagination-a .pagination .page-link:focus {
  background-color: var(--green);
}

.pagination-a .pagination .page-link span {
  font-size: 1.2rem;
  vertical-align: middle;
}

.pagination-a .pagination .next .page-link {
  padding: 0.4rem 0.9rem;
}

.pagination-a .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-a .pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-a .pagination .page-item.disabled .page-link {
  padding: 0.4rem 0.9rem;
  color: #555555;
}

.pagination-a .pagination .page-item.active .page-link {
  background-color: var(--green);
}
/* INTERNSHIPS-CAROUSEL END */

/******************************************************* HOME-PAGE END *********************************************************/

/****************************************************** HOME-PAGE END **********************************************************/

/************************************************** INTERNSHIP-DETAILS-START ***************************************************/
.internship-details-section .img-a {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  max-height: 300px;
}
.internship-details-section .intern-img {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.internship-details-section .job-desc p {
  color: var(--dark-blue);
  margin-bottom: 0px;
}
.internship-details-section .job-desc h1,
.internship-details-section .job-desc h2,
.internship-details-section .job-desc h3,
.internship-details-section .job-desc h4,
.internship-details-section .job-desc h5,
.internship-details-section .job-desc h6 {
  color: var(--dark-blue);
  text-shadow: none;
  font-size: 1rem;
  font-weight: 700;
}

.internship-details-section .job-desc strong {
  font-weight: 700;
}

.internship-details-section .section-heading {
  position: relative;
}
.internship-details-section #myTab {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.internship-details-section .section-heading h1 {
  margin: 0;
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
}

.internship-details-section .section-heading h1::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--dark-blue);
  margin: 5px auto 0 auto;
}
.internship-details-section .section-heading .details-title {
  margin-left: 50px;
}
.internship-details-section .section-heading .details-title::after {
  background-color: white;
}

.internship-details-section .img-b {
  /* aspect-ratio: 1 / 1; */
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.internship-details-section .icon-shape {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  vertical-align: top;
  height: 2.5rem;
  line-height: 2.5rem;
  width: 2.5rem;
  /* background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7)); */
}

.internship-details-section .icon-shape:hover {
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  animation: pulseCustom 1s infinite;
  background: linear-gradient(125deg, #443a8e, #b57cc3);
}

@keyframes pulseCustom {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.internship-details-section .basic-info span {
  font-size: 14px;
}

.internship-details-section .icon-shape:hover span {
  transition: color 0.1s ease-in-out;
  color: #fff;
  /* z-index: 3; */
}

.internship-details-section .ad-info .nav-tabs .nav-item {
  width: auto;
}

.internship-details-section .ad-info .nav-tabs {
  border-color: var(--green);
}

.internship-details-section .ad-info .nav-tabs .nav-link {
  /* color: transparent; */
  /* -webkit-background-clip: text !important;
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7)); */
  color: white;
  font-weight: lighter;
  transition: 0.3s all ease-in-out;
  /* margin-right: 10px; */
  margin-right: 7px;
  background-color: var(--green);
  border-radius: 15px;
  padding: 3px 13px;
}
@media (width<=992px) {
  .internship-details-section .ad-info .nav-tabs .nav-link {
    margin-right: 5px;
  }
}

.internship-details-section .ad-info .nav-tabs .nav-link:hover,
.internship-details-section .ad-info .nav-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(125deg, #443a8e, #b57cc3) !important;
  border-color: var(--dark-blue);
}

/* .internship-details-section .owl-dots .owl-dot.active span,
.internship-details-section .owl-dots .owl-dot:hover span {
  background-color: var(--green) !important;
} */

.internship-details-section .ad-info .list-a {
  text-decoration: none;
  display: inline-block;
  line-height: 2;
  padding: 0;
  list-style: none;
  margin: 0;
}

.internship-details-section .ad-info .list-a li:before {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #313131;
  background-color: var(--blue);
  top: 15px;
  right: 0;
}

.internship-details-section .ad-info .list-a li {
  position: relative;
  width: 50%;
  float: left;
  padding-right: 25px;
  padding-left: 5px;
}

@media (min-width: 992px) {
  .internship-details-section .ad-info .list-a li {
    width: 33.333%;
  }
}

.internship-details-section .ad-info .summary-list {
  padding-left: 1rem;
}

.internship-details-section .ad-info .summary-list .list {
  padding: 0;
  line-height: 2;
}

.internship-details-section .ad-info .summary-list {
  padding-left: 1rem;
}

/* .internship-details-section .ad-info .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.internship-details-section .ad-info .video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internship-details-section .ad-info .play-button {
  width: 60px;
  height: 60px;
  background: var(--linearGreenPurple);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.internship-details-section .ad-info .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}

.internship-details-section .ad-info .video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.internship-details-section .ad-info .map-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.internship-details-section .ad-info .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
} */

.internship-details-section #scoreAccordion {
  display: flex;
  flex-direction: column;
  border: none;
  justify-content: space-between;
  gap: 15px;
}
.internship-details-section #scoreAccordion .accordion-item {
  border: none;
}
.internship-details-section .accordion.score .accordion-button {
  background-color: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  padding: 13px;
}
.internship-details-section .accordion.score .accordion-button:last-of-type {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.internship-details-section .accordion.score .accordion-button:not(.collapsed) {
  /* background: var(--green); */
  background: linear-gradient(125deg, #443a8e, #b57cc3);
  color: #fff;
}

/* .internship-details-section .accordion.score .accordion-button:not(.collapsed) {
  background: var(--dark-blue);
} */

.internship-details-section .accordion.score .accordion-button:focus {
  box-shadow: none;
}

.internship-details-section table.applicants {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove table borders */
}

.internship-details-section table.applicants tbody tr td {
  background-color: transparent;
  border: none;
  /* Transparent row background */
}

.internship-details-section table.dataTable.no-footer {
  border: none;
}

.internship-details-section table.applicants .row:not(.row.no-style) {
  /* background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;*/
  padding: 10px;
  /*  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
  margin-bottom: 15px;
  transition: 0.3s all ease-in-out;
}

/*.internship-details-section table.applicants .row:hover:not(.row.no-style) {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}*/

.internship-details-section .applicant-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  /*border: 2px solid var(--green);*/
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.internship-details-section .table.applicants .fs-smaller {
  font-size: smaller;
}

.internship-details-section .dataTables_paginate.paging_simple_numbers {
  display: flex;
  justify-content: center;
  /* Centers the pagination */
  margin-top: 20px;
  /* Optional: Adds spacing above the pagination */
}

.internship-details-section .dataTables_wrapper .dataTables_paginate {
  float: none;
}

.internship-details-section .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: linear-gradient(125deg, #443a8e, #b57cc3) !important;
}

.internship-details-section .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #fff !important;
}
.internship-details-section .buttons-div button:hover {
  background-color: var(--dark-blue) !important;
}

.internship-details-section .logo-holder {
  display: grid;
  place-items: center;
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
}

.internship-details-section .logo-holder img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: center;
  border-radius: 30px;
  display: block;
}

.internship-details-section .company-name .img-b {
  max-width: 150px;
  max-height: 150px;
}
.internship-details-section .ad-info .section-heading {
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
@media (min-width: 980px) {
  .internship-details-section .ad-info .section-heading {
    padding-left: 3em;
  }
}
@media (min-width: 1200px) {
  .internship-details-section .ad-info .section-heading {
    padding-left: 8em;
  }
}

.internship-details-section #description {
  border: 7px solid var(--dark-blue);
  border-radius: 50px;
  padding: 20px;
}
.internship-details-section #skills {
  border: 7px solid var(--dark-blue);
  border-radius: 50px;
  padding: 20px;
}
.internship-details-section #summary {
  border: 7px solid var(--dark-blue);
  border-radius: 50px;
  padding: 20px;
}
.internship-details-section #result {
  border: 7px solid var(--dark-blue);
  border-radius: 50px;
  padding: 20px;
}
.internship-details-section #applicants {
  border: 7px solid var(--dark-blue);
  border-radius: 50px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}
.internship-details-section .reject-btn:hover {
  color: white;
  background-color: var(--light-purple);
}
.internship-details-section .tab-content {
  padding-top: 0.3rem;
}
.internship-details-section .tab-pane {
  position: relative;
  padding: 3.5rem;
}
.internship-details-section .tab-content .apply-btn {
  position: absolute !important;
  top: -0.5% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  border-radius: 29px;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 2.8rem !important;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem) !important;
  white-space: nowrap !important;
  transition: all 0.3s ease;
}

.internship-details-section .btn:disabled {
  opacity: 1 !important;
}
.internship-details-section .tab-pane .descTitle {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}
.internship-details-section .tab-pane .descTitle::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.22rem;
  background-color: var(--green);
  left: 0;
  bottom: 0;
}

@media (max-width: 769px) {
  .internship-details-section .approve-reject-div {
    position: none;
    left: 0;
    top: 0;
    text-align: center;
  }
}

@media (min-width: 770px) {
  .internship-details-section .approve-reject-div {
    position: relative;
    left: 50%;
    top: 0%;
  }
}

@media (min-width: 990px) {
  .internship-details-section .approve-reject-div {
    position: relative;
    left: 65%;
    top: 0%;
  }
}

@media (max-width: 992px) {
  .internship-details-section .tab-content .apply-btn {
    padding: 0.4rem 2.2rem;
    font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
    top: 0;
  }
}

@media (max-width: 576px) {
  .internship-details-section .tab-content .apply-btn {
    padding: 0.35rem 1.8rem;
    top: -0.5rem;
    top: 0;
  }
}

/*************************************************** INTERNSHIP-DETAILS-END ****************************************************/

/******************************************************** FOOTER-START *********************************************************/
/* SOCIAL ICONS */
.footer {
  background-color: var(--dark-blue);
}
.footer .social-icons i {
  color: white;
  font-size: 24px;
  vertical-align: middle;
}

.footer .social-icons i,
.footer .social-icons svg {
  transition: 0.3s all ease-in-out;
}

.footer .social-icons i:hover,
.footer .social-icons svg:hover {
  transform: scale(1.3);
}

.footer .social-icons .x-icon i:hover {
  color: black;
  transition: 0.1s ease-in-out;
}

.footer .social-icons .facebook-icon i:hover {
  color: #1877f2;
  transition: 0.1s ease-in-out;
}

.footer .social-icons .ig-icon svg {
  /* fill: var(--dark-blue); */
  fill: white;
}

.footer .social-icons .ig-icon svg:hover path {
  fill: url(#gradient);
  transition: 0.1s ease-in-out;
}

@media (max-width: 992px) {
  .footer .social-icons {
    justify-content: center;
  }
}

/* FOOTER LINKS */
.footer .footer-links,
.footer .footer-links li {
  padding: 0.5rem 0;
  list-style: none;
  color: white;
  /* color: var(--dark-blue); */
}

.footer .footer-links .nav-item .footer-link {
  /* color: var(--dark-blue) !important; */
  color: white;
  /* font-weight: bold; */
}

.footer .footer-links a:hover {
  padding-left: 5px;
  transition: 0.3s ease-in-out;
}

.footer .footer-links p {
  color: rgba(255, 255, 255, 0.8);
  /* color: var(--dark-blue); */
}

.footer .copyrights {
  color: rgba(255, 255, 255, 0.6);
}

.footer .btn-green {
  border-radius: 5px;
}

.footer .btn-green:hover {
  transform: scale(1.2);
  border: 1px solid whitesmoke;
}

/* SUBSCRIBE TO OUR NEWSLETTER */

.footer .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.footer .modal-body {
  padding: 0;
}

.footer .img-fluid {
  border-radius: 0;
}

.footer h2 {
  color: var(--dark-blue);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p.lead {
  color: #6c757d;
  font-size: 1.1rem;
}

.footer .form-control:focus {
  box-shadow: none;
}

.footer .input-group {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: 0.3s all ease-in-out;
}

.footer .input-group:hover,
.footer .input-group:focus {
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.footer .form-control {
  border: 1px solid transparent;
  padding: 15px;
  font-size: 1rem;
  height: 50px;
}

.footer .input-group-text {
  background-color: var(--light-blue);
  border: 1px solid transparent;
  padding: 15px;
  width: 50px;
}
.footer .input-group-text i {
  margin: 0 auto;
}

/* .footer .text-muted {
  font-size: 0.875rem;
  color: #6c757d;
} */

@media (max-width: 767.98px) {
  .footer h2 {
    font-size: 1.5rem;
  }

  .footer p.lead {
    font-size: 1rem;
  }

  .footer .form-control {
    padding: 12px;
    height: 45px;
  }

  .footer .input-group-text {
    padding: 12px;
  }
}

/********************************************************* FOOTER-END **********************************************************/

/* Background overlay */
.gradient-overlay {
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7)), url("https://mdbcdn.b-cdn.net/img/Photos/new-templates/search-box/img4.webp");
  background-size: cover;
  background-position: center;
}

/* General form styles */
.form-outline {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control-lg {
  font-size: 1rem;
  padding: 1.5rem 1rem;
  height: auto;
}

.form-outline input,
.form-outline textarea {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 1.25rem 1rem;
  height: auto;
}

.form-outline input:focus,
.form-outline textarea:focus {
  outline: none;
  border-color: #23aa62;
  box-shadow: 0 0 0 0.2rem rgba(35, 170, 98, 0.25);
}

.form-outline label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  transition: all 0.2s ease;
  background-color: white;
  padding: 0 0.25rem;
  color: #495057;
}

.form-outline input:focus + .form-label,
.form-outline textarea:focus + .form-label,
.form-outline input:not(:placeholder-shown) + .form-label,
.form-outline textarea:not(:placeholder-shown) + .form-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #1b325e;
}

.form-outline input:not(:placeholder-shown) + .form-label,
.form-outline textarea:not(:placeholder-shown) + .form-label {
  background-color: transparent;
}

/* Button styles */
.btn-register {
  background-color: #1b325e;
  /* Dark blue */
  color: #fff;
  /* White text */
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-register:hover {
  background-color: #9655a2;
  /* Hover color */
  color: #fff;
  /* White text */
}

/* Link styles */
a.text-body {
  color: #fff;
  /* White text */
}

a.text-body:hover {
  color: #9655a2;
  /* Purple text */
  text-decoration: underline;
}

/* Heading and text styles */
h2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

p,
label,
.form-check-label {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #fff;
  /* White text */
}

/*--------------------------------------------------- FEEDBACK-PAGE-START -----------------------------------------------------*/

.feedback .card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  padding: 1em;
  transition: box-shadow 0.3s ease-in-out;
}

.feedback .card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

.feedback .card h2 {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
  -webkit-background-clip: text;
  color: transparent;
}
.modal.home .modal-header {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
}

.modal.home textarea:focus {
  outline: none;
  border-color: #23aa62;
  box-shadow: 0 0 0 0.2rem rgba(35, 170, 98, 0.25);
}

/*---------------------------------------------------- FEEDBACK-PAGE-END ------------------------------------------------------*/

/*----------------------------------------------------- DASHBORAD-START -------------------------------------------------------*/

.intern-dashboard,
.vendor-dashboard {
  background-color: white;
}

.intern-dashboard .form-check-input {
  width: 2.2rem;
  height: 1.2rem;
  transform: scale(1.2);
  background-color: #ddd;
  border: 2px solid #ddd;
  transition: all 0.3s ease-in-out;
}

/* Checked State */
.intern-dashboard .form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}

/* Fix Bootstrap default background */
.intern-dashboard .form-check-input:focus {
  box-shadow: none;
  border-color: none;
}

/* Override default Bootstrap switch icon */
.intern-dashboard .form-check-input::before {
  content: "";
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

/* Move the toggle circle when checked */
.intern-dashboard .form-check-input:checked::before {
  left: calc(100% - 1rem);
}

.intern-dashboard .form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}

.intern-dashboard .form-check-label.switch {
  vertical-align: middle;
}

.vendor-dashboard .navbar {
  background-color: var(--green);
}

.intern-dashboard .navbar {
  background-color: var(--dark-blue);
}

.vendor-dashboard .calendar-icon a {
  color: var(--green);
  transition: color 0.3s ease-in-out;
}

.vendor-dashboard .calendar-icon a:hover {
  color: var(--dark-blue);
}

.intern-dashboard .calendar-icon a {
  color: var(--dark-blue);
  transition: color 0.3s ease-in-out;
}

.intern-dashboard .intern-dashboard .calendar-icon a:hover {
  color: var(--green);
}

.intern-dashboard .dashboard-sidebar,
.vendor-dashboard .dashboard-sidebar {
  max-width: 264px;
  min-width: 264px;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
  z-index: 1111;
}
.intern-dashboard .certifications .upload-placeholder,
.vendor-dashboard .certifications .upload-placeholder {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.intern-dashboard .certifications .upload-placeholder:hover,
.intern-dashboard .certifications .upload-placeholder:hover {
  border: 1px solid var(--green);
  transform: translateY(-10px);
}

.intern-dashboard .certifications .certifications-container,
.vendor-dashboard .certifications .certifications-container {
  gap: 8px;
}

@media (width<=992px) {
  .intern-dashboard .certifications .upload-placeholder,
  .vendor-dashboard .certifications .upload-placeholder {
    width: 80px;
    height: 80px;
  }
}
.intern-dashboard .certifications .upload-placeholder img,
.vendor-dashboard .certifications .upload-placeholder img {
  width: 100%;
  aspect-ratio: 1 /1;
}
.intern-dashboard .certifications .upload-placeholder input[type="file"],
.vendor-dashboard .certifications .upload-placeholder input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.intern-dashboard .certifications .form-control,
.vendor-dashboard .certifications .form-control {
  padding: 1rem 1rem;
  border: 1px solid var(--green);
  transition: all 0.3s ease-in-out;
}

.intern-dashboard .certifications .form-control:focus,
.vendor-dashboard .certifications .form-control:focus {
  box-shadow: none;
}
.intern-dashboard .certifications .form-control:hover,
.vendor-dashboard .certifications .form-control:hover {
  transform: scale(1.02);
}

.intern-dashboard .dashboard-sidebar {
  background-color: var(--dark-blue);
}

.vendor-dashboard .dashboard-sidebar {
  background-color: var(--green);
}

.intern-dashboard .dashboard-sidebar.collapsed,
.vendor-dashboard .dashboard-sidebar.collapsed {
  margin-left: -264px;
}

.intern-dashboard .ls-dashboard h3,
.vendor-dashboard .ls-dashboard h3 {
  font-size: 1.2375rem;
  color: #fff;
}

.intern-dashboard .ls-dashboard a,
.vendor-dashboard .ls-dashboard a {
  cursor: pointer;
  text-decoration: none;
  /* font-family: "Poppins", sans-serif; */
}

.intern-dashboard .ls-dashboard li,
.vendor-dashboard .ls-dashboard li {
  list-style: none;
}

.intern-dashboard .dashboard-wrapper,
.vendor-dashboard .dashboard-wrapper {
  align-items: stretch;
  display: flex;
  width: 100%;
}
.intern-dashboard .dashboard-main,
.vendor-dashboard .dashboard-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

.intern-dashboard .ls-dashboard .sidebar-logo,
.vendor-dashboard .ls-dashboard .sidebar-logo {
  padding: 1.15rem 1.5rem;
}

.intern-dashboard .ls-dashboard .sidebar-header,
.vendor-dashboard .ls-dashboard .sidebar-header {
  color: #e9ecef;
  font-size: 0.75rem;
  /* padding: 1.5rem 1.5rem 0.375rem; */
  padding: 0rem 1.5rem;
}

.intern-dashboard .ls-dashboard a.sidebar-link,
.vendor-dashboard .ls-dashboard a.sidebar-link {
  padding: 0.625rem 1.625rem;
  color: #e9ecef;
  position: relative;
  display: block;
  font-size: 1rem;
  transition: 0.3s all ease-in;
}
.intern-dashboard .ls-dashboard a.sidebar-link:hover {
  font-size: 1.09rem;
  /* letter-spacing: 1.5px; */
  color: var(--green);
}
.vendor-dashboard .ls-dashboard a.sidebar-link:hover {
  font-size: 1.05rem;
  color: var(--dark-blue);
}

.intern-dashboard .navbar-nav .nav-link i,
.vendor-dashboard .navbar-nav .nav-link i {
  vertical-align: middle;
}

.intern-dashboard .ls-dashboard .sidebar-link[data-bs-toggle="collapse"]::after,
.vendor-dashboard .ls-dashboard .sidebar-link[data-bs-toggle="collapse"]::after {
  border: solid;
  border-width: 0 0.075rem 0.075rem 0;
  content: "";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  transform: rotate(-135deg);
  transition: all 0.2s ease-out;
}

.intern-dashboard .ls-dashboard .sidebar-link[data-bs-toggle="collapse"].collapsed::after,
.vendor-dashboard .ls-dashboard .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

.intern-dashboard .dashboard-content,
.vendor-dashboard .dashboard-content {
  flex: 1;
  max-width: 100vw;
  width: 100vw;
}

.intern-dashboard .dashboard-main .navbar-nav .nav .topbar-divider,
.vendor-dashboard .dashboard-main .navbar-nav .nav .topbar-divider {
  width: 0;
  border-right: 1px solid #e3e6f0;
  height: calc(4.375rem - 2rem);
  margin: auto 1rem;
}

@media (min-width: 768px) {
  .intern-dashboard .dashboard-content,
  .vendor-dashboard .dashboard-content {
    width: auto;
  }
}

.intern-dashboard .img-profile,
.vendor-dashboard .img-profile {
  height: 2rem;
  width: 2rem;
}

.intern-dashboard .rounded-circle,
.vendor-dashboard .rounded-circle {
  border-radius: 50%;
}

.intern-dashboard .form-control-lg,
.vendor-dashboard .form-control-lg {
  font-size: 1rem;
  padding: 1rem 1rem;
}

.intern-dashboard .ms-parent .ms-choice,
.vendor-dashboard .ms-parent .ms-choice {
  display: block;
  width: 100%;
  height: 4rem;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #dee2e6;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 5px;
  background-color: #fff;
  /* padding-top: 20px;
  padding-bottom: 20px; */
}

.intern-dashboard .ms-parent .ms-choice .placeholder,
.vendor-dashboard .ms-parent .ms-choice .placeholder {
  background-color: transparent;
  cursor: pointer;
}

.intern-dashboard .ms-choice > span.placeholder,
.vendor-dashboard .ms-choice > span.placeholder {
  color: rgba(0, 0, 0, 1);
}

.intern-dashboard .ms-parent .ms-choice > span,
.vendor-dashboard .ms-parent .ms-choice > span {
  position: absolute;
  top: 20px;
  padding-left: 20px;
}

.intern-dashboard .ms-drop ul span,
.vendor-dashboard .ms-drop ul span {
  color: var(--dark-blue);
}
.intern-dashboard .ms-drop .selected span,
.intern-dashboard .ms-drop .ms-select-all span,
.vendor-dashboard .ms-drop .selected span,
.vendor-dashboard .ms-drop .ms-select-all span {
  color: var(--green);
}

.intern-dashboard .accordion-button.collapsed,
.vendor-dashboard .accordion-button.collapsed {
  background: var(--dark-blue);
  /* background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7)); */
}
.intern-dashboard .accordion-button:not(.collapsed),
.vendor-dashboard .accordion-button:not(.collapsed) {
  /* background: var(--linear); */
  background: linear-gradient(to bottom right, rgba(27, 50, 94, 0.7), rgba(35, 170, 98, 0.7));
}

.intern-dashboard .accordion-button,
.vendor-dashboard .accordion-button {
  color: white;
  box-shadow: none;
}

.intern-dashboard .form-control:focus,
.intern-dashboard .ms-choice:focus,
.intern-dashboard .form-select:focus,
.vendor-dashboard .form-control:focus,
.vendor-dashboard .ms-choice:focus,
.vendor-dashboard .form-select:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: none;
  border-color: #23aa62;
  box-shadow: 0 0 0 0.2rem rgba(35, 170, 98, 0.25);
}

.intern-dashboard ul,
.vendor-dashboard ul {
  padding: 0;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  max-height: 60px;
  overflow-y: scroll;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 0px;
  margin-bottom: 10px;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-bottom: 4px !important;
  margin-top: 0px !important;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 1rem;
}

/* .select2-container--default .select2-selection--multiple:focus {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 1rem;
} */

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  /* background-color: #e4e4e4; */
  background: var(--linear);
  border: 1px solid #aaa;
  border-radius: 40px;
  padding: 5px;
  /* position: absolute; */
  /* top: 10px; */
  /* padding-left: 20px; */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: white;
  font-size: 1rem;
  vertical-align: middle;
  /* font-size: larger; */
  /* padding: 0px 5px; */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
  position: static;
  vertical-align: middle;
  /* font-size: larger; */
  /* top: 5px; */
}

.vendor-dashboard .ql-editor p {
  color: #000000;
}

/* .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
} */

/* .vendor-dashboard .view-internships .content {
  padding: 20px;
}

.vendor-dashboard .view-internships .card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
} */

/* .vendor-dashboard .view-internships .internship-card {
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-dashboard .view-internships .internship-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.vendor-dashboard .view-internships .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: fill;
}

.vendor-dashboard .view-internships .card-body {
  padding: 20px;
}

.vendor-dashboard .view-internships .card-body h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b325e;
  margin-bottom: 10px;
}

.vendor-dashboard .view-internships .card-body p {
  margin-bottom: 8px;
  color: #23aa62;
}

.vendor-dashboard .view-internships .btn {
  margin-right: 5px;
}

.vendor-dashboard .view-internships .pagination-a .page-item.active .page-link {
  background-color: #23aa62;
  border-color: #23aa62;
}

@media (max-width: 768px) {
  .vendor-dashboard .view-internships .card-container {
    grid-template-columns: 1fr;
  }
} */

.vendor-dashboard .view-internships .internship-card {
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-dashboard .view-internships .internship-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.vendor-dashboard .view-internships .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vendor-dashboard .view-internships .card-body {
  padding: 20px;
}

.vendor-dashboard .view-internships .card-body h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b325e;
  margin-bottom: 10px;
}

.vendor-dashboard .view-internships .card-body p {
  margin-bottom: 8px;
  color: #23aa62;
}

.vendor-dashboard .view-internships .card-text,
.vendor-dashboard .view-internships .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-dashboard .bg-purple-linear {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
}
/* .vendor-dashboard .sidebar .form-label {
  color: #000;
} */

.vendor-dashboard .sidebar .search-btn {
  display: flex;
  justify-content: end;
  align-items: end;
  align-self: end;
}

.vendor-dashboard .view-internships .btn {
  margin-right: 5px;
}

.vendor-dashboard .view-internships.pagination-a .page-item.active .page-link {
  background-color: #23aa62;
  border-color: #23aa62;
}

@media (max-width: 768px) {
  .vendor-dashboard .view-internships .card-container {
    grid-template-columns: 1fr;
  }
}

.image-preview {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #222222;
  position: relative;
  overflow: hidden;
}

.image-preview__image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/*------------------------------------------------------ DASHBORAD-END --------------------------------------------------------*/

/*----------------------------------------------------- ABOUT PAGE-START ------------------------------------------------------*/

.about .icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  height: 3.5rem;
  line-height: 3.5rem;
  width: 3.5rem;
}

.about p {
  color: #64748b;
}

.about .border-primary-subtle {
  border-color: #d1b1ff !important;
}

.about .bg-primary {
  background-color: rgb(139, 61, 255, var(--bs-bg-opacity)) !important;
}

.about .text-primary {
  color: rgb(139, 61, 255, var(--bs-text-opacity)) !important;
}
.about .bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.about figure {
  margin: 0;
}

.about span.badge {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
  border: 1px solid #fff;
}

/*------------------------------------------------------ ABOUT PAGE-END -------------------------------------------------------*/

/*------------------------------------------------ GRAB-YOUR-INTERNSHIP-START -------------------------------------------------*/
/*------------------------------------------------ GRAB-YOUR-INTERNSHIP-START -------------------------------------------------*/
@media (width>=767px) {
  .internship-details-section.grab-your-intern .box {
    min-height: 430px;
  }

  .internship-details-section.grab-your-intern .about-text {
    max-height: 65px;
    overflow: auto;
  }

  /* .internship-details-section.grab-your-intern .skills {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .internship-details-section.grab-your-intern .skills:hover {
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 55px;
  } */

  .internship-details-section.grab-your-intern .skills {
    display: -webkit-box;
    /* LIMIT TO 2 LINES */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    /* APPRX 2 LINES */
    max-height: 3.5em;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
  }

  .internship-details-section.grab-your-intern .skills:hover {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    /* SCROLL IF CONTENT EXCEEDS THIS HEIGHT */
    max-height: 60px;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
    /* padding-right: 8px; Prevents text from being cut off due to scrollbar */
  }

  /* Prevent scrolling if the content is already within 2 lines */
  .internship-details-section.grab-your-intern .skills:not(:has(.badge:nth-child(4))) {
    overflow-y: hidden;
  }

  .internship-details-section.grab-your-intern .skills:hover .badge {
    margin-right: 4px !important;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
  }
}

.internship-details-section.grab-your-intern .grab_card {
  border-radius: 50px;
  box-shadow: 9px 7px 5px rgba(0, 0, 0, 0.4);
  min-height: 450px;
}

/*.internship-details-section.grab-your-intern .send-message-request-btn:hover{
  background-color: white;
  color: var(--dark-blue) !important;
  
}*/

.internship-details-section.grab-your-intern .pagination .page-link {
  display: inline-block;
  border: solid 3px var(--light-purple);
  background-color: transparent;
  border-radius: 0;
}

.internship-details-section.grab-your-intern .page-item.active .page-link {
  background-color: var(--light-purple) !important;
  color: white !important;
}

.internship-details-section.grab-your-intern .row {
  display: flex;
  flex-wrap: wrap;
}

.internship-details-section.grab-your-intern .col-lg-6 {
  display: flex;
}

.internship-details-section.grab-your-intern .grab_card {
  flex: 1;
  border-radius: 50px;
  box-shadow: 9px 7px 5px rgba(0, 0, 0, 0.4);
  min-height: 450px;
  height: 100%;
}

/*------------------------------------------------- HUB-YOUR-VENDOR-START --------------------------------------------------*/

@media (width>=767px) {
  .internship-details-section.vendors-page .box {
    min-height: 430px;
  }

  .internship-details-section.vendors-page .about-text {
    max-height: 65px;
    overflow: auto;
  }

  /* .internship-details-section.vendors-page .skills {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .internship-details-section.vendors-page .skills:hover {
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 55px;
  } */

  .internship-details-section.vendors-page .jobs {
    display: -webkit-box;
    /* LIMIT TO 2 LINES */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    /* APPRX 2 LINES */
    max-height: 3.5em;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
  }

  .internship-details-section.vendors-page .jobs:hover {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    /* SCROLL IF CONTENT EXCEEDS THIS HEIGHT */
    max-height: 60px;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
    /* padding-right: 8px; Prevents text from being cut off due to scrollbar */
  }

  /* Prevent scrolling if the content is already within 2 lines */
  /* .internship-details-section.vendors-page .jobs:not(:has(.badge:nth-child(4))) {
    overflow-y: hidden;
  } */

  .internship-details-section.vendors-page .jobs:hover .badge {
    margin-right: 4px !important;
    margin-bottom: 4px !important;
    margin-top: 3px !important;
  }
}

@media (max-width: 780px) {
  /* Small and extra-small screens */
  .grab_card {
    text-align: center;
    padding: 10px 0;
  }
}
.internship-details-section.vendors-page .vendor-card {
  border-radius: 76px;
  box-shadow: 7px 10px 7.6px 5px #00000040;
}
.internship-details-section.vendors-page {
  background-image: url("../assets/vendors-layer.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
}
.vendorContainer header {
  background-color: white;
}
.internship-details-section.vendors-page .vendor-card .profile-img {
  border-radius: 80px;
  width: 100%;
  margin: 0 auto;
}
/* .internship-details-section.vendors-page .vendor-card .profile-img img {
  max-width: 213px;
  padding: 1rem;
} */

.internship-details-section.vendors-page .vendor-card .profile-img img {
  padding: 0.5rem;
  overflow: hidden !important;
  height: 130px;
  object-fit: contain;
  width: 200px;
}
.internship-details-section.vendors-page .vendor-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  align-content: center;
  padding: 0 2rem 1rem 2.3rem;
}
.internship-details-section.vendors-page .vendor-card .card-body .card-title {
  align-self: center;
}
.internship-details-section.vendors-page .pagination .page-item .page-link {
  display: inline-block;
  border: solid 3px var(--light-purple);
  background-color: transparent;
  border-radius: 0;
}
/*------------------------------------------------- HUB-YOUR-VENDOR-END --------------------------------------------------*/

/*-------------------------------------------------- MESSAGING-SYSTEM-START ---------------------------------------------------*/

.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 30px;
  /* background-color: var(--dark-blue); */
  background-color: var(--light-purple);

  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.chat-icon .badge {
  width: 30px;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 14px;
  left: 90%;
}

.chat-sidebar-section .chat-sidebar {
  position: fixed;
  bottom: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: var(--dark-blue);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  transition: 0.3s all ease-in-out;
}

.chat-sidebar-section .chat-sidebar.active {
  right: 0;
}

.chat-sidebar-section .chat-header,
.chat-sidebar-section .requests-container {
  padding: 20px 15px;
}

.chat-sidebar-section .chat-header-text,
.chat-sidebar-section .requests-container {
  display: flex;
  justify-content: space-between;
}

/* .chat-sidebar-section .chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.chat-sidebar-section .chat-overlay.active {
  display: block;
} */

.chat-sidebar-section .close-chat-icon {
  position: absolute;
  top: 0;
  right: 5%;
  font-size: 20px;
}

.chat-sidebar-section .requests-button {
  transition: opacity 0.3s ease-in-out;
}
.chat-sidebar-section .requests-button:hover {
  opacity: 0.75;
}

.chat-sidebar-section .chat-list,
.chat-sidebar-section .requests-list {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.chat-sidebar-section .chat-item {
  background-color: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-sidebar-section .chat-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.chat-sidebar-section .chat-avatar {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border: 1px solid var(--green);
}

.chat-sidebar-section .chat-info .chat-name {
  font-size: 15px;
  font-weight: 500;
}

.chat-sidebar-section .chat-last-message {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* or 2 for two lines */
  overflow: hidden;
  font-size: 13px;
  color: #bbb;
}

.chat-sidebar-section .chat-meta {
  min-width: 50px;
}

.chat-sidebar-section .chat-time {
  font-size: 12px;
  color: #999;
}

.chat-sidebar-section .unread-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00aaff;
  border-radius: 50%;
  margin-top: 5px;
}

.chat-popup-section .card.chat-popup {
  position: fixed;
  bottom: -15px;
  right: 350px;
  width: 350px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1050;
}

@media (width<=992px) {
  .chat-popup-section .card.chat-popup {
    right: 0;
    bottom: 0;
    max-width: 100%;
    margin: 0 auto !important;
  }
}

.chat-popup-section .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--dark-blue);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
}

.chat-popup-section .card-header .btn-close-chat:hover,
.chat-popup-section .card-header .btn-close-chat:focus,
.chat-popup-section .card-header .btn-close:focus {
  box-shadow: none;
}

.chat-popup-section .card-body {
  background-color: var(--light-blue);
  color: white;
  height: 350px;
  overflow-y: auto;
}

.chat-popup-section .card-footer {
  background-color: var(--dark-blue);
  display: flex;
  align-items: center;
}

.chat-popup-section .card-footer .form-control:focus {
  box-shadow: none;
}
/*--------------------------------------------------- MESSAGING-SYSTEM-END ----------------------------------------------------*/

/*------------------------------------------------ NOTIFICATIONS-SYSTEM-START -------------------------------------------------*/
#notificationsSidebar {
  width: 450px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.notification-sidebar-body {
  height: 100vh;
  border-left: 3px solid var(--success);
}

#notificationsOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#notificationsSidebar .list-group-item {
  border: none;
  padding: 15px 20px;
}

#notificationsSidebar .list-group-item:not(:last-child) {
  border-bottom: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  #notificationsSidebar {
    width: 100%;
  }
}

.notification-count {
  font-size: 0.65rem;
  top: 25%;
  left: 25%;
}

.close-notification {
  vertical-align: middle;
}

.notification-icon {
  position: fixed;
  bottom: 20px;
  left: 30px;
  background-color: var(--green);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#notificationsSidebar .list-group-item:last-child {
  margin-bottom: 50px;
}

.notification-unread-count {
  font-size: 12px;
  font-weight: normal;
}

/*------------------------------------------------- NOTIFICATIONS-SYSTEM-END --------------------------------------------------*/

/*--------------------------------------------------- SERVICES-PAGE-START -----------------------------------------------------*/
.services .border-line {
  border-top: 2px solid white;
  height: 1px;
}

.services-puzzle .puzzle-text {
  color: var(--dark-blue);
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.services-puzzle .col-lg-4:nth-child(1) .puzzle-text {
  left: 40%;
}

.services-puzzle .col-lg-4:nth-child(2) .puzzle-text {
  top: 35%;
}
.services-puzzle .col-lg-4:nth-child(1) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(3) .puzzle-text {
  top: 30%;
}

.services-puzzle .col-lg-4:nth-child(3) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-text {
  left: 60%;
}

.services-puzzle .col-lg-4:nth-child(4) .puzzle-text {
  left: 35%;
}

.services-puzzle .col-lg-4:nth-child(6) .puzzle-text {
  left: 65%;
  top: 55%;
}

.services-puzzle .col-lg-4:nth-child(7) .puzzle-text {
  left: 43%;
}

.services-puzzle .col-lg-4:nth-child(7) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(8) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-text {
  top: 65%;
}

.services-puzzle .col-lg-4:nth-child(4) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(7) .puzzle-text {
  text-align: start;
}

.services-puzzle .col-lg-4:nth-child(6) .puzzle-text,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-text {
  text-align: end;
}

.services-puzzle .puzzle-wrapper {
  aspect-ratio: 1 / 1;
  position: relative;
  /* overflow: hidden; */
}

.services-puzzle .col-lg-4:nth-child(1) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(4) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(7) .puzzle-wrapper {
  justify-self: start;
}

.services-puzzle .col-lg-4:nth-child(2) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(5) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(8) .puzzle-wrapper {
  justify-self: center;
}

.services-puzzle .col-lg-4:nth-child(3) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(6) .puzzle-wrapper,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-wrapper {
  justify-self: end;
}

.services-puzzle .puzzle-img {
  object-fit: contain;
  width: 400px;
  height: 400px;
  /* width: 100%;
  height: 100%; */
  max-width: 100%;
}

.services-puzzle .col-lg-4:nth-child(1) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(3) .puzzle-img {
  object-position: top;
}

.services-puzzle .col-lg-4:nth-child(1) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(3) .puzzle-img {
  width: 350px;
}
.services-puzzle .col-lg-4:nth-child(2) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(7) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-img {
  width: 300px;
  object-position: top;
}

.services-puzzle .col-lg-4:nth-child(7) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(8) .puzzle-img,
.services-puzzle .col-lg-4:nth-child(9) .puzzle-img {
  object-position: bottom;
}

.services-puzzle .col-lg-4:nth-child(4) .puzzle-img {
  object-position: left;
}

.services-puzzle .col-lg-4:nth-child(6) .puzzle-img {
  object-position: right;
}

@media (max-width: 992px) {
  .services-puzzle .puzzle-img {
    object-position: center;
  }
  .services-puzzle .puzzle-wrapper {
    justify-self: center !important;
  }
  .services-puzzle .puzzle-img {
    object-position: center !important;
  }

  .services-puzzle .col-lg-4:nth-child(1) .puzzle-text,
  .services-puzzle .col-lg-4:nth-child(2) .puzzle-text,
  .services-puzzle .col-lg-4:nth-child(3) .puzzle-text {
    top: 45%;
  }

  .services-puzzle .col-lg-4:nth-child(4) .puzzle-text,
  .services-puzzle .col-lg-4:nth-child(6) .puzzle-text {
    left: 50%;
  }
  .services-puzzle .col-lg-4:nth-child(7) .puzzle-text,
  .services-puzzle .col-lg-4:nth-child(8) .puzzle-text,
  .services-puzzle .col-lg-4:nth-child(9) .puzzle-text {
    top: 55%;
  }
}

.services-pre-footer {
  background-color: var(--light-blue);
  background-image: url("../assets/services-pre-footer.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100vh;
  border-top-left-radius: 20%;
  border-top-right-radius: 30%;
  overflow: hidden;
}
/*---------------------------------------------------- SERVICES-PAGE-END ------------------------------------------------------*/

/*------------------------------------------------- JOB PORTAL-START----------------------------------------------------------------*/

/* Layout */
#wrapper {
  padding-top: 3.25em;
  background-color: var(--white);
}

.job-page .inner {
  padding: 3em 0;
  margin: 0 auto;
  max-width: 80em;
  width: calc(100% - 4em);
}

/* Text Colors */
.job-page section.dark-bg,
.job-page section#contact,
.job-page .dark-bg {
  background-color: var(--dark-blue);
  color: var(--light-blue);
}

/* Headings */
.job-page h1,
.job-page h2,
.job-page h3,
.job-page h4,
.job-page h5,
.job-page h6 {
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 1em 0;
}

.job-page :not(.dark-bg) h1,
.job-page :not(.dark-bg) h2,
.job-page :not(.dark-bg) h3,
.job-page :not(.dark-bg) h4,
.job-page :not(.dark-bg) h5,
.job-page :not(.dark-bg) h6 {
  color: var(--light-purple);
}

.job-page .dark-bg h1,
.job-page .dark-bg h2,
.job-page .dark-bg h3,
.job-page .dark-bg h4,
.job-page .dark-bg h5,
.job-page .dark-bg h6,
.job-page section#contact h1,
.job-page section#contact h2,
.job-page section#contact h3,
.job-page section#contact h4,
.job-page section#contact h5,
.job-page section#contact h6 {
  color: var(--light-blue);
}

/* Job Listings Grid */
.job-page .tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  min-width: 960px;
}

.job-page article {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  width: 100%;
  box-shadow: 0 2px 4px rgba(151, 84, 161, 0.1), 0 8px 16px rgba(151, 84, 161, 0.1), 0 16px 32px rgba(151, 84, 161, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(151, 84, 161, 0.15);
}

.job-page article:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 8px rgba(151, 84, 161, 0.15), 0 16px 32px rgba(151, 84, 161, 0.2), 0 24px 48px rgba(151, 84, 161, 0.25);
}

.job-page article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.job-page article header.major {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--light-blue);
}

.job-page article header.major p,
.job-page article header.major h3,
.job-page article header.major .major-actions a {
  color: var(--light-blue);
}

/* Buttons */
.job-page .major-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: var(--light-purple);
  color: var(--white) !important;
  padding: 0.4em 1em;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--dark-blue);
  font-weight: 600;
  font-size: 0.9em;
  height: 2em;
  min-width: 7em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.job-page .major-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: var(--green);
  border-color: var(--light-purple);
}

/* Filters */
.job-page .filter-container {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.job-page .form-control {
  border: 1px solid var(--light-purple);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.job-page .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(151, 84, 161, 0.25);
  border-color: var(--light-purple);
}

.job-page .btn-outline-light {
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.job-page .btn-outline-light:hover {
  background-color: var(--light-purple);
  border-color: var(--light-purple);
}

.job-page .btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  white-space: nowrap;
}

.job-page .btn-primary:hover {
  background-color: #1f8a4d;
  border-color: #1f8a4d;
  transform: translateY(-1px);
}

/* Dropdown */
.job-page .portal-dropdown-menu {
  background-color: var(--dark-blue);
  border: 1px solid var(--light-purple);
}

.job-page .portal-dropdown-item {
  color: var(--light-blue);
  cursor: pointer;
  transition: all 0.2s ease;
}

.job-page .portal-dropdown-item:hover {
  background-color: var(--light-purple);
  color: white;
}

.job-page .selected-option {
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
  .job-page .tiles {
    grid-template-columns: repeat(2, 1fr);
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .job-page .tiles {
    grid-template-columns: 1fr;
  }

  .job-page .selected-option {
    max-width: 80px;
  }

  .job-page .dropdown-toggle {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* /*------------------------------------------------- JOB PORTAL-END----------------------------------------------------------------*/

/*---------------------------------------------- LATEST-JOBS-START ------------------------------------------------------------*/

/* Jobs Section */
/* .jobs-section {
  background-color: var(--light-blue);
  padding: 5rem 0;
} */

/* .jobs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
} */

/* Section Header */
.jobs-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 3rem; */
}

.jobs-section .section-title {
  /* font-size: 2.2rem; */
  font-weight: 600;
  /* color: var(--dark-blue); */
  color: var(--green);
  position: relative;
  /* padding-bottom: 1rem; */
}

.jobs-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 80px;
  height: 4px;
  background: var(--linear);
  border-radius: 2px;
}

.jobs-section .view-all {
  display: inline-flex;
  align-items: center;
  color: var(--light-purple);
  /* font-weight: 600; */
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(151, 84, 161, 0.1);
}

.jobs-section .view-all:hover {
  color: white;
  background: var(--light-purple);
  transform: translateX(5px);
}

.jobs-section .view-all i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

/* Carousel Container */
.jobs-section .jobs-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.jobs-section .carousel-container {
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  gap: 2rem;
  padding-bottom: 1rem;
}

/* Job Cards */
.jobs-section .job-card {
  /* flex: 0 0 calc(25% - 1.5rem); */
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 35, 94, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(151, 84, 161, 0.15);
}

.jobs-section .job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(43, 35, 94, 0.15);
  border-color: rgba(151, 84, 161, 0.3);
}

.jobs-section .job-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 4px solid var(--green);
}

.jobs-section .job-content {
  padding: 1.8rem;
}

.jobs-section .job-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.jobs-section .job-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.jobs-section .job-title a:hover {
  color: var(--light-purple);
  transform: translateX(3px);
}

.jobs-section .company-name {
  color: var(--light-purple);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
  font-size: 0.95rem;
}

.jobs-section .job-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.jobs-section .meta-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--dark-blue);
}

.jobs-section .meta-item i {
  margin-right: 0.6rem;
  color: var(--light-purple);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.jobs-section .job-date {
  font-size: 0.8rem;
  color: var(--light-purple);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.jobs-section .view-details {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  background: var(--linear);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.jobs-section .view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(151, 84, 161, 0.3);
}

.jobs-section .view-details i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.jobs-section .view-details:hover i {
  transform: translateX(3px);
}

.jobs-section .owl-carousel .owl-nav button.owl-next,
.jobs-section .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 45%;
  transform: translateY(-50%);
  background: white;
  box-shadow: 0 5px 20px rgba(43, 35, 94, 0.1);
  border-radius: 50%;
  color: var(--light-purple);
  border: 1px solid rgba(151, 84, 161, 0.1);
  z-index: 10;
}

.jobs-section .owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--light-purple);
  color: white;
  transform: translateY(-45%) scale(1.1);
}

.jobs-section .owl-carousel .owl-nav button span {
  position: relative;
  top: -6px !important;
  font-size: 2.2rem !important;
}

.jobs-section .owl-prev {
  left: 5px;
}

.jobs-section .owl-next {
  right: 5px;
}

/* Carousel Navigation */
/* .jobs-section .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(43, 35, 94, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--light-purple);
  font-size: 1.2rem;
  border: 1px solid rgba(151, 84, 161, 0.1);
}

.jobs-section .carousel-arrow:hover {
  background: var(--light-purple);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.jobs-section .carousel-arrow.prev {
  left: 5px;
}

.jobs-section .carousel-arrow.next {
  right: 5px;
}

.jobs-section .carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
} */

/* .jobs-section .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(151, 84, 161, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.jobs-section .carousel-dot.active {
  background: var(--light-purple);
  transform: scale(1.2);
} */

/* Responsive Adjustments */
/* @media (max-width: 1200px) {
  .jobs-section .job-card {
    flex: 0 0 calc(33.333% - 1.5rem);
  }
} */

/* @media (max-width: 992px) {
  .jobs-section .job-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .jobs-section .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .jobs-section .carousel-arrow.prev {
    left: -15px;
  }

  .jobs-section .carousel-arrow.next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .jobs-section .job-card {
    flex: 0 0 100%;
  }

  .jobs-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobs-section .view-all {
    margin-top: 1rem;
  }

  .jobs-section .carousel-arrow {
    display: none;
  }
} */
/*------------------------------------------------- LATEST-JOBS-END----------------------------------------------------------------*/

/*---------------------------------------------------- JOB DETAILS-START ------------------------------------------------------*/

/* Job Details Container */
.jobs-details-page .job-container {
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(43, 35, 94, 0.1);
  overflow: hidden;
  border: 1px solid rgba(151, 84, 161, 0.15);
}

/* Job Header Section */
.jobs-details-page .job-header,
.jobs-details-page .contact-card {
  background: linear-gradient(135deg, var(--dark-blue), var(--light-purple));
  color: white;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jobs-details-page .job-header::before,
.jobs-details-page .contact-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.jobs-details-page .job-header::after,
.jobs-details-page .contact-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.jobs-details-page .job-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  color: white;
}

.jobs-details-page .job-meta {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white;
}

.jobs-details-page .salary {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: white;
}

/* Apply Button */
.jobs-details-page .button {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(41, 170, 98, 0.3);
}

.jobs-details-page .button:hover {
  background: #1f8a4d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(41, 170, 98, 0.4);
}

/* Job Content Sections */
.jobs-details-page .job-content {
  padding: 1rem 2.5rem;
}

.jobs-details-page .section-title {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-blue);
  position: relative;
}

.jobs-details-page .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: var(--light-purple);
}

.jobs-details-page .job-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.jobs-details-page .job-content p {
  color: var(--light-purple);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Lists */
.jobs-details-page .job-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.jobs-details-page .job-list li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
  color: #555;
}

.jobs-details-page .job-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Company Info Section */
.jobs-details-page .company-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Card */
/* .jobs-details-page .contact-card {
  background: var(--light-blue);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(151, 84, 161, 0.1);
} */

.jobs-details-page .contact-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.jobs-details-page .contact-title h3 {
  margin: 0 0 0 0.75rem;
  /* color: var(--dark-blue); */
  color: var(--white);
}

/* .jobs-details-page .contact-title i {
  font-size: 1.5rem;
  color: var(--light-purple);
} */

.jobs-details-page .contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.jobs-details-page .contact-item {
  display: flex;
  align-items: flex-start;
  text-align: start;
}

.jobs-details-page .contact-item i {
  font-size: 1.2rem;
  /* color: var(--light-purple); */
  color: var(--green);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.jobs-details-page .contact-item strong {
  display: block;
  /* color: var(--dark-blue); */
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.jobs-details-page .contact-item div {
  /* color: #555; */
  color: var(--white);
}

.jobs-details-page .contact-item a {
  /* color: var(--light-purple); */
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.jobs-details-page .contact-item a:hover {
  padding-inline-start: 8px;
}

.jobs-details-page .accordion-button.collapsed {
  background: var(--dark-blue);
}
.jobs-details-page .job-content .accordion-button:not(.collapsed) {
  background: linear-gradient(125deg, #443a8e, #b57cc3);
}

.jobs-details-page .accordion-button {
  color: white;
  box-shadow: none;
}

.jobs-details-page table.applicants {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove table borders */
}

.jobs-details-page table.applicants tbody tr td {
  background-color: transparent;
  border: none;
  /* Transparent row background */
}

.jobs-details-page table.dataTable.no-footer {
  border: none;
}

.jobs-details-page table.applicants .row:not(.row.no-style) {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  transition: 0.3s all ease-in-out;
}

.jobs-details-page table.applicants .row:hover:not(.row.no-style) {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.jobs-details-page .applicant-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.jobs-details-page .table.applicants .fs-smaller {
  font-size: smaller;
}

.jobs-details-page .dataTables_paginate.paging_simple_numbers {
  display: flex;
  justify-content: center;
  /* Centers the pagination */
  margin-top: 20px;
  /* Optional: Adds spacing above the pagination */
}

.jobs-details-page .dataTables_wrapper .dataTables_paginate {
  /* float: none; */
  position: absolute;
  top: -9%;
  right: 0;
}

.jobs-details-page .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: linear-gradient(125deg, #443a8e, #b57cc3) !important;
}

.jobs-details-page .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #fff !important;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .jobs-details-page .job-container {
    /* margin: 1rem; */
    border-radius: 8px;
  }

  .jobs-details-page .job-header {
    padding: 1.5rem;
  }

  .jobs-details-page .job-title {
    font-size: 1.8rem;
  }

  /* .jobs-details-page .job-content {
    padding: 1.5rem;
  } */

  .jobs-details-page .contact-details {
    grid-template-columns: 1fr;
  }

  .jobs-details-page .job-content {
    padding: 1rem;
  }
}

/*------------------------------------------------- JOB DETAILS-END -----------------------------------------------------------*/

/*------------------------------------------------------- APPLY-START ---------------------------------------------------------*/

.apply-jobs .application-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}

.apply-jobs .application-header {
  background: linear-gradient(135deg, var(--dark-blue), var(--light-purple));
  color: white;
  padding: 2rem;
  text-align: center;
}

.apply-jobs .application-header h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.apply-jobs .application-header p {
  opacity: 0.9;
}

.apply-jobs .application-form {
  padding: 2rem;
}

.apply-jobs .form-section {
  margin-bottom: 2rem;
}

.apply-jobs .form-section h2 {
  color: var(--dark-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-blue);
}

.apply-jobs .form-group {
  margin-bottom: 1.5rem;
}

.apply-jobs label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.apply-jobs input[type="text"],
.apply-jobs input[type="email"],
.apply-jobs input[type="tel"],
.apply-jobs input[type="number"],
.apply-jobs textarea,
.apply-jobs select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.apply-jobs input:focus,
.apply-jobs textarea:focus,
.apply-jobs select:focus {
  outline: none;
  border-color: var(--light-purple);
  box-shadow: 0 0 0 3px rgba(151, 84, 161, 0.2);
}

.apply-jobs .file-upload {
  position: relative;
  margin-bottom: 1rem;
}

.apply-jobs .file-upload input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.apply-jobs .file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 2px dashed var(--light-blue);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.apply-jobs .file-upload-label:hover {
  border-color: var(--light-purple);
  background-color: rgba(151, 84, 161, 0.05);
}

.apply-jobs .file-upload-label i {
  font-size: 2rem;
  color: var(--light-purple);
  margin-bottom: 0.5rem;
}

.apply-jobs .file-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--light-purple);
}

.apply-jobs .btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.apply-jobs .btn:hover {
  background: #1f8a4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 170, 98, 0.3);
}

.apply-jobs .btn-block {
  display: block;
  width: 100%;
}

.apply-jobs .success-message {
  display: none;
  text-align: center;
  padding: 2rem;
}

.apply-jobs .success-message i:not(.btn i) {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.apply-jobs .success-message h2 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.apply-jobs .loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  z-index: 9999;
}

@media (max-width: 768px) {
  .apply-jobs .application-header {
    padding: 1.5rem;
  }

  .apply-jobs .application-form {
    padding: 1.5rem;
  }
}
/*------------------------------------------------- APPLY-END----------------------------------------------------------------*/

/*----------------------------------------------------- Login-START -------------------------------------------------------*/
.login-section {
  background-image: url("../assets/login-back.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.login-section .login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 20px);
  white-space: nowrap;
  margin: 0 auto;
  max-width: 95vw;
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark-blue, #28224a);
  font-size: clamp(27px, 6vw, 64px);
}
.login-section .login-title h1 {
  flex: 0 0 auto;
  font-size: clamp(27px, 6vw, 57px);
  font-weight: 800;
}
@media (max-width: 767px) {
  .login-section .text-center.mb-5.pt-3 h2 {
    font-size: 24px;
  }
}

.login-section .login-title img {
  height: 1.1em;
  width: auto;
  flex: 0 0 auto;
  vertical-align: -0.1em;
  display: inline-block;
  max-width: 40vw;
}

@media (max-width: 320px) {
  .login-section .login-title {
    font-size: clamp(18px, 8vw, 24px);
  }
}

#loginForm input {
  border: 3px solid var(--dark-blue);
  border-radius: 50px;
  color: var(--dark-blue);
}
#loginForm label {
  color: var(--dark-blue);
}
#loginForm #loginButton {
  background-color: var(--dark-blue);
  border-radius: 40px;
  color: white;
}
#loginForm #loginButton:hover {
  background-color: var(--light-purple);
}
#loginForm p {
  color: var(--dark-blue);
}
#loginForm p .links {
  border-radius: 20px;
}
#loginForm p .links:hover {
  color: var(--dark-blue) !important;
}

/*----------------------------------------------------- Login-END -------------------------------------------------------*/

/*----------------------------------------------------- Register-Start -------------------------------------------------------*/
.register-section {
  background-image: url("../assets/register-back.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.register-section .logBtn {
  border-radius: 20px;
}
.register-section .logBtn:hover {
  color: var(--dark-blue) !important;
  text-decoration: underline;
}
.register-section #registerForm input {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}
.register-section #registerForm select {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}
.register-section #registerForm .input-group-text {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.register-section #registerForm #phone_number {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.register-section #registerForm .g-recaptcha {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
  overflow: hidden;
  padding: 0;
}
.register-section #registerForm .form-check-input {
  border: 3px solid var(--dark-blue);
  color: var(--dark-blue);
}
.register-section #registerForm .btn-register {
  background-color: var(--light-purple);
  border-radius: 25px;
}
.register-section #registerForm .btn-register:hover {
  background-color: var(--dark-blue);
}
.register-section #moreInfoForm .upload-img-div {
  max-height: fit-content;
}
.register-section #moreInfoForm input {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}

.register-section #moreInfoForm textarea[name="short_bio"] {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}

.register-section #moreInfoForm #imagePreview {
  border: var(--light-blue);
  border-radius: 50%;
}

.register-section #moreInfoForm #submitBtn {
  background-color: var(--light-purple) !important;
  border-radius: 25px;
}
.register-section #moreInfoForm #submitBtn:hover {
  background-color: var(--dark-blue) !important;
}

.register-section #moreInfoForm .form-outline.overflow-hidden {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}

/*----------------------------------------------------- Register-END -------------------------------------------------------*/

/*----------------------------------------------------- Forgot-Password-START -------------------------------------------------------*/
.forgot-password-section {
  background-image: url("../assets/forgot-pass-back.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.forgot-password-section h1 {
  font-weight: 800;
  color: var(--dark-blue, #28224a);
  text-align: center;
  white-space: nowrap;
  line-height: 1.05;
  margin: 0 auto;
  font-size: clamp(24px, 5vw, 45px);
  letter-spacing: 0.5px;
}
.forgot-password-section #forgot-pass-form input {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}
.forgot-password-section #forgot-pass-form button {
  border-radius: 25px;
}
.forgot-password-section #forgot-pass-form button:hover {
  background-color: var(--dark-blue) !important;
}

.forgot-password-section #forgot-pass-form .login-link {
  position: relative;
  text-decoration: none;
}
.forgot-password-section #forgot-pass-form .login-link::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 103%;
  left: 50%;
  bottom: -3px;
  transform: translate(-50%, -50%);
  background-color: var(--dark-blue);
}

/*----------------------------------------------------- Forgot-Password-END -------------------------------------------------------*/

/*----------------------------------------------------- Reset-Password-START -------------------------------------------------------*/
.reset-password-section {
  background-image: url("../assets/forgot-pass-back.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reset-password-section h1 {
  font-weight: 800;
  color: var(--dark-blue, #28224a);
  text-align: center;
  white-space: nowrap;
  line-height: 1.05;
  margin: 0 auto;
  font-size: clamp(24px, 5vw, 45px);
  letter-spacing: 0.5px;
}

.reset-password-section #reset-password-form input {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}
.reset-password-section #resetPasswordButton {
  border-radius: 25px;
}
.reset-password-section #resetPasswordButton:hover {
  background-color: var(--dark-blue) !important;
}
.reset-password-section .login-link {
  text-decoration: none;
  position: relative;
}
.reset-password-section .login-link::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 103%;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--dark-blue);
}
/*----------------------------------------------------- Reset-Password-END -------------------------------------------------------*/

/*----------------------------------------------------- OTP-Reset-Password-Verify-START -------------------------------------------------------*/
.otp-reset-verification {
  background-image: url("../assets/forgot-pass-back.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.otp-reset-verification #otp-reset-form input[name="captcha"] {
  border: 3px solid var(--dark-blue);
  border-radius: 25px;
  color: var(--dark-blue);
}

.otp-reset-verification #otp-reset-form input[name="otp[]"] {
  border: 3px solid var(--dark-blue);
  border-radius: 0;
  color: var(--dark-blue);
}

.otp-reset-verification #otp-reset-form button {
  border-radius: 25px;
}

.otp-reset-verification #otp-reset-form button:hover {
  background-color: var(--dark-blue) !important;
}
.otp-reset-verification .request-link {
  text-decoration: none;
  position: relative;
}
.otp-reset-verification .request-link::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 103%;
  background-color: var(--dark-blue);
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----------------------------------------------------- OTP-Reset-Password-Verify-END -------------------------------------------------------*/

/*----------------------------------------------------- Social-Page-START -------------------------------------------------------*/

.social-page .paragraph .h1 {
  font-size: clamp(30px, 4vw, 70px);
  line-height: 2cm;
}
.social-page .paragraph .engage-text {
  font-size: 2em;
}
.social-page .landing button {
  border-radius: 13px;
}
.social-page .landing {
  background-image: url("../assets/Layer_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  padding: 100px 0;
  margin: 0;
}
.social-page .media-section {
  background-image: url("../assets/media-section-back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
}
.social-page .media-section .btn-green {
  border-radius: 25px;
}
@media (max-width: 767px) {
  .social-page .media-section .btn-green {
    padding: 3px !important;
    font-size: 18px !important;
  }
}
.social-page .drop-section {
  background-image: url("../assets/Layer_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  padding: 200px 0;
}
.social-page .drop-section .row-img {
  display: block;
  max-width: 223px;
  max-height: 227px;
}
.social-page .dropCard {
  border-radius: 68px;
  max-width: 450px;
  gap: 3rem;
  box-shadow: 9px 14px 13.3px 1px #00000040;
  padding-left: 0;
  padding-right: 0;
}
.social-page .dropCard .question {
  border-radius: 67px;
  width: 100%;
  padding: 2rem 0 1rem 0;
  box-shadow: 9px 14px 13.3px 1px #00000040;
}
.social-page .dropCard input {
  border: none;
  border-radius: 40px;
  width: 74%;
  padding: 5rem 1rem;
  margin-bottom: 3rem;
}
.social-page .dropCard input::placeholder {
  color: black;
  opacity: 1;
  font-weight: 600;
  text-align: center;
  font-size: large;
}

.social-page .click img {
  max-width: 40px;
  rotate: 13deg;
}
.social-page .click .tips {
  max-width: 27px;
}
.social-page .click .announcement {
  rotate: -13deg;
}
.social-page .comment-section {
  background-image: url("../assets/Layer_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-page .comment-section .column1 div,
.social-page .comment-section .column2 div {
  max-width: 403px;
  display: flex;
  flex-direction: column;
  border-radius: 39px;
}
.social-page .comment-section .column1 div .tm,
.social-page .comment-section .column2 div .tm {
  color: white;
  align-self: flex-end;
}
.social-page .comment-section .column1,
.social-page .comment-section .column2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 2rem;
  padding: 1rem 0;
}
.social-page .comment-section .column1 div:nth-child(even) {
  background-color: var(--light-purple);
  padding: 1rem 2rem;
}
.social-page .comment-section .column1 div:nth-child(odd) {
  background-color: var(--green);
  padding: 1rem 2rem;
}
.social-page .comment-section .column2 div:nth-child(odd) {
  background-color: var(--light-purple);
  padding: 1rem 2rem;
}
.social-page .comment-section .column2 div:nth-child(even) {
  background-color: var(--green);
  padding: 1rem 2rem;
}

.social-page .comment-section .input-section input {
  background-color: var(--dark-blue);
  border: none;
  border-radius: 35px;
  color: white;
  padding: 1.7rem 2rem;
  width: 90%;
}
.social-page .comment-section .input-section input::placeholder {
  color: white;
  opacity: 1;
}
@media (max-width: 450px) {
  .social-page .click-section .click {
    width: 100px;
  }
  .social-page .click h2 {
    font-size: medium;
  }
}

@media (max-width: 767px) {
  .social-page .comment-section .input-section input {
    padding: 0.9rem 1rem;
  }
  .social-page .comment-section .input-section input::placeholder {
    font-size: 10px;
  }
}

/*----------------------------------------------------- Social-Page-END -------------------------------------------------------*/
