body{
  font-family: 'Outfit', sans-serif;
}

#job_title,
#location {
    height: 48px;
    padding: 0 16px;
}
 
/* Target the specific scrollbar class in your modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9; /* Light gray track */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #047bd5; /* Your custom color */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #035fa3; /* Darker shade on hover */
}

/* Optional: Apply to the entire browser window as well */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #047bd5;
    border-radius: 10px;
}

.job-company {
  /* Allows the text to break at arbitrary points if it's too long */
  word-wrap: break-word;
  word-break: break-word;
  
  /* Ensures the container respects width limits */
  max-width: 100%;
    color:#475569;
      font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

:root {
  --blue:  #047bd5;
  --blue-dark: #035fa8;
  --blue-light: #e8f4fd;
  --blue-mid: #0a8de8;
  --white: #ffffff;
  --slate: #0f172a;
  --slate-600: #475569;
 
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --border: #e2e8f0;
  --radius: 20px;
  --font: 'Outfit', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }



.btn-outline {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: white;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 1.4rem;

  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  background:#0369a1;   /* darker */
  color:#ffffff;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  gap: 0.4rem;
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* =========== HERO =========== */

/* Typing Cursor */
.cursor {
  color: var(--blue);
  font-weight: 300;
  margin-left: 2px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Maintain height so layout doesn't jump */
.accent {
  min-height: 1.2em;
  display: inline-block;
}

/* Ensure centering */
.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  min-height:80vh;
  display: flex;
  align-items: center;    /* Vertical center */
  justify-content: center; /* Horizontal center */
  width: 100%;
  position: relative;     /* Required for absolute pseudo-elements */
  overflow: hidden;       /* Prevents background circles from causing scroll */
  padding: 2rem;
  background: white;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;             /* Keeps text above background circles */
}

.hero-grid {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Background Decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #cce8f8 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #dbeeff 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Audience toggle */
.audience-toggle {
  display: inline-flex;   /* Changed to inline-flex to respect parent centering */
  background: var(--slate-100, #f1f5f9);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 2rem;
}

.aud-btn {
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600, #475569);
  cursor: pointer;
  transition: all .2s;
}

.aud-btn.active {
  background: var(--blue, #047bd5);
  color: white;
  box-shadow: 0 4px 12px rgba(4,123,213,0.3);
}

/* Hero Text & Typography */


.hero-text h1 {
  font-size: clamp(1rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--slate, #1e293b);
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--slate-600, #475569);
  max-width: 800px;       /* Limits line length for readability */
  line-height: 1.7;
  margin-left: auto;     /* Centers the P block */
  margin-right: auto;    /* Centers the P block */
}

/* Popular searches */
.popular {
 margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center; /* Centers the trending tags row */
}

.popular-label { 
  font-size: 0.85rem; 
  color:#475569;
    font-weight:600;

}

.pop-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 16px;

  border-radius: 9999px;
  border: 1px solid var(--border, #e2e8f0);

  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600, #475569);
  text-decoration: none;
  transition: all .2s;
}

.pop-tag:hover { 
  background: var(--blue-light, #eff6ff); 
  border-color: var(--blue, #047bd5); 
  color: var(--blue, #047bd5); 
}

/* Stats row */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3rem;
  justify-content: center; /* Centers the stat bubbles row */
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--slate-50, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600, #475569);
}

.stat-item strong { 
  color: var(--blue, #047bd5); 
  font-weight: 700; 
}

/* Hero image panel */

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all .25s;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(4,123,213,0.1); }
.hero-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border: none;
}
.hero-card .company-dot {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.hero-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.hero-card p { font-size: 0.75rem; opacity: 0.7; }
.hero-card .salary {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}
.hero-card.featured .salary { color: rgba(255,255,255,0.85); }
.hero-card .badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  color: white;
}

/* =========== SECTION BASE =========== */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--slate);
}
.section-sub {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: #475569;;
}
.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 12px;

  font-size: 0.85rem;
    color:#0369a1;
    font-weight:600;
  text-decoration: none;

  gap: 0.4rem;
  white-space: nowrap;
  transition: gap .2s;
}
.view-all:hover { gap: 0.7rem; }
.accent-bar {
  width: 48px; height: 4px;
  background: var(--blue);
  border-radius: 4px;
  margin-top: 0.7rem;
}

/* =========== JOB CARDS =========== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.job-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.job-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(4,123,213,0.1); transform: translateY(-3px); }
.job-card:hover::before { transform: scaleX(1); }

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.company-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.job-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-purple { background: #f3e8ff; color: #7c3aed; }
.badge-orange { background: #fff7ed; color: #c2410c; }

.job-title a{
    display:inline-flex;
    align-items:center;
    min-height:48px;
}
.job-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.4rem;
  transition: color .2s;
}
.job-card:hover .job-title { color: var(--blue); }

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}
.job-tag {
  padding: 0.3rem 0.8rem;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-600);
}
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-50);
}
.job-meta { font-size: 0.75rem;color:#475569; }


.job-meta strong { display: block; color: var(--blue); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }

.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 1.2rem;

    background: #0369a1;      /* Darker blue */
    color: #fff;

    border: none;
    border-radius: 12px;

    font-family: var(--font);
    font-size: .875rem;
    font-weight: 700;

    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.apply-btn:hover {
    background: #075985;
    transform: scale(1.04);
}

.apply-btn:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}

/* =========== CATEGORIES =========== */
.cats-section { background: white; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.cat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.cat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(4,123,213,0.1);
  transform: translateY(-3px);
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform .25s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate);
  transition: color .2s;
}
.cat-card:hover .cat-name { color: var(--blue); }
.cat-count { font-size: 0.75rem;  color:#334155; font-weight: 500; }
.cat-card.dark {
  background: var(--slate);
  border-color: transparent;
}
.cat-card.dark .cat-icon { background: rgba(255,255,255,0.1); color: white; }
.cat-card.dark .cat-name { color: white; }
.cat-card.dark .cat-count { color: rgba(255,255,255,0.5); }
.cat-card.dark:hover { background: #1e293b; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* =========== ROLES CAROUSEL =========== */
.roles-section { background: white; }
.roles-wrapper {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
  border-radius: 32px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.roles-left h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate);
}
.roles-left p { margin-top: 0.75rem; color: var(--slate-600); font-size: 0.95rem; line-height: 1.7; }
.roles-carousel-box {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(4,123,213,0.08);
  position: relative;
  overflow: hidden;
}
.roles-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.roles-slide.active { display: grid; }
.role-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  transition: all .2s;
  background: white;
}
.role-item:hover { border-color: var(--blue); background: var(--blue-light); }
.role-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--slate); }
.role-item span { font-size: 0.75rem; color: var(--blue); font-weight: 600; margin-top: 0.3rem; display: block; }
.roles-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}.roles-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.rdot {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Visible dot */
.rdot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all .2s ease;
}

