
/* Ensure that html and body take full height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

/* If you want the body to take at least the full height */
body {
  min-height: 100%;
}
.bg-homepage{
  /* background: linear-gradient(rgb(242, 237, 255) 0%, rgb(255, 255, 255) 100%); */
  background: linear-gradient(180deg, #e1d5fa, #fff);
}

.shadow-custom {
  box-shadow: rgb(240, 233, 243) 3px 3px 0px 0px

}
.btn-default{
  background-color: rgb(113, 96, 247);
  color: #ffffff;
}
.btn-default:hover{
  background-color: #333;
  color: #ffffff;
}
.bg-homepage-career {
  background: url('../images/career.svg') repeat-x, 
              linear-gradient(rgb(225, 213, 250) 0%, rgb(255, 255, 255) 100%);
  background-size: auto, cover; /* First value for image, second for gradient */
  background-position: top;
}

input[type="search"] {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'16\' height=\'16\' class=\'bi bi-search\' viewBox=\'0 0 16 16\'%3E%3Cpath d=\'M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z\'%3E%3C/path%3E%3C/svg%3E');
  background-position: 20px center;
  background-repeat: no-repeat;
  padding-left: 45px;
  /* width: 200px; */
  /* height: 30px; */
  border: 1px solid #555;
  border-radius: 5px;
}

.search-bar{
  box-shadow: 2px 4px 2px rgb(220, 217, 231)!important;
  width: 100%;
  height: 70px;
}
.search-bar input{
  border: none;
}
.search-bar input:focus{
  box-shadow: none;
}
.search-bar button{
  height: 50px;
}
.job-card-right-content{
  background-color: white;
  border-radius: 25px;
  padding: 10px;
} 
.nav-link1 {
  background-color: white;
    color: rgb(26, 0, 82);
    border-radius: 25px !important;
    height: 40px;
    font-weight: 500;
    margin: 10px;
    text-align: center;
    border: 1px solid rgb(188, 188, 188);
}

.nav-pills .nav-link.active{
  background-color:rgb(113, 96, 247) !important;
}

.my-class {
  background: 
  linear-gradient(rgba(225, 213, 250) 0%, rgb(255, 255, 255) 40%), /* Gradient color */
    url("../images/about/background-lining.svg") no-repeat center center / cover; /* Image */
  
}
.background-container {
  position: relative;
  width: 100%;
  /* height: 100vh; Full screen */
  background: 
    linear-gradient(rgba(225, 213, 250, 0.99) 0%, rgb(255, 255, 255) 100%), /* Gradient overlay */
    url("https://framerusercontent.com/images/rolVUeQFoVFETg4VCNHn7zHjJTQ.svg") no-repeat center center / cover; /* Background image */
}

.content {
  position: relative;
  z-index: 1; /* Ensures content stays on top of the background */
  text-align: center;
  color: #333;
  padding: 20px;
}



.footercolor{
  color:#000;
}
.btn-custom {
    padding: 12px 30px; 
    font-size: 16px; 
    border-radius: 25px;
  }
