@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, p, ul, ol, li, span {
    font-family: "Lato", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
     font-family: "Montserrat", sans-serif !important;
}

html {
  scroll-behavior: smooth;

}

html, body {
  overflow-x: hidden !important;
  text-align: justify;
}
/* NAVBAR TRANSPARENT ON VIDEO */



.navbar-brand img {
  border-radius: 4px;
  /*width: 164px;*/
  /*height: 42px;*/
}

.loader-bubbles {
  width: 80px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader-bubbles::before,
.loader-bubbles::after,
.loader-bubbles div {
  content: '';
  width: 16px;
  height: 16px;
  background: #DDA15E;
  border-radius: 50%;
  animation: bubble-wave 0.6s infinite alternate;
}

.loader-bubbles div {
  animation-delay: 0.2s;
}

.loader-bubbles::after {
  animation-delay: 0.4s;
}

@keyframes bubble-wave {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-10px);
    opacity: 1;
  }
}


.nav-link {
  font-size: 16px;
  color: #fefae0 !important;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-link:hover {
  color: #dda15e !important; /* Change color as per Figma */
}

.navbar .nav-link.active {
    color: #606C38 !important;
    font-weight: 600;
}


.nav-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

/* DEFAULT: NAVBAR ON HERO (transparent + light color) */
.custom-navbar {
  padding: 12px 0;
  transition: 0.3s ease;
}

.custom-navbar .nav-link {
  color: #ffffff !important;
}

.custom-navbar .nav-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* makes icons white */
  transition: 0.3s ease;
}

/* WHEN SCROLLED DOWN */
.custom-navbar.nav-scrolled {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);

  background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.15) 100%
    ),
    linear-gradient(
      60deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 70%
    );

  /* border-bottom: 1px solid rgba(255, 255, 255, 0.25); */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.custom-navbar.nav-scrolled .nav-link {
  color: #2d2d2d !important; /* Dark link color */
}

.custom-navbar.nav-scrolled .nav-link.active {
    color: #606C38 !important;
    font-weight: 600;
}


.custom-navbar.nav-scrolled .nav-icon {
  filter: brightness(0); 
}

/* DEFAULT: white hamburger (already working because of navbar-dark) */
.navbar-toggler-icon {
  transition: 0.3s ease;
}

/* DARK HAMBURGER ON SCROLL */
.custom-navbar.nav-scrolled .navbar-toggler-icon {
     color: #606C38 !important;
  filter: brightness(0); /* makes icon black */
}

/* DARK HAMBURGER WHEN MENU OPENED (MOBILE) */
.custom-navbar.mobile-open .navbar-toggler-icon {
     color: #606C38 !important;
  filter: brightness(0); /* also black */
}


/* SEARCH BOX HIDDEN INITIALLY */
.search-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

/* WHEN ACTIVE */
.search-box.active {
  transform: translateY(-50%) translateX(-50%);
  width: 250px;           /* adjust width */
  opacity: 1;
}

/* INPUT STYLE */
.search-input {
  border-radius: 20px;
  padding-left: 15px;
  height: 40px;
}

/* REMOVE BOOTSTRAP FOCUS OUTLINE + SHADOW */
.search-input:focus,
.search-input:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ccc !important;  /* optional: set your neutral border */
}

/* You can also set your own border for normal state */
.search-input {
  border: 1px solid #ccc !important; /* optional */
}

.search-results {
  position: absolute;
  top: 80%;
  right: 0;
  transform: translateY(0%) translateX(-50%);
  width: 250px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
  text-align: start !important;
  font-size: 12px;
}

.search-results p {
  font-size: 12px;
  margin: 0 0 6px;
  font-weight: bold;
  
}

.search-results .result-item {
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 6px;
}

.search-results .result-item:hover {
  background: #f1f1f1;
}



/* MOBILE: Prism background only when hamburger is opened */
@media (max-width: 992px) {
  .custom-navbar.mobile-open {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);

    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.15) 100%
      ),
      linear-gradient(
        60deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 70%
      );
  }

  /* When menu OPEN → dark icons + dark text */
  .custom-navbar.mobile-open .nav-icon {
    filter: brightness(0);
  }

  .custom-navbar.mobile-open .nav-link {
    color: #2d2d2d !important;
  }

  .custom-navbar.mobile-open .nav-link.active {
    color: #606C38 !important;
  }
  .search-box {
 left: 50%;
  top: 140%;
 
}

.search-results {
  position: absolute;
  top: 170%;
  left: 50%;
}

}



/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: visible; /* IMPORTANT FIX */
}
/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Optional Dark Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* HERO TEXT CONTENT */
.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 20px;
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: -2px; /* sits OVER video */
  left: 0;
  width: 100%;
  height: 150px; /* responsive depth */
  overflow: hidden;
  z-index: 5; /* MUST be above video */
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh; /* mobile-friendly height */
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* keeps subject centered */
  }

  .hero-wave {
    height: 100px; /* smaller wave for mobile */
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 60vh;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-wave {
    height: 120px;
  }
}


/* ================= OUR STORY SECTION ================= */
.our-story-section {
  /* padding: 140px 0; */
  position: relative;
  background: #fff;
}


.img-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
}

.shape-behind-img, .home-shape-behind-img {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-60%, -50%); 
  width: 80%; 
  max-width: 100%;
  opacity: 0.85;
  height: 290px;
  /* z-index: 1; */
}


.story-pop-img, .home-story-pop-img {
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  transform-origin: top left;
  z-index: 10;
  transition: 0.4s ease-in-out;
}

/* MAIN IMAGE – NO TRANSFORM HERE */
.img-main, .home-img-main {
  width: 100%;
  height: 330px;
  border-radius: 22px;
  display: block;
  z-index: 4;
}

/*.img-main {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-60%, -50%);*/
/*  width: 68%;*/
/*  height: 330px;*/
/*  border-radius: 22px;*/
/*  z-index: 4;*/
/*}*/

/* FLOATING SMALL IMAGE */
.img-floating, .home-img-floating {
  width: 190px;
  border-radius: 18px;
  position: absolute;
  top: 40%;
  left: 90%;
  transform: translate(-50%, -50%);
  z-index: 5;
  border: 4px solid #fff;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.22);
}



