html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif !important;
  font-size: 62.5%;
  font-size: 10px;
  overflow-x: hidden;
}



/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
  width: 100%;
  height: 60px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  z-index: 123;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  /* padding-left: 3rem; */
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  /* font-size: 2.5rem; */
}

.nav div.logo a img {
  width: 115px;
}


.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 30px;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 20px;
}

.nav div.main_list ul li a:hover {
  color: #fd7e14;
}

/* .nav div.main_list ul li a:hover {
    color: #00E676;
} */

.nav div.main_list ul .contact_btn a {
  background-color: #9d400c;
  padding: 7px 11px;
}

/* Home section */

.home {
  /* width: 100%;
    height: 726px;
    background-image: url("../images/coftea_hero.jpg");
    background-position: center;
    background-size: cover; */
  position: relative;
}

.home video {
  width: 100%;
  object-fit: cover;
  height: 700px;
}

.home .video_section::before {
  content: "";
  position: absolute;
  background: linear-gradient(179.27deg,
      rgba(0, 0, 0, 0) -3.78%,
      rgba(0, 0, 0, 0.8) 101.37%);
  height: 100%;
  width: 100%;
  top: 0;
}

.home_content {
  z-index: 1;
  position: absolute;
  color: #fff;
  bottom: 50px;
  width: 94%;
  /* padding-top: 220px; */
  /* top: 220px; */
}

.middle_home_title {
  margin-top: 14px;
  width: 100%;
  max-width: 342px;
}

.home_content h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}

.home_content .hero_right_para {
  max-width: 650px;
  text-align: right;
  margin-left: auto;
  margin-right: 14%;
  margin-top: 30px;
}

.home_content .hero_right_para p {
  font-size: 25px;
  margin-bottom: 30px;
}

.home_content .hero_right_para p:nth-child(2) {
  margin-bottom: 0;
}

.home_content .first_home_title {
  font-size: 70px;
}

.home_content .second_home_title {
  font-size: 60px;
  margin-top: 20px;
}

.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#openPopup {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  float: right;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Media qurey section */
@media (max-width: 991px) {
  .nav div.main_list ul li a {
    font-size: 18px;
  }

  .nav div.main_list ul li {
    padding: 0 15px 0 0;
  }
}

@media (max-width: 768px) {
  .nav .container {
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .navTrigger {
    display: block;
  }

  .nav div.logo {
    margin-left: 15px;
  }

  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .nav div.show_list {
    height: auto;
    display: none;
    position: relative;
    top: -110px;


  }

  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #111;
    /*same background color of navbar*/
    background-position: center top;
    padding-top: 40px;
  }

  .nav div.main_list ul li {
    width: 100%;
    text-align: center;
  }

  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 18px;
    padding: 15px;
  }

  .nav div.media_button {
    display: block;
  }
}

@media (max-width: 575px) {
  .nav div.logo {
    max-width: 90px;
    width: 100%;
  }

  .nav div.logo a img {
    width: 100%;
  }
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  z-index: 123;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color: #111;
  z-index: 12345;
}

.myH2 {
  text-align: center;
  font-size: 4rem;
}

.myP {
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 20px;
}

@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}

@media (max-width: 1790px) {
  .home_content .hero_right_para {
    margin-right: 10%;
  }
}

@media (max-width: 1590px) {
  .home_content .hero_right_para {
    margin-right: 6%;
  }
}

@media (max-width: 991px) {
  .home_content .hero_right_para {
    margin-right: 12%;
  }
}