.btn-custom-contact {
    padding: 10px 20px; 
    font-size: 16px; 
    border-radius: 25px;
  }

  .navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-brand {
    flex-grow: 1;
    text-align: center;
  }

  .navbar-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .navbar-nav .nav-link {
    color: rgb(26, 0, 82);
    font-size: 1.25rem;
  }

  .navbar-nav .btn-custom {
    background-color: rgb(113,96,247);
  }

  .navbar-collapse {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .navbar-custom {
    width: 100%; 
  }
  .navbar-nav .btn {
    margin-left: 200px; 
  }

  .job-card:hover {
    box-shadow:  2px 4px 2px rgb(139, 114, 238)!important;
  }
  .zoom-image {
    transition: transform 0.1s ease;
  }

  .zoom-image:hover {
    transform: scale(1.1); /* Adjust the scale value as needed */
  }

  .card-img-wrapper {
    overflow: hidden;
  }

  a{
    text-decoration: none;
    color: aliceblue;
  }

  /* Newsletter Section */
.newsletter-card {
  background-image: url('../images/main/img20.png');
  background-repeat: no-repeat;
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
  border-radius: 35px;
}
.newsletter-card input{
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1.2rem;
  width: 45%;
  line-height: 2;
  margin-right: 10px;
}
  .newsletter-card input::placeholder{
  color: #ddd;
}

.newsletter-card-body {
  color: white;
}

.newsletter-title {
  font-weight: 400;
  font-size: 2rem;
}

.newsletter-input-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-input {
  max-width: 400px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: rgb(26, 0, 82);
  font-weight: bold;
  border: 1px solid rgb(26, 0, 82);
  border-radius: 25px;
  margin-right: 10px;
}

.newsletter-btn {
  background-color: rgb(113,96,247);
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.newsletter-btn:hover {
  background-color: rgb(95, 80, 210);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.5rem;
  }

  .newsletter-card input{
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-size: 1.2rem;
    width: 100%;
    line-height: 2;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .newsletter-input-btn-container {
    flex-direction: column;
  }

  .newsletter-input {
    margin-bottom: 15px;
    max-width: 90%;
  }

  .newsletter-btn {
    width: 100%;
  }
}


.job-finder-banner {
  display: flex;
  align-items: center;
}

.job-finder-left {
  text-align: left;
}

.job-finder-right {
  margin-top: 20px;
}

.job-finder-button{
  background-color: white;
  color: rgb(26, 0, 82);
  border-radius: 25px;
  height: 40px;
  font-weight: 500;
  width: 180px;

}
.get-started-btn {
  background-color: rgb(113,96,246);
  color: white;
  line-height: 2;
  font-size: 16px;
  padding: 10px 10px 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.arrow {
  margin-left: 8px;
  font-size: 18px;
}

.job-finder-title {
  font-weight: bold;
  color: rgb(26, 0, 82);
}

.job-finder-description {
  color: rgb(26, 0, 82);
}

.job-finder-image {
  width: 80%;
  height: 600px;
  border-radius: 15px;
  margin-left: 60px;
}
.job-finder-button1{
  background-color: white;
  border-radius: 25px;
  height: 40px;
  font-weight: 500;
  width: 180px;
  margin-right: 20px;

}

.job-stats-section .job-stats-card {
  border-radius: 35px;
  background-color: rgb(26, 0, 82);
  
}


.job-stats-row {
  text-align: center;
  
  
}

.job-stats-item {
  padding: 15px;

}

.job-stats-number {
  font-size: 3rem;
  font-weight: bold;
}

.job-stats-description {
  color: white;
}

.job-trusted-partners-section .job-trusted-partners-button {
  background-color: rgb(113, 96, 247);
  color: white;
  border-radius: 25px;
}


.job-trusted-partners-title {
  color: rgb(26, 0, 82);
}

.job-trusted-partners-logos .job-partner-logo img {
  width: 100%;
  height: auto;
  max-width: 120px;
  margin: 10px;
}

.job-recruitment-process-section .job-recruitment-process-button {
  background-color: rgb(113, 96, 247);
  color: white;
  border-radius: 25px;
}

.job-recruitment-process-title {
  font-weight: bold;
  color: rgb(38, 3, 112);
}

.job-profile-completion-card {
  background: linear-gradient(180deg, #e9dfff 0%, #ffffff 100%);
  border-radius: 35px;
}

.job-profile-completion-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.bg-schedule{
  background: linear-gradient(270deg, #f4efff 0%, #ffffff 100%);
}
.job-profile-completion-title {
  color: rgb(26, 0, 82);
  font-weight: bold;
}

.job-profile-completion-description {
  color: rgb(26, 0, 82);
}

.job-interview-scheduling-card {
  background: linear-gradient(180deg, #e1d5fa 0%, #ffffff 100%);
  border-radius: 35px;
  width: auto;
  height: 440px;
}

.job-interview-scheduling-title {
  font-size: 3.5rem;
  color: rgb(26, 0, 82);
}

.job-interview-scheduling-description {
  color: rgb(26, 0, 82);
  
}

.job-interview-scheduling-button {
  background-color: rgb(113, 96, 247);
  color: white;
  border-radius: 25px;
  width: 130px;
  height: 45px;
}

.job-interview-scheduling-image {
  width: 100%;
  height: auto;
  margin-left: -20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .job-finder-banner {
    flex-direction: column;
  }

  .job-finder-left,
  .job-finder-right {
    text-align: center;
  }

  .job-interview-scheduling-card {
    background: linear-gradient(180deg, #e1d5fa 0%, #ffffff 100%);
    border-radius: 35px;
    width: 280px;
    height: 440px;
  }
  .job-interview-scheduling-title {
    font-size: 1.5rem;
    color: rgb(26, 0, 82);
  }
  .job-finder-image {
    width: 80%;
    margin: 0 auto;
  }

  .job-profile-completion-card {
    margin-bottom: 20px;
  }

  .job-interview-scheduling-card {
    margin-bottom: 20px;
  }

  .job-stats-number {
    font-size: 2rem;
  }

  .job-profile-completion-title {
    font-size: 1.5rem;
  }

  .job-profile-completion-description {
    font-size: 1rem;
  }
}

/* General Styling */
.top-opportunities-container {
  text-align: center;
  margin-top: 110px;
}

.btn-top-opportunity {
  width: 230px;
  height: 50px;
  margin-left: 56vh;
  color: rgb(26, 0, 82);
  font-weight: bold;
}

.top-opportunities-title {
  font-size: 7vh;
  margin-left: 34vh;
  color: rgb(26, 0, 82);
}

.top-opportunities-description {
  font-size: 2vh;
  font-weight: 400;
  margin-left: 27vh;
}

.job-cards-container {
  margin-top: 50px;
}

  .job-card {
    border-radius: 25px;
    /* height: 24vh; */
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 2px 4px 2px rgb(220, 217, 231)!important;
  }
  .job-card1 {
    border-radius: 25px;
    /* height: 24vh; */
    padding: 20px;
    margin-bottom: 30px;
  }

.job-card-left {
  width: 80%;
  height:auto;
}

.job-card-right {
  width: 20%;
}

.company-info {
  font-size: 19px;
  font-weight: 400;
  padding-top: 10px;
}

.job-title {
  color: rgb(28, 0, 90);
  font-size: 3.5vh;
}

.job-tags .btn {
  border-radius: 20px;
  margin-right: 10px;
  margin-top: 4px;
}

.job-card-right h2 {
  font-size: 2.5vh;
}

.bottom-section-container {
  background-color: rgb(26, 0, 82);
  margin-top: 100px;
  padding: 30px 0;
}

.bottom-section-title {
  font-weight: bold;
  font-size: 2.5rem;
  color: rgb(247, 246, 250);
  margin-top: 20px;
}
.grid-testimonials{
  align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    height: min-content;
    /* justify-content: center; */
    overflow: visible;
    padding: 0;
    text-align: left;
  

}
.bottom-section-description {
  color: white;
  font-size: 1.2rem;
  margin-top: 20px;
}

.bottom-section-image {
  height: 45px;
  margin-left: 10px;
}
.article-card{
  box-shadow: 2px 4px 2px rgb(220, 217, 231)!important;
}
.article-card:hover{
  box-shadow: 2px 4px 2px rgb(139, 114, 238)!important;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgb(139, 114, 238);
}
.accordion-button:not(.collapsed){
  background-color: rgb(247, 244, 249);
  color: rgb(12, 12, 12);
  box-shadow: none;
}
.subscribe-title{
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.card-title{
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}
.card-text{
  text-align: left;
  font-size: 1.2rem;
}
.accordion-body{
  background-color: rgb(247, 244, 249);
  border-radius: 1rem;
}
.accordion-button{
  background-color: rgb(247, 244, 249);
  padding: 2rem;
  /* border-radius: 15px; */
}
.accordion-item{
  border-radius: 1rem;

  background-color: rgb(247, 244, 249);

}
.bottom-section-image-right {
  border-radius: 25px;
  overflow: hidden;
}
.bottom-section-image-left{
  height: 47vh;
  width: 45vh;
  margin-right: 13vh;
  margin-top: 15vh;
  border-radius: 25px;
}
.list-unstyled{
  line-height: 2.0;
  font-size: 1.0rem;
}
.list-unstyled i{
  font-size: 1.20rem;
}
.bottom-section-list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.list-item h3 {
  color: white;
}

.list-item ul {
  list-style-type: none;
  padding-left: 0;
}

.list-item ul li {
  color: white;
}
footer p, footer li{
  color: rgb(26, 0, 82);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-opportunities-title {
      font-size: 5vh;
      margin-left: 0;
  }

  .top-opportunities-description {
      font-size: 3vh;
      margin-left: 0;
  }

  .job-card {
      height: auto;
      width: 100%;
  }

  .job-card-left{
    width: 100%;
  }
  .job-card-right{
    width: 100%;
  }
  .bottom-section-title {
      font-size: 1.5rem;
      margin-left: 0;
  }

  .bottom-section-description {
      font-size: 1rem;
      margin-left: 0;
  }

  .bottom-section-image {
      height: 40vh;
      margin-left: 0;
  }

  .bottom-section-image-right {
      height: 40vh;
      width: 40vh;
      margin-right: 0;
  }

  .bottom-section-list {
      flex-direction: column;
  }
}