/* HOVER EFFECT FIXED */
.story-pop-img:hover, .home-story-pop-img:hover {
  transform: translate(-55%, -45%) scale(1.08);
}


/* DOTS ON LEFT VERTICAL */
.dots-left-vertical {
  position: absolute;
  bottom: 70px;
  left: -90px;
  width: 200px;
  opacity: 0.9;
  z-index: 1;
   transform: rotate(90deg); /* 🔥 Makes dots vertical */
  transform-origin: center;
}

.dots-left-vertical-story {
  position: absolute;
  bottom: 70px;
  left: -150px;
  width: 200px;
  opacity: 0.9;
  z-index: 1;
   transform: rotate(90deg); /* 🔥 Makes dots vertical */
  transform-origin: center;
}

/* DOTS ON RIGHT */
.dots-top-right {
  position: absolute;
  top: -30px;
  right: 40px;
  width: 200px;
  opacity: 0.9;
  z-index: 1;
}

/* RIGHT SIDE DOUBLE OUTLINE (orange + green) */
.shape-right {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 90px;
  opacity: 0.95;
  height: 50%;
  z-index: 1;
}

/* TEXT RIGHT SIDE */
.story-content {
  /*margin-left: -90px !important;*/
}

.story-title {
  /*font-size: 24px;*/
  font-weight: 700;
  color: #354422;
  margin-bottom: 15px;
}


