.hire-section {
    background-color: #dbeafe; /* हल्का blue background */
    border-radius: 15px;
    margin-left:20px;
    margin-right:20px;
}

.hire-badge {
    background: #bfdbfe;
    color: #012641;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.hire-title {
    font-size: 2rem;
    font-weight: 700;
    color: #012641;
}

.hire-subtitle {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 25px;
}

.hire-btn {
    border: 1px solid #012641;
    color: #012641;
    font-weight: 400;
    padding: 8px 24px;
    border-radius: 7px;
    background: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
	font-size: 0.9rem;
}

.hire-btn:hover {
    background: #012641;
    color: #FFF;
}

.hire-img {
    max-width: 60%;
    border-radius: 12px;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .hire-section {
        padding: 30px 15px;
    }
    .hire-title {
        font-size: 1.5rem;
    }
    .hire-subtitle {
        font-size: 1rem;
    }
    .hire-img {
        max-width: 80%;
        margin-bottom: 20px;
    }
}
   
   
/* Existing styles */
 
 
  











  
  
 
/* Container */
.scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0px 0;
}

/* Fading effect on edges */
.fade-left, .fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 2;
}
.fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 20%, transparent);
}
.fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 20%, transparent);
}

/* Arrow buttons */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  background: #1e3a8a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.scroll-arrow:hover {
  background: #3b82f6;
}
.left-arrow { left: 0px; }
.right-arrow { right: 0px; }

/* City cards container */
.city-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.city-container::-webkit-scrollbar { display: none; } /* Chrome */

/* City card */
.city-card {
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.city-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.city-card h3 {
  font-size: 18px;
  margin: 5px 0;
  color: #1e3a8a;
}
.city-card p {
  font-size: 14px;
  color: #6b7280;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Buttons (View all / Login) */
.view-all .login-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.view-all .login-btn:hover {
  background: #3b82f6;
}
 
/* Hide arrow by default */
.scroll-arrow { display: flex; align-items:center; justify-content:center; }
.scroll-arrow.hidden { display: none !important; }

   
   
   
   
   




/* Common Styles */
:root{
  --brand:#0099e6;
  --glow: rgba(0,230,255,.8);
  --marquee-gap: 48px;
  --marquee-duration: 60s;
}

.logo-scroller{
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.logo-track{
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  width: max-content;
  will-change: transform;
}

/* Default: Right → Left */
.scroll-left .logo-track{
  animation: scroll-left var(--marquee-duration) linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* New: Left → Right */
.scroll-right .logo-track{
  animation: scroll-right var(--marquee-duration) linear infinite;
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover */
.logo-scroller:hover .logo-track{
  animation-play-state: paused;
}

/* Logo Card */
.logo-card{
  list-style: none;
  background: #fff;
  border: 2px solid rgba(0,230,255,0.25);
  border-radius: 14px;
  min-width: 150px;
  height: 72px;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.logo-card img{
  max-height: 42px;
  max-width: 100%;
  display: block;
}
.logo-card:hover{
  transform: scale(1.1) rotate(2deg);
  border-color: var(--brand);
  box-shadow: 0 0 0 2px #fff, 0 0 18px var(--glow);
}


/* seamless loop keyframes: content दो बार है, इसलिए -50% तक scroll */
@keyframes scroll-track{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile tweaks */
@media (max-width: 767px){
  :root{ --marquee-gap: 28px; --marquee-duration: 45s; } /* थोड़ा तेज ताकि मोबाइल पर भी smooth लगे */
  .logo-card{ min-width: 120px; height: 60px; padding: 8px 12px; border-radius: 12px; }
  .logo-card img{ max-height: 34px; }
}

/* Motion sensitivity */
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
}






/* Loader Styles */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); /* Transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  animation: fadeBounce 2s infinite;
}

/* Animation */
@keyframes fadeBounce {
  0% { opacity: 0; transform: scale(0.8) translateY(0); }
  50% { opacity: 1; transform: scale(1) translateY(-10px); }
  100% { opacity: 0.9; transform: scale(0.9) translateY(0); }
}
   