

/* =========================================
   RESUME CTA SECTION
   ========================================= */
.section-resume-cta {
 background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(223, 237, 241, 0.5) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Typography (Copied style from Category to be independent) */
.resume-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.resume-subtext {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Button Styling */
.btn-jobyatra-primary {
  background: linear-gradient(135deg, #077c8c 0%, #099fb3 100%);
  font-size: 1rem;  
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(7, 124, 140, 0.2);
  display: inline-flex;
  border: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-decoration: none;
}

.btn-jobyatra-primary i {
  font-size: 1.1rem;
}

.btn-jobyatra-primary:hover,
.btn-jobyatra-primary:focus,
.btn-jobyatra-primary:active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 102, 116, 0.3);
}

.btn-jobyatra-primary:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(5, 102, 116, 0.3) !important;
}


/* Image Styling */
.resume-hero-img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.resume-hero-img:hover {
  transform: scale(1.02);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 991px) {
  .section-resume-cta {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* Force Centering on Mobile */
  .resume-content-wrapper {
    align-items: center !important; 
    text-align: center !important;
  }

  .resume-heading {
    font-size: 2rem;
  }

  .resume-subtext {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .btn-jobyatra-primary {
    margin: 0 auto;
  }

  .resume-hero-img {
    max-height: 280px;
    margin-bottom: 2rem; /* Image upar hai mobile pe, so margin bottom */
  }
}

/* Loading/Disabled state me bhi wahi color rakhne ke liye */
.btn-jobyatra-primary:disabled,
.btn-jobyatra-primary[disabled] {
    background: linear-gradient(135deg, #077c8c 0%, #099fb3 100%) !important;
    color: #ffffff !important;
    opacity: 0.9 !important; /* Thoda sa opacity kam rakha hai taaki button 'pressed' feel ho, par color wahi rahega */
    border: none !important;
    cursor: not-allowed;
    box-shadow: none;
}
/* Custom Dropdown Container */
.custom-dropdown {
    position: relative;
    width: 100%;
    font-size: 1rem;
    color: #495057;
}

/* Jo box dikhta hai (Button jaisa) */
.dropdown-selected {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem; /* Bootstrap style rounded */
    padding: 0.375rem 0.75rem; /* Standard padding */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.dropdown-selected:hover {
    border-color: #077c8c;
}

/* == LIST KI HEIGHT YAHAN CONTROL KAREIN == */
.dropdown-options {
    display: none; /* Pehle chhupa rahega */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    margin-top: 5px;
    z-index: 1050; /* Modal ke upar dikhne ke liye */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
    /* YAHAN HAI MAGIC: Height control */
    max-height: 250px;  /* 250px tak list dikhegi, uske baad scroll aayega */
    overflow-y: auto;   /* Scrollbar laane ke liye */
}

/* Jab dropdown open ho */
.custom-dropdown.active .dropdown-options {
    display: block;
}

.custom-dropdown.active .dropdown-selected {
    border-color: #077c8c;
    box-shadow: 0 0 0 0.25rem rgba(7, 124, 140, 0.25);
}

/* Individual Option Styling */
.option-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    background-color: #eef7f9; /* Hover color matches your theme */
    color: #077c8c;
}