.story-text {
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* BUTTON */
.story-btn {
  padding: 11px 30px;
  background: #5c6f3b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.25s;
  display: inline-block;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}

.story-btn:hover {
  background: #fff;
  color: #222;
  outline: 2px solid #5c6f3b;
}


/*@media (max-width: 992px) {*/
/*  .shape-behind-img {*/
/*    width: 180%;*/
/*    top: 45%;*/
/*  }*/

/*  .img-main {*/
/*    margin-left: 40px;*/
/*  }*/
/*}*/


/* ========================================================= */
/* ====================== TABLET VIEW ======================= */
/* ========================================================= */

@media (max-width: 991px) {
    
    .our-story-section  {
        padding-top: -220px !important;
    }
  .img-wrapper {
    height: 380px;
  }

  .shape-behind-img {
    width: 60%;
    transform: translate(-50%, -50%); 
    height: 220px;
  }

  .story-pop-img {
    width: 60%;
     transform: translate(-50%, -50%);
  }
  
  .img-main {
      height: 240px;
  }

  .img-floating {
    width: 150px;
    bottom: -12%;
    right: -16%;
  }
  
  /* DOTS ON RIGHT */
.founder-dots {
  display: none;
}

.company-shape-right {

 display: none;
}

.dots-top-right,  
.dots-left-vertical,
.story-shape-right,
.news-dots,
.company-shape-left, 
.contact-dots,
.dots-left-vertical-story{
     display: none;
}

.founder-shape-left {
    display: none;
}

.founder-shape-right {
    display: none;
}

/* Outline shape behind founder image */
.founder-shape-behind {
 
width: 90% !important;
 
}

/* Founder main image */
.founder-img {

  width: 80% !important;
  height: 80% !important;

}

.story-pop-img:hover, .home-story-pop-img:hover {
  transform: none;
}

}

/* ========================================================= */
/* ===================== MOBILE VIEW ======================== */
/* ========================================================= */

@media (max-width: 768px) {
  .img-wrapper {
    height: 330px;
  }

  .shape-behind-img {
    width: 60%;
    /*height: 200px;*/
  }

  .story-pop-img {
    width: 75%;
  }

  .img-floating {
    width: 130px;
    bottom: -8%;
    right: -4%;
  }

  /* Disable hover zoom on mobile */
  .story-pop-img:hover {
    transform: translate(-50%, -50%);
  }
.company-shape-right {

  width: 22px; 
  height: 110px;
}

}

/* ========================================================= */
/* ====================== SMALL MOBILE ====================== */
/* ========================================================= */

@media (max-width: 576px) {
  .img-wrapper {
  
    height: 290px;
  }

  .shape-behind-img {
    width: 85%;
  }

  .story-pop-img {
    width: 72%;
  }

  .img-floating {
    width: 140px;
    bottom: -10%;
    right: -16% !important;
  }
}

/* OUR COMPANIES */
.our-companies-section {
  text-align: center;
  padding: 40px 0 20px;
  background: white;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #3d4a28;
  margin-bottom: 25px;
}
/* Keeping all your original styles */
.concave-contain {
  position: relative; /* 🔥 anchor for scroll buttons */
}

.concave-mask {
  width: 100%;
  height: 520px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  clip-path: url(#concave-curve);
  background: white;
  position: relative;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.concave-mask::-webkit-scrollbar {
  display: none;
}

.pano-scroll a {
  display: inline-block;
  margin-right: 10px;
}

.pano-scroll img {
  height: 520px;
  width: 700px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  /*box-shadow:*/
  /*  inset 10px 10px 10px 10px rgba(0, 0, 0, 0.7),*/
  /*  0 4px 12px rgba(0, 0, 0, 0.4);*/
}

.pano-scroll {
  position: relative;
  display: inline-block;
}

.pano-scroll img {
  height: 520px;
  width: 700px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Dark corner overlay */
.pano-scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 10px 10px 200px 10px rgba(0, 0, 0, 0.7);
}


/* Hover cursor */
.pano-scroll img:hover {
  cursor: pointer;
}

/********************************
  FIXED ARROWS THAT DO NOT SCROLL
*********************************/
.scroll-btn {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(61, 74, 40, 0.9);
  border: none;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  pointer-events: auto;
}

/* Button placement */
.scroll-left {
  left: 12px;
}

.scroll-right {
  right: 12px;
}


.concave-contain:hover .scroll-btn {
  opacity: 1;
}

.scroll-btn:hover {
  background: #e6b578;
  color: #000;
}




/* Tablet: reduce curve depth + height */
@media (max-width: 991px) {
  .concave-mask {
   
    clip-path: url(#concave-curve-tablet);
    height: 420px;
  }
  .pano-scroll img {
    height: 420px;
      width: 380px;
  }
  .scroll-btn {
      opacity: 1;
      
  }
}

/* Mobile: even shallower + smaller height */
@media (max-width: 768px) {
  .concave-mask {
 
    clip-path: url(#concave-curve-mobile);
    height: 340px;
  }
  .pano-scroll img {
    height: 340px;
  }
}

/* ==================== NEWS SECTION ===================== */

.news-updates-section {
  padding: 140px 0; /* same spacing as OUR STORY */
  position: relative;
  background: #fff;
}

/* align title properly */
.news-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #3a4a28;
  margin-bottom: 60px; 
}

/* DOTS */
.news-dots {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 180px;
  opacity: 0.9;
  z-index: 1;
}

/* Outline square behind slider */
.shape-behind {
  position: absolute;
  top: -20px;
  left: 20%;

  width: 250px; /* made smaller */
  height: auto;
  opacity: 0.65; /* softer effect */
  z-index: 1; /* stays behind */
}

.above-shape {
  position: relative;
  z-index: 5;
}

/* 3D CAROUSEL */
.carousel-3d {
  position: relative;
  width: 100%;
  height: 260px; /* match OUR STORY image height */
  margin-left: 20px; /* center align visually */
}

.carousel-card {
  position: absolute;
  width: 260px;
  height: 220px;
  left: 15%;
  border-radius: 22px;
  border: 4px solid #fff;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.7s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

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

.carousel-card.active {
  transform: scale(1) translateX(0);
  opacity: 1;
  z-index: 10;
}

.carousel-card.left1 {
  transform: scale(0.9) translateX(-120px);
  opacity: 0.9;
  z-index: 6;
}

.carousel-card.right1 {
  transform: scale(0.9) translateX(120px);
  opacity: 0.9;
  z-index: 6;
}

.carousel-card.left2 {
  transform: scale(0.8) translateX(-220px);
  opacity: 0.6;
  z-index: 4;
}

.carousel-card.right2 {
  transform: scale(0.8) translateX(220px);
  opacity: 0.6;
  z-index: 4;
}


.news-text-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.news-text-slide.active {
  display: block;
  opacity: 1;
}


/* TEXT */
.news-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 80%;
  margin-left: 90px;
  position: relative;
  z-index: 5;
}

@media (max-width: 1024px) and (min-width: 769px) {
    
    .news-updates-section {
  padding: 70px 0; /* same spacing as OUR STORY */
  
}

.news-title {
 
  margin-bottom: 30px; 
}

/* Outline square behind slider */
.shape-behind {
 display: none;

  width: 220px; /* made smaller */
  
   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


}
  .carousel-3d {
    height: 230px;
    margin-left: 0;
  }

  .carousel-card {
    width: 220px;
    height: 170px;
     left: 42%;
 
  transform: translate(-50%, -50%);

  }

  .carousel-card.left1 {
    transform: scale(0.9) translateX(-100px);
  }

  .carousel-card.right1 {
    transform: scale(0.9) translateX(100px);
  }

  .carousel-card.left2 {
    transform: scale(0.8) translateX(-180px);
  }

  .carousel-card.right2 {
    transform: scale(0.8) translateX(180px);
  }
}


@media (max-width: 768px) {
    
    .news-updates-section {
  padding: 35px 0; 
 
}

.news-title {
 
  margin-bottom: 15px; 
}


.shape-behind {
   
 top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 190px; /* made smaller */

}
  .carousel-3d {
    height: 230px;
    margin-left: 0;
  }

  .carousel-card {
    width: 180px;
    height: 150px;
      left: 31%;
    top: 15%;
  transform: translate(-50%, -50%);
  }

  .carousel-card.left1 {
    transform: scale(0.85) translateX(-80px);
  }

  .carousel-card.right1 {
    transform: scale(0.85) translateX(80px);
  }

  .carousel-card.left2 {
    transform: scale(0.75) translateX(-150px);
  }

  .carousel-card.right2 {
    transform: scale(0.75) translateX(150px);
  }
}

/* ===== RESUME SECTION (concave clipping) ===== */
.resume-section {
  position: relative;
  width: 100%;
  height: 480px;
  background-image: url("assets/images/professional-team.jpg");
  background-size: cover;
  background-position: center;
  overflow: visible; /* allow shadow/overflow outside if needed */

  /* Apply SVG clip-path (concave) */
  -webkit-clip-path: url(#concave-scoop);
  clip-path: url(#concave-scoop);

  /* fallback: gentle ellipse if clip-path not supported */
  background-color: rgba(88, 112, 52, 0.6);
}

/* Overlay tint */
.resume-overlay {
  position: absolute;
  inset: 0;
  background: rgba(88, 112, 52, 0.52);
  z-index: 1;
}

/* content above overlay */
.resume-content {
  position: relative;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* heading + upload box */
.resume-heading {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}

.resume-upload-box {
  width: 72%;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(200, 150, 70, 0.85);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* label text + button */
.upload-label {
  font-size: 16px;
  font-weight: 600;
  color: #5a4a28;
}

.upload-btn {
  background: #5d6f33;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  transition: 0.4s ease;
 box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}

.upload-btn:hover {
   outline: 2px solid #222;
}

/* small responsiveness */
@media (max-width: 992px) {
  .resume-section {
    height: 380px;
  }
  .resume-upload-box {
    width: 54%;
  }
  .resume-heading {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .resume-section {
    height: 320px;
  }
  .resume-upload-box {
    width: 92%;
    padding: 12px 14px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .upload-btn {
    align-self: flex-end;
  }
}

/* ====== RESPONSIVE: LARGE TABLET (≤ 992px) ====== */
@media (max-width: 992px) {
  .resume-section {
    height: 360px;
  }



  .upload-label {
    font-size: 15px;
  }

  .upload-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ====== RESPONSIVE: MOBILE (≤ 576px) ====== */
@media (max-width: 576px) {
  .resume-section {
    height: 310px;
  }

  .resume-heading {
    font-size: 18px;
  }

  .resume-upload-box {
    width: 92%;
    padding: 10px 14px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  /* file name */
  .upload-label {
    font-size: 14px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
  }

  /* button */
  .upload-btn {
    padding: 10px 18px;
    font-size: 14px;
    width: 100%;            
    text-align: center;
  }
}

/* ---------- GET IN TOUCH (uniform card styles) ---------- */
.contact-section {
  padding: 70px 0 0;
  position: relative;
  background: #fff;
  overflow: visible;
}

/* Title */
.contact-title {
  font-size: 22px;
  font-weight: 700;
  color: #3d4a28;
  margin-bottom: 18px;
}

/* background outlines/dots */
.contact-dots {
  position: absolute;
  right: 5%;
  top: 48px;
  width: 120px;
  opacity: 0.95;
  z-index: 1;
}
.contact-outline-left {
  position: absolute;
  left: -40px;
  top: -40px;
  height: 380px;
  opacity: 0.9;
  z-index: 100;
}
.contact-outline-right {
  position: absolute;
  right: -60px;
  bottom: -20px;
  height: 380px;
  opacity: 0.9;
  z-index: 100;
}

.contact-card {
  position: relative;
  height: 150px;             
  border-radius: 22px;
  overflow: visible;
  box-shadow: 0 10px 20px rgba(0,0,0,0.14);
  background: transparent;

  display: flex;
  align-items: center;   
  justify-content: center;
  padding: 24px 26px;     
  font-weight: 600;
  /*text-align: start;*/
  margin-bottom: 12px;
}

.contact-card-big {
  height: 180px;         
}

.contact-card-small {
  height: 85px;             
}

/* Inner BG with pattern & overlay */
.contact-card .card-inner-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/about-company.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
   border-radius: 22px;
  z-index: 0;
}

.contact-card .card-inner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(96,108,56,0.9);
  border-radius: 22px;
  z-index: 1;
}

/* text */
.contact-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* icon badge (matches Figma) */
.contact-icon-badge {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 14px;
  border-radius: 16px;
  border: 4px solid #fff;
  background: #e6b578;
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
  z-index: 50;
}

.contact-icon-badge img {
  width: 26px;
}


/* REMOVE FIXED HEIGHT */
.contact-card-big {
  min-height: 100%;
}

.contact-card-small {
  min-height: 110px;
}

/* MOBILE FIXES */
/*@media (max-width: 576px) {*/
    
/*    .contact-title {*/
  
/*  margin-bottom: 38px;*/
/*}*/

/*  .contact-card {*/
/*    padding: 24px 20px;*/
/*  }*/

/*  .contact-text {*/
/*    font-size: 14px;*/
/*  }*/

/*  .contact-icon-badge {*/
   
/*    padding: 10px 12px;*/
/*    right: -118px;*/
/*  top: 50%;*/
/*  }*/

/*  .contact-icon-badge img {*/
/*    width: 20px;*/
/*  }*/

/*}*/




/* -------------- MESSAGE CARD (right) -------------- */
.message-card {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  min-height: 230px;
  padding: 30px 28px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  background: transparent;
}

.message-card .message-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(96, 108, 56, 0.7);
  opacity: 0.70; 
  border-radius: 18px;
  z-index: 1; 
}

.message-card .message-bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background-image: url("assets/images/about-company.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0; 
  opacity: 1;
}

.message-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 15px;
  resize: none;
  background: rgba(221, 161, 94, 0.88); /* amber overlay like screenshot */
  color: #fff;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.message-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.message-input:focus {
  outline: none; 
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.25),
    0 0 0 3px #DDA15E;
  border: none;
}

.send-icon {
  position: absolute;
  right: 26px;
  bottom: 50px;
  background: transparent;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  z-index: 3;

  border: 4px solid transparent;

  background-image: url("assets/images/about-company.jpg");
  background-size: cover;
  background-position: center;

  /* create stacking context */
  /*position: relative;*/
  /*overflow: hidden;*/
}


.send-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(221, 161, 94, 0.88);
  z-index: 1;  
  border-radius: 12px;
}

.send-icon img {
  width: 24px;
  position: relative;
  z-index: 2;  
}


.contact-chat-icon {
  position: absolute;
  right: -18px;
  top: 20px;
  z-index: 3;
}


@media (max-width: 991px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-card {
    height: 110px;
    padding: 14px;
    border-radius: 20px;
  }
  .message-card {
    min-height: 200px;
    padding: 22px;
    border-radius: 18px;
  }
  .message-input {
    height: 130px;
  }
  .contact-outline-left,
  .contact-outline-right {
    display: none;
  }
}

@media (max-width: 576px) {
  .contact-card {
    height: auto;
    padding: 16px;
  }
  .contact-icon-badge {
    right: -12px;
    top: auto;
    bottom: 86%;
    transform: none;
  }
  .contact-chat-icon {
    right: -2%;
    top: none;
    bottom: 72%;
    transform: none;
  }
  .contact-card-small {
  min-height: 70px;
}

.contact-icon-badge img {
  width: 20px;
}

.send-icon img {
  width: 20px;
}

}



/* Footer Wrapper */
.footer-section {
  margin-top: 54px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* FOOTER WAVE */
.footer-wave {
  position: absolute;
  top: 0; /* pushes wave upward to overlap footer */
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 10; /* keeps wave above footer image */
  pointer-events: none;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* FOOTER BACKGROUND */
.footer-bg {
  position: relative;
  height: 280px;
  background-image: url("assets/images/about-company.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Tint overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: #e6b578;
  opacity: 0.75;
  z-index: 2;
}

/* Footer text & links container */
.footer-content {
  position: relative;
  z-index: 5;
  padding: 120px 0 0 0;
}


.footer-heading {
  /* font-size: 32px; */
  font-weight: 700;
  color: #283618;
  /*text-align: start;*/
}

/* Footer Links */
.footer-links a {
  display: block;
  color: #283618;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4b5630;
}

/* Bottom Bar */
.footer-bottom {
  background: #4b5630;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* Tablet */
@media (max-width: 991px) {
  .footer-content {
    padding-top: 90px;

  }

}

/* Mobile */
@media (max-width: 576px) {
  .footer-content {
    padding-top: 70px;
  }
  .footer-heading{
  font-size: 20px;
  
    
  }
  
}

/* Tablet & Mobile Fix */
@media (max-width: 991px) {

  /* Center the entire footer content */
  .footer-content {
    text-align: center;
  }

  /* Make link columns align to left but centered as a group */
  .footer-links {
    width: 90%;
    margin: 0 auto 6px auto;
      font-size: 14px;
  }

  /* Left-align text inside each column */
  .footer-links .col-6 {
    text-align: left !important;
  }
  .footer-copy, .bottom-links {
      font-size: 14px;
  }
}

@media (max-width: 991px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .bottom-links {
    justify-content: center !important;
  }
  
}


/* STORY PAGE */

/* ================= HERO SECTION ================= */
/* HERO SECTION — Bottom Concave Curve */
.story-hero-section {
  position: relative;
  height: 420px;
  background-image: url("assets/images/about-company.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 90px;
  overflow: hidden;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230, 181, 120, 0.6);
}

.story-hero-title {
  color: #fff;
  /*font-size: 42px;*/
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 4;
}

.story-shape-right {
  position: absolute;
  top: 260px;
  right: 0px; /* moves it outward → removes right white gap */
  width: 52px; /* smaller clean size */
  height: 210px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* ================= STORY GREEN SECTION ================= */

.story-green-section {
  background: #cfd3c3;
  margin-top: -100px;
  padding-top: 56px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  z-index: 10000;
}

/* TOP CONCAVE CURVE */
.story-green-section::before {
  content: "";
  position: absolute;
  top: -1px; /* overlaps the hero image */
  left: 0;
  width: 100%;
  height: 120px; /* same as bottom */
  /* background: #cfd3c3;  */
  border-bottom-left-radius: 100% 80%;
  border-bottom-right-radius: 100% 80%;
  z-index: 5;
  transform: translateY(-70px); /* Lifts the curve UP over the image */
}

/* BOTTOM CONCAVE CURVE */
.story-green-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  border-top-left-radius: 100% 80%;
  border-top-right-radius: 100% 80%;
  z-index: 5;
}

/* ================= TEXT ================= */
.story-content {
  /*padding-left: 40px;*/
}

.story-title {
  font-size: 26px;
  font-weight: 700;
  color: #354422;
}

.story-text {
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-extra-text p {
  color: #333;
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 18px;
}

.founder-img {
  width: 360px;
  height: 360px;
  border: 4px solid #fff;
  border-radius: 12px;
  object-fit: cover;
}
.founder-image-box {
  position: relative;
  width: 100%;
  height: 360px; /* same height as outline shape */
}

/* Founder Image Box */
.founder-image-box {
  position: relative;
  width: 370px;
  height: 370px;
}

/* SECTION */
.founder-updates-section, .companies-page-section, .career-page-section {
  position: relative;
  overflow: hidden;
}

/* Top right dots */
.founder-dots {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 180px;
  z-index: 2;
}

.founder-shape-left {
  position: absolute;
  top: 260px;
  left: 0px; /* moves it outward → removes right white gap */
  width: 52px; /* smaller clean size */
  height: 210px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.founder-shape-right {
  position: absolute;
  top: 120px;
  right: 0px; /* moves it outward → removes right white gap */
  width: 52px; /* smaller clean size */
  height: 210px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* Founder Image Box */
.founder-image-box {
  position: relative;
  width: 370px;
  height: 370px;
}

/* Outline shape behind founder image */
.founder-shape-behind {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20px;
  left: -20px;
  z-index: 1;
}

/* Founder main image */
.founder-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 5px solid #fff;
  z-index: 3;
  object-fit: cover;
}

/* Text Styling */
.founder-text {
  color: #444;
  line-height: 1.8;
  /*margin-bottom: 18px;*/
}

.founder-name {
  font-size: 28px;
  font-weight: 700;
  color: #354422;
}

.founder-role {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #555;
}

/* Founder Image Box */
.founder-image-box {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outline Behind - perfectly centered */
.founder-shape-behind {
  position: absolute;
  width: 115%;
  height: auto;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

/* Founder image */
.founder-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 5px solid #fefae0;
  object-fit: cover;
  z-index: 3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect: scale + shift right */
.founder-img:hover {
  transform: scale(1.08) translateX(12px);
  /* box-shadow: 0 18px 35px rgba(0, 0, 0); */
}

/* Background with transparent gold */
.founder-curved-bg {
  position: relative;
  background: rgba(221, 161, 94, 0.3); /* #DDA15E with 30% transparency */
   /*padding: 320px 0; */
  overflow: hidden;
}

/* Tablet */
@media (max-width: 991px) {
  .founder-name, .founder-role,  .story-title {
    text-align: center;
    /*padding-top: 8px;*/
  }
  .founder-name{
      padding-top: 8px;
  }
  
.founder-img {

  transition: none;
}

.founder-img:hover {
  transform: none;
  /* box-shadow: 0 18px 35px rgba(0, 0, 0); */
}
}

/* ===== TOP CONCAVE CURVE ===== */
.founder-curved-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  border-bottom-left-radius: 100% 90%;
  border-bottom-right-radius: 100% 90%;
  transform: translateY(-40%);
  z-index: 1;
}

/* ===== BOTTOM CONCAVE CURVE ===== */
.founder-curved-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  border-top-left-radius: 100% 90%;
  border-top-right-radius: 100% 90%;
  transform: translateY(40%);
  z-index: 1;
}

.founder-link {
    text-decoration: none;
    color: #606C38;
    font-weight: 500;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
  .founder-curved-bg::before,
  .founder-curved-bg::after {
    height: 70px;   
    
  }
  
  
  .company-first-curved-bg::after {

  height: 100px;
 
}

.story-hero-section {

  height: 320px;
}
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .founder-curved-bg::before,
  .founder-curved-bg::after {
    height: 50px;              
  
  }
    .company-first-curved-bg::after {
  height: 50px;
 
}

}


/* END STORY PAGE */

/* COMPANIES PAGE */

/* SVG Curve */
/*.company-hero-bottom-curve {*/
/*  position: absolute;*/
/*  bottom: -50px;*/
/*  left: 50%;*/
/*  width: 100vw; */
/*  transform: translateX(-50%); */
/*  overflow: hidden;*/
/*  line-height: 0;*/
/*  z-index: 2; */
/*}*/

/*.company-hero-bottom-curve svg {*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

.company-hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  line-height: 0;
}

.company-hero-bottom-curve svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px; /* controls the depth */
}


.company-first-curved-bg {
  position: relative;
  background: rgba(96, 108, 56, 0.3);
  overflow: hidden;
}

.company-first-curved-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fff;
  border-top-left-radius: 100% 65%;
  border-top-right-radius: 100% 65%;
  transform: translateY(60%);
  z-index: 1;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .company-first-curved-bg::after {

  height: 120px;
 
}

}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .company-first-curved-bg::after {
  height: 60px;
 
}

}

.company-card {
  position: relative;
 
  overflow: hidden;
  border-radius: 16px;

  transition: transform 0.4s ease; /* 🔥 Add scaling transition to card */
}

.companies-img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  border: 1px solid #222;
  object-fit: cover;
  transition: filter 0.4s ease;
  filter: grayscale(95%) brightness(55%);
}

.companies-img-details {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  border: 1px solid #222;
  object-fit: cover;
  transition: filter 0.4s ease;
  /*filter: grayscale(95%) brightness(55%);*/
}

.company-card:hover {
  transform: scale(1.12) translateX(20px) translateY(10px);
  z-index: 10;
}

.company-card:hover .companies-img {
  filter: grayscale(0%) brightness(100%);
}

.img-caption {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 6px 14px;
  color: #222;
  /*font-size: 15px;*/
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.4s ease;
   /*white-space: nowrap;*/
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  font-size: 0.9rem;
  letter-spacing: 0.1px;
  
}

.cd-img-caption {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 6px 14px;
  color: #222;
 
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.4s ease;
 
  font-size: 0.9rem;
  letter-spacing: 0.1px;
  
}

.cd-founder-role {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #555;
}

.company-link {
    text-decoration: none !important;
}


.company-card:hover .img-caption {
  opacity: 1;
}


.company-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

/* Responsive image: auto width, fixed height */
.companies-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #222;
  filter: grayscale(95%) brightness(55%);
  transition: filter 0.4s ease;
}

.company-card:hover {
  transform: scale(1.08);
  z-index: 10;
}

.company-card:hover .companies-img {
  filter: grayscale(0%) brightness(100%);
}

.img-caption {
  text-align: center;
  padding: 8px 12px;
  font-weight: 700;
  opacity: 0;
  transition: 0.4s ease;
}

.company-card:hover .img-caption {
  opacity: 1;
}

/* Mobile image height */
@media (max-width: 991px) {
    .company-card:hover {
  transform: none;
}

  .companies-img {
    height: 250px;
    filter: grayscale(0%) brightness(100%);
  }
  
    .companies-img-details {
      width: 100% !important;
  }
  
  .img-caption {
  opacity: 1;
  }
  
  .cd-img-caption {
      opacity: 1;
      font-size: 18px;
  }
  .cd-founder-role {
      display: none;
  
}
}


/* Mobile image height */
@media (max-width: 576px) {
  .companies-img {
    height: 210px;
    filter: grayscale(0%) brightness(100%);
  }
  

  .img-caption {
  opacity: 1;
  }
  .cd-founder-role {
      display: none;
  
}
}

.company-shape-left {
  position: absolute;
  top: 70px;
  left: 0px; /* moves it outward → removes right white gap */
  width: 52px; /* smaller clean size */
  height: 210px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.company-shape-right {
  position: absolute;
  top: 120px;
  right: 0px; /* moves it outward → removes right white gap */
  width: 52px; /* smaller clean size */
  height: 210px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.company-bg-green {
  background: rgba(96, 108, 56, 0.304);
}

/* END COMPANIES PAGE */

/* CAREER PAGE */
.career-resume-section {
  position: relative;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.career-first-curved-bg {
  position: relative;
  background: rgba(221, 162, 94, 0.3); /* with 30% transparency */
  /* padding: 320px 0; */
  overflow: hidden;
}

.career-first-curved-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fff;
  border-top-left-radius: 100% 65%;
  border-top-right-radius: 100% 65%;
  transform: translateY(60%);
  z-index: 1;
}

/* CARD WRAPPER */
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: 0.35s ease;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
  /*border: 2px solid #999;*/
}

/* IMAGE */
.category-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%); /* default grayscale */
  transition: 0.35s ease;
}

/* HOVER → REMOVE GRAYSCALE */
.category-card:hover .category-img {
  filter: grayscale(0);
}

/* OVERLAY CONTAINER */
.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.35s ease;
  /*border-radius: 20px;*/
}

.icon-box {
  background: rgba(181, 116, 59, 0.75);
  padding: 12px 16px;
  border-radius: 6px;
  border: 2px solid #dda15e;
  transition: 0.35s ease;
  filter: grayscale(100%);
}

.category-icon {
  width: 55px;
  height: 55px;
  filter: grayscale(100%);
  transition: 0.35s ease;
}

.title-box {
  background: rgba(221, 162, 94, 0.8);
  padding: 10px 20px;
  margin: 0 12px;
  border-radius: 4px;
  border: 2px solid #dda15e;
  transition: 0.35s ease;
  filter: grayscale(100%);
}

.category-title {
  color: #000;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  filter: grayscale(100%);
  transition: 0.35s ease;
  text-align: center;
}

.category-card:hover .icon-box,
.category-card:hover .title-box {
  background: rgba(221, 162, 94, 0.8);
  transform: translateY(-6px);
}

.category-card:hover .category-icon,
.category-card:hover .title-box,
.category-card:hover .icon-box,
.category-card:hover .category-title {
  filter: grayscale(0);
}

.category-card:hover .green .category-title {
  color: #fff;
}

.category-card:hover .category-title {
  color: #000;
}

/* --------------------
   GREEN THEME (6 CARDS)
-------------------- */

/* Icon box green */
.icon-box.green {
  background: rgba(96, 108, 56, 0.65); /* green tint */
  border: 2px solid #6c7a40;
  filter: grayscale(100%);
}

/* Title box green */
.title-box.green {
  
  background: rgba(96, 108, 56, 0.65);
  border: 2px solid #6c7a40;
  filter: grayscale(100%);
}

/* Hover → green becomes stronger */
.category-card:hover .icon-box.green,
.category-card:hover .title-box.green {
      
  background: rgba(96, 108, 56, 0.9);
  filter: grayscale(0);
}

/* ================= JOB SECTION ================= */

.job-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.job-heading {
  font-weight: 700;
  color: #2d2d2d;
  letter-spacing: 1px;
}

/* Job card equal height fix */
.job-card {
  background: rgba(96, 108, 56, 0.3);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Apply font-size adjustment */
.job-card,
.job-card * {
  font-size: 15px;
}

.job-card-text {
  border: 1px solid #222;
  border-radius: 10px;
  padding: 12px 16px;
  flex-grow: 1;
}

.job-card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.job-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #2d2d2d;
}

.job-list {
  padding-left: 18px;
}

.job-list li {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

.job-card-footer {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-btn {
  background: #627254;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.apply-btn:hover {
  box-shadow: inset 0 0 0 2px #000;
  background: rgba(77, 90, 67, 0);
  color: #222;
}

.share-icon {
  width: 22px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.share-icon:hover {
  opacity: 1;
}

/* Fade + Slide Up Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base state — hidden before animation */
.job-card {
  opacity: 0;
}

/* Apply animation when visible */
.job-card.animate-in {
  animation: fadeSlideUp 0.6s ease forwards;
}

/* Hidden by default */
.job-heading {
  opacity: 0;
  transform: translateY(25px);
}

/* Animate in */
.job-heading.animate-heading {
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.05s;
}

/* Stagger delay using nth-child */
.job-card:nth-child(1) {
  animation-delay: 0.1s;
}
.job-card:nth-child(2) {
  animation-delay: 0.2s;
}
.job-card:nth-child(3) {
  animation-delay: 0.3s;
}
.job-card:nth-child(4) {
  animation-delay: 0.4s;
}
.job-card:nth-child(5) {
  animation-delay: 0.5s;
}
.job-card:nth-child(6) {
  animation-delay: 0.6s;
}
/* Outer section (plain, no bg image) */
.join-team-section {
  position: relative;
  padding: 60px 0;
}

/* INNER BOX with background image + overlay */
.join-box {
  position: relative;
  background-image: url("assets/images/hand-laptop.jpg");
  background-size: cover;
  background-position: center;
  border: 2px solid #bd8659;
  border-radius: 20px;
  padding: 50px;
  overflow: hidden;
}

/* Warm overlay only inside box */
.join-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(221, 162, 94, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  z-index: 1;
}

/* Content stays above overlay */
.join-box > * {
  position: relative;
  z-index: 2;
}

/* Title */
.join-title {
  font-weight: 700;
  color: #222;
}

/* Left Image */
.join-left-img {
  width: 230px;
}

.no-vacancy-text {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

/* Vertical Divider Fix */
.vertical-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #414b35;
  margin: auto;
}

/* --- FORM INPUTS --- */
.join-input {
  border-radius: 9px !important;
  border: 1px solid #283618 !important;
  background: rgba(96, 108, 56, 0.6);
  color: #414b35;
  transition: 0.3s ease-in-out;
}

.join-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #283618 !important;
  background: rgba(96, 108, 56, 0.7);
  color: #1e2418;
}

.custom-file-upload {
  width: 100%;
  border: 1px solid #283618;
  border-radius: 15px;
  background: rgba(96, 108, 56, 0.6);
  padding: 12px 20px;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}

.file-placeholder {
  color: #283618;
  font-size: 15px;
}

.custom-file-upload:hover,
.custom-file-upload:focus-within {
  background: rgba(96, 108, 56, 0.6);
  border-color: #283618;
}

.join-upload-btn {
  background: #b77a3c;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(34, 34, 34, 0.5);
  transition: 0.3s ease-in-out;
}

.join-upload-btn:hover {
  background: rgba(183, 122, 60, 0.9);
  box-shadow: 0px 5px 12px rgba(34, 34, 34, 0.4);
}

#resume-input {
  display: none;
}

/* ---------- MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {

  .custom-file-upload {
    padding: 10px 14px;
    border-radius: 12px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .file-placeholder {
    font-size: 14px;
  }

  .join-upload-btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* ---------- TABLET (max-width: 768px) ---------- */
@media (max-width: 768px) {

  .custom-file-upload {
    padding: 12px 16px;
    border-radius: 14px;
  }

  .join-upload-btn {
    padding: 8px 16px;
    font-size: 15px;
  }
}


/* END CAREER PAGE */

/* CAREER FORM PAGE */
.custom-input,
.form-select.custom-input,
textarea.custom-input {
  background: #c7cbb5 !important;
  border: none !important;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 16px;
  color: #000;
}

.custom-input::placeholder {
  color: #000;
  opacity: 1;
}

.custom-input:focus,
textarea.custom-input:focus,
.form-select.custom-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(199, 203, 181, 0.5) !important;
}

.upload-box {
  background: #c7cbb5;
  border-radius: 6px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 16px;
}

.upload-box i {
  font-size: 20px;
}

.job-details-box {
  background: #c68c56; 
  color: white;
  border-radius: 20px;
}

.job-details-box .form-check-label {
  color: #fff !important;
  font-size: 15px;
}

.job-details-box .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  cursor: pointer;
}

.form-description {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
}

.submit-btn {
  background: #4a5721;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.2s;
  border: 2px solid transparent; 
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}

.submit-btn:hover {
  background: #fff;
  color: #000; 
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px #000;
}

.form-select:focus {
  border-color: transparent !important;
}

.form-select {
  padding-right: 40px !important;
}

.upload-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 16px;
  pointer-events: none;
}

.form-select.custom-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
}

.job-details-box .form-check-input {
  width: 18px;
  height: 18px;
  background-color: #fff !important;
  border: 2px solid #fff !important; 
  border-radius: 3px;
  cursor: pointer;
}


.job-details-box .form-check-input:checked {
  background-color: #fff !important; 
  border-color: #fff !important;
}


.job-details-box .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='black' d='M16.704 5.29c.39.39.39 1.02 0 1.41l-8.004 8.004c-.39.39-1.02.39-1.41 0L3.296 10.71a1 1 0 0 1 1.41-1.41L8.5 13.09l7.204-7.204a1 1 0 0 1 1.41 0z'/%3e%3c/svg%3e") !important;
}

.job-details-box .form-check-input:focus {
  box-shadow: none !important;
}

/* END CAREER FORM PAGE */

/* CONTACT US PAGE */
/* SHARK CONTACT SECTION */
.shark-contact-section {
  margin-top: 80px;
}

/* LEFT FORM BOX */
.shark-contact-form-box {
  background: linear-gradient(rgba(221, 161, 94, 0.8), rgba(221, 161, 94, 0.7)),
    url("assets/images/hand-laptop.jpg");

  background-size: cover;
  background-position: center;

  padding: 40px;
  border-radius: 25px;
  border: 4px solid #bc6c25;

  backdrop-filter: blur(5px);
}

.shark-contact-title {
  font-weight: 700;
  color: #222;
}

/* DEFAULT INPUT STYLE */
.shark-contact-input {
  background: rgba(96, 108, 56, 0.3);
  border-radius: 12px;
  border: none;
  padding: 12px;
  color: #fff;
  transition: 0.25s ease;
}

/* REMOVE BOOTSTRAP BLUE OUTLINE */
.shark-contact-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* CUSTOM FOCUS STATE */
.shark-contact-input:focus {
  background: rgba(80, 80, 40, 0.3); /* SAME BACKGROUND */
  /* border: 2px solid rgba(80, 80, 40, 0.5); */
  box-shadow: 0 0 8px rgba(80, 80, 40, 0.4); /* SOFT GLOW */
  color: #fff;
}

.shark-contact-input::placeholder {
  color: #444;
}

.shark-submit-btn {
  background: #606c38;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
  text-align: center;
   box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}

.shark-submit-btn:hover {
  background: rgba(96, 108, 56, 0.8);
}

/* ========================= */
/* INFO CARDS WITH BACKGROUNDS */
/* ========================= */
/* BASE CARD STYLING */
.shark-info-card {
  height: 190px;
  border-radius: 22px;
  border: 4px solid #bc6c25;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  background-size: cover !important;
  background-position: center !important;
}

/* IMAGE BACKGROUNDS */
.shark-contact-section .col-6:nth-child(1) .shark-info-card {
  background-image: url("assets/images/student.jpg");
}

.shark-contact-section .col-6:nth-child(2) .shark-info-card {
  background-image: url("assets/images/whats-guy.png");
}

.shark-contact-section .col-6:nth-child(3) .shark-info-card {
  background-image: url("assets/images/marketing.jpg");
}

.shark-contact-section .col-6:nth-child(4) .shark-info-card {
  background-image: url("assets/images/location-symbol-beautiful-city_23-2149764128.jpg");
}

/* COLOR OVERLAYS — EXACTLY LIKE FIGMA */
.shark-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  opacity: 0.85; /* controls darkness level */
}

