/* Author : Pranto Kumar */

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Titan+One&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* --first-color: hsl(170, 90%, 34%); */
  --first-color: #001219;
  /* --first-color-dark: hsl(170, 100%, 28%); */
  --first-color-dark: #1b4332;
  --first-color-darken: hsl(170, 100%, 23%);
  --second-color: hsl(45, 100%, 52%);
  --second-color-dark: hsl(45, 100%, 20%);
  --white-color: hsl(0, 0%, 100%);
  --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
  --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
  --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
  --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
  --shadow-text: 0 2px 4px var(--first-color-darken);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Titan One", sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /* updates */
  --highlight-red: #e63946;
}

/* third theme */
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* --first-color: hsl(170, 90%, 34%); */
  --first-color: #2C2C2C;
  /* --first-color-dark: hsl(170, 100%, 28%); */
  --first-color-dark: #1b4332;
  --first-color-darken: hsl(170, 100%, 23%);
  --second-color: hsl(45, 100%, 52%);
  --second-color-dark: hsl(45, 100%, 20%);
  --white-color: #E3D5B1;
  --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
  --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
  --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
  --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
  --shadow-text: 0 2px 4px var(--first-color-darken);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Titan One", sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /* updates */
  --highlight-red: #FF3B30; 
  --secondary-color: #F1F1A1
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
  
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--first-color);
  color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font: var(--font-regular) var(--h1-font-size) var(--second-font);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: var(--shadow-text);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--first-color);
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-family: var(--second-font);
  text-shadow: var(--shadow-text);
}

.nav__close,
.nav__toggle {
  display: flex;
  font-size: 1.5rem;
  cursor: pointer;
}



/* Navigation for mobile devices */
@media screen and (max-width:1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--first-color-dark);
    width: 100%;
    height: 100%;
    padding: 7rem 1.5rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }
}

.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--second-color);
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
  align-self: flex-end;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: color .4s;
}

.nav__social-link:hover {
  color: var(--second-color);
}



/* Show menu */
.show-menu {
  left: 0;
}

/* Shadow header */
.shadow-header {
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, .15);
}



/* Active link */

li:has(.nav__link) { 
  padding:5px 20px;
}

li:has(.active-link) { 
  background-color: var(--highlight-red);
  border-radius: 12px;
  transition: all .1s linear;
}

.active-link {
  color: var(--second-color);
  color: var(--white-color);
}



/*=============== HOME ===============*/
.home__container {
  padding-top: 1.5rem;
  justify-content: center;
  row-gap: 4rem;
}

.home__data {
  position: relative;
  text-align: center;
}

.home__title {
  font: var(--font-regular) var(--biggest-font-size) var(--second-font);
  line-height: 100%;
  margin-bottom: 1rem;
  text-shadow: var(--shadow-text);
}

.home__meat {
  width: 40px;
  position: absolute;
  top: 9rem;
  right: 0;
  opacity: .5;
}

.home__description {
  margin-bottom: 2.5rem;
}

.home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

