/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  background-color: #f5f0eb;
  color: #5D4037;
}
/* General Header Styles */
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}


.container {
    width: 90%;
    max-width: var(--container, 1200px);
    margin: 0 auto;
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}


.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #5D4037;
    text-align: center;
    display: flex;
}


.nav {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    /* border: 1px solid red;; */
    /* width: 100%;; */


}


.nav a {
    color: #5D4037;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.6; 
}


.nav a.active,.nav a:hover {
    opacity: 1.0; 
    color: black;
}


.btn-primary {
    padding: 8px 16px;
    background: #5D4037;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}


.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #5D4037;
    border-radius: 3px;
}


/* Navbar Drop Animation */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Responsive Styles */
@media (max-width: 980px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-image { width: 80%; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .site-header{position: fixed;}
}


@media (max-width: 600px) {
    .nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 10px;
        border-radius: 4px;
    }


    .nav a {
        padding: 10px 0;
    }


    .hamburger {
        display: flex;
    }


    .nav.active {
        display: flex;
    }


    .header-inner { justify-content: space-between; }
    
}
/* ------------------- HEADER BASE ------------------- */
/* NAVBAR ANIMATION */
body {
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
    color: #5D4037;
}


/* KEYFRAME */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Root variables */
:root{
  --container: 1100px;
}


/* Basic resets */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
}


/* container */
.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}


/* Header base */
.site-header{
  background:white;
  position:sticky;
  top:0;
  width: 100%;
  z-index:30;
  box-shadow:0 2px 6px rgba(15,23,42,0.05);
}
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
/* Inner layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}


/* Logo */
.logo{
  font-weight:700; 
  font-size:1.25rem; 
  display:flex; 
  text-align:center;
}


/* Navigation */
.nav{
  display:flex; 
  gap:18px; 
  justify-content:flex-end; 
  width:100%;
}


.nav a{
  color:#5D4037; 
  text-decoration:none; 
  font-weight:500;
}


/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}


.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}


/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* HAMBURGER BUTTON */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}


.hamburger span {
    width: 100%;
    height: 4px;
    background: #5D4037;
    border-radius: 5px;
    transition: 0.3s ease;
}


/* Hamburger → Cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* ------------------------------
   MOBILE MENU (Vertical Dropdown)
------------------------------- */
@media (max-width: 600px) {


    /* Show hamburger */
    .hamburger {
        display: flex;
    }


    /* Hide menu by default */
    .nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        background: white;
        padding: 15px 0;
        gap: 18px;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }


    /* Show vertically when active */
    .nav.active {
        display: flex;
    }


    /* Make each link full-width centered */
    .nav a {
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
        display: block;
    }


    /* Fix header layout */
    .header-inner {
        justify-content: space-between;
    }
}


/* MOBILE DROPDOWN MENU */
@media (max-width: 600px) {


  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 100;
  }


  .nav.active {
    display: flex;
  }


  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }


  .nav a:last-child {
    border-bottom: none;
  }


  .hamburger {
    display: flex;
  }


  /* Fix CTA alignment */
  #cta {
    margin-right: 0;
  }
}
/* Hide CTA on screens below 1024px (tablets & mobile) */
@media (max-width: 1024px) {
    #cta {
        display: none !important;
    }
}


/* Show CTA on laptop/desktop */
@media (min-width: 1025px) {
    #cta {
        display: inline-block !important;
    }
}
/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* Container for consistent horizontal padding */
.container {
  width: 1100px;;
  max-width: 1100px;
  margin: 0 auto;
  
}
/* ============================================================================================ */
/* Page Loader Styles */
/* #page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}


.loader {
  border: 6px solid #f3f3f3; 
  border-top: 6px solid #5D4037; 
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#loaderOverlay.hide {
    opacity: 0;
    visibility: hidden;
} */

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f0eb;
}
/* NAVBAR ANIMATION */
body {
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
    color: #5D4037;
}

/* KEYFRAME */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Root variables */
:root{
  --container: 1100px;
}

/* Basic resets */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* Header base */
.site-header{
  background:white;
  position:sticky;
  top:0;
  width: 100%;
  z-index:30;
  box-shadow:0 2px 6px rgba(15,23,42,0.05);
}

/* Inner layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

/* Logo */
.logo{
  font-weight:700; 
  font-size:1.25rem; 
  display:flex; 
  text-align:center;
}

/* Navigation */
.nav{
  display:flex; 
  gap:18px; 
  justify-content:flex-end; 
  width:100%;
}

.nav a{
  color:#5D4037; 
  text-decoration:none; 
  font-weight:500;
}
/* 
.site-header a:hover,
.site-header a.active {
  border-bottom: 2px solid #5D4037;
} */