/* Active dot */
.rdot.active::before {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: var(--blue);
}
/* =========== COMPANIES SLIDER =========== */
/* Updated Section Container */
.companies-section { 
    padding: 5rem 2rem; 
    background: linear-gradient(180deg, #ffffff 0%, var(--slate-50) 100%); 
}

/* Redesigned Company Card */
.company-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8); /* Glass effect base */
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default; /* Changed from pointer as per your preference */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.company-slide:hover { 
    background: white;
    border-color: var(--blue); 
    box-shadow: 0 20px 25px -5px rgba(4, 123, 213, 0.1), 0 10px 10px -5px rgba(4, 123, 213, 0.04); 
    transform: translateY(-6px); 
}
/* Container for the logo */
.logo-box {
    width: 60px;   /* Set your desired width */
    height: 60px;  /* Set the same height for a square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 5px;
}

.logo-box img {
    /* This makes the image fill the 60x60 space without distortion */
    width: 100%;
    height: 100%;
    /* 'contain' ensures the whole logo is visible without being cropped */
    object-fit: contain; 
    
    
    transition: all 0.4s ease;
    border-radius: 5px;
}


.company-slide span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    text-align: center;
    display: block;
}

/* =========== QUICK ACTIONS =========== */
.quick-section { background: var(--slate-50); padding: 3rem 2rem; }
.quick-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: var(--slate);
}
.quick-card:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(4,123,213,0.1); transform: translateY(-2px); }
.quick-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.quick-card h3 { font-size: 0.9rem; font-weight: 700; }
.quick-card p { font-size: 0.75rem; color:#475569;; margin-top: 0.1rem; }

/* =========== FOOTER =========== */
footer {
  background: var(--slate);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--blue); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
   width: 48px;
    height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all .2s;
  font-size: 0.85rem;
}
.social-link:hover { background: var(--blue); color: white; }

/* =========== MOBILE NAV =========== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 1.2rem;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mob-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border: none;
  background: transparent;
  color: var(--slate-400);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  transition: all .2s;
}
.mob-btn i { font-size: 1.2rem; }
.mob-btn.active { color: var(--blue); }
.mob-btn-center {
  width: 52px; height: 52px;
  background: var(--blue);
  color: white;
  border-radius: 18px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(4,123,213,0.35);
  transform: translateY(-8px);
  transition: all .2s;
}
.mob-btn-center:hover { transform: translateY(-12px); }

/* =========== ANIMATIONS =========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .roles-wrapper { grid-template-columns: 1fr; }
  .roles-left { text-align: center; }
}
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem 6rem; }
  .hero-visual { display: none; }
  .search-bar { flex-direction: column; border-radius: 20px; }
  .search-divider { display: none; }
  .search-loc { width: 100%; border-top: 1px solid var(--border); }
  .search-btn { margin: 0; border-radius: 0 0 18px 18px; padding: 0.8rem; }
  .mobile-nav { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .roles-wrapper { padding: 2rem 1.5rem; }
  .key-advice { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.1rem; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
}


/* ===== NEW DESIGN ===== */





