::-webkit-scrollbar {
  width: 3px;   
  height: 5px;  
}

::-webkit-scrollbar-track {
  background: #111;  
}

::-webkit-scrollbar-thumb {
  background: #b89a51; 
}

::-webkit-scrollbar-thumb:hover {
  background:  #ffc800;
}

.chefbiju-landing-page body,
.chefbiju-landing-page html {
  margin: 0;
  padding: 0;
}

body.chefbiju-landing-page {
  font-family: "Montserrat", sans-serif!important;
  background-color: #fff;
}


.chefbiju-landing-page .custom-container {
  padding: 70px 8%;
  max-width: 100%;
}
.chefbiju-landing-page .header-main .custom-container {
  padding: 15px 5%;
  max-width: 100%;
}

/* Header */

.header-main {
  width: 100%;
  background: #ffffff00;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  position: fixed; /* <-- Sticky Effect */
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.header-main.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  padding: 5px 0;
}

.header-logo img {
  max-height: 60px;
  transition: 0.3s;
}

.header-main.scrolled .header-logo img {
  max-height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #000000c4;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #b79754;
}

.enquiry-btn {
  background: linear-gradient(90deg, #1d3f7a, #00b4d8);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: linear-gradient(90deg, #0056b3, #0096c7);
  transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    gap: 5px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #284881;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
}

.mobile-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.mobile-menu .enquiry-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .enquiry-btn {
    margin-left: 0;
  }
}


.social-media a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff00;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    flex: 0 0 auto;
    background-color: #b89b55;
}

a.enquire-icon {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: #bb9851;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    transition: all .3s 
ease-in-out;
    text-decoration: none;
    box-shadow: inset 2px 2px 4px rgb(0 0 0 / 19%), inset -2px -2px 4px rgb(11 11 11 / 10%);
    width: fit-content;
    padding: 10px 20px;
}
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.header-menu {
    display: flex !important;
    justify-content: flex-end ! Important;
}

.sticky-header.scrolled .social-media a {
    color: #fff;
}

/* banner section */

.chef-main-banner-wrap {
  height: 100vh;
  background: #fff9f0;
  overflow: hidden;
  position: relative;
}

 
.chef-main-banner-wrap .chef-banner-inner {
  display: flex;
  height: 100%;
}

.chef-left {
  position: relative;
}

.chef-left::after {
    content: "";
    position: absolute;
    left: 35%;
    top: 25%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background-image: url(../images/banner-after.webp);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

.chef-left::after {
  animation: chefFadeFloat 4.5s ease-in-out infinite;
}

@keyframes chefFadeFloat {
  0% {
    opacity: 0.15;
    transform: translateY(-50%) translateY(0);
  }
  50% {
    opacity: 0.35;
    transform: translateY(-50%) translateY(-12px);
  }
  100% {
    opacity: 0.15;
    transform: translateY(-50%) translateY(0);
  }
}

 
.chef-main-banner-wrap .chef-left {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 4% 0 7%;
    position: relative;
    z-index: 2;
}

.chef-main-banner-wrap .chef-hero-content {
  max-width: 520px;
}

.chef-main-banner-wrap .hero-tag {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 16px;
    display: inline-block;
    font-weight: 700;
}

.chef-main-banner-wrap h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #000000;
}

.chef-main-banner-wrap h1 span {
  font-size: 65px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #b39a4d;
  font-weight: 600;
}

.chef-main-banner-wrap p {
    font-size: 1.05rem;
    color: #181818;
    line-height: 1.7;
    margin-bottom: 36px;
}

.chef-main-banner-wrap .chef-slider .slick-slide {
  position: relative;
}

.chef-main-banner-wrap .chef-slider .slick-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #7c612073;
  z-index: 1;
  pointer-events: none;
}

.chef-main-banner-wrap .chef-slider img {
  position: relative;
  z-index: 0;
}

.chef-main-banner-wrap .chef-slider .slick-slide::after {
  pointer-events: none;
}

.chef-main-banner-wrap .chef-right::before {
  pointer-events: none;
}

.chef-main-banner-wrap .chef-spread-icons {
  pointer-events: none;
}
 
.chef-main-banner-wrap .hero-buttons {
  display: flex;
  gap: 16px;
}

.chef-main-banner-wrap a.enquire-icon {
    background-color: #b89a51;
    color: #ffffff;
}

 
.chef-main-banner-wrap .chef-right {
  width: 50%;
  position: relative;
  height: 100%;
}


.chef-main-banner-wrap .chef-slider,
.chef-main-banner-wrap .chef-slider div {
  height: 100%;
}

.chef-main-banner-wrap .chef-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-main-banner-wrap .chef-arrows {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

 

.chef-main-banner-wrap .chef-arrows button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgb(185 151 84);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s 
ease;
    box-shadow: inset 2px 2px 4px rgb(0 0 0 / 19%), inset -2px -2px 4px rgb(11 11 11 / 10%);
}