@media (max-width: 768px) {
  .home_content .first_home_title {
    font-size: 60px;
  }

  .home_content .second_home_title {
    font-size: 50px;
  }

  .middle_home_title {
    max-width: 210px;
    width: 100%;
  }

  .home video {
    height: 665px;
  }

  .home_content .hero_right_para {
    margin-right: 0px;
  }

  .home_content {
    top: 193px;
    width: 100%;
    right: -1%;
    padding: 20px;
  }

  .home_content .hero_right_para {
    text-align: center;
  }

  .home_content .hero_right_para {
    max-width: 100%;
  }

  .home_content .hero_right_para p {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .home_content .first_home_title {
    font-size: 32px;
  }

  .home_content .second_home_title {
    font-size: 28px;
  }

  .home video {
    height: 490px;
  }

  .hero_left_para {
    text-align: center;
  }

  .home_content .hero_right_para {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .home_content .hero_right_para p {
    margin-bottom: 16px;
  }

  .home_content {
    width: 93%;
    margin-left: 10px;
    right: unset;
    padding: 0;
  }

  .home_content .hero_right_para p {
    font-size: 18px;
    line-height: 24px;
  }
}

.your_coffe {
  background-color: #fffbef;
}

.your_coffe .slick-track {
  display: flex;
}

.your_coffe_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.your_coffe_left h3 {
  font-size: 45px;
  font-weight: 700;
  color: #101827;
}

.your_coffe_right img {
  width: 600px;
  height: auto;
  justify-self: center;
}

.your_coffe_left p {
  font-size: 21px;
  margin-top: 25px;
  line-height: 22px;
  color: #545353;
}

.your_coffe_left {
  max-width: 450px;
}

.center_slider .slick-slide {
  /* background-color: #b32532; */
  color: #fff;
  /* height: 200px; */
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: scale(0.8); */
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1366px) {
  .your_coffe_left h3 {
    font-size: 45px;
  }

  .your_coffe_left p {
    font-size: 21px;
  }
}

@media (max-width: 1199px) {
  .your_coffe_right img {
    max-width: 545px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .your_coffe_left h3 {
    font-size: 40px;
  }

  .your_coffe_left {
    max-width: 100%;
    text-align: center;
  }

  .your_coffe_container {
    flex-direction: column;
  }

  /* .your_coffe_container {
        padding-top: 0;
    } */
}

@media (max-width: 850px) {
  .your_coffe_left h3 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .your_coffe_left h3 {
    font-size: 30px;
    line-height: 28px;
  }

  .your_coffe_left p {
    font-size: 17px;
  }
}

/* business_solution */

.business_solution {
  background-color: #fffbef;
  /* background-image: url("../images/Line.png"); */
  padding: 30px 0;
}

.business_solution .business_header {
  /* background-image: url("../images/Line.png"); */
  background-position: top;
  background-size: cover;
  /* height: 81px; */
  width: 100%;
  margin-bottom: 50px;
}

.business_solution h3 {
  font-size: 50px;
  font-weight: 700;
  color: #101827;
  text-align: center;
}

.business_box img {
  /* max-width: 350px; */
  width: 60px;
  height: auto;
}

.store_boxes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.business_box .text_box {
  padding: 20px 10px;
}

.business_box .text_box h5 {
  font-size: 20px;
  font-weight: 500;
  color: #545353;
}

.business_box .text_box p {
  font-size: 15px;
  font-weight: 400;
  color: #737373;
}

.business_box:hover .business_box_img {
  transform: scale(1.2);
  transition: all 0.5s ease-in-out;
}

.business_img {
  overflow: hidden;
  border-radius: 10px;
}

.business_solution a {
  background-color: #2e1212;
  padding: 8px 12px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: fit-content;
  border: 1px solid #2e1212;
  transition: 0.3s ease-in-out;
  /* margin-top: 50px; */
  text-align: center;
  margin: 50px auto 0;
}

.business_solution a:hover {
  background-color: #fffbef;
  color: #2e1212;
}

@media (max-width: 768px) {
  .business_solution .business_header {
    margin-bottom: 25px;
  }

  .about_coftea .about_coftea_content {
    margin-top: 25px;
  }

  .brand_section .coftea_brand_slider {
    margin-top: 30px;
  }

  .client_section {
    margin-top: 30px !important;
  }
}

@media (max-width: 575px) {
  .business_box .text_box h5 {
    font-size: 18px;
  }

  .business_box .text_box p {
    font-size: 14px;
  }

  .store_boxes {
    gap: 20px;
  }

  .business_solution h3 {
    font-size: 29px;
  }

  .business_solution .business_header {
    height: auto;
    margin-bottom: 20px;
  }

  .business_solution a {
    font-size: 17px;
    margin: 10px auto 0;
  }
}

@media (max-width: 480px) {
  .store_boxes {
    flex-direction: column;
  }
}

/* LIST PRODUCT  */
.list_products {
  background-color: #fffbef;
  padding: 60px 0;
}

.list_section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.left-panel {
  /* background-color: #4a2c2a; */
  background-image: url("/assets/images/product_bg.jpg");
  /* padding: 20px; */
  flex: 1;
  min-width: 200px;
  position: relative;
  background-size: cover;
}

.left-panel:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #111;
  opacity: 0.6;
}

.left_box {
  padding: 20px;
  z-index: 123;
  position: relative;
  text-align: center;
}

/* .option {
    color: #D6D6D6;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: transform 0.3s, font-size 0.3s;
    font-size: 20px;
}

.option.active {
    transform: scale(1.7);
    font-size: 1.5em;
    color: #fff;
} */

.option {
  color: #d6d6d6;
  padding: 10px;
  margin: 10px 0;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 18px;
  transform-origin: center;
  will-change: transform;
}

.option.active {
  transform: scale(1.3);
  /* Removed font-size change to avoid layout shift */
  color: #fff;
  /* background-color: #6b4e4e; */
}

.right-panel {
  flex: 1;
  /* min-width: 300px; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
  /* padding: 20px; */
}

.image-container img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.left_view_products button {
  color: #9d400c;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  margin-top: 100px;
}

.left_view_products button:hover {
  background-color: transparent;
  color: #fff;
}

.cart_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.cart_items .cart_box img {
  max-width: 297px;
  width: 100%;
}

.cart_items .cart_content {
  text-align: center;
  padding: 10px;
}

.cart_items .cart_content .product_type {
  font-size: 14px;
  line-height: 20px;
  background-color: #9d400c;
  color: #fff;
  border-radius: 6px;
  width: fit-content;
  padding: 2px 10px;
  margin: auto;
}

.cart_items .cart_content .product_title {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
}

.cart_items .cart_content .price_button {
  font-size: 18px;
  color: #bd1e1e;
  font-weight: 600;
  margin-bottom: 0;
}

.cart_items .cart_box .add_to_cart {
  width: 100%;
  background-color: #9d400c;
  color: #fff;
  border: none;
  font-size: 17px;
  padding: 3px;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cart_items .cart_box:hover .add_to_cart {
  opacity: 1;
  visibility: visible;
}

.cart_section {
  padding: 50px 0;
  background-color: #fffbef;
}

.cart_section .cart_box {
  height: 390px;
  transition: all 0.3s ease-in-out;
}

.cart_section .shop_all_btn {
  margin: 110px auto 0;
  font-size: 18px;
  border: 1px solid #2e1212;
  color: #2e1212;
  background-color: transparent;
  padding: 3px 28px;
  display: flex;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.cart_section .shop_all_btn:hover {
  background-color: #2e1212;
  color: #fff;
}

@media (max-width: 1399px) {
  .cart_items .cart_box img {
    width: 255px;
  }
}

@media (max-width: 1199px) {
  .cart_items .cart_box img {
    height: 210px;
    object-fit: contain;
    width: unset;
  }

  .cart_section .shop_all_btn {
    margin: 80px auto 0;
  }
}

@media (max-width: 991px) {
  .option {
    margin: 0;
    padding: 7px;
  }

  .cart_items .cart_box img {
    height: 155px;
    object-fit: unset;
  }

  .cart_section .shop_all_btn {
    margin: 50px auto 0;
  }
}

@media (max-width: 768px) {

  .cart_items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
    gap: 20px;
  }

  .cart_items .cart_box img {
    max-width: 100%;
  }

  .cart_section .cart_box {
    height: 100%;
  }

  .cart_items .cart_content .product_title {
    font-size: 16px;
    line-height: 20px;
    min-height: 40px;
  }

  .cart_items .cart_box .add_to_cart {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .left-panel,
  .right-panel {
    width: 100%;
  }

  .option {
    font-size: 16px;
    padding: 4px;
  }

  .left_view_products button {
    font-size: 14px;
    margin-top: 30px;
  }

  .cart_items .cart_box img {
    height: auto;
  }
}

@media (max-width: 575px) {

  .list_products {
    padding: 30px 0;
  }

  .cart_items {
    gap: 10px;
  }

  .cart_items .cart_content .product_title {
    font-size: 14px;
  }

  .cart_items .cart_box img {
    max-width: 100%;
  }

  .cart_section .cart_box {
    height: unset;
  }
}

@media (max-width: 530px) {
  .right-panel {
    flex: auto;
  }
}

/* BETTER EXPERIENCE  */

.better_experience {
  background-image: url("/assets/images/better_experience.png");
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

.better_experience h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  padding-top: 70px;
}

@media (max-width: 1366px) {
  .better_experience h3 {
    font-size: 37px;
  }
}

@media (max-width: 768px) {
  .better_experience h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .better_experience {
    height: auto;
    padding: 50px 0;
  }

  .better_experience h3 {
    padding-top: 0;
  }

  .better_experience h3 {
    font-size: 25px;
  }
}

/* ABOUT COFTEA  */
.about_coftea {
  background-color: #fffbef;
  padding: 50px 0;
}

.coftea_header {
  color: #101827;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}

.coftea_header span {
  color: #e27900;
}

.about_coftea_content {
  display: flex;
  gap: 40px;
}

.about_coftea_content {
  margin-top: 50px;
}

.left_coftea p {
  font-size: 22px;
  letter-spacing: 5%;
  font-weight: 400;
}

.right_coftea {
  display: flex;
  gap: 30px;
  width: 53%;
}

.left_coftea {
  width: 47%;
}

.left_coftea .numbersection {
  display: flex;
  border-top: 1px solid #7373734d;
  padding-top: 18px;
  justify-content: space-around;
  text-align: center;
}

.left_coftea .numbersection .number_box .numbers {
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

.left_coftea .numbersection .number_box .number_review {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
}

.left_coftea p span {
  font-weight: 700;
  color: #2e1212;
}

.left_slider_coftea {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  animation: slidee 8.5s linear infinite;
}

.slider img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.upper {
  flex: 1;
  display: flex;
  flex-direction: column;
  transform-origin: top;
}

.left_slider_coftea:hover .slider {
  animation-play-state: paused;
}

@keyframes slidee {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-660px);
    /* Adjust based on total height of slides + gaps */
  }
}

.right_slider_coftea {
  height: 400px;
  overflow: hidden;
  position: relative;
  margin-top: 35px;
}

.right_slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  animation: sliding 8.5s linear infinite;
}

.right_slider img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.lower {
  flex: 1;
  display: flex;
  flex-direction: column;
  transform-origin: top;
}

.left_slider_coftea:hover .right_slider {
  animation-play-state: paused;
}

@keyframes sliding {
  0% {
    transform: translateY(-660px);
    /* Start at bottom (total height of slides + gaps) */
  }

  100% {
    transform: translateY(0);
    /* Move to top */
  }
}

@media (max-width: 1199px) {
  .right_slider img {
    width: 220px;
  }

  .slider img {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .coftea_header {
    font-size: 40px;
  }

  .left_coftea p {
    font-size: 18px;
  }

  .left_coftea .numbersection .number_box .numbers {
    font-size: 30px;
  }

  .right_slider img {
    width: 170px;
    height: 200px;
  }

  .slider img {
    width: 170px;
    height: 200px;
  }
}

@media (max-width: 820px) {
  .about_coftea_content {
    flex-direction: column;
  }

  .left_coftea p {
    font-size: 17px;
  }

  .left_coftea .numbersection .number_box .numbers {
    font-size: 25px;
  }

  .left_coftea {
    width: 100%;
  }

  .right_coftea {
    width: 100%;
    justify-content: space-around;
  }

  .right_slider img {
    width: 270px;
    height: 200px;
  }

  .slider img {
    width: 270px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .right_slider img {
    width: 250px;
    height: 200px;
  }

  .slider img {
    width: 250px;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .coftea_header {
    font-size: 30px;
  }

  .left_coftea p {
    font-size: 18px;
  }

  .about_coftea_content {
    margin-top: 20px;
  }

  .left_coftea .numbersection .number_box .numbers {
    font-size: 26px;
  }

  .left_coftea .numbersection .number_box .number_review {
    font-size: 15px;
  }

  .right_slider img {
    width: 210px;
    height: 200px;
  }

  .slider img {
    width: 210px;
    height: 200px;
  }
}

@media (max-width: 470px) {
  .right_slider img {
    width: 170px;
    height: 200px;
  }

  .slider img {
    width: 170px;
    height: 200px;
  }
}

@media (max-width: 375px) {
  .right_slider img {
    max-width: 170px;
    width: 100%;
    height: 200px;
  }

  .slider img {
    max-width: 170px;
    width: 100%;
    height: 200px;
  }
}

/* brand section  */
.brand_section {
  padding: 50px 0;
  background-color: #fffbef;
}

/* .center-slider .slick-slide {
    
    height: 100px;
    margin: 0 15px 0 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.brand_section img {
    object-fit: contain;
}

.coftea_brand_slider {
    margin-top: 60px;
} */


.coftea_brand_slider {
  width: 100%;
  /* max-width: 1200px; */
  /* height: 200px; */
  overflow: hidden;
  position: relative;
  margin: 25px auto 0;
}

.coftea_brand_slider::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #fffbef, #ffffff00);
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  z-index: 1;
}

.coftea_brand_slider::after {
  content: "";
  position: absolute;
  background: linear-gradient(to left, #fffbef, #ffffff00);
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  z-index: 1;
}

.center-coftea-slider {
  display: flex;
  flex-direction: row;
  animation: slide 15s linear infinite;
  width: calc(100% * 2);
  /* Double width for seamless looping */
}

.center-coftea-slider:hover {
  animation-play-state: paused;
}

.center-coftea-slider>div {
  flex: 0 0 8%;
  display: flex;
  justify-content: center;
}

.center-coftea-slider img {

  width: auto;
  height: 120px;
  object-fit: contain;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .center-coftea-slider div {
    flex: 0 0 10%;
  }
}

@media (max-width: 768px) {
  .brand_section {
    padding-bottom: 0px;
  }

  .center-coftea-slider div {
    flex: 0 0 15.33%;
  }
}

@media (max-width: 575px) {

  .center-coftea-slider div {
    flex: 0 0 15.33%;

  }

  .center-coftea-slider img {
    height: 85px;
  }

  .coftea_brand_slider::before {
    width: 150px;
  }

  .coftea_brand_slider::after {
    width: 150px;
  }
}

/* CLIENT SAY  */
.client_say {
  padding: 50px 0;
  background-color: #fffbef;
}

.client_say .swiper-wrapper {
  padding-bottom: 40px;
}

.client_box {
  border: 1px solid #9d400c;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}


.client_box i {
  color: #f4b700;
  font-size: 20px;
  margin-right: 4px;
  position: relative;
}

/* Half-filled last star */
/* .client_box i.half {
  background: linear-gradient(90deg, #f4b700 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client_box :nth-last-of-type(1) i:nth */

.client_box p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #545353;
  margin: 15px 0 30px;
}

.client_box .client_name img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.client_box .client_name span {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 400;
  margin-left: 10px;
}

.client_section {
  margin-top: 60px;
}




.client_section .swiper-pagination {
  text-align: center;
  margin-top: 20px;
}

.client_section .swiper-pagination-bullet {
  background: #ccc;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.client_section .swiper-pagination-bullet-active {
  background: #f4b700;
  /* Yellow active bullet */
}

@media (max-width: 768px) {
  .client_section {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .client_section {
    margin-top: 30px;
  }

  .client_say {
    padding: 30px 0;
  }
}

/* GET IN TOUCH  */
.get_form_section {
  background-color: #fffbef;
  padding: 50px 0;
}

.get_in_touch {
  background-image: url("/assets/images/get_touch.png");
  height: 682px;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
}

.get_in_touch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  width: 900px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.get_content {
  z-index: 123;
  position: relative;
  display: flex;
  padding-top: 40px;
  align-items: center;
  gap: 30px;
}

.get_content .get_left-section {
  width: 50%;
}

.get_content .get_right-section {
  width: 50%;
}

.get_left-section h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.get_left-section p {
  color: #fffaf2;
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  max-width: 600px;
}

.contact_box {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.contact_box div p {
  color: #fff;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
}

.contact_box .contact_name {
  font-weight: 700;
}

.contact_box .contact_address {
  font-weight: 400;
}

.contact_section {
  margin-top: 45px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.form-container {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 585px;
  height: 617px;
}

.form-container h2 {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
}

.form-container .form-group {
  margin-bottom: 20px !important;
}

.form-container .middle-fields-group {
  gap: 20px;
  width: 100%;
  display: flex;
}

.form-container .form-group.half-width {
  flex: 1;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #666666;
  font-size: 14px;
}

.form-container .form-group input,
.form-container .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-container .form-group input[type="text"],
.form-container .form-group input[type="email"],
.form-container .form-group input[type="tel"] {
  height: 40px;
}

.form-container .form-group textarea {
  height: 100px;
  resize: none;
}

.form-container .btn-send {
  width: 100%;
  padding: 10px;
  background-color: #8b4513;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.form-container .btn-send:hover {
  background-color: #7a3d0f;
}

.form-container .dual-input {
  display: flex;
  gap: 10px;
}

.form-container .middle-fields-group.single-field .form-group {
  width: 100%;
}

.form-container .dual-input input {
  flex: 1;
}

.form-container .error {
  color: red;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-container .success-message {
  color: green;
  margin-top: 1rem;
}

@media (max-width: 1366px) {
  .form-container {
    width: 500px;
  }

  .get_content .get_right-section {
    width: unset;
  }

  .get_content .get_left-section {
    width: unset;
  }

  .get_left-section p {
    font-size: 16px !important;
  }
}

@media (max-width: 1199px) {
  .form-container {
    width: 520px;
  }
}

@media (max-width: 991px) {
  .form-container {
    width: 390px;
    max-width: 390px;
  }
}

@media (max-width: 768px) {
  .get_content {
    flex-direction: column;
  }

  .get_in_touch {
    height: auto;
  }

  .get_in_touch::before {
    height: 900px;
  }


  .form-container .middle-fields-group {
    flex-direction: column;
    gap: 0px;
  }

  .form-container .form-group.half-width {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .form-container {
    height: auto;
  }

  .get_left-section h3 {
    font-size: 30px;
  }

  .get_left-section p {
    font-size: 16px;
  }

  .contact_box img {
    width: 42px;
  }

  .contact_box div p {
    font-size: 14px;
  }

  .contact_section {
    margin-top: 25px;
    gap: 20px;
  }

  .get_content {
    gap: 18px;
  }
}

@media (max-width: 400px) {
  .form-container {
    width: 100%;
    max-width: 100%;
  }

  .get_content .get_right-section {
    width: 100%;
  }
}

/* START OF ABOUT US SECTION */

.about-page .about-home {
  width: 100%;
  height: 430px;
 /* background-image: url("/assets/images/about_banner.png");*/
  background-position: center 66%;
  background-size: cover;
  position: relative;
}

.about-page .about-home::before {
  content: "";
  position: absolute;
  background: linear-gradient(179.27deg,
      rgba(0, 0, 0, 0) -3.78%,
      rgba(0, 0, 0, 0.3) 101.37%);
  height: 100%;
  width: 100%;
  top: 0;
}

/* Coftea story */

.coftea_story {
  background-color: #fffbef;
  padding: 56px 0 2px;
}

.story_flex_box {
  display: flex;
  gap: 30px;
  margin-bottom: 70px;
}

.story_flex_box:nth-child(even) {
  flex-direction: row-reverse;
}

.story_flex_box .story_image_box {
  flex-shrink: 0;
}

.story_flex_box .story_image_box img {
  width: 540px;
  /* max-width: 100%; */
  max-height: 360px;
  object-fit: cover;
  object-position: center 73%;
  border-radius: 20px;
}

@media (min-width:1400px) {
  .story_flex_box .story_image_box img {
    width: 540px;
    max-height: 340px;
  }

  .story_flex_box {
    gap: 70px;
  }
}

.story_flex_box .story_content_box {
  margin-top: 10px;
}

.story_flex_box .story_content_box h3 {
  font-size: 40px;
  font-weight: 400;
}

.story_flex_box .story_content_box p {
  font-size: 21px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}

.story_flex_box .story_content_box p.story_description {
  margin-top: 18px;
}

.story_flex_box .story_content_box p span {
  font-weight: 600;
}

.story_flex_box .story_content_box ul {
  padding: 0;
  margin-top: 15px;
}

.story_flex_box .story_content_box li {
  list-style: none;
  font-size: 21px;
}

.story_flex_box .story_content_box .our_story_line {
  color: #9d400c;
  font-weight: 600;
  margin-top: 30px;
}

@media (max-width:1199px) {
  .story_flex_box .story_image_box img {
    width: 490px;
    max-height: 330px;
  }
}

@media (max-width: 991px) {
  .story_flex_box .story_image_box {
    order: 2;
  }

  .story_flex_box .story_content_box {
    order: 1;
    text-align: center;
  }

  .story_flex_box {
    flex-direction: column;
  }

  .story_flex_box .story_image_box img {
    width: 100%;
  }

  .story_flex_box .story_content_box p {
    font-size: 17.5px;
  }

  .story_flex_box:nth-child(2n) {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .story_flex_box {
    margin-bottom: 40px;
  }

  .story_flex_box .story_image_box img {
    max-height: 220px;
  }

  .story_flex_box .story_content_box li {
    font-size: 17px;
  }

  .about-page .home {
    height: 358px;
  }

  .coftea_story {
    padding: 20px 0 2px;
  }
}

/* coffe makes */
.coffe_makes {
  background-image: url("/assets/images/coffe-makes.jpg");
  height: 350px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.coffe_makes::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 3.44%,
      rgba(0, 0, 0, 0) 100%);
  height: 100%;
  width: 100%;
  top: 0;
}

.coffe_makes h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  z-index: 123;
  position: relative;
  padding-top: 95px;
}

@media (max-width: 768px) {
  .coffe_makes h3 {
    font-size: 32px;
    padding-top: 63px;
  }

  .coffe_makes {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .coffe_makes h3 {
    font-size: 25px;
  }

  .coffe_makes {
    height: 185px;
  }
}

/* Our Manufacturing Process */
.manufacturing_process {
  background-color: #fffbef;
  padding: 80px 0 40px;
}

.manufacturing_process .manufacturing_header {
  text-align: center;
}

.manufacturing_process .manufacturing_header h3 {
  font-size: 40px;
  font-weight: 600;
}

.manufacturing_process .manufacturing_header p {
  font-size: 22px;
  font-weight: 400;
}

.manufacture_box {
  display: flex;
  gap: 26px;
}

.manufacture_slider {
  margin-top: 40px;
  position: relative;
  transform: scale(0.9);
}

.manufacture_box .manufactur_image img {
  width: 540px;
  max-height: 340px;
  border-radius: 20px;
}

.manufacture_box .manufactur_content {
  margin-top: 10px;
}

.manufacture_box .manufactur_content h5 {
  font-size: 24px;
  font-weight: 700;
}

.manufacture_box .manufactur_content p {
  font-size: 22px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 0px;
}

/* slider  */

/* Custom Slider Styles */
.manufacturing_process .custom-slider {
  position: relative;
}


.manufacturing_process .slider-container {
  position: relative;
  overflow: hidden;
}

.manufacturing_process .slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100% !important;
}

.manufacturing_process .slide {
  /* min-width: 100%; */
  padding: 20px 60px;
  box-sizing: border-box;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.manufacturing_process .slide.active {
  opacity: 1;
  transform: scale(1);
}

.manufacture_box {
  border-radius: 10px;
  overflow: hidden;
}

.manufactur_image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation */
.manufacturing_process .slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 20px; */
}

.manufacturing_process .slider-prev,
.manufacturing_process .slider-next {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
}

.manufacturing_process .slider-next {
  right: 0px;
}

.manufacturing_process .slider-prev img,
.manufacturing_process .slider-next img {
  width: 30px;
  height: 30px;
}

.manufacturing_process .slider-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
}

.manufacturing_process .slider-dots [data-index="0"] {
  position: absolute;
  top: -170px;
}

.manufacturing_process .slider-dots [data-index="1"] {
  position: absolute;
  bottom: -10px;
}

.manufacturing_process .slider-dots [data-index="2"] {
  position: absolute;
  bottom: -145px;
}

.manufacturing_process .slider-dots [data-index="3"] {
  position: absolute;
  bottom: -204px;
  left: 270px;
  transform: rotate(90deg);
}

.manufacturing_process .slider-dots [data-index="4"] {
  position: absolute;
  left: 580px;
  bottom: -90px;
}

.manufacturing_process .slider-dots .dot {
  width: 4px;
  height: 54px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 2px -7px;
  padding: 0;
}

.manufacturing_process .slider-dots .dot.active {
  background: #9d400c;
}


/* Responsive adjustments */
@media (min-width: 768px) {
  .manufacturing_process .slider-dots {
    left: 45px;
    top: 6%;

  }

  .manufacturing_process .slider-nav {
    gap: 20px;
  }

  .manufacturing_process .slider-prev {
    order: 1;
  }

  .manufacturing_process .slider-next {
    order: 3;
  }

  .manufacturing_process .slider-dots {
    order: 2;
    flex-direction: column;
  }

}

@media (max-width: 991px) {
  .manufacture_box .manufactur_image img {
    width: 100%;
  }

  .manufacture_box {
    flex-direction: column;
  }

  .manufacturing_process .slider-dots {
    top: 28%;
    display: none !important;
  }

}

@media (max-width: 768px) {
  .manufacturing_process .slider-dots {
    top: 28%;
    position: absolute;
  }

  .manufacturing_process .slide {

    padding: 0px 40px;
  }

  .manufacture_box .manufactur_image img {

    width: 100%;
  }
}

@media (max-width:575px) {
  .manufacturing_process .manufacturing_header h3 {
    font-size: 30px;
  }

  .manufacturing_process {
    padding: 40px 0 40px;
  }
}

@media (max-width:475px) {
  .manufacturing_process .slide {
    padding: 20px 45px 0px;
  }

  .manufacture_box .manufactur_content p {
    font-size: 20px;
  }
}

/* our values */
.our_values {
  background-color: #fffbef;
  padding: 40px 0;
}

.value_flex_box {
  display: flex;
  gap: 50px;
  justify-content: space-between;

}

.coftea_family .value_flex_box {
  background-image: url(/assets/images/join_coftea.webp);
  height: 436px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  justify-content: center;
  text-align: center;
  position: relative;
}

@media (max-width:575px) {
  .coftea_family .value_flex_box {
    height: 340px;
  }
}

.coftea_family .value_flex_box::before {
  content: "";
  position: absolute;
  top: 0;
  background-color: #000;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.coftea_family .value_flex_box .value_content {
  color: #fff;
  max-width: 760px;
  z-index: 123;
  position: relative;
  padding: 105px 20px 20px;
}

@media (max-width:991px) {
  .coftea_family .value_flex_box .value_content {
    padding: 20px 20px 20px;
  }
}

.value_content h3 {
  font-size: 40px;
  font-weight: 600;
}

.value_content ul {
  margin-top: 30px;
  padding: 0;
}

.value_content ul li {
  list-style: none;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 25px;
}

.value_content ul li span {
  font-weight: 700;
  font-size: 24px;
}

.value_img img {
  width: 540px;
  height: auto;
  border-radius: 10px;
}

@media (min-width:1400px) {
  .value_img img {
    width: 540px;
    height: 340px;
  }
}

.value_content {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .value_flex_box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .value_img img {
    max-width: 100%;
  }

  .value_content h3 {
    text-align: center;
  }

  .value_content ul li {
    text-align: center;
  }

  .value_content ul li {
    margin-bottom: 6px;
    margin-top: 10px;
  }
}

@media (max-width:575px) {
  .value_content h3 {
    font-size: 30px;
  }

  .value_flex_box {
    gap: 35px;
  }

  .our_values {
    padding: 20px 0;
  }

  .value_content ul {
    margin-top: 20px;
  }
}

/* join the coftea family */
.coftea_family {
  background-color: #fffbef;
  padding: 40px 0 80px;

}

.coftea_family .value_img img {
  max-width: 550px;
  height: auto;
  border-radius: 20px;
}

.coftea_family .value_content p {
  font-size: 21px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 41px;
}

.coftea_family .value_content a {
  text-decoration: none;
  background-color: #9d400c;
  /* border: 1px solid #9d400c; */
  color: #fff;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.coftea_family .value_content a:hover {
  background-color: #fff;
  color: #9d400c;
}

@media (max-width: 991px) {
  .coftea_family .value_content p {
    text-align: center;
  }

  .coftea_family .value_content a {
    display: flex;
    margin: auto;
    width: fit-content;
  }

  .coftea_family .value_img img {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .coftea_family {
    padding: 10px 0 40px;
  }

  .coftea_family .value_content p {
    margin-top: 12px;
    margin-bottom: 20px;

  }
}

/* END OF ABOUT US SECTION */

/* FOOTER  */

footer {
  background-color: #1c1c1c !important;
  color: #fff;
  padding: 20px 0 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 0;
}

.footer-section {
  margin: 10px 0;
}

.footer-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
  font-size: 16px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.contact-info ul li i {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-section p {
  font-size: 17px;
  font-weight: 500;
  margin-top: 7px;
  max-width: 260px;
}

@media (max-width: 575px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 5px 0;
  }

  .footer-section {
    margin: 15px 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-section p {
    margin: auto;
  }

  .contact-info ul li {
    justify-content: center;
    text-align: center;
  }
}

/* side pop up  */

.tqfBlock {
  position: fixed;
  right: -600px;
  top: 25px;
  width: 600px;
  z-index: 999;
  transition: all 0.5s ease-in;
}

.topQuoteForm {
  border: 6px solid #9d400c;
  background: #7e7a7b;
  /* background-image: url(https://bluehorse.in/assets/image/BG.jpg); */
  background-size: cover;
  border-left: 0px;
  border-radius: 0px 6px 6px 0px;
  float: left;
  width: 90%;
  height: auto;
  padding: 30px 20px;
  text-align: center;
  min-height: 400px;
  box-shadow: 5px 5px 15px var(--shadow_black);
}

.tqfAnchor {
  background: #9d400c;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-orientation: upright;
  transform: rotate(90deg);
  padding: 10px 20px;
  border-radius: 0px 0px 4px 4px;
  position: relative;
  left: -145px;
  top: 225px;
  cursor: pointer;
  width: 37%;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

.topQuoteForm h5 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.topQuoteForm p {
  font-size: 14px;
  color: #747474;
  line-height: 24px;
  /* width: 65%; */
  margin: 0 auto 0px;
  color: #fff;
  font-weight: 700;
}

.topQuoteForm #messagesuccessmessgae {
  font-size: 20px !important;
  transform: translate(0%, 170px) !important;
}

.topQuoteForm input[type="text"],
.topQuoteForm input[type="email"],
.topQuoteForm input[type="tel"] {
  clear: both;
  display: block;
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
  width: 100%;
  font-family: var(--font_primary);
}

.topQuoteForm textarea {
  clear: both;
  display: block;
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 14px;
  min-height: 100px;
  max-height: 100px;
  margin-bottom: 15px;
  width: 100%;
  font-family: var(--font_primary);
}

.input button {
  clear: both;
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #9d400c;
  border-radius: 4px;
  font-size: 14px;
  background: #9d400c;
  color: #fff;
  font-family: var(--font_primary);
  width: 100%;
}

.tqfBlock.show {
  right: -68px;
}

.input button:hover {
  background-color: white;
  color: black;
  transition: all 500ms ease;
}

@media (max-width: 600px) {
  .tqfAnchor {
    transform: rotate(0deg);
    position: fixed;
    right: unset;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    width: max-content;
  }

  .tqfBlock {
    top: 100px;
    width: 100%;
  }

  .show {
    right: 0px !important;
  }

  .topQuoteForm {
    width: 100%;
    border-left: 6px solid #7dcef3;
  }

  .topQuoteForm p {
    width: 96%;
  }
}

.topQuoteForm h5 {
  color: white;
}

.form_inner p {
  margin: unset !important;
  color: red;
  text-align: justify;
  margin-top: -17px !important;
  margin-bottom: 10px !important;
}

/* Swiper slider css start */
.swiper-container {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffbef;
  overflow: hidden;
}


.swiper-container .swiper.swiper-3d {
  perspective: 1800px;
}

.swiper-container .swiper {
  width: 100%;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.swiper-container.swiper-3d {
  perspective: 1800px;
}

.swiper-container .swiper-slide {
  width: 200px !important;
  height: 300px !important;
  border-radius: 10px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: end !important;
  align-items: self-start;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 1;
  background-size: cover;
  background-position: center;
  position: relative !important;
}

.swiper-container .swiper-slide .content {
  z-index: 3;
  transform: translate(150px, 500px);
  position: absolute;
  max-width: 160px;
  opacity: 0;
}

.swiper-container .swiper-slide.swiper-slide-active .content {
  transform: translate(130px, 170px);
  opacity: 1;
  transition: all 1.7s ease-in-out;
}

.swiper-container .swiper-slide .content h1 {
  color: black;
  font-size: 22px;
  font-weight: 600;
}

.swiper-container .swiper-slide .content p {
  color: black;
  font-size: 12px;
}

.swiper-container .animated-image {
  position: absolute;
  z-index: 999;
}

.swiper-container .animated-image .image-1 {
  transform: translate(-350px, 100px);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
  height: 100px;
  width: auto;
}

.swiper-container .animated-image .image-2 {
  transform: translate(400px, -100px);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
  height: 100px;
  width: auto;
}

.swiper-container .swiper-slide.swiper-slide-active .animated-image .image-1 {
  opacity: 1;
  transform: translate(-110px, 100px);
}

.swiper-container .swiper-slide.swiper-slide-active .animated-image .image-2 {
  opacity: 1;
  transform: translate(238px, -100px);
}

.swiper-container .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 220%;
  height: 150%;
  background-image: url("/assets/images/BG02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translate(-100%, -50%) scale(0.5);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.9s ease, opacity 0.5s ease, left 0.9s ease;
}

.swiper-container .swiper-slide.swiper-slide-active::before {
  left: 22%;
  opacity: 1;
  transform: translate(-40%, -50%) scale(1);
}

.swiper-container .swiper-slide::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: 8px solid rgb(214 214 214);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: -1;
  transition: transform 1s ease, opacity 1s ease, width 1s ease, height 1s ease;
}

.swiper-container .swiper-slide.swiper-slide-active::after {
  width: 195%;
  height: 110%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}

.swiper-container .swiper-slide img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-container .swiper-slide.swiper-slide-active img {
  transform: scale(1.3);
  opacity: 1;
  left: -80px;
}

.swiper-container .swiper-slide-next,
.swiper-container .swiper-slide-prev {
  opacity: 0.85;
  z-index: 1;
}

.swiper-container .swiper-pagination-bullet,
.swiper-container .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-container.swiper-3d .swiper-slide-shadow-left,
.swiper-container.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: black;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  font-size: 15px;
  font-weight: bold;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .swiper-container {
    min-height: 60vh;
  }
}

@media (max-width: 991px) {
  .swiper-container {
    min-height: 50vh;
  }

  .swiper-container .swiper-slide {
    width: 150px;
    height: 250px;
  }

  .swiper-container .swiper-slide .content {
    max-width: 120px;
    transform: translate(80px, 500px);
  }

  .swiper-container .swiper-slide.swiper-slide-active .content {
    transform: translate(80px, 170px);
  }

  .swiper-container .swiper-slide .content h1 {
    font-size: 24px;
  }

}

@media (max-width: 767px) {
  .swiper-container .swiper-slide {
    width: 150px;
    height: 200px;
  }

  .swiper-container .swiper-slide .content {
    max-width: 150px;
  }

  .swiper-container .swiper-slide img {
    width: 100%;
  }

  .swiper-container .swiper-slide.swiper-slide-active img {
    left: -50px;
  }

  .swiper-container .swiper-slide.swiper-slide-active .content {
    transform: translate(140px, 120px);
  }
}

@media (max-width: 575px) {

  .swiper-container .swiper {

    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .swiper-container .swiper-slide {
    width: 140px;
    height: 180px;
  }

  .swiper-container .swiper-slide::before {
    width: 200%;
    height: 1175%;
  }

  .swiper-container .swiper-slide::after {
    border: 4px solid rgb(214 214 214);
  }


  .swiper-container .swiper-slide {
    width: 160px !important;
    height: 220px !important;
  }

  .swiper-container .swiper-slide .content {
    max-width: 120px;
    transform: translate(100px, 500px);
  }

  .swiper-container .swiper-slide.swiper-slide-active .content {
    transform: translate(100px, 100px);
  }

  .swiper-container .swiper-slide.swiper-slide-active .animated-image .image-1 {
    transform: translate(-60px, 92px);
  }

  .swiper-container .swiper-slide.swiper-slide-active .animated-image .image-2 {
    transform: translate(150px, -100px);
  }

  .swiper-container .swiper-slide.swiper-slide-active img {
    transform: scale(1.2);
  }

  .swiper-container .swiper-slide .content h1 {
    font-size: 16px;
  }
}



.story_flex_box {
  display: flex;
  gap: 30px;
}

.story_flex_box.reverse {
  flex-direction: row-reverse;
}

.story_image_box img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  .story_flex_box,
  .story_flex_box.reverse {
    flex-direction: column;
  }
}



.certificate_section {
  padding: 80px 0;
  background-color: #fffdf5;
  text-align: center;
}

.certificate_header h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #7a3b00;
}

.certificate_header p {
  color: #555;
  margin-bottom: 20px;
  font-size: 22px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.certificate_swiper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.certificate_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin: 20px 0px;
}

.certificate_box img {
  object-fit: contain;
}

.certificate_image {
  border-radius: 10px;
}

.certificate_swiper .swiper-button-prev:after,
.certificate_swiper .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 28px;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
  background-color: #fd7e14;
  border-radius: 50%;
  height: 29px;
  width: 53px;
  color: white;
  padding-top: 6px;
}

.certificate_swiper .swiper-button-prev:after,
.certificate_swiper .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 17px !important;
  font-weight: bold;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
}

@media(max-width:768px) {
  .certificate_section {
    padding: 40px 0px;
  }

  .certificate_box img {
    height: 130px;
    width: 130px;
  }
}

@media(max-width:575px) {
  .certificate_box img {
    height: 100px;
    width: 100px;
  }

}