/* Grid */


/* Card */
.demand-box {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.demand-box:hover {
  box-shadow: 0 12px 30px rgba(4,123,213,0.1);
}

/* Title */
.demand-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--slate);
}
.role-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:12px;
}

.role-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:18px 12px;
    text-align:center;
    text-decoration:none;
    color:#334155;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
    min-height:90px;
gap: 8px;
    display:flex;
    align-items:center;
    justify-content:center; 
}

.role-card:hover{
    background:linear-gradient(135deg,#047bd5,#2563eb);
    color:#fff;
    border-color:#047bd5;
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(4,123,213,.2);
}
/* CARD */
.tutorial-card{
    display:flex;
    align-items:center;
    gap:20px;
    background: white;
    border-radius:20px;
    padding:24px;
    box-shadow:0 8px 25px rgba(4,123,213,0.12);
    border:1px solid #d6eaff;
    transition:all 0.4s ease;
    max-width:700px;
    margin:auto;
    position:relative;
    overflow:hidden;
    animation:fadeUp 1s ease;
}

/* Glow Effect */
.tutorial-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(4,123,213,0.12);
    border-radius:50%;
    top:-80px;
    right:-80px;
    animation:floatGlow 8s linear infinite;
}

/* Hover */
.tutorial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(4,123,213,0.20);
}

/* ICON */
.tutorial-icon{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#047bd5,#0369b5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    border-radius:20px;
    flex-shrink:0;
    animation:bounce 2.5s infinite;
    z-index:2;
}

/* CONTENT */
.tutorial-content{
    position:relative;
    z-index:2;
}

.tutorial-content h3{
    margin:10px 0;
    font-size:24px;
    font-weight:700;
    color:#0f172a;
}

.tutorial-content p{
    color:#64748b;
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
}

/* BADGE */
.tutorial-badge{
    display:inline-block;
    background:#d8ecff;
    color:#047bd5;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    animation:pulse 2s infinite;
}

/* BUTTON */
.tutorial-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#047bd5,#0369b5);
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

/* Shine Animation */
.tutorial-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.25);
    transform:skewX(-25deg);
    transition:0.7s;
}

.tutorial-btn:hover::before{
    left:120%;
}

.tutorial-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(4,123,213,0.35);
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(4,123,213,0.4);
    }
    70%{
        box-shadow:0 0 0 12px rgba(4,123,213,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(4,123,213,0);
    }
}

@keyframes floatGlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width:768px){

    .tutorial-card{
        flex-direction:column;
        text-align:center;
        padding:20px;
        border-radius:18px;
    }

    .tutorial-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

    .tutorial-content h3{
        font-size:20px;
    }

    .tutorial-content p{
        font-size:14px;
    }

    .tutorial-btn{
        width:100%;
        padding:14px;
        font-size:15px;
    }
}

@media (max-width:480px){

    .tutorial-card{
        padding:18px;
        gap:16px;
    }

    .tutorial-content h3{
        font-size:18px;
    }

    .tutorial-content p{
        font-size:13px;
        line-height:1.6;
    }

    .tutorial-badge{
        font-size:12px;
        padding:5px 12px;
    }

    .tutorial-btn{
        font-size:14px;
        border-radius:10px;
    }
}

/* ===== Modern Job Search Bar ===== */

.job-search-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 70px;
    padding: 5px 10px;
    max-width: 1100px;
    margin: auto;
    box-shadow:
        0 10px 40px rgba(37,99,235,.12),
        0 2px 10px rgba(0,0,0,.06);
    border: 1px solid rgba(255,255,255,.4);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.search-field i {
    font-size: 18px;
    color: #2563eb;
}

.search-field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
}

.search-field input::placeholder {
    color:#475569;
}

.divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.search-btn {
    border: none;
    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6,
        #60a5fa
    );
    color: white;
    height:48px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(37,99,235,.25);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37,99,235,.35);
}

@media (max-width: 768px) {
    .job-search-container {
        flex-direction: column;
        border-radius: 25px;
        padding: 20px;
    }

    .divider {
        display: none;
    }

    .search-field {
        width: 100%;
        background: #f8fafc;
        border-radius: 15px;
        padding: 14px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }
}