.home__images {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.home__circle {
  width: 320px;
  height: 320px;
  background-color: var(--first-color-darken);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
  display: grid;
  place-items: center;
}

.home__subcircle {
  width: 250px;
  height: 250px;
  background-color: var(--second-color);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
}

.home__images .home__img {
  width: 250px;
  rotate: 10deg;
  filter: var(--shadow-img);
  position: absolute;
}

.home__images img {
  width: 60px;
  filter: var(--shadow-img);
  position: absolute;
}

.home__chips-1 {
  right: -.5rem;
}

.home__chips-2 {
  bottom: -.75rem;
  right: .5rem;
}


.home__chips-3 {
  top: .25rem;
  left: -.5rem;
}

.home__tomato-1 {
  top: -1.5rem;
  right: 2.5rem;
}

.home__tomato-2 {
  left: 3.5rem;
  bottom: -1.5rem;
}

.home__leaf {
  left: -.75rem;
}

/*=============== BUTTON ===============*/
.button {
  background-color: var(--highlight-red);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: .75rem 2rem;
  border-radius: 4rem;
  box-shadow: inset var(--shadow-button);
}

.button__ghost {
  background-color: transparent;
  box-shadow: none;
  border: 3px solid var(--highlight-red);
  color: var(--highlight-red);
}

/*=============== FAVORITES ===============*/
.favorite__container {
  row-gap: 3rem;
  grid-template-columns: 100%;
  padding-bottom: 3rem;
}

.favorite__data {
  position: relative;
  text-align: center;
}

.favorites__cheese-1,
.favorites__cheese-2 {
  width: 40px;
  position: absolute;
  opacity: .5;
}

.favorites__cheese-1 {
  top: 2rem;
  right: -1rem;
  rotate: -15deg;
}

.favorites__cheese-2 {
  bottom: -2rem;
  left: -.75rem;
  transform: scaleX(-1) rotate(45deg);
}

.favorite__article {
  position: relative;
  width: 200px;
}

.favorite__img {
  width: 200px;
  scale: .8;
  transition: scale .4s, filter .4s;

}

.favorite__leaf-1,
.favorite__leaf-2 {
  width: 70px;
  position: absolute;
  filter: var(--shadow-img);
  scale: 0;
  transition: scale .4s .1s;
}

.favorite__leaf-1 {
  top: -1rem;
  right: -.5rem;
}

.favorite__leaf-2 {
  bottom: -1rem;
  left: -.5rem;
}

/* Swiper class */
.swiper {
  margin-inline: initial;
  overflow: visible;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorite__img {
  scale: 1;
  filter: var(--shadow-img);
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorite__leaf-1,
:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorite__leaf-2 {
  scale: 1;

}

/*=============== CARE ===============*/
.care {
  background-color: var(--first-color-dark);
}

.care__container {
  row-gap: 3rem;
  padding-block: 1rem 2rem;
}

.care__list {
  display: grid;
  row-gap: 1.24rem;
}

.care__item {
  display: flex;
  column-gap: .75rem;
  align-items: center;
}

.care__item i {
  font-size: 1.5rem;
  color: var(--second-color);
}

.care__img {
  width: 320px;
  filter: var(--shadow-img);
  justify-self: center;
}

/*=============== BANNER ===============*/
.banner {
  padding-top: 3rem;
}

.banner__container {
  background-color: var(--second-color);
  padding: 1rem 1.5rem;
}

.banner__list {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}

.banner__item {
  color: var(--second-color-dark);
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.banner__item i {
  font-size: 1.5rem;
}

.banner__item span {
  font-size: var(--small-font-size) var(--second-font);
}

/*=============== PRODUCTS ===============*/
.procucts__container {
  position: relative;
  padding-top: 4.5rem;
}

.product__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
}

.products__card {
  position: relative;
  background-color: var(--first-color-dark);
  padding: 6.25rem .75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: inset var(--shadow-card);
  z-index: 10;
}

.products__img {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
  filter: var(--shadow-img);
  transition: transform .4s;
}

.products__subtitle {
  font-size: var(--small-font-size);
}

.products__title {
  font: var(--font-regular) var(--h2-font-size) var(--second-font);
  margin-bottom: .5rem;
}

.products__price {
  font-family: var(--second-font);
}

.products__button {
  position: absolute;
  right: .75rem;
  bottom: 1.25rem;
  outline: none;
  border: none;
  background-color: var(--second-color);
  padding: 4px;
  border-radius: .25rem;
  font-size: 1.25rem;
  color: var(--second-color-dark);
  box-shadow: inset var(--shadow-button);
  display: inline-flex;
  cursor: pointer;
}

.products__card:hover .products__img {
  transform: translateY(-.5rem);
}

.products__crab,
.products__hamburger,
.products__cheese {
  position: absolute;
  width: 40px;
  opacity: .5;
}

.products__crab {
  top: -2.5rem;
  left: 0;
  rotate: 30deg;
}

.products__hamburger {
  top: 17rem;
  right: 0.5rem;
  rotate: -15deg;
}

.products__cheese {
  left: 2rem;
  right: 0;
  margin: 0 auto;
  bottom: 3rem;
  rotate: 15deg;
}

/*=============== CONTACT ===============*/
.contact__container {
  position: relative;
  background-color: var(--first-color-darken);
  padding-top: 3.5rem;
  border-radius: 3rem;
  box-shadow: inset var(--shadow-card);
  overflow: hidden;
}

.contact__content {
  padding-top: 1rem;
  row-gap: 3rem;
}

.contact__data {
  text-align: center;
}

.contact__title {
  font: var(--font-regular) var(--h2-font-size) var(--second-color);
  margin-bottom: .5rem;
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: .75rem;
}

.contact__social a {
  color: var(--second-color);
  font-size: 1.5rem;
}

.contact__info {
  font-style: normal;
}

.contact__img {
  width: 200px;
  justify-self: center;
  filter: var(--shadow-img);
}

.contact__shrimp,
.contact__crab,
.contact__meat {
  position: absolute;
  width: 40px;
  opacity: .5;
}

.contact__shrimp {
  top: 9rem;
  right: 1.5rem;
  rotate: 15deg;
}

.contact__crab {
  top: 17rem;
  left: 1rem;
  rotate: 15deg;
}

.contact__meat {
  right: 2rem;
  bottom: 11rem;
  rotate: -15deg;
}

/*=============== FOOTER ===============*/
.footer {
  padding-block: 3rem 2rem;
}

.footer__container {
  row-gap: 2rem;
}

.footer__logo {
  color: var(--white-color);
  font: var(--h1-font-size) var(--second-font);
  justify-self: center;
  text-shadow: var(--shadow-text);
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  row-gap: 3.5rem;
}

.footer__link {
  color: var(--white-color);
  transition: color .4s;
}

.footer__link:hover {
  color: var(--second-color);
}

.footer__copy {
  grid-column: 1/3;
  text-align: center;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(170, 50%, 30%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(170, 50%, 20%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(170, 50%, 15%);
}


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--first-color);
  color: var(--white-color);
  box-shadow: inset var(--shadow-button);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section__title {
    font-size: var(--h2-font-size);
  }

  .home__title {
    font-size: 3rem;
  }

  .home__buttons {
    flex-direction: column;
    row-gap: 1rem;
  }

  .home__circle {
    width: 250px;
    height: 250px;
  }

  .home__subcircle {
    width: 200px;
    height: 200px;
  }

  .home__images .home__img {
    width: 200px;
  }

  .product__content {
    grid-template-columns: 160px;
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1.5rem;
  }

  .footer__copy {
    grid-column: 1;
  }
}

/* For medium devices */
@media screen and (max-width:540px) {

  .home__container,
  .favorite__container,
  .care__container {
    grid-template-columns: 370px;
    justify-content: center;
  }

  .favorites__swiper {
    max-width: 600px;
    overflow-x: clip;
    justify-self: center;
    padding: 1rem 13rem;
  }

  .product__content {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }

  .contact {
    display: grid;
    grid-template-columns: 450px;
    justify-content: center;
  }
  .contact__img{
    padding-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .product__content {
    grid-template-columns: repeat(3, 160px);
  }

  .contact {
    grid-template-columns: 550px;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: center;
  }

  .footer__copy {
    grid-column: initial;
  }

  .footer__link:nth-child(2) {
    order: 1;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .section__title {
    margin-bottom: 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__menu {
    display: flex;
    column-gap: 3rem;
    align-items: center;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 1rem;
  }

  .home__container {
    grid-template-columns: 420px 585px;
    align-items: center;
    column-gap: 6rem;
    padding-top: 5rem;
  }

  .home__data {
    text-align: initial;
  }

  .home__title {
    margin-bottom: 1.5rem;
    font-size: 70px;
  }

  .home__description {
    margin-bottom: 4rem;
  }

  .home__buttons {
    justify-content: initial;
    column-gap: 1.5rem;
  }

  .home__meat {
    width: 80px;
    top: 13rem;
  }

  .home__circle {
    width: 550px;
    height: 550px;
  }

  .home__subcircle {
    width: 430px;
    height: 430px;
  }

  .home__images .home__img {
    width: 100%;
    scale: 1.2;
  }

  .home__images img {
    width: 95px;
  }

  .favorite__container {
    row-gap: 4rem;
  }

  .favorites__cheese-1,
  .favorites__cheese-2 {
    width: 80px;
  }

  .favorites__cheese-1 {
    right: -3rem;
  }

  .favorites__cheese-2 {
    left: -3rem;
  }

  .favorites__swiper {
    max-width: 1000px;
    /* padding-left: 25rem; */
    width: 336px;
    margin-left: 24rem;
  }

  .favorite__article,
  .favorite__img {
    width: 320px;
  }

  .favorite__leaf-1,
  .favorite__leaf-2 {
    width: 110px;
  }

  .care__container {
    grid-template-columns: 500px 410px;
    column-gap: 6rem;
    align-items: center;
    padding-block: 4rem;
  }

  .care__img {
    width: 400px;
    order: -1;
  }

  .care__item {
    column-gap: 1rem;
  }

  .care__item i {
    font-size: 2rem;
  }

  .banner {
    padding-top: 4rem;
  }

  .banner__list {
    column-gap: 6.5rem;
  }

  .banner__item {
    column-gap: 1rem;
  }

  .banner__item i {
    font-size: 4.5rem;
  }

  .banner__item span {
    font-size: var(--h1-font-size);
  }

  .procucts__container {

    padding: 3rem 14rem;
  }

  .product__content {
    grid-template-columns: repeat(3, 250px);
    gap: 10rem 4rem;
  }

  .products__card {
    padding: 11rem 2rem 2rem;
    border-radius: 1.5rem;
  }

  .products__img {
    width: 170px;
    top: -5rem;
  }

  .products__subtitle {
    font-size: var(--normal-font-size);
  }

  .products__price {
    font-size: var(--h3-font-size);
  }

  .products__button {
    right: 2rem;
    bottom: 2rem;
    padding: 6px;
    font-size: 1.5rem;
    border-radius: .5rem;
  }

  .products__crab,
  .products__hamburger,
  .products__cheese {
    width: 80px;
  }

  .products__card {
    top: 2rem;
  }

  .products__hamburger {
    top: 30rem;
    right: 3rem;
  }

  .products__cheese {
    left: 4rem;
    margin: initial;
  }

  .contact {
    display: block;
  }

  .contact__container {
    border-radius: 4rem;
  }

  .contact__content {
    grid-template: 330px / 360px 320px;
    justify-content: center;
    align-items: flex-start;
    column-gap: 10rem;
    padding-top: 2rem;
  }

  .contact__data {
    text-align: initial;
    grid-template: max-content/repeat(2, max-content);
    gap: 3rem 2rem;
  }

  .contact__title {
    margin-bottom: .75rem;
  }

  .contact__social {
    justify-content: initial;
  }

  .contact__img {
    width: 320px;
    transform: translateY(-6rem);
  }

  .contact__shrimp,
  .contact__crab,
  .contact__meat {
    width: 80px;
  }

  .contact__shrimp {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20rem;
  }

  .contact__crab {
    top: 5rem;
    left: 4rem;
  }

  .contact__meat {
    right: inherit;
    left: 12rem;
    bottom: -1rem;
  }
  .footer{
    padding-block: 5rem 3rem;
  }
  .footer__container{
    row-gap: 3rem;
  }
  .scrollup{
    right: 3rem;
  }
}



/* all custom overwritten css */
body img  { 
  -webkit-user-drag: none;
}
.hero-no { 
  display: inline;
}

.hero-no img { 
  display: inline ;
  -webkit-user-drag: none;
  animation: spin-clockwise 6s infinite linear;
}

.home__images img:not(.home__img) { 
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}
.home__images .home__tomato-1 { 
  animation-delay: 1s;
  rotate: 30deg;
  width: 40px;
}
.home__images .home__chips-1{ 
  animation-delay: 1.5s;
}
.home__images .home__chips-2{ 
  animation-delay: 3s;
}
.home__images .home__tomato-2{ 
  animation-delay: 5s;
}
.home__images .home__leaf{ 
  animation-delay: 7s;
}
.section__title.product { 
  margin-top: -1rem;
  color: #E3D5B1;
  font-weight: bold;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  display: none;
  font-size: 25px;
}

img.asli-chatori-img { 
  position: absolute;
  top: -63px;
  width: 242px;
  left: -77px;
  animation: none !important;
}

.swiper-slide-active .section__title.product { 
  display: inherit;
}


/* about us style */
.about__container.container { 
  margin-top: 3rem;
  background-color: #1b4332;
  padding: 3rem;
  border-radius: 40px;
}

.about__container.container  .flex { 
  display: grid; 
  grid-template-columns: 2fr 2.5fr;
}

.about__container.container  .flex p { 
  text-wrap: pretty;
}



.section.team .section__title { 
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.section.team .team-wrapper { 
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 5rem;
}

.section.team .team-wrapper  article { 
  max-width: 400px;
}

.section.team .team-wrapper  article img { 
  width: 100%;
  max-width: 200px;
  margin: auto;
}

.section.team .team-wrapper .title { 
  font-size: 1.5rem;
  margin-top: 1rem;
  color: white;
  text-decoration: underline;
  margin-bottom: 0;
}

.section.team .team-wrapper .info { 
  color: #e63946;
  margin-top: 3px;
  line-height: 100%;
}

.section.team .team-wrapper  .details { 
  font-size: 14px;
  margin-top: 1rem;
}

.team-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  object-position: top;
  border: 4px solid var(--white-color);
}



.contact__container,
.contact__container > *, 
.contact__container > * > *
 { 
  overflow: visible;
}

.contact__container  .contact__img { 
  scale: 1.5;
  margin-left: 17rem;
  margin-top: 3rem ;
}


/* tabs */
/* Tab Wrapper */
.tabs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 70px;
}

/* Tabs Container */
.tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Individual Tab Styles */
.tabs button {
  background-color: var(--white-color);
  border: 2px solid var(--first-color-dark); /* Adding border to make the tabs stand out */
  padding: 0.5rem 1.4rem;
  border-radius: 8px;
  color: var(--first-color-dark);
  font-weight: var(--font-semi-bold);
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Active Tab Style */
.tab.active {
  background-color: var(--highlight-red);
  color: var(--white-color);
  border-color: var(--highlight-red);
  box-shadow: 0 4px 12px var(--shadow-button); /* Shadow to give active tab a pop effect */
}

/* Hover effect for tabs */
.tabs button:hover {
  background-color: var(--first-color-darken);
  color: var(--white-color);
}

/* Filter Section (Pricing Filters) */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  transition: display 0.3s ease;
}

/* Filter Button Styles */
.filter {
  background-color: var(--white-color);
  border: 2px solid var(--first-color-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--first-color-dark);
  font-weight: var(--font-regular);
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Active Filter Style */
.filter.active {
  background-color: var(--highlight-red);
  color: var(--white-color);
  border-color: var(--highlight-red);
}

/* Hide filters when "Upcoming" tab is active */
.tabs-wrapper:has(.tab.active[data-target="upcoming"]) .filters {
  display: none;
}


/* gallary  */

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  text-align: center;
}

.gallery .section__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Wrapper Styling */
.wrapper {
  margin-top: 2rem;
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  height: 250px; /* Increased height for bigger images */
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

/* Scroll Animations */
@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

@keyframes scrollRight {
  to {
    right: -200px;
  }
}

/* Items Styling */
.itemLeft,
.itemRight {
  width: 250px; /* Increased width for bigger images */
  height: 180px; /* Increased height for bigger images */
  border-radius: 6px;
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  background-size: cover;
  background-position: center;

  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  
}

/* Gallary Codepen start */
.photos-grid-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0;
  align-items: start;
}
@media (max-width: 580px) {
  .photos-grid-container {
    grid-template-columns: 1fr;
  }
}
.photos-grid-container .img-box {
  border: 1px solid #ffffff;
  position: relative;
}
.photos-grid-container .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.6);
}
.photos-grid-container .img-box:hover .caption {
  transform: translateY(-5px);
}
.photos-grid-container img {
  max-width: 100%;
  display: block;
  height: auto;
}
.photos-grid-container .caption {
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 1.5rem;
}
.photos-grid-container .transparent-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photos-grid-container .main-photo {
  grid-row: 1;
  grid-column: 1;
}
.photos-grid-container .sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 0em;
}
.photos-grid-container .sub:nth-child(0) {
  grid-column: 1;
  grid-row: 1;
}
.photos-grid-container .sub:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}
.photos-grid-container .sub:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.photos-grid-container .sub:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.hide-element {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media screen and (min-width: 1280px) {
  .gallary.container {
    margin: 0 auto;
    width: 1250px;
  }
}

/* Gallary Codepen ends */


/* Background Images (Placeholder Images) */
.item1 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gi-2.jpg?v=1736956851');
}

.item2 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gi-1.jpg?v=1736956851');
}

