
body {
    margin: 0;
    padding: 0;
}

.main-section {
    /* background-image: 
        linear-gradient(to bottom right, rgba(0, 46, 91, 0.6) 0%, rgba(52, 124, 151, 0.6) 100%),
        url('https://cdn.pixabay.com/photo/2024/05/26/10/15/bird-8788491_1280.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;    
  padding: 2rem 8rem;
    background-image: url(/assets/images/hero-image.jpg);
    background-size: cover; */
}

.section-1 {
   background: 
  linear-gradient(
    to bottom right, 
    rgba(255, 255, 255, 1) 0%,       /* Start with white */
    rgba(0, 46, 91, 0.9) 30%,        /* Your deep blue starts early */
    rgba(52, 124, 151, 0) 100%       /* Fades to transparent */
  ),
  url('./assets/images/hero-image.jpg');
background-size: cover;
background-position: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 4rem;
    background-size: cover;
    min-height: 30rem;
}
.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-buttons a,
.nav-buttons div {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.menu-icon {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #003366;
}

/* Side Drawer */
.side-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.side-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.drawer-logo {
  height: 40px;
}

.close-icon {
  font-size: 24px;
  cursor: pointer;
  color: #003366;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.drawer-links a,
.drawer-btn {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-buttons {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}


.logo {
    height: 50px !important;
}



.login-button {
    background-color: var(--yellow-color);
    padding: 10px 50px;
    color: var(--black);
    font-weight: var(--fw-600);
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.hero-text {
    font-size: var(--fs-48);
    color: var(--white);
    font-weight: var(--fw-600);
    margin-top: 2rem;
}

.search-button {
    background-color: var(--sky-blue);
    padding: 10px 50px;
    color: var(--black);
    font-weight: var(--fw-500);
    border-radius: 4px;
    color: var(--white);
}

.Country {
    width: 20rem;
    height: 2rem;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(158, 154, 154);
    font-size: 17px;

}

.sub-text {
    margin-top: 1rem;
    color: var(--white);
    font-size: var(--fs-16);
}

.find-job-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--white);
    width: 40%;
    margin-top: 2rem;
    border-radius: 4px;
}

.find-jobs {
    color: var(--white);
    text-decoration: none;
}

.find-job {
    font-weight: var(--fw-600);
    color: var(--black);
    font-size: var(--fs-24);
}

.discover-buttons {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.recent-news {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: var(--fs-16);
    border-radius: 4px;
    background-color: var(--yellow-color);
}
.black{
    color:var(--black);
    text-decoration: none;
}
.fa-arrow-right-long {
    font-size: 1.5rem !important;
}

.section-2 {
    padding: 8rem 4rem;
}

.featured-jobs-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Explore-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.featured-text {
    font-size: var(--fs-36);
    font-weight: var(--fw-600);
}

.Explore-more {
    font-size: var(--fs-22);
    font-weight: var(--fw-600);

}

.title {
    margin-top: 1rem;
    font-size: var(--fs-24);
    font-weight: var(--fw-600);
}

.description {
    font-size: var(--fs-16);
    color: var(--white);
}

.job-type {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content {
    color: var(--white);
    padding: 1rem;
}

.job-cards {
    margin-top: 2rem;
}

.single-card  {
  width: 30%;
  padding: 10px;
  min-height: 16rem;

  display: flex;
  flex-direction: column; /* ensures content stacks vertically */

  background-color: var(--sky-blue);
  border: 1px solid var(--sky-blue);
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  transition: all 0.3s ease-in-out; /* smooth hover */
  cursor: pointer;
}

.single-card:hover  {
  border: 1px solid var(--sky-blue);
  transform: translateY(-10px); /* slight lift on hover */
}

   /* margin-top: 1rem;
    background-color: var(--sky-blue);
    background-color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--white);
    color: var(--sky-blue);
    border-radius: 4px; */
.card-image {
    width: 100%;
    display: none;
}

.job-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:2%;
}

.section-3 {
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: var(--fs-48);
    font-weight: var(--fw-600);
    background-image: linear-gradient(to top right,
            rgba(0, 46, 91, 0),
            rgba(31, 138, 190, 0.6)),
        url(./assets/images/team.png);
    background-size: cover;
    color: var(--white)
}

.Join {
    background-color: var(--sky-blue);
    color: var(--white);
    padding: 10px 50px;
    font-weight: var(--fw-600);
    border-radius: 4px;
    font-size: var(--fs-24);
    width: 6rem;
}

.single-card  .apply {
    margin-top: 1rem;
    background-color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--sky-blue);
    border-radius: 4px;
}



.apply{
       margin-top: 1rem;
    background-color: var(--sky-blue);
    text-align: center;
    padding: 0.8rem;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--white);
    border-radius: 4px;
}
.section-4 {
    padding: 8rem 4rem;
}

.section-4-content {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.team-description-heading {
    color: var(--sky-blue);
    font-weight: var(--fw-600);
    font-size: var(--fs-24);
}

.team-description-subheading {
    font-size: var(--fs-16);
    margin-top: 1rem;
    color: var(--grey);

}

.team-description {
    width: auto;
}

.section-5 {
    padding: 4rem 4rem;
}

.locations {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-location {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-image: url(./assets/images/nova.webp);
    background-size: cover;
    width: 20%;
    border-radius: 30px;
    /* height: 21.5rem; */
    padding: 1rem;
    padding-bottom: 4rem;
    color: var(--white);
    padding: 15rem 2rem 2rem 1rem;
}

.Country-name {
    font-size: var(--fs-28);
    color: var(--white);
    font-weight: var(--fw-600)
}

.jobs-number {
    font-size: var(--fs-16);
    color: var(--white);
    margin-top: 8px;
    font-weight: var(--fw-500)
}

.canada {
    background-image: url(./assets/images/canada.png);
}

.newzealand {
    background-image: url(./assets/images/india.webp);

}

.phillipines {
    background-image: url(./assets/images/phillipines.png);

}

.image-overlay {
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-hero-image {
    width: 100%;
    display: block;
}


.footer-content {
    /* position: absolute; */
    padding: 1rem 0rem;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    /* background-color: red; */
background-image:
  linear-gradient(to bottom, rgba(0, 46, 91, 0.9), rgba(52, 124, 151, 0) 500%),
  url('./assets/images/footer.png');

}

.quality {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.copyright {
    margin-top: 4rem;
    padding: 1rem 1rem 0rem 1rem;
    border-top: 1px solid white;
    width: 90%;
    margin-left: 5%;
}

.footer-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-top: 3rem;
    font-size: var(--fs-24);
    font-weight: var(--fw-600);
    color: var(--white);
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    /* Center the 50% border */
    width: 50%;
    border-bottom: 4px solid var(--yellow-color);
}

.content-text {
    font-size: var(--fs-16);
    color: var(--white);
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 3rem;
}

.social-icon {
    background-color: var(--yellow-color);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #002E5B;
    font-size: 25px;
}

.no-top-margin {
    margin-top: 0rem !important;
}

.offers {
    margin-top: 1rem;
    color: var(--white);
}

.copyright {
    display: flex;
    justify-content: space-between;
}

.copyright-content {
    display: flex;
    gap: 20px;

}

.quick-links-footer {
    color: var(--white);

}

.footer-hero-image {
    height: 35rem;
}
.fa-bars{
    display: none !important;
}
@media screen and (max-width: 1024px) {
    .find-job-section {
        width: auto;
    }

    .discover-buttons {
        width: auto;
    }

    .title {
        font-size: var(--fs-20);
    }

    .single-card {
        width: 48%;
        margin-bottom: 2rem;
    }

    .section-4-content {
        flex-direction: column;
    }

    .team {
        display: flex;
        justify-content: space-around;
    }

    .single-location {

        width: 42%;
        padding: 14rem 2rem 2rem 1rem;
        margin-bottom: 1rem;

    }

    .locations {
        flex-wrap: wrap;
    }

    .footer-content {
        padding: 2rem 0px;
    }
    .quality{
        padding-left: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-buttons{
    display: none;
}
.logo{
    height: 4rem !important;
}
.fa-bars{
    display: block !important;
    color:var(--white);
    font-size: var(--fs-30);
}
    .hero-text {
        font-size: var(--fs-40) !important;
    }

    .find-job {
        font-size: 20px;
    }

    .recent-news {
        width: 42%;
    }

    .featured-text {
        font-size: var(--fs-30);
    }

    .section-3 {
        font-size: var(--fs-36);
    }

    .Explore-more {}

    .section-1 {
        padding: 2rem 1rem;
    }

    .section-2 {
        padding: 2rem;
    }

    .job-cards {
        flex-direction: column;
    }

    .single-card {
        width: 100%;
        height: 25rem;
    }

    .section-4 {
        padding: 2rem 1rem;
        margin-bottom: 0rem;
    }

    .section-5 {
        padding: 2rem;

    }

    .single-location {
        width: 100% !important;
    }

    .quality {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: start;
        padding: 1rem;
    }

    .footer-content {
        padding: 2rem 0rem;
    }
    .login-button{
        padding: 10px;
    }

    .featured-jobs-heading {
        flex-direction: column;
    }
.copyright{
    margin-left: 1rem;
    padding: 0rem;
}
.team{
        flex-direction: column;
    }
    .discover-buttons{
        flex-direction: column;
                gap: 1rem;

    }
    .recent-news{
        width: 90%;
    }
   
    .job-cards{
        justify-content: center;
    }
    .single-card{
        width: 21rem;
        height: auto;
    }
    .title{
        font-size: var(--fs-30);
    }
    .team{
        flex-direction: column;
    }
    .section-4{
        padding:2rem;
        margin-bottom: 0rem;
    }
    .section-4-content{
        gap:2rem;
    }
    
    .single-location{
        width: 38%;
    }
    .footer-hero-image{
        height: 90rem;
    }
    .quality{
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-content{
        width: auto;
    } */
}