/* 1️⃣ PHONE — Orange Overlay */
.shark-contact-section .col-6:nth-child(1) .shark-info-card::before {
  background: rgba(210, 140, 70);
}

/* 2️⃣ WHATSAPP — Green Overlay */
.shark-contact-section .col-6:nth-child(2) .shark-info-card::before {
  background: rgba(96, 108, 56, 0.8);
  
}

.shark-contact-section .col-6:nth-child(2) .shark-info-card {
 
  border: 4px solid rgba(96, 108, 56, 0.9);
}

/* 3️⃣ EMAIL — Dark Olive Overlay */
.shark-contact-section .col-6:nth-child(3) .shark-info-card::before {
  background: rgba(96, 108, 56, 0.8);
}

.shark-contact-section .col-6:nth-child(3) .shark-info-card {
 
  border: 4px solid rgba(96, 108, 56, 0.9);
}

/* 4️⃣ LOCATION — Light Peach Overlay */
.shark-contact-section .col-6:nth-child(4) .shark-info-card::before {
  background: rgba(210, 140, 70);
}

/* ICON & TEXT ALWAYS ABOVE OVERLAY */
.shark-info-card * {
  position: relative;
  z-index: 2;
}

.shark-info-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 15px; /* make 50% for full circle */
  background: rgba(96, 108, 56, 0.5); /* light white transparent */
  display: flex;
  align-items: center;
  justify-content: center;
   margin: 0 auto 10px auto; /* force center */
    border: 3px solid rgba(96, 108, 56, 0.6);
  position: relative;
  z-index: 3;
}