/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* HAMBURGER BUTTON */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #5D4037;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hamburger → Cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------
   MOBILE MENU (Vertical Dropdown)
------------------------------- */
@media (max-width: 600px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide menu by default */
    .nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        background: white;
        padding: 15px 0;
        gap: 18px;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }

    /* Show vertically when active */
    .nav.active {
        display: flex;
    }

    /* Make each link full-width centered */
    .nav a {
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
        display: block;
    }

    /* Fix header layout */
    .header-inner {
        justify-content: space-between;
    }
}

/* MOBILE DROPDOWN MENU */
@media (max-width: 600px) {

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 100;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  /* Fix CTA alignment */
  #cta {
    margin-right: 0;
  }
}
/* Hide CTA on screens below 1024px (tablets & mobile) */
@media (max-width: 1024px) {
    #cta {
        display: none !important;
    }
}

/* Show CTA on laptop/desktop */
@media (min-width: 1025px) {
    #cta {
        display: inline-block !important;
    }
}

/* ============================================================================================ */

#jobList {
    min-height: 500px; 
    margin-top: 40px;;

}
/* 
.site-header a:hover,
.site-header a.active {
  border-bottom: 2px solid #5D4037;
} */

/* Hero Section */
.hero-section {
  background:#f5f0eb; /* light/pale background similar to your screenshot */
  padding: 40px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.75rem;
  color: #5D4037; 
  margin-bottom: 20px;
  
}

.hero-content p {
  font-size: 21px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
  margin: 0 8px;
}

.btn-primary {
  background-color: #5D4037;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  border: 0.1px solid #5D4037;
    box-shadow: 0px 10px 25px rgba(0,0,0,.4);

}

.btn-outline {
  background-color: #FFF5E1;
  color: #5D4037;
  border: 0.1px solid #5D4037;
  font-weight: 500;
}

.btn-outline:hover {
  background-color: #5D4037;
  color: #FFF5E1;
  box-shadow: 0px 10px 25px rgba(0,0,0,.4);

}


/* Highlight Card / Banner */
/* .highlight-card {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background-color: #ebe3dc;
}

.card-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
}

.card-overlay h2 {
  font-size: 1.2rem;
}

.card-overlay p {
  font-size: 1rem;
} */



.highlight-card {
  padding: 40px 0;
  background-color: #FFFFFF;
}

.carousel-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-overlay h2 {
  font-size: 1rem;
}

.card-overlay p {
  font-size: 0.90rem;
}
.carousel-btn:hover {
  background: rgba(0,0,0,0.6);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}



.carousel-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 4px;
  margin: 0 3px;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  border-radius: 2px;
}

.carousel-dots .dot.active {
  background: #ffffff;
}















/* Open Positions Section placeholder styling */
.open-positions h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .site-nav ul {
    gap: 1rem;
  }

  .buttons .btn {
    margin: 8px 0;
    width: 100%;
    max-width: 240px;
  }
}

/* designing for job lisiting and values part */
/* GLOBAL COLORS */
:root {
    --primary: #5D4037;       /* Brown (replacing blue) */
    --background: #f5f0eb;    /* Cream (replacing white) */
    --text-dark: #3a2f2b;
    --text-light: #6d5f58;
    --card-bg: #ffffff;
    --border-color: #e6ded8;
}

/* Shared Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Values Section */
.values-section {
    background: var(--background);
    padding: 60px 0;
}

.values-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

}


.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 350px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover{
    
    box-shadow: 0px 10px 25px rgba(0,0,0,.4);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8ded8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Positions Section */
.positions-section {
    padding: 70px 0;
    background: #fff;
}

/* .job-card {
    background: var(--background);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    width: 80%;;
    margin: auto;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

} */
/* .opening :hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
} */
.job-card:hover {
    box-shadow: 0px 10px 15px rgba(0,0,0,.15);
}
.job-info h3 {
    color: var(--text-dark);
    margin-bottom: 6px;
}

.job-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: #e5dad3;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.tag.purple {
    background: var(--primary);
    color: #fff;
}

/* Job description */
.jd
{
    text-align: left;
    margin-bottom: 15px;
    margin-left: 20px;;
    margin-right: 20px;
}

.jd ul,.jd p
{
    margin-left: 40px;;
    margin-right: 40px;;
    text-align-last: auto;
}

.pagination-btn {
  margin: 5px;
  padding: 6px 12px;
  border: 1px solid #5D4037;
  background: #f5f0eb;
  color: #5D4037;
  border-radius: 6px;
  cursor: pointer;
}

.pagination-btn.active {
  background: #5D4037;
  color: white;
}