.chef-main-banner-wrap .chef-arrows button:hover {
  background: #12121282;
}


@media (max-width: 991px) {
  .chef-main-banner-wrap {
    height: auto;
  }

  .chef-main-banner-wrap .chef-banner-inner {
    flex-direction: column;
  }

  .chef-main-banner-wrap .chef-left,
  .chef-main-banner-wrap .chef-right {
    width: 100%;
  }

  .chef-main-banner-wrap .chef-right {
    height: 60vh;
  }

  .chef-main-banner-wrap .chef-right::before {
    display: none;
  }
}


/* about us */

.chef-about-wrap {
    padding: 60px 0;
    background: #fff;
    color: #fff;
}

.chef-about-wrap .about-image {
  position: relative;
  padding-right: 40px;
}

.chef-about-wrap .about-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.chef-about-wrap .about-content {
  padding-left: 40px;
}

.chef-about-wrap .about-subtitle {
    color: #b39a4d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 16px;
    display: inline-block;
    font-weight: 700;
}

.chef-about-wrap .about-title {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #000000;
}

.chef-about-wrap .about-title span {
    font-size: 65px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #b39a4d;
    font-weight: 700;
}

.chef-about-wrap .about-text {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 18px;
}

.chef-about-wrap .enquire-icon {
    background-color: #b89a51;
    color: #ffffff;
}

.chef-about-wrap {
  position: relative;
  overflow: hidden;
}

.chef-about-wrap .about-right-gifs {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 40px;
  z-index: 2;
  pointer-events: none;
}

.chef-about-wrap .about-right-gifs img {
  width: 100px;
  opacity: 0.4;
}

.consult-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social icons hidden by default (desktop) */
.mobile-social-icons {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .mobile-social-icons {
    display: flex;
    gap: 10px;
  }

  .mobile-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
  }

  .mobile-social-icons a:nth-child(1) { background: #b39a4d; }
  .mobile-social-icons a:nth-child(2) { background: #b39a4d; }
  .mobile-social-icons a:nth-child(3) { background: #b39a4d; }
}


@media (max-width: 991px) {
  .chef-about-wrap {
    padding: 80px 0;
  }

  .chef-about-wrap .about-image {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .chef-about-wrap .about-content {
    padding-left: 0;
  }
}




/* service section */

.chef-services-wrap {
    background: #f7f7f7;
    padding: 60px 0 0;
    color: #ffffff;
}

.chef-services-wrap .services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.chef-services-wrap .services-subtitle {
      color: #b39a4d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    display: inline-block;
    font-weight: 700;
}

.chef-services-wrap .services-title {
    font-weight: 600;
    margin-top: 10px;
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #000000;
}

.chef-services-wrap .services-title span {
    font-size: 65px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #b39a4d;
    font-weight: 600;
}

.animated-line span {
  position: relative;
  display: inline-block;
}

.animated-line span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 140px;
  height: 24px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M10 30 Q100 5 190 30' fill='none' stroke='%23b39a4d' stroke-width='4' stroke-linecap='round' stroke-dasharray='240' stroke-dashoffset='240'%3E%3Canimate attributeName='stroke-dashoffset' values='240;0;240' dur='3s' repeatCount='indefinite' /%3E%3C/path%3E%3C/svg%3E");
}

.chef-services-wrap .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.chef-services-wrap .service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.chef-services-wrap .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chef-services-wrap .service-card:hover img {
  transform: scale(1.08);
}

.chef-services-wrap .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(179 153 84) 0%, rgb(182 151 84 / 65%) 40%, rgb(226 226 226 / 0%) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.chef-services-wrap .service-overlay h3 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 1.15;
    color: #ffffff;
}

.chef-services-wrap .service-overlay p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.5;
    max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .chef-services-wrap .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .chef-services-wrap .services-grid {
    grid-template-columns: 1fr;
  }

  .chef-services-wrap .service-card {
    height: 320px;
  }
}


/* footer */

.footer-banner {
    position: relative;
    overflow: hidden;
    background:#000;
    background-size: 300% 300%;
    color: #fff;
}

.footer-banner .row {
  display: flex;
  min-height: 100%;
}

.footer-banner-image {
  background-image: url("../images/form-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-banner .banner-form {
    display: flex;
    align-items: stretch;
    padding: 100px 50px;
}

.footer-banner .banner-form form {
  width: 100%;
}


.col-md-6.banner-form {
  display: flex;
  justify-content: center;
}

.chefbiju-form-wrapper.box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px;
  width: 85%;
  backdrop-filter: blur(6px);
  animation: floatForm 6s ease-in-out infinite;
}

@keyframes floatForm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.form-heading {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-sub {
  color: #e8e8e8;
  font-size: 14px;
  margin-bottom: 20px;
}

.box-name {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: 0.3s;
}

.box-name:focus {
  border-color: #ffc800;
  background: rgba(255,255,255,0.1);
}

.box-name::placeholder {
  color: rgba(255,255,255,0.6);
}

.textarea {
  resize: none;
}

.submit {
  background: #ffffff;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit:hover {
    background: #3888b6;
    color: #ffffff;
}

@media (max-width: 991px) {
  .footer-banner {
    text-align: center;
    padding: 80px 20px;
  }
  .footer-banner-title h2 {
    font-size: 30px;
  }
  .footer-banner-title p,
  .footer-contact-info p {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .chefbiju-form-wrapper.box {
    width: 100%;
  }
}

.footer-banner-title h2 {
    text-transform: uppercase;
    font-size: 35px;
    margin: 0 0 30px;
    color: #fff;
    text-align: left;
    font-weight: 500;
    color: #ffffff;
}
.footer-copyright p {
    margin-bottom: 0px;
    color: #191919;
    font-weight: 300;
}
.footer-copyright .policies {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
.footer-copyright p {
    margin-bottom: 0px;
    color: #000000;
    font-weight: 500;
}
.footer-copyright a {
    color: #111111;
    text-decoration: none!important;
}
.footer-copyright {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
    text-align: center;
}

.footer-banner .chefbiju-form-wrapper.box {
    width: 80%;
}


.chef-contact-strip {
  background: #0f0f0f;
  padding: 18px 0;
  border-top: 1px solid rgba(184,154,81,0.25);
  border-bottom: 1px solid rgba(184,154,81,0.25);
}

.contact-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e5e5;
  font-size: 14px;
  white-space: nowrap;
}

.contact-item i {
  color: #b89a51;
  font-size: 15px;
}

.contact-item a {
  color: #e5e5e5;
  text-decoration: none;
}

.contact-item a:hover {
  color: #b89a51;
}


/* Responsive */
@media (max-width: 767px) {

   .chef-main-banner-wrap a.enquire-icon {
      padding: 10px 10px;
      font-size: 13px;
      border-radius: 15px;
  }
    .chef-main-banner-wrap .chef-left {
      padding: 0 4% 0 5%;
  }

  .chef-main-banner-wrap .hero-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
  }
  .chef-main-banner-wrap p {
      margin-bottom: 25px;
  }
  .chef-main-banner-wrap .chef-hero-content {
      padding-top: 110px;
  }
  .chef-main-banner-wrap h1 {
      font-size: 35px;
  }
  .chef-main-banner-wrap h1 span {
      font-size: 60px;
  }
  .chef-main-banner-wrap .chef-arrows {
    position: absolute;
    top: 70%;
    right: 0px;
    transform: none;
    display: flex;
    flex-direction: row;
    gap: 14px;
    z-index: 999;
    left: 5%;
}
.chef-about-wrap .about-title {
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #000000;
}
.chef-about-wrap .about-title span {
    font-size: 60px;
}
.chef-services-wrap .services-title span {
    font-size: 50px;
}

.chef-services-wrap .services-title {
    font-size: 35px;
}

.footer-banner .banner-form {
    padding: 0px 0px;
}
.contact-strip-row {
    gap: 10px;
 
}
.chef-main-banner-wrap .chef-slider .slick-slide::after {
    background: #7c61204d;
  
}
 
    
    .chefbiju-form-wrapper .box-name:focus {
      width: 270px;
  }

    .footer-banner-title h2 {
        font-size: 25px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    .footer-copyright .policies {
        justify-content: center;
    }

  .footer-banner .chefbiju-form-wrapper.box {
      width: 100%;
      margin-top: 40px;
  }
      .banner-image img {
          max-width: 100%;
      }
      .shape:nth-child(3) {
      top: 90%;
    
  }
  .service-title {
      font-size: 30px;
  }

}


/* MOBILE HEADER ONLY */
@media (max-width: 991px) {

  .header-main .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-main .header-logo img {
    max-height: 45px;
  }

  .header-main .header-menu,
  .header-main .social-media,
  .header-main .enquire {
    display: none !important;
  }

  .header-main .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .header-main .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #b89a53;
    transition: 0.3s;
    border-radius: 10px;
  }

  .header-main .col-6.text-end {
    display: flex;
    justify-content: flex-end;
  }

  .chef-main-banner-wrap a.enquire-icon {
      padding: 10px 10px;
      font-size: 13px;
      border-radius: 15px;
  }
    .chef-main-banner-wrap .chef-left {
      padding: 0 4% 0 5%;
  }

  .chef-main-banner-wrap .hero-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
  }
  .chef-main-banner-wrap p {
      margin-bottom: 25px;
  }
  .chef-main-banner-wrap .chef-hero-content {
      padding-top: 110px;
  }
 
  .chef-main-banner-wrap .chef-arrows {
    position: absolute;
    top: 70%;
    right: 0px;
    transform: none;
    display: flex;
    flex-direction: row;
    gap: 14px;
    z-index: 999;
    left: 5%;
}
.chef-about-wrap .about-title {
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #000000;
}
 
 

.footer-banner .banner-form {
    padding: 0px 0px;
}
.contact-strip-row {
    gap: 10px;
 
}

 
}