.item3 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gi-5.jpg?v=1736956851');
}

.item4 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gip-1.jpg?v=1736956851');
}

.item5 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gip-3.jpg?v=1736956851');
}

.item6 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gip-2.jpg?v=1736956851');
}

.item7 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gip-4.jpg?v=1736956851');
}

.item8 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gip-5.jpg?v=1736956851');
}
.item9 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gi-4.jpg?v=1736956851');
}
.item10 {
  background-image: url('https://cdn.shopify.com/s/files/1/0684/1411/1922/files/gi-3.jpg?v=1736956851');
}

/* Left Items Animation */
.itemLeft {
  left: max(calc(250px * 10), 100%);
  animation-name: scrollLeft;
}

/* Right Items Animation */
.itemRight {
  right: max(calc(250px * 10), calc(100% + 250px));
  animation-name: scrollRight;
}


/* Animation Delay for Staggered Effect */
.item1 { animation-delay: calc(30s / 8 * (8 - 1) * -1); }
.item2 { animation-delay: calc(30s / 8 * (8 - 2) * -1); }
.item3 { animation-delay: calc(30s / 8 * (8 - 3) * -1); }
.item4 { animation-delay: calc(30s / 8 * (8 - 4) * -1); }
.item5 { animation-delay: calc(30s / 8 * (8 - 5) * -1); }
.item6 { animation-delay: calc(30s / 8 * (8 - 6) * -1); }
.item7 { animation-delay: calc(30s / 8 * (8 - 7) * -1); }
.item8 { animation-delay: calc(30s / 8 * (8 - 8) * -1); }



article .icon-img{ 
  width: 80px;
  height: 80px;
}

article .icon-img:first-child { 
  top: -4rem;
}

article .icon-img-two { 
  bottom:5rem !important;
}




/* Mobile Responsive */
@media (max-width: 768px) {
  .wrapper {
    height: 200px; /* Adjust height for mobile */
  }

  .itemLeft,
  .itemRight {
    width: 160px; /* Adjust width for mobile */
    height: 120px; /* Adjust height for mobile */
  }

  .gallery__swiper {
    padding: 0 10px;
  }

  .gallery__swiper .swiper-slide {
    padding: 5px;
  }
}



@media (max-width: 749px) { 
  .hero-no img { 
    width: 40px;
    height: 40px;
  }

  .about__container.container { 
    padding-inline: 15px;
    margin-inline: 0;
  }

  .about__container.container  .flex { 
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .section.team .team-wrapper { 
    flex-direction: column;
    gap: 3rem;
  }

  .contact__container  .contact__img  { 
    margin-top: 5rem;
    margin-left: 0;
  }

  img.asli-chatori-img  { 
    top: -38px;
    width: 118px;
    left: -43px;
  }

  .home__images .home__img { 
    width: 300px;
  }
  .header { 
    padding-block: 10px;
  }
  li:has(.nav__link) { 
    padding-block: 13px;
  }
  .nav__list { 
    row-gap: 1rem;
  }

  nav__logo img { 
    max-width: 60px;
  }

}


/* all animations */
@keyframes spin-clockwise {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  };
}

@keyframes floating {
  from { transform: translate(0,  0px); }
  65%  { transform: translate(0, 15px); }
  to   { transform: translate(0, -0px); }    
}