/* Container styling */
#jobControls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* padding: 14px 18px; */
    /* background: rgba(245, 240, 235, 0.75);  */
    /* backdrop-filter: blur(6px); */
    /* border-radius: 16px; */
    /* border: 1px solid rgba(93, 64, 55, 0.10); */
    /* box-shadow: 0 8px 24px rgba(93, 64, 55, 0.10); */
}


/* Select dropdown */
.filter-select {
    height: 42px;
    padding: 6px 14px;
    background: #f5f0eb;
    border: 1px solid rgba(93, 64, 55, 0.30);
    border-radius: 12px;
    color: #5D4037;
    font-weight: 500;
    width: 200px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(93, 64, 55, 0.08);
}

/* Search input */
.search-input {
    height: 42px;
    width: 250px;
    padding: 6px 14px;
    background: #f5f0eb;
    border: 1px solid rgba(93, 64, 55, 0.30);
    border-radius: 12px;
    color: #5D4037;
    box-shadow: 0 4px 16px rgba(93, 64, 55, 0.08);
}

.search-input::placeholder {
    color: rgba(93, 64, 55, 0.55);
}

/* Search button */
.search-btn {
    height: 42px;
    padding: 0 16px;
    background: #5D4037;
    color: #f5f0eb;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(93, 64, 55, 0.25);
    transition: 0.2s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(93, 64, 55, 0.30);
}






/* Apply Button */
.apply-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.apply-btn:hover {
    background: #4a322c;
}
/* Footer */
.dt-footer {
  background: #5D4037; /* Rich Brown */
  color: #FFF5E1; /* Cream */
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  color: #FFF5E1;
  font-weight: 800;
  margin-bottom: 15px;
  font-weight: 700;;
}

/* Description */
.footer-desc {
  font-size: 14px;
  color: #fbe8cb;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #f58f00; /* orange accent */
}

/* Columns */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #FFF5E1;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fbe8cb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a {
  color: #fbe8cb;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f58f00;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.social-icons
{
  color: #FFF5E1;
}
.footer-bottom p {
  font-size: 14px;
  color: #fbe8cb;
}

.policy-links a {
  font-size: 14px;
  color: #fbe8cb;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.policy-links a:hover {
  color: #f58f00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Benifits and perks */
/* Brand Colors */
/* :root {
    --primary: #5D4037;
    --bg-light: #f5f0eb;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.35);
} */

/* Section Structure */
.benefits-section,
.hiring-section,
.hiring-process {
    padding: 40px 0;
    background: var(--bg-light);
    text-align: center;
}

/* Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1rem;
    color: #6c5a53;
    margin-bottom: 40px;
}

/* GLASS EFFECT */
.glass {

    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 16px;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 20px 20px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.40);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 20px;
}

.benefit-card p {
    font-size: 12px;
    color: var(--primary);
}

/* PROCESS STEPS */
.hiring-process {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
}

.hiring-process h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #5D4037;

}

.hiring-process .subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #5D4037;
}
.hiring-process p{

  font-size: 12px;
}
/* Responsive Design for Hiring Process */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    width: 100%; /* make it responsive */
    margin: 0 auto;
    padding-bottom: 100px;
}

@media (max-width: 900px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr); /* 2 steps per row for tablets */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .process-container {
        grid-template-columns: 1fr; /* stack all steps vertically for mobile */
        gap: 15px;
    }

    .process-step {
        width: 100%; /* full width */
        margin-bottom: 20px;
    }
}


.process-step {
  padding: 30px;
  border-radius: 12px;
  /* background: #f5f0eb;       */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.40);
} */
/* 
.step-number {
  display: inline-block;
  font-size: 42px;
  font-weight: 800;
  color: #5D4037;  
  margin-bottom: 10px;
  border: 1px solid red;
  border-radius: 5000px;padding: 10px;
} */
 .step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #5D4037;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px auto;
}


.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #5D4037
}

.process-step p {
  color: #5D4037;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        width: 100%;
    }
}
/* Responsive Design for Hiring Process */


/* testing demo */
.job-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}

.job-card.active {
  background: rgba(255,255,255,0.25);
  padding-bottom: 25px;
}

.job-header {
  display: flex;
  flex-direction: column;
}

.arrow-icon {
  float: right;
  transition: transform 0.4s ease;
}

.job-card.active .arrow-icon {
  transform: rotate(180deg);
}

/* Hide job content by default */
.job-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
  overflow: hidden;
  margin-top: 0;
}

.job-card.active .job-content {
  max-height: 1000px;
  opacity: 1;
  margin-top: 15px;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #5D4037;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-color: #FFF5E1;
  color:#5D4037;
  border: 1px solid rgba(0,0,0,0.2);
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
}
/* Hide search button on mobile only */
@media (max-width: 767px) {
  #searchBtn {
    display: none !important;
  }
  .hero-content p
  {
    font-size: 1rem;
  }
}


