 html {
  scroll-behavior: smooth;
}
/* hover effect on options */
.option {
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.option:hover {
  transform: translateX(8px) scale(1.05);
  text-shadow: 0 0 5px rgba(127, 90, 240, 0.4);
}

.option::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  background-color: #7f5af0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.option:hover::before {
  opacity: 1;
}



/* dropdown */
.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/* option section main */
 .container{
      display: flex;
      flex-direction: row;
      gap: 20px;
    }

    .left {
      flex: 1;
    }

    .left h1 {
      font-size: 36px;
      font-weight: bold;
    }

    .option {
      padding: 15px 0;
      border-bottom: 1px solid #333;
      cursor: pointer;
      font-weight: bold;
    }

    .option:hover {
      color: #7f5af0;
    }

    .right {
      flex: 1;
      background-color: white;
      border-radius: 20px;
      color: black;
      text-align: center;
      padding: 40px 20px;
      transition: all 0.3s ease;
    }

    .right img {
      height: 150px;
      margin-bottom: 20px;
    }

    .right p {
      font-size: 16px;
    }

    /* Mobile-specific content initially hidden */
    .mobile-options {
      display: none;
    }

    .mobile-option {
      background: white;
      color: black;
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }

    .mobile-option img {
      height: 100px;
      margin-bottom: 10px;
    }

    /* === Responsive Styles === */
    @media (max-width: 768px) {
      .benefits-container {
        display: none; /* Hide desktop layout */
      }

      .mobile-options {
        display: flex;
        flex-direction: column;
      }
    }

  .hero-image {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 50vh;
    max-height: auto; /* full viewport height */
    position: relative;
  }

  .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     /* semi-transparent overlay */
    z-index: 1;
  }

  .hero-image .container {
    position: relative;
    z-index: 2; /* place content above overlay */
  }

  @media (max-width: 768px) {
    .text-end {
      max-height: 20vh;
      text-align: right !important;
    }
  }
/* slideanim */
.slideanim {
    visibility:hidden;
    visibility:visible\9;/*For old IE browsers IE6-8 */
}
.slideanim.slide {                  
    visibility: visible;                  
    animation: slide 1s;
}
.slideanim::after {
    /* useful when its child elements are float:left; */
    content: "";
    display: table;
    clear: both;
}
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(50%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}
/* job card css */

.job-card {
      background-color: #f5f5f5;
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 20px;
      transition: background-color 0.3s, transform 0.2s;
      cursor: pointer;
    }

    .job-card:hover {
      background-color: #0c60e8;
      transform: scale(1.02);
    }

    .job-title {
      color: #7b4fd6;
      font-weight: bold;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .job-location {
      color: #333;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .arrow-icon {
      font-size: 1.5rem;
      color: #000;
      transition: color 0.3s;
    }

    .job-card:hover .job-title,
    .job-card:hover .job-location,
    .job-card:hover .arrow-icon {
      color: #ffffff;
    }

    .job-link {
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }