/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Header
	-------------------------------------------------------------
	1.1 Menu css
	-------------------------------------------------------------
	1.2 Responsive menu
----------------------------------------------------------------
2.0 Content
	-------------------------------------------------------------
	2.1 Header slider section
	-------------------------------------------------------------
	2.2 Services section
	-------------------------------------------------------------
	2.3 Team section
	-------------------------------------------------------------
	2.4 Honors section
   -------------------------------------------------------------
	2.5 Special recipies section
   -------------------------------------------------------------
	2.6 Testimonial section
	-------------------------------------------------------------
	2.7 Get in touch section
----------------------------------------------------------------
3.0 Footer
	-------------------------------------------------------------
	3.1 Contact section
----------------------------------------------------------------
/*=================== 1.0 Header =============================*/

/*=================== 2.0 Content ============================*/
/*=============== 2.1 Header slider section ==================*/
.event-thumb {
  height: 50px;
  margin: 0 auto;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-sec p {
  font-size: 24px;
  margin: 0;
  text-align: center;
}
.events-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.book-now a {
  vertical-align: -45px;
}
.menu-effect a {
  padding: 8px 0;
}
.menu-effect a::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #da0a0a;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}
.menu-effect a:hover::after,
.menu-effect a:focus::after,
.menu-effect li.active a::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
#slider-wrapper .nivo-controlNav a.active {
  background: #da0a0a !important;
}
.cssload-thecube .cssload-cube:before {
  background: #da0a0a;
}
/* Banner image size control - fix cropping issue */
.main-slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Ensure slider container doesn't crop images */
.nivoSlider {
  overflow: visible;
}

#slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/*=============== 2.2 Services section =======================*/

#service {
  background: url("../images/chef-service-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
  min-height: 600px;
}

/* Responsive parallax adjustments for service section */
@media (max-width: 991px) {
  #service {
    min-height: 520px;
    padding: 50px 0 0;
  }

  /* Events section responsive */
  .events-sec {
    padding: 15px 5px;
  }
  .events-sec p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #service {
    min-height: 480px;
    padding: 40px 0 0;
    background-attachment: scroll; /* Disable parallax on mobile for better performance */
  }

  /* Events section mobile responsive */
  .events-sec {
    padding: 10px 5px;
    margin-bottom: 20px;
  }
  .events-sec p {
    font-size: 18px;
  }
  .event-thumb {
    height: 40px;
    width: 40px;
  }
}

/* individual service box */
.service-list {
  margin: 0 auto 60px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  max-width: 420px; /* default card width */
}

/* Service image container styling - Mobile only */
@media (max-width: 767px) {
  .service-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
    will-change: transform;
  }

  .service-person-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.1s ease-out;
  }

  /* Ensure service boxes have proper background and positioning */
  .service-sec-1 {
    position: relative;
    z-index: 1;
  }

  .service-list {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
  }
}
.service-list:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
.service-list h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #202020;
}
.service-list p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* wrapper columns */
.service-sec-1 {
  padding: 30px 0 0;
}
.service-sec {
  text-align: center;
}
.service-sec img {
  max-height: 720px;
  margin: 0 auto;
  margin-top: 99px;
}

/* ===== Responsive sizing ===== */

/* Small phones */
@media (max-width: 480px) {
  #service {
    padding: 40px 0;
  }
  .service-sec {
    display: none;
  } /* hide center image */
  .service-list {
    max-width: 90%;
    padding: 16px 14px;
    margin-bottom: 24px;
  }
  .service-list h4 {
    font-size: 16px;
  }
  .service-list p {
    font-size: 13px;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 991px) {
  #service {
    padding: 50px 0;
  }
  .service-sec {
    display: none;
  } /* hide center image */
  .service-list {
    max-width: 85%;
    padding: 20px 18px;
    margin-bottom: 32px;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  .service-list {
    max-width: 480px;
    padding: 32px 30px;
  }
  .service-list h4 {
    font-size: 22px;
  }
  .service-list p {
    font-size: 16px;
  }
}

/*=============== 2.3 About section ===========================*/

#about {
  background: url("../images/about-v7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2;
}
.about-sec-slider {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #ffffff;
  border-image: none;
  border-style: solid none solid solid;
  border-width: 4px medium 4px 4px;
  margin: 0 -40px 0 0;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.about-content-block h6,
.about-content-block span,
.about-content-block p,
.about-content-block .social-icon ul li a,
#about h3 {
  color: #ffffff;
}
.about-sec-slider.slick-dotted > ul li button {
  background: #59575c;
  border: 0 none;
  border-radius: 100px;
  height: 15px;
  margin: 4px;
  text-indent: -999999px;
  width: 15px;
}
.about-sec-slider .slick-dots li {
  display: inline-block;
}
.slick-active button {
  background: #fff !important;
}

/* === Added fixes & responsive tweaks === */

/* মোবাইলে নেগেটিভ মার্জিন এড়াই */
@media (max-width: 767px) {
  .about-sec-slider {
    margin: 0;
    padding: 30px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
}

/* Typography for readability */
.about-content-block h6 {
  font-size: 18px;
  margin: 0 0 6px;
}
.about-content-block span {
  display: inline-block;
  opacity: 0.9;
}
.about-content-block p {
  line-height: 1.7;
  text-align: justify;
}

/* slick dots override */
.about-sec-slider .slick-dots {
  position: static;
  margin: 15px 0 0;
  text-align: left;
}
.about-sec-slider .slick-dots li {
  display: inline-block;
  margin-right: 6px;
}
.about-sec-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #777;
  border: 0;
  text-indent: -9999px;
}
.about-sec-slider .slick-dots li.slick-active button {
  background: #fff;
}

/* Right column images */
.about-sec-img {
  margin-bottom: 18px;
}
.about-sec-img img {
  border-radius: 10px;
  border: 5px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: #f8f9fa;
  transition: all 0.3s ease;
}
.about-sec-img img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

/* Mobile: images become slider */
@media (max-width: 991px) {
  .about-figure .about-sec-img {
    margin: 0;
  }
  .about-figure .about-sec-img img {
    width: 100%;
  }
}

/* WOW.js fallback */
#about .wow {
  opacity: 1;
  transform: none;
}
.wow.js {
  opacity: 0;
  transform: translateY(14px);
}
.wow.js.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
  .about-sec-img img {
    transition: none !important;
    transform: none !important;
  }
}

/*=============== 2.4 Team section ===========================*/
/* ===== Team section (responsive + polished) ===== */
.team-content {
  padding: 60px 0 30px; /* tighter top spacing on mobile */
}
@media (min-width: 768px) {
  .team-content {
    padding: 80px 0 40px;
  }
}
@media (min-width: 1200px) {
  .team-content {
    padding: 100px 0 50px;
  }
}

.sec-title {
  font-size: 30px; /* mobile-friendly */
  line-height: 1.25;
  font-family: "Fredoka One", cursive, sans-serif;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 768px) {
  .sec-title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .sec-title {
    font-size: 42px;
  }
}

.team-lead {
  max-width: 920px;
  margin: 10px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
@media (min-width: 768px) {
  .team-lead {
    font-size: 16px;
  }
}

/* Banner wrapper: overlay + safe parallax on the <img> */
.team-wrap {
  position: relative;
  overflow: hidden;
}
.team-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.25)
  );
  pointer-events: none;
  z-index: 1;
}
.team-banner-img {
  display: block;
  width: 100%;
  height: auto; /* keep intrinsic aspect */
  transform: translateY(0);
  will-change: transform;
  transition: transform 2s ease; /* smooth settle when class toggles */
}
.team-wrap.in-view .team-banner-img {
  transform: translateY(-6px); /* gentle lift when revealed */
}

/* ===== Highlight block (responsive + hover polish) ===== */
.highlight-block {
  margin: -40px 0 0; /* উপরের ব্যানারের সাথে ওভারল্যাপ */
  text-align: center;
  position: relative;
  z-index: 5;
}
.highlight {
  background: #202020;
  border-radius: 45px;
  padding: 18px 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: #da0a0a; /* your theme red on hover */
}
.highlight h4 {
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-family: "Fredoka One", cursive, sans-serif;
  letter-spacing: 0.02em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .highlight h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .highlight h4 {
    font-size: 22px;
  }
}

/* WOW-less graceful reveal (if WOW.js absent) */
#team .wow,
.highlight-block .wow {
  opacity: 1;
  transform: none;
}
.wow.js {
  opacity: 0;
  transform: translateY(14px);
}
.wow.js.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .team-banner-img,
  .highlight {
    transition: none !important;
    transform: none !important;
  }
}

/*=============== 2.5 Honors section =========================*/
/* ===== Honors / Skills (responsive + polished) ===== */
#skills {
  background: url("../images/counter-banner-v7.jpg") center/cover no-repeat;
  padding: 160px 0 40px;
  margin: -40px 0 0; /* saner default */
  position: relative;
  z-index: 1; /* avoid negative stacking issues */
}
@media (min-width: 768px) {
  #skills {
    padding: 220px 0 60px;
  }
}
@media (min-width: 1200px) {
  #skills {
    padding: 260px 0 80px;
  }
}

/* Counter cards */
.counter-sec {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  margin: 0 0 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.counter-sec:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* ---------------------------------------Skill plus------------------------------------------------------ */
.count::after {
  content: "+";
  margin-left: 2px; /* small spacing */
}
.counter-sec h2 {
  color: #da0a0a;
  line-height: 1;
  margin: 0 0 8px;
  font-size: 36px;
}
.counter-sec p {
  font-size: 16px;
  margin: 0;
  color: #333;
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  .counter-sec h2 {
    font-size: 44px;
  }
  .counter-sec p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .counter-sec h2 {
    font-size: 52px;
  }
  .counter-sec p {
    font-size: 20px;
  }
}

/* Container spacing */
.counter-block {
  padding: 10px 15px 0;
}

/* Illustration: mobile-safe margins, subtle float on desktop */
.counter-img {
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .counter-img {
    margin: -10px 0 0 -10px;
  }
  .counter-img img {
    transform: translateY(0);
    transition: transform 2.4s ease;
  }
  /* on in-view we float a bit (see JS fallback toggling .in-view) */
  .counter-img.in-view img {
    transform: translateY(-8px);
  }
}

/* WOW-less graceful reveal */
#skills .wow {
  opacity: 1;
  transform: none;
} /* keep visible if WOW present it will override */
.wow.js {
  opacity: 0;
  transform: translateY(14px);
}
.wow.js.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  .counter-sec,
  .counter-img img {
    transition: none !important;
    transform: none !important;
  }
}

/*=============== 2.6 Special recipies section ===============*/
/* ===== Special Recipes (stable + animated) ===== */
#special-recipies {
  position: relative;
  background: url("../images/recipi-v7.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 80px 0;
  min-height: 600px;
}

/* Responsive parallax adjustments */
@media (max-width: 991px) {
  #special-recipies {
    min-height: 520px;
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  #special-recipies {
    min-height: 480px;
    padding: 44px 0;
    background-attachment: scroll; /* Disable parallax on mobile for better performance */
  }
}
#special-recipies::before {
  /* টেক্সট পড়া সহজ করতে হালকা টিন্ট */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.32);
}
#special-recipies > * {
  position: relative;
  z-index: 1;
}

/* Grid: Bootstrap float + col-6 সমস্যা এড়াতে flex fallback */
#special-recipies .row > [class*="col-"] {
  box-sizing: border-box;
}
#special-recipies .row {
  display: flex;
  flex-wrap: wrap;
}
#special-recipies .col-xs-12 {
  width: 100%;
}
@media (min-width: 768px) {
  /* আপনার মার্কআপে col-6 আছে—ফ্লেক্স দিয়ে ঠিক করে দিলাম */
  #special-recipies .col-sm-6,
  #special-recipies .col-6 {
    width: 50%;
  }
}
@media (min-width: 992px) {
  /* 5/7 split যেমন ছিল */
  #special-recipies .col-md-5 {
    width: 41.6667%;
  }
  #special-recipies .col-md-7 {
    width: 58.3333%;
  }
}

/* Left: text slider card (আপনার .section-case-study-content বজায় রেখে) */
.section-case-study-content {
  background: #fff;
  margin: 80px -77px 0 0; /* আপনার পুরোনো স্টাইলই */
  padding: 25px 30px;
  z-index: 1; /* overlay ঠিক রাখতে */
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
@media (max-width: 991px) {
  .section-case-study-content {
    margin: 30px 0 0 0;
  } /* মোবাইলে নেগেটিভ মার্জিন বাদ */
  
  .recipe-card {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .recipe-title {
    font-size: 20px;
  }
  
  .recipe-meta {
    gap: 10px;
  }
  
  .recipe-meta span {
    font-size: 13px;
  }
  
  .recipe-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .recipe-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Right: image slider frame */
.case-study-image-slider .slider-image-main {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.case-study-image-slider img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.case-study-image-slider .slick-current img {
  transform: scale(1);
}

/* ---- Slick visibility fixes: vanish প্রতিরোধ ---- */
.case-study-slider .slick-slide,
.case-study-image-slider .slick-slide {
  opacity: 1; /* কখনোই 0 করবেন না */
  visibility: visible;
}
.case-study-slider .slick-track,
.case-study-image-slider .slick-track {
  display: flex; /* height collapsing প্রতিরোধ */
}
.case-study-slider .slick-slide > div,
.case-study-image-slider .slick-slide > div {
  width: 100%;
}

/* arrows (আপনার স্টাইলই, শুধু position safe) */
.slick-arrow {
  position: absolute;
  cursor: pointer;
  z-index: 2;
}
.slick-prev {
  bottom: 35px;
  left: 25px;
}
.slick-next {
  bottom: 35px;
  right: 25px;
}
.slick-arrow:hover,
.call-me a:hover {
  color: #da0a0a;
}

/* Headings & button hover (আপনার দেওয়া নিয়ম বজায়) */
.title-wrap h3 {
  color: #fff;
}
.highlight:hover {
  background: #da0a0a;
}
.call-me a {
  font-size: 26px;
}

/* Scroll-reveal (WOW না থাকলেও) */
#special-recipies .wow {
  opacity: 0;
  transform: translateY(12px);
}
#special-recipies .wow.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  #special-recipies .wow,
  #special-recipies .wow.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/*=============== 2.6.1 Enhanced Recipe Card Styling ====================*/
/* Recipe Card Enhancements */
.recipe-card {
  position: relative;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recipe-header {
  position: relative;
  margin-bottom: 25px;
}

.recipe-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.recipe-badge.vegetarian {
  background: linear-gradient(135deg, #00b894, #00a085);
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.recipe-badge i {
  margin-right: 5px;
}

.recipe-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.recipe-meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 500;
}

.recipe-meta i {
  margin-right: 6px;
  color: #e74c3c;
}

.recipe-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 0;
}

.recipe-ingredients h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.recipe-ingredients h5 i {
  margin-right: 8px;
  color: #e74c3c;
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-tag {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(231, 76, 60, 0.2);
  transition: all 0.3s ease;
}

.ingredient-tag:hover {
  background: rgba(231, 76, 60, 0.2);
  transform: translateY(-1px);
}

.recipe-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.recipe-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.recipe-actions .button i {
  font-size: 14px;
}

.outline-btn {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

.outline-btn:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Recipe Subtitle */
.recipe-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 15px;
  font-weight: 300;
  line-height: 1.5;
}

/* Enhanced section-case-study-content */
.section-case-study-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin: 80px -77px 0 0;
  padding: 35px 40px;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.section-case-study-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Enhanced styling for existing recipe cards */
.section-case-study-content .margin-bottom-50 {
  position: relative;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.section-case-study-content .margin-bottom-50:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced recipe titles - consistent font size */
.section-case-study-content .sec-title {
  font-size: 22px !important;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Enhanced recipe descriptions - consistent font size */
.section-case-study-content .margin-bottom-50 p {
  font-size: 16px !important;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 20px;
}

/* Enhanced buttons - consistent styling */
.section-case-study-content .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.section-case-study-content .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 10, 10, 0.3);
}

/* Enhanced call-me section */
.section-case-study-content .call-me {
  margin-top: 15px;
}

.section-case-study-content .call-me .show {
  font-size: 14px !important;
  color: #7f8c8d;
}

.section-case-study-content .call-me a {
  font-size: 18px !important;
  color: #e74c3c;
  font-weight: 600;
}

/* Enhanced styling for Vegetable Roll Recipe card */
.section-case-study-content .margin-bottom-50:nth-child(2) {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 30px;
  transition: all 0.3s ease;
}

.section-case-study-content .margin-bottom-50:nth-child(2):hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Recipe header styling for Vegetable Roll */
.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-header {
  margin-bottom: 25px;
}

.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 500;
}

.section-case-study-content .margin-bottom-50:nth-child(2) .recipe-meta i {
  margin-right: 6px;
  color: #e74c3c;
}

/* Enhanced description for Vegetable Roll */
.section-case-study-content .margin-bottom-50:nth-child(2) .margin-bottom-50 p {
  font-size: 16px;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 20px;
}

/* Enhanced buttons for Vegetable Roll */
.section-case-study-content .margin-bottom-50:nth-child(2) .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.section-case-study-content .margin-bottom-50:nth-child(2) .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 10, 10, 0.3);
}

/*=============== 2.7 Testimonial section ====================*/
/* Thumbnail slides (circle images) */
.testimonial-slide {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.testimonial-slide.slick-center {
  opacity: 1;
  transform: scale(1);
}

/* image styling */
.testimonial-slide img {
  border-radius: 50%;
  border: 3px solid rgba(218, 10, 10, 0.5); /* theme red border */
  transition: border 0.3s ease;
}
.testimonial-slide.slick-center img {
  border-color: #da0a0a; /* active highlight */
}

/* content slider text */
.testimonial-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.testimonial-content.slick-active {
  opacity: 1;
  transform: translateY(0);
}

/* title + span styling */
.testimonial-content span {
  display: inline-block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.testimonial-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

/* responsive tweaks */
@media (max-width: 767px) {
  .testimonial-slide img {
    width: 80px;
    height: 80px;
  }
  .testimonial-content p {
    font-size: 14px;
  }
}

/* Testimonial section fade-in animations */
#testimonail .wow {
  opacity: 1; /* Keep visible by default */
  transform: translateY(0); /* Keep in normal position */
  transition: all 0.8s ease;
}
#testimonail .wow.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Only animate if WOW.js is loaded and working */
.wow.js {
  opacity: 0;
  transform: translateY(30px);
}
.wow.js.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
#testimonail .wow[data-wow-delay="0.2s"] {
  transition-delay: 0.2s;
}
#testimonail .wow[data-wow-delay="0.4s"] {
  transition-delay: 0.4s;
}
#testimonail .wow[data-wow-delay="0.6s"] {
  transition-delay: 0.6s;
}

/*=============== 2.8 Get in touch section ===================*/
/* ---------- Clean, centered parallax section ---------- */
.contact-hero {
  position: relative;

  background-attachment: scroll; /* fixed দিলে পেইন্ট/ওভারল্যাপ ইস্যু হয় */
  padding: 80px 0;
  display: flow-root; /* আগের সেকশনের float ক্লিয়ার */
  clear: both;
  overflow: hidden; /* শেপ/absolute এলিমেন্ট ব্লিড প্রতিরোধ */
  margin: 0 !important;
}
.parallax-window.contact-hero {
  min-height: 600px;
} /* desktop */
@media (max-width: 991px) {
  .parallax-window.contact-hero {
    min-height: 520px;
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .parallax-window.contact-hero {
    min-height: 480px;
    padding: 44px 0;
  }
}

/* ডার্ক টিন্ট (gradient নয়, তাই কনটেন্টের উপর লেয়ারে কনফ্লিক্ট হবে না) */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.42);
}
.contact-hero > * {
  position: relative;
  z-index: 1;
}

/* ---------- Layout: card center/right ---------- */
.contact-hero__inner {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* ডানদিকে align */
}
@media (max-width: 767px) {
  .contact-hero__inner {
    justify-content: center;
  } /* মোবাইলে সেন্টার */
}

/* ---------- Form card (borderless glass) ---------- */
.contact-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(135%) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 36px 32px 32px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 255, 255, 0.5),
    0 0 60px rgba(255, 255, 255, 0.1), 0 0 90px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.05) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card > * {
  position: relative;
  z-index: 2;
}
.contact-card .sec-title {
  margin: 0 0 18px;
  font-weight: 80;
  letter-spacing: 0.06em;
  color: #fff;
}

/* ---------- Inputs ---------- */
#contact-form .form-group {
  margin-bottom: 16px;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  height: 46px;
  border-radius: 0;
  box-shadow: none;
}
#contact-form textarea.form-control {
  height: 130px !important;
  resize: vertical;
}

/* placeholders */
#contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonial Navigation Buttons */
.testimonial-container {
  position: relative;
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #da0a0a;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(218, 10, 10, 0.5);
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.testimonial-nav-btn:hover {
  background: rgba(218, 10, 10, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(218, 10, 10, 0.4);
}

.testimonial-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
  background: #b30000;
}

.testimonial-prev-btn {
  left: -25px;
}

.testimonial-next-btn {
  right: -25px;
}

@media (max-width: 767px) {
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonial-prev-btn {
    left: -20px;
  }

  .testimonial-next-btn {
    right: -20px;
  }
}

/* Hide default Slick arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  display: none !important;
}

/* Button – থিমের লাল টোন */
.white-bg-btn {
  display: inline-block;
  margin-top: 6px;
  background: #da0a0a;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(218, 10, 10, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.white-bg-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 10px 24px rgba(218, 10, 10, 0.45);
}

/* ---------- Wow-less fallback (optional) ---------- */
.contact-hero .wow {
  opacity: 0;
  transform: translateY(10px);
}
.contact-hero .wow.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero .wow,
  .contact-hero .wow.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/*=============== 3.0 Footer =================================*/

.site-footer {
  background: var(--background1, #fff);
}
.bottom-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.bottom-footer .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Left & Right blocks */
.bottom-footer .bottom-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

/* Copy text wrapping on small screens */
.bottom-footer .copywrite {
  letter-spacing: 0.04em;
}
.bottom-footer .text-uppercase {
  font-weight: 600;
}

/* Social list: make it flex instead of inline-blocks */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social li {
  display: inline-flex;
}

/* Icon button look */
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* Brand hover colors (optional) */
.footer-social .facebook a:hover {
  background: #1877f2;
}
.footer-social .twitter a:hover {
  background: #0f1419;
} /* X/Twitter dark */
.footer-social .google a:hover {
  background: #db4437;
}
.footer-social .linked-in a:hover {
  background: #0a66c2;
}
.footer-social .dribble a:hover {
  background: #ea4c89;
}

/* Alignments across breakpoints */
@media (max-width: 767px) {
  .bottom-footer {
    padding: 22px 0;
  }
  .bottom-footer .bottom-link {
    justify-content: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    margin-top: 8px;
  }
  .dark-icon.pull-right {
    float: none;
  } /* override bootstrap float on mobile */
}

@media (min-width: 768px) {
  /* left block: left aligned, right block: right aligned */
  .bottom-footer .bottom-link:first-child {
    justify-content: flex-start;
  }
  .bottom-footer .bottom-link:last-child {
    justify-content: flex-end;
  }
}

/* ---- Fade-in on scroll (WOW-lite) ---- */
.site-footer .wow {
  opacity: 0;
  transform: translateY(8px);
}
.site-footer .wow.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .site-footer .wow,
  .site-footer .wow.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/*=============== 3.1 Contact section ========================*/
/* ===== Contact Address Section (Responsive + Animated) ===== */
.contact-address-sec {
  background: url("../images/chef-contact.jpg") center/cover no-repeat;
  position: relative;
  padding: 60px 0;
  color: #fff;
}

/* টেক্সট কালার সেফগার্ড */
.call-us span,
.call-us a,
.send-message span,
.send-message a,
.get-direction span,
.get-direction p,
.get-direction a {
  color: #fff;
}
.text-middel {
  font-size: 18px;
}


/* Card look for the inner boxes */
.call-us,
.send-message,
.get-direction {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  min-height: 140px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.call-us:hover,
.send-message:hover,
.get-direction:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.6);
}

/* Small screens */
@media only screen and (max-width: 767px) {
  .about-sec-slider {
    margin: 0;
  }
  .call-me a {
    font-size: 20px;
  }
  #contact {
    min-height: 680px;
  }
  .contact-address-sec {
    padding: 40px 0;
  }
  .call-us,
  .send-message,
  .get-direction {
    padding: 18px 16px;
  }
}

/* ===== Scroll Fade-in (WOW.js থাকলে ওটা কাজ করবে; না থাকলে এইটা) ===== */
.contact-address-sec .wow {
  opacity: 0;
  transform: translateY(10px);
}
.contact-address-sec .wow.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Motion-sensitive users */
@media (prefers-reduced-motion: reduce) {
  .contact-address-sec .wow,
  .contact-address-sec .wow.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