.shark-info-icon {
  width: 42px;
  margin-bottom: 8px;
}

/*.shark-info-text {*/
/*  font-size: 15px;*/
/*  font-weight: 600;*/
/*  color: #1d2d1a;*/
/*}*/

/* Ensure vertical center alignment flow */
.shark-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* <— This centers icon + text perfectly */
  text-align: center; /* center-align text always */
}


/* Text rules */
.shark-info-text {
  text-align: center;
  /*width: 100%;*/
  color: #fff;
  /*font-size: 13px;*/
  font-weight: 600;
}

/* Location text should not break alignment */
.shark-info-text.small {
  line-height: 1.25rem;
  max-width: 95%; /* prevent overflow */
}


/* MAP CARD */
.shark-map-card {
  border-radius: 22px;
   border: 4px solid rgba(96, 108, 56, 0.9);
  overflow: hidden;
  padding: 24px;
  background-color: rgba(98, 114, 84, 0.3);
}

.shark-map-card iframe {
  border-radius: 12px;
}



/* Mobile image height */
@media (max-width: 991px) {

.shark-info-icon {
  width: 36px;
  /*margin-bottom: 8px;*/
}
}


/* Mobile image height */
@media (max-width: 576px) {

}

/* END CONTACT US PAGE */

/* NEWS PAGE */
.updates-card {
  background: #dda15e;
  border-radius: 20px;
  transition: 0.3s;
position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.updates-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.updates-title {
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
}

.updates-more-btn {
  color: #000;
  cursor: pointer;
}

.updates-card-img-box {
  height: 220px; /* FIXED HEIGHT */
  overflow: hidden;
  border-radius: 15px;
}

.updates-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures perfect fit */
  object-position: center;
}

.updates-icon-box {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: #FEFAE0;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.updates-share-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  /*opacity: 0.9;*/
  transition: 0.2s;
}

.updates-share-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* Mobile image height */
@media (max-width: 991px) {

.updates-card:hover {
  transform: none;
 
}

}


/* Mobile image height */
@media (max-width: 576px) {

}

/* END NEWS PAGE */
