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

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem; /* Adjust this value to match your header height */

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #87aece;
  --first-color-dark: #243375;
  --first-color-darken: #1d2a62;
  --second-color: #f5f3d8;
  --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: "MyFont3", 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;

  
}

/*========== 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;
  }
}

@font-face {
  font-family: 'MyFont';
  src: url('/friendly_smiley/Friendly\ Smiley\ DEMO.ttf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFont1';
  src: url('/kingthings_organica/Kingthings\ Organica.ttf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFont2';
  src: url('/Morganite/Morganite/Morganite-Black.ttf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFont3';
  src: url('/signatra/Signatra.ttf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFont4';
  src: url('/hunters/Hunters.otf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyFont5';
  src: url('/cream_cake/Cream\ Cake.otf') format('truetype');
  /* Add additional formats if you have them */
  font-weight: normal;
  font-style: normal;
}



/*=============== 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);
 
  color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

p{
  color: #1d2a62;
}
img {
  display: block;
  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);
  font-size: 80px;

}

.main {
  overflow: hidden;
}




/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(#000000, #1d2a62);
  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__logo img {
  width: 150px;
  position: relative;
  right: 90px;
}

.logo-image-footer{
  width: 150px;
  position: relative;
  right: 5px;
  bottom: 17px;
}


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

.certification__badge{
  margin-top: 16px;
}

/* 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;
    z-index: 900;
  }
}

.nav__list,
.nav__social {
  display: flex;
}

.nav__list li{
  white-space: nowrap;
}

.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 */
.active-link {
  color: var(--second-color);
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
  }

  .nav {
    height: auto;
    padding: 0.5rem 0;
  }

  .nav__logo img {
    width: 120px;
    right: 0;
    position: static;
  }

  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--first-color-dark);
    width: 100%;
    height: 100vh;
    padding: 4rem 1rem 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  /* Toggle and Close button styles */
  .nav__toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
    /* Initially hidden */
    display: none;
  }

  /* When menu is shown, show close button */
  .nav__menu.show-menu .nav__close {
    display: block;
  }
}

/* Additional breakpoint for very small devices */
@media screen and (max-width: 350px) {
  .nav__logo img {
    width: 100px;
  }

  .nav__link {
    font-size: 1rem;
  }
}

/*=============== HOME ===============*/

.home{
  background: linear-gradient(#c1c6d3, #ffffff);
}
.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%;
  transform: translateY(-50px);
  opacity: 0;
  animation: titleReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  color: #1d2a62;
  font-size: 60px;
}

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

.home__description {
  margin-bottom: 2.5rem;
  color: #1d2a62;
}


.home__buttons {
  display: flex;
  align-items: center;
  justify-content: 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: -0.5rem;
}
.home__chips-2 {
  right: 0.5rem;
  bottom: -0.75rem;
}
.home__chips-3 {
  left: -0.5rem;
  top: 0.25rem;
}

.home__tomato-1 {
  top: -1.5rem;
  right: 2.5rem;
}
.home__tomato-2 {
  left: 3.5rem;
  bottom: -1.5rem;
}

.home__leaf {
  left: -0.75rem;
}



/* Responsive styles */
@media screen and (max-width: 968px) {
  .home__images-container {
    width: 100%;
    margin: 0 auto;
  }

  .home__images {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .home__images-container {
    width: 90%;
    margin: 0 auto;
  }

  .home__images {
    padding: 0 1rem;
  }

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

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

  .home__images .home__img {
    width: 220px;
  }
}

@media screen and (max-width: 480px) {
  .home__images-container {
    width: 100%;
  }

  .home__images {
    padding: 0 0.5rem;
  }

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

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

  .home__images .home__img {
    width: 190px;
  }

  /* Adjust decorative elements */
  .home__images img:not(.home__img) {
    width: 45px;
  }

  .home__chips-1 { right: -0.25rem; }
  .home__chips-2 { right: 0.25rem; bottom: -0.5rem; }
  .home__chips-3 { left: -0.25rem; top: 0.15rem; }
  .home__tomato-1 { top: -1rem; right: 1.5rem; }
  .home__tomato-2 { left: 2rem; bottom: -1rem; }
  .home__leaf { left: -0.5rem; }


  .home__tomato-2{
    bottom: 50px;
    left: 80px;
  }

  .home__leaf{
    left : 55px;
    top: 0;
  }

  .home__chips-3{
    top: 75px;
    left: 80px;
  }

  .home__chips-2{
    bottom: 60px;
    right: 85px;
  }

  .home__chips-1{
    right: 50px;
  }

  .home__tomato-1{
    top: 75px;
    right: 80px;
  }

  .home__img{
    top: -132px;
  }
}

@media screen and (max-width: 320px) {
  .home__circle {
    width: 200px;
    height: 200px;
  }

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

  .home__images .home__img {
    width: 160px;
  }

  .home__images img:not(.home__img) {
    width: 30px;
  }
}

/* Optional: For landscape mode */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .home__images-container {
    width: 80%;
  }

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

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

  .home__images .home__img {
    width: 200px;
  }
}


/*=============== BUTTON ===============*/
.button {
  background-color: #54b385;
  color: hsl(0deg 0% 100%);
  font-weight: var(--font-semi-bold);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  
}

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

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

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

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

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

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

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

.favorites__img {
  width: 200px;
  scale: 0.8;
  transition: scale .4s, filter .4s;
}

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

.favorites__leaf-1 {
  top: -1rem;
  right: -0.5rem;
}

.favorites__leaf-2 {
  bottom: -1rem;
  left: -0.5rem;
}

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

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

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


/*=============== CARE ===============*/
.care {
  background: linear-gradient(#ffffff, #c1c6d3);
  

}



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

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

.care__item {
  /* display: flex; */
  align-items: center;
  column-gap: .75rem;
  text-align: left;
  /* margin-top: -500px; */
}

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

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

.care_vd{
  width: 320px;
  filter: var(--shadow-img);
  justify-self: center;
  border-radius: 16px;
}


/* Responsive styles */
@media screen and (max-width: 968px) {
  .care{
    padding-block: 15rem 1rem;
  }
  .care__container {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 2.5rem;
  }
  .care__img,
  .care_vd {
      width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .care{
    padding-block: 15rem 1rem;
  }
  .care__container {
      padding-block: 1rem;
  }
  .care__img,
  .care_vd {
      width: 260px;
  }
}

@media screen and (max-width: 480px) {
  .care{
    padding-block: 15rem 1rem;
  }
  .care__img,
  .care_vd {
      width: 240px;
  }
  .care__item {
      column-gap: .5rem;
  }
}

@media screen and (max-width: 320px) {
  .care{
    padding-block: 15rem 1rem;
  }
  .care__img,
  .care_vd {
      width: 200px;
  }
  .care__container {
      row-gap: 2rem;
  }
}

/* Responsive styles */
@media screen and (max-width: 968px) {
 
  .care__container {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 2.5rem;
  }
  .care__img,
  .care_vd {
      width: 280px;
  }
}

@media screen and (max-width: 768px) {
 
  .care__container {
      padding-block: 1rem;
  }
  .care__img,
  .care_vd {
      width: 260px;
  }
}

@media screen and (max-width: 480px) {
  
  .care__img,
  .care_vd {
      width: 310px;
  }
  .care__item {
      column-gap: .5rem;
  }

  .care__item p{

  }

  .care__item p {
    text-align: center;
  }
  

  .section__title{
    margin-top: 190px;
  }
}

@media screen and (max-width: 320px) {
  .care__img,
  .care_vd {
      width: 200px;
  }
  .care__container {
      row-gap: 2rem;
  }
}


/*=============== 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: 0.5rem;
}

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

.banner__item span {
  font: var(--small-font-size) var(--second-font);
}
/*=============== PRODUCTS ===============*/
.products__container {
  position: relative;
  padding-top: 4.5rem;
}

.products__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: 0.5rem;
}

.products__price {
  font-size: var(--h1-font-size);
  color:  var(--second-color);
  right: 0.75rem;
}

.products__button {
  position: absolute;
  right: 0.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) scale(1.1);
}

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

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

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

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

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

.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-font);
  margin-bottom: 0.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: white;
  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__copy {
  grid-column: 1/3;
  text-align: center;
}

.footer__link {
  color: white;
  transition: color .4s;
}

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

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: #87aece;
}
::-webkit-scrollbar-thumb {
  background-color: #1d2a62;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #f5f3d8;
}
/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -100%;
  background-color: var(--first-color-dark);
  color: #fff;
  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(-0.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;
  }

  .products__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 (min-width: 540px) {
  .home__container,
  .favorites__container,
  .care__container {
    grid-template-columns: 370px;
    justify-content: center;
  }
  .favorites__swiper {
    max-width: 600px;
    overflow-x: clip;
    justify-self: center;
  }
  .products__content {
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }
  .contact {
    display: grid;
    grid-template-columns: 450px;
    justify-content: center;
  }



}

@media screen and (min-width: 768px) {
  .products__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: 13rem 0 8rem;
  }
  .section__title {
    /* margin-bottom: 500px; */
  }
  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  .nav__close,
  .nav__toggle {
    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: 4rem;
    margin-right: 5rem;
  }

  .home__container {
    grid-template-columns: 420px 585px;
    align-items: center;
    column-gap: 6rem;
    position: relative;
    bottom: 100px;
  }
  .home__data {
    text-align: initial;
    position: relative;
    top: 85px;
}
  .home__title {
    margin-bottom: 1.5rem;
  }
  .home__description {
    margin-bottom: 4rem;
  }
  .home__buttons {
    justify-content: initial;
    column-gap: 1.5rem;
  }
  .home__meat {
    width: 80px;
    top: 13rem;
  }
  .home__circle {
    width: 550px;
    position: relative;
    height: 550px;
    top: -46px;
}
  .home__subcircle {
    width: 430px;
    height: 430px;
  }
  .home__images .home__img {
    width: 400px;
  }
  .home__images img {
    width: 95px;
  }

  .favorites__container {
    grid-template-columns: 520px;
    row-gap: 4rem;
  }
  .favorites__cheese-1,
  .favorites__cheese-2 {
    width: 80px;
  }
  .favorites__cheese-1 {
    right: -18rem;
  }
  .favorites__cheese-2 {
    left: -18rem;
  }
  .favorites__swiper {
    max-width: 1000px;
  }
  .favorites__article,
  .favorites__img {
    width: 320px;
  }
  .favorites__leaf-1,
  .favorites__leaf-2 {
    width: 110px;
  }


  .care__container {
    grid-template-columns: 500px 410px;
    column-gap: 6rem;
    align-items: center;
    padding-block: 4rem;
  }
  .care__img {
    width: 550px;
    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);
  }

  .products__container {
    padding-top: 7.5rem;
  }
  .products__content {
    grid-template-columns: repeat(3, 250px);
    gap: 10rem 4rem;
  }
  .products__card {
    padding: 11rem 2rem 2rem;
    border-radius: 1.5rem;
  }
  .products__img {
    width: 130px;
    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__crab {
    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: 0.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: initial;
    left: 12rem;
    bottom: -1rem;
  }

  .footer {
    padding-block: 5rem 3rem;
  }
  .footer__container {
    row-gap: 3rem;
  }
  .scrollup {
    right: 3rem;
  }
}



#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 4vw;
  color: transparent;
  background-color: var(--first-color);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-timing-function: linear;
}

#loader h1:nth-child(2) {
  animation-delay: 2s;
}

#loader h1:nth-child(3) {
  animation-delay: 3s;
}

@keyframes load {
  0% {
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
      font-size: 9vw;
  }
}

#fixed-image {
  height: 30vw;
  width: 24vw;
  border-radius: 15px;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 25%;
  display: none;
  background-size: cover;
  background-position: center;
}







/* For medium devices */
@media screen and (min-width: 540px) {
  home__images-container{
    padding-top: 319px !important;
  }


}

@media screen and (min-width: 768px) {
  home__images-container{
    padding-top: 319px !important;
  }
}



/* ------------------------------------------------------------ */

        /* Container styling */
        .home__images-container {
          position: relative;
          width: 100%;
          height: 100%;
          top: 85px;
      }
      
      /* Position all image groups in the same spot */
      .home__images {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          pointer-events: none; /* Prevent interaction with hidden images */
          transition: opacity 1s ease;
      }
      
      /* Show active image group */
      .home__images.active {
          opacity: 1;
          pointer-events: auto;
      }
      
      /* Floating animation */
      @keyframes float {
          0% {
              transform: translateY(0);
          }
          50% {
              transform: translateY(-15px);
          }
          100% {
              transform: translateY(0);
          }
      }
      
      /* Apply floating animation to all images */
      .home__img,
      .home__chips-1,
      .home__chips-2,
      .home__chips-3,
      .home__tomato-1,
      .home__tomato-2,
      .home__leaf {
          animation: float 3s ease-in-out infinite;
      }
      
      /* Add slight delay to different elements */
      .home__chips-1 { animation-delay: 0.2s; }
      .home__chips-2 { animation-delay: 0.4s; }
      .home__chips-3 { animation-delay: 0.6s; }
      .home__tomato-1 { animation-delay: 0.8s; }
      .home__tomato-2 { animation-delay: 1s; }
      .home__leaf { animation-delay: 1.2s; }

      /* ================================================================= */

      .sports-slider-section {
        width: 100%;
        max-width: 1200px;
        position: relative;
        overflow: visible;
        padding: 20px;
        margin: 0 auto;
    }

    .sports-slider-wrapper {
        display: flex;
        transform: translateX(calc(50% - 160px));
        cursor: grab;
        gap: 20px;
        padding: 20px 0;
        overflow: visible;
    }

    .sports-slider-card {
        flex: 0 0 300px;
        height: 400px;
        border-radius: 15px;
        position: relative;
        overflow: visible;
        transition: transform 0.3s ease;
        transform-origin: center center;
        transform: scale(0.9);
    }

    .sports-slider-card.active {
        transform: scale(1.05);
        z-index: 2;
    }

    .sports-slider-card:nth-child(1) {
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    }

    .sports-slider-card:nth-child(2) {
        background: linear-gradient(135deg, rgba(168, 230, 207, 0.3), rgba(255, 211, 182, 0.3));
    }

    .sports-slider-card:nth-child(3) {
        background: linear-gradient(135deg, rgba(127, 127, 213, 0.3), rgba(134, 168, 231, 0.3), rgba(145, 234, 228, 0.3));
    }

    .sports-slider-card:nth-child(4) {
        background: linear-gradient(135deg, rgba(101, 78, 163, 0.3), rgba(234, 175, 200, 0.3));
    }

    .sports-slider-card-layer {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        backdrop-filter: blur(5px);
    }

    .sports-slider-layer-1 {
      
        background: rgba(255, 255, 255, 0.1);
    }

    .sports-slider-layer-2 {
        background: rgba(255, 255, 255, 0.05);
    }

    .sports-slider-layer-3 {
        
        background: rgba(255, 255, 255, 0.02);
    }

    .sports-slider-product-content-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        z-index: 2;
    }

    .sports-slider-background-wrapper {
        position: absolute;
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        z-index: 1;
        pointer-events: none;
    }

    .sports-slider-product-content-wrapper img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
        position: absolute;
        left: 0;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }

    .sports-slider-background-wrapper img {
        opacity: 0;
        /* object-fit: cover; */
        width: 0%;
        z-index: 11;
        height: 48%;
        transform: scale(0.2);
        transition: opacity 0.3s ease;
    }

    .sports-slider-card.active .sports-slider-background-wrapper img {
        opacity: 0.7;
        animation: backgroundZoom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @keyframes backgroundZoom {
        0% {
            opacity: 0;
            transform: scale(0.2);
        }
        50% {
            opacity: 0.4;
            transform: scale(1.6);
        }
        100% {
            opacity: 0.7;
            transform: scale(1.4);
        }
    }

    .sports-slider-navigation-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        color: white;
        font-size: 1.2em;
        z-index: 10;
        transition: background 0.3s ease;
    }

    .sports-slider-navigation-button:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .sports-slider-prev { left: 10px; }
    .sports-slider-next { right: 10px; }



    .sports-slider-section{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    /* ============================================================ */


    .icondance {
      position: absolute;
      width: 80px;
      opacity: 50%;
      animation: dance 3s ease-in-out infinite;
  }
  
  @keyframes dance {
      0%, 100% {
          transform: translateY(0) rotate(0deg) scale(1);
      }
      25% {
          transform: translateY(-8px) rotate(-3deg) scale(1.05);
      }
      50% {
          transform: translateY(0) rotate(3deg) scale(1);
      }
      75% {
          transform: translateY(8px) rotate(-3deg) scale(0.95);
      }
  }

  /* ===================================================================== */

          /* Innovative Products Section Animations */
.products.section {
  overflow: hidden;
  perspective: 1000px;
  
}

.section__title {
  transform: translateY(-50px);
  opacity: 0;
  animation: titleReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  color: #1d2a62;
}

@keyframes titleReveal {
  0% { 
      transform: translateY(-50px) rotateX(-90deg);
      opacity: 0;
  }
  100% { 
      transform: translateY(0) rotateX(0);
      opacity: 1;
  }
}

.products__container {
  position: relative;
}

.products__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 30px 0;
}

.products__card {
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.products__card:nth-child(1) { animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards; }
.products__card:nth-child(2) { animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards; }
.products__card:nth-child(3) { animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards; }
.products__card:nth-child(4) { animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards; }
.products__card:nth-child(5) { animation: cardAppear 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards; }

@keyframes cardAppear {
  0% { 
      transform: scale(0.8) translateY(50px) rotateX(-30deg);
      opacity: 0;
  }
  100% { 
      transform: scale(1) translateY(0) rotateX(0);
      opacity: 1;
  }
}

.products__card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.products__img {
  top: 10px;
  bottom: 0;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.products__card:hover .products__img {
  transform: scale(1.1) rotate(5deg);
}

.products__button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.products__card:hover .products__button {
  opacity: 1;
  transform: translateY(0);
}

/* Background Elements Animation */
.products__crab, 
.products__hamburger, 
.products__cheese {
  position: absolute;
  opacity: 0.7;
  transition: all 0.6s ease;
}

.products__crab {
  top: 20px;
  left: -50px;
  animation: floatObject 3s infinite alternate ease-in-out;
}

.products__hamburger {
  top: -30px;
  right: 20px;
  animation: floatObject 2.5s infinite alternate-reverse ease-in-out;
}

.products__cheese {
  bottom: -30px;
  right: -50px;
  animation: floatObject 3.5s infinite alternate ease-in-out;
}

@keyframes floatObject {
  0% { 
      transform: translateY(-10px) rotate(-5deg);
  }
  100% { 
      transform: translateY(10px) rotate(5deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .products__content {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products__content {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products__content {
      grid-template-columns: 1fr;
  }
}
/* }================================================================ */

.why-delixia {
  padding: 6rem 0;
  background: linear-gradient(#c1c6d3, #ffffff);
}

.why-delixia__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
  gap: 2.5rem;
  padding: 2rem;
  max-width: 1200px; /* Added max-width for better layout control */
  margin: 0 auto;
}

.why-delixia__card {
  position: relative;
  background: #1d2a62;
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.why-delixia__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      hsla(170, 90%, 34%, 0.1),
      transparent
  );
  transition: 0.5s;
}

.why-delixia__card:hover {
  transform: translateY(-1rem);
}

.why-delixia__card:hover::before {
  left: 100%;
}

.why-delixia__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  background: #54b385;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.why-delixia__icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px dashed #54b385;
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

.why-delixia__card:hover .why-delixia__icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.why-delixia__icon {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  transition: transform 0.3s ease;
}

.why-delixia__card:hover .why-delixia__icon {
  transform: scale(1.2);
}

.why-delixia__title {
  font-size: var(--h2-font-size);
  font-family: var(--body-font);
  color: #ffffff;
  margin-bottom: 1rem;
}

.why-delixia__description {
  font-size: var(--normal-font-size);
  color: #ffffff;
  line-height: 1.5;
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

/* Responsive styles */
@media screen and (max-width: 968px) {
  .why-delixia {
    padding: 4rem 0;
  }
  .why-delixia__container {
    gap: 2rem;
    padding: 1.5rem;
  }
  .why-delixia__card {
    padding: 1.25rem 0.875rem;
  }
  .why-delixia__icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  .why-delixia__icon {
    width: 35px;
    height: 35px;
  }

  .section__title{
    margin-top: 38px;
  }
}

@media screen and (max-width: 768px) {
  .why-delixia__container {
    grid-template-columns: 1fr; /* Changes to single column */
    max-width: 400px;
    gap: 1.5rem;
  }
  .why-delixia__title {
    font-size: var(--h3-font-size);
  }
  .why-delixia__description {
    font-size: var(--small-font-size);
  }

  .section__title{
    margin-top: 38px;
  }
}

@media screen and (max-width: 480px) {
  .why-delixia {
    padding: 3rem 0;
  }
  .why-delixia__container {
    padding: 1rem;
  }
  .why-delixia__card {
    padding: 1rem 0.75rem;
  }
  .why-delixia__icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .why-delixia__icon {
    width: 30px;
    height: 30px;
  }

  .section__title{
    margin-top: 38px;
  }
}

@media screen and (max-width: 320px) {
  .why-delixia {
    padding: 2rem 0;
  }
  .why-delixia__container {
    padding: 0.75rem;
    gap: 1rem;
  }
  .why-delixia__card {
    padding: 0.875rem 0.625rem;
  }
  .why-delixia__icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .why-delixia__icon {
    width: 25px;
    height: 25px;
  }
  .why-delixia__title {
    margin-bottom: 0.5rem;
  }

  .section__title{
    margin-top: 38px;
  }
}

/* ======================================================================= */

canvas {
  background: transparent;
}
.animation-section {
  position: relative;
  width: 100%;
}
.canvas-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
/* }============================================================= */
.industries{
  background: linear-gradient(#ffffff, #c1c6d3);
  padding-top: 80px;
}

.industries__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.industries__card {
  position: relative;
  background: #54b385;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
  border: 2px solid transparent;
}

.industries__card:hover {
  transform: translateY(-10px);
  border-color: #1d2a62;
}

.industries__icon-box {
  width: 80px;
  height: 80px;
  background: #1d2a62;;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease-out;
}

.industries__card:hover .industries__icon-box {
  transform: rotate(360deg) scale(1.1);
}

.industries__icon-box i {
  font-size: 2rem;
  color: var(--white-color);
}

.industries__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.industries__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.industries__blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--first-color);
  filter: blur(40px);
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.industries__card:hover .industries__blob {
  opacity: 0.1;
  animation: pulseBlob 2s infinite;
}

@keyframes pulseBlob {
  0% {
      transform: translate(-50%, -50%) scale(1);
  }
  50% {
      transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
      transform: translate(-50%, -50%) scale(1);
  }
}

/* Add cool perspective effect on hover */
.industries__container {
  perspective: 1000px;
}

.industries__card {
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.industries__card:hover {
  transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
}

/* Add floating animation to icons */
@keyframes floating {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
  100% {
      transform: translateY(0);
  }
}

.industries__icon-box {
  animation: floating 3s ease-in-out infinite;
}

/* Responsive styles */
@media screen and (max-width: 968px) {
  .industries {
    padding-top: 60px;
  }
  .industries__container {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .industries__card {
    padding: 2rem 1.25rem;
  }
  .industries__icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 0.875rem;
  }
  .industries__icon-box i {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .industries__container {
    grid-template-columns: repeat(2, 1fr); /* Changes to 2 columns */
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
  }
  .industries__title {
    font-size: var(--h3-font-size);
  }
  .industries__description {
    font-size: var(--small-font-size);
  }
  .industries__blob {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .industries {
    padding-top: 40px;
  }
  .industries__container {
    grid-template-columns: 1fr; /* Single column */
    max-width: 320px;
    gap: 1.25rem;
  }
  .industries__card {
    padding: 1.75rem 1rem;
  }
  .industries__icon-box {
    width: 60px;
    height: 60px;
  }
  .industries__icon-box i {
    font-size: 1.5rem;
  }
  /* Simplify hover animations for better mobile performance */
  .industries__card:hover {
    transform: translateY(-5px);
  }
}

@media screen and (max-width: 320px) {
  .industries {
    padding-top: 30px;
  }
  .industries__container {
    padding: 0.75rem;
    gap: 1rem;
  }
  .industries__card {
    padding: 1.5rem 0.875rem;
  }
  .industries__icon-box {
    width: 50px;
    height: 50px;
  }
  .industries__icon-box i {
    font-size: 1.25rem;
  }
  .industries__blob {
    width: 100px;
    height: 100px;
  }
}

/* ============================================================================ */
.clients{
  padding-top: 80px;
  background: linear-gradient(#c1c6d3, #ffffff);
}

        /* Client Logos Styles */
        .clients__logos {
          overflow: hidden;
          padding: 2rem 0;
          background: linear-gradient(90deg, transparent 0%, #1d2a62 50%, transparent 100%);
      }
      
      .logos__wrapper {
          position: relative;
          overflow: hidden;
      }
      
      .logos__track {
          display: flex;
          animation: scrollLogos 20s linear infinite;
      }
      
      .logo__item {
          flex: 0 0 200px;
          margin: 0 2rem;
          opacity: 0.7;
          transition: opacity 0.3s, transform 0.3s;
      }
      
      .logo__item:hover {
          opacity: 1;
          transform: scale(1.1);
      }
      
      @keyframes scrollLogos {
          0% {
              transform: translateX(0);
          }
          100% {
              transform: translateX(-100%);
          }
      }
      
      /* Testimonials Styles */
      .testimonials {
          padding: 4rem 0;
          padding-top: 0px;
      }
      
      .testimonials__wrapper {
          position: relative;
          max-width: 800px;
          margin: 0 auto;
      }
      
      .testimonial__card {
          background: #1d2a62;;
          backdrop-filter: blur(10px);
          border-radius: 2rem;
          padding: 3rem 2rem;
          margin: 2rem auto;
          position: absolute;
          width: 100%;
          opacity: 0;
          transform: translateX(100px) scale(0.8);
          transition: all 0.5s ease-out;
      }
      
      .testimonial__card.active {
          position: relative;
          opacity: 1;
          transform: translateX(0) scale(1);
      }
      
      .testimonial__quote {
        font-size: 4rem;
        color: #54b385;
        position: absolute;
        top: -1rem;
        left: 2rem;
      }
      
      .testimonial__text {
          font-size: var(--h3-font-size);
          line-height: 1.6;
          margin-bottom: 2rem;
          position: relative;
          color: #ffffff;
      }
      
      .testimonial__profile {
          display: flex;
          align-items: center;
          gap: 1rem;
      }
      
      .profile__image {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          overflow: hidden;
          border: 2px solid var(--first-color);
      }
      
      .profile__image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      
      .profile__name {
          font-size: var(--h3-font-size);
          color: #54b385;
          margin-bottom: 0.25rem;
      }
      
      .profile__position {
          font-size: var(--small-font-size);
          opacity: 0.8;
      }
      
      .testimonial__dots {
          display: flex;
          justify-content: center;
          gap: 0.5rem;
          margin-top: 2rem;
      }
      
      .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.3);
          cursor: pointer;
          transition: all 0.3s ease;
      }
      
      .dot.active {
          background: var(--first-color);
          transform: scale(1.2);
      }
      
      /* Hover Effects */
      .testimonial__card {
          cursor: pointer;
          transition: transform 0.3s ease;
      }
      
      .testimonial__card:hover {
          transform: translateY(-5px);
      }
      
      .profile__image {
          position: relative;
          transition: transform 0.3s ease;
      }
      
      .profile__image::after {
          content: '';
          position: absolute;
          inset: 0;
          border-radius: 50%;
          border: 2px solid var(--first-color);
          animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
          0% {
              transform: scale(1);
              opacity: 1;
          }
          100% {
              transform: scale(1.5);
              opacity: 0;
          }
      }

      /* Responsive styles */
@media screen and (max-width: 968px) {
  .clients {
    padding-top: 60px;
  }
  .clients__logos {
    padding: 1.5rem 0;
  }
  .logo__item {
    flex: 0 0 150px;
    margin: 0 1.5rem;
  }
  .testimonials {
    padding: 3rem 0;
  }
  .testimonial__card {
    padding: 2.5rem 1.75rem;
    margin: 1.5rem auto;
  }
  .testimonial__quote {
    font-size: 3.5rem;
    top: -0.75rem;
    left: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .logo__item {
    flex: 0 0 120px;
    margin: 0 1rem;
  }
  .testimonials__wrapper {
    max-width: 600px;
    padding: 0 1rem;
  }
  .testimonial__text {
    font-size: var(--normal-font-size);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .testimonial__quote {
    font-size: 3rem;
    top: -0.5rem;
    left: 1.5rem;
  }
  .profile__name {
    font-size: var(--normal-font-size);
  }
  .profile__position {
    font-size: var(--smaller-font-size);
  }
}

@media screen and (max-width: 480px) {
  .clients {
    padding-top: 40px;
  }
  .logo__item {
    flex: 0 0 100px;
    margin: 0 0.75rem;
  }
  .testimonials {
    padding: 2rem 0;
  }
  .testimonial__card {
    padding: 2rem 1.25rem;
    margin: 1rem auto;
  }
  .testimonial__quote {
    font-size: 2.5rem;
    top: -0.25rem;
    left: 1rem;
  }
  /* Simplify animations for better performance */
  .testimonial__card:hover {
    transform: none;
  }
  .testimonial__dots {
    margin-top: 1.5rem;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 320px) {
  .logo__item {
    flex: 0 0 80px;
    margin: 0 0.5rem;
  }
  .testimonial__card {
    padding: 1.75rem 1rem;
  }
  .testimonial__quote {
    font-size: 2rem;
  }
  .testimonial__text {
    font-size: var(--smaller-font-size);
    margin-bottom: 1rem;
  }
  .profile__name {
    font-size: var(--smaller-font-size);
  }
  .profile__position {
    font-size: var(--tiny-font-size);
  }
  .testimonial__dots {
    gap: 0.25rem;
  }
  .dot {
    width: 6px;
    height: 6px;
  }
}

      /* ========================================================== */

      .cta {
        position: relative;
        overflow: hidden;
        background: linear-gradient(#ffffff, #c1c6d3);
    }
    
    .cta__container {
        position: relative;
        padding: 2rem 1rem;
        z-index: 1;
        padding-top: 68px;
    }
    
    .cta__content {
      background: #1d2a62;
        backdrop-filter: blur(10px);
        border-radius: 1rem;
        padding: 2rem 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Animated Background Shapes */
    .cta__shapes {
        position: absolute;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }
    
    .shape {
        position: absolute;
        background: var(--first-color);
        border-radius: 50%;
        filter: blur(20px);
        opacity: 0.1;
        animation: floatShape 15s infinite;
    }
    
    .shape__1 {
        width: 100px;
        height: 100px;
        top: -50px;
        left: -50px;
        animation-delay: 0s;
    }
    
    .shape__2 {
        width: 70px;
        height: 70px;
        top: 50%;
        right: -35px;
        animation-delay: -2s;
    }
    
    .shape__3 {
        width: 80px;
        height: 80px;
        bottom: -40px;
        left: 20%;
        animation-delay: -4s;
    }
    
    .shape__4 {
        width: 60px;
        height: 60px;
        top: 30%;
        left: 50%;
        animation-delay: -6s;
    }
    
    @keyframes floatShape {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg);
        }
        25% {
            transform: translate(10px, -10px) rotate(90deg);
        }
        50% {
            transform: translate(0, 10px) rotate(180deg);
        }
        75% {
            transform: translate(-10px, -10px) rotate(270deg);
        }
    }
    
    /* Title and Description */
    .cta__title {
        font-size: 40px;
        color: #54b385;
        margin-bottom: 0.75rem;
        position: relative;
        animation: slideDown 0.8s ease-out;
    }
    
    .cta__description {
        font-size: var(--normal-font-size);
        margin-bottom: 1.5rem;
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.3s;
    }
    
    /* Buttons */
    .cta__buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.6s;
    }
    
    .cta__button {
        position: relative;
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        font-weight: var(--font-semi-bold);
        transition: transform 0.3s;
        overflow: hidden;
    }
    
    .primary-button {
      background: #54b385;
        color: var(--white-color);
    }
    
    .secondary-button {
        background: transparent;
        border: 2px solid var(--first-color);
        color: var(--first-color);
    }
    
    .button__text {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .button__icon {
        transition: transform 0.3s;
    }
    
    /* Button Particles Animation */
    .button__particles span {
        position: absolute;
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        pointer-events: none;
        opacity: 0;
    }
    
    .primary-button:hover .button__particles span {
        animation: particles 0.8s ease-out;
    }
    
    .primary-button:hover {
        transform: translateY(-2px);
    }
    
    .secondary-button:hover {
        background: var(--first-color);
        color: var(--white-color);
        transform: translateY(-2px);
    }
    
    .secondary-button:hover .button__icon {
        transform: translateX(3px);
    }
    
    @keyframes particles {
        0% {
            transform: translate(0, 0);
            opacity: 1;
        }
        100% {
            transform: translate(var(--tx), var(--ty));
            opacity: 0;
        }
    }
    
    /* Benefits List */
    .cta__benefits {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.9s;
    }
    
    .benefit__item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: var(--small-font-size);
    }

    .benefit__item span{
      color: white;;
    }
    

    .benefit__icon {
      color: #54b385;

        font-size: 1rem;
    }
    
    /* Animations */
    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    

    /* Responsive styles */
@media screen and (max-width: 968px) {
  .cta__container {
      padding-top: 48px;
  }
  
  .cta__content {
      padding: 1.75rem 1.25rem;
  }
  
  .cta__title {
      font-size: 36px;
  }
  
  .cta__benefits {
      gap: 1.25rem;
  }

  .cta p{
    max-width: 300px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 0.9rem;

  }
}

@media screen and (max-width: 768px) {
  .cta__container {
      padding-top: 40px;
      padding: 1.5rem 0.75rem;
  }
  
  .cta__content {
      padding: 1.5rem 1rem;
  }
  
  .cta__title {
      font-size: 32px;
      margin-bottom: 0.5rem;
  }
  
  .cta__description {
      margin-bottom: 1.25rem;
      font-size: 0.95rem;
  }
  
  .cta__buttons {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }
  
  .cta__button {
      width: 100%;
      max-width: 280px;
      text-align: center;
      justify-content: center;
  }
  
  .cta__benefits {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }

  .cta p{
    max-width: 300px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 0.9rem;

  }
}

@media screen and (max-width: 480px) {
  .cta__container {
      padding: 1.25rem 0.5rem;
  }
  
  .cta__content {
      padding: 1.25rem 0.75rem;
  }
  
  .cta__title {
      font-size: 28px;
  }
  
  .cta__description {
      font-size: 0.9rem;
  }
  
  .shape {
      filter: blur(15px);
  }
  
  .shape__1 {
      width: 80px;
      height: 80px;
  }
  
  .shape__2 {
      width: 60px;
      height: 60px;
  }
  
  .shape__3 {
      width: 70px;
      height: 70px;
  }
  
  .shape__4 {
      width: 50px;
      height: 50px;
  }

  .cta p{
    max-width: 300px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 0.9rem;

  }
}

@media screen and (max-width: 320px) {
  .cta__container {
      padding: 1rem 0.5rem;
  }
  
  .cta__content {
      padding: 1rem 0.5rem;
  }
  
  .cta__title {
      font-size: 24px;
  }
  
  .cta__description {
      font-size: 0.85rem;
  }
  
  .cta__button {
      padding: 0.6rem 1.25rem;
  }
  
  .benefit__item {
      font-size: 0.8rem;
  }
  
  .benefit__icon {
      font-size: 0.9rem;
  }

  .cta p{
    max-width: 300px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 0.9rem;

  }
}

    /* ======================================================= */

    .contact {
      position: relative;
      min-height: 100vh;
      padding: 4rem 0;
      background-image: url('/assets/images/Ithra.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }
  
  .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }
  
  .contact__container {
      position: relative;
      z-index: 1;
      border-radius: 20px;
      padding: 2rem;
      margin: 0 auto;
      max-width: 1200px;
  }
  
  .contact__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2.5rem;
  }
  
  .contact__title {
      color: #fff;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
      animation: fadeInDown 1s ease;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .contact__info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      width: 100%;
  }
  
  .contact__card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
      color: #fff;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  }
  
  .contact__card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .contact__card-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #4CAF50;
      filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.3));
  }
  
  .contact__card-title {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .contact__card-data {
      font-size: 0.9rem;
      display: block;
  }

  .contact__link {
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .contact__link:hover {
      color: #4CAF50;
      text-decoration: underline;
  }
  
  .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(37, 211, 102, 0.9);
      color: white;
      padding: 1rem 2rem;
      border-radius: 2rem;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .whatsapp-btn:hover {
      background: rgba(18, 140, 126, 0.9);
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  }
  
  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
  }
  

  /* Responsive styles */
/* Responsive styles */
@media screen and (max-width: 968px) {
  .contact {
      padding: 3rem 0;
  }

  .contact__container {
      padding: 1.75rem;
  }

  .contact__title {
      font-size: 2.25rem;
      margin-bottom: 1.75rem;
  }

  .contact__info {
      gap: 1.75rem;
  }

  .contact__card {
      padding: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .contact {
      padding: 2.5rem 0;
      
  }

  .contact__container {
      padding: 1.5rem;
  }

  .contact__title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }

  .contact__info {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
  }

  .contact__card {
      padding: 1.5rem;
  }

  .contact__card-icon {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
  }

  .contact__card-title {
      font-size: 1.1rem;
  }

  .whatsapp-btn {
      padding: 0.875rem 1.75rem;
      font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .contact {
      padding: 2rem 0;
  }

  .contact__container {
      padding: 1.25rem;
  }

  .contact__title {
      font-size: 1.75rem;
      margin-bottom: 1.25rem;
  }

  .contact__info {
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }

  .contact__card {
      padding: 1.25rem;
  }

  .contact__card-icon {
      font-size: 1.5rem;
  }

  .contact__card-title {
      font-size: 1rem;
  }

  .contact__card-data {
      font-size: 0.85rem;
  }

  .whatsapp-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      width: 100%;
      justify-content: center;
  }
}

@media screen and (max-width: 320px) {
  .contact {
      padding: 1.5rem 0;
  }

  .contact__container {
      padding: 1rem;
  }

  .contact__title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .contact__info {
      gap: 1rem;
  }

  .contact__card {
      padding: 1rem;
  }

  .contact__card-icon {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
  }

  .contact__card-title {
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
  }

  .contact__card-data {
      font-size: 0.8rem;
  }

  .whatsapp-btn {
      padding: 0.625rem 1.25rem;
      font-size: 0.85rem;
  }
}

  /* =============================================================== */

  .footer {
    position: relative;
    background: black;
    padding-top: 12rem;
    overflow: hidden;
}

/* Animated Waves */
.footer__waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.footer__wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: var(--first-color-dark);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z'%3E%3C/path%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-size: cover;
}

.footer__wave--1 {
    opacity: 0.5;
    animation: wave 8s linear infinite;
}

.footer__wave--2 {
    opacity: 0.7;
    animation: wave 10s linear infinite reverse;
}

.footer__wave--3 {
    opacity: 1;
    animation: wave 12s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(-50%); }
}

/* Footer Content */
.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.footer__brand {
    animation: fadeInUp 1s ease;
}

.footer__title {
    color: var(--white-color);
    font-family: var(--second-font);
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
}

.footer__tagline {
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
}

.certification__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--white-color);
    margin-right: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.certification__badge:hover {
    transform: translateY(-5px);
    background: var(--second-color);
}

.footer__subtitle {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: hsla(0, 0%, 100%, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--second-color);
    transition: width 0.3s ease;
}

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

.footer__link:hover::after {
    width: 100%;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: hsla(0, 0%, 100%, 0.8);
}

.footer__info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
    
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social__link:hover {
    background: var(--second-color);
    transform: translateY(-5px) rotate(360deg);
}

.footer__bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    color: hsla(0, 0%, 100%, 0.8);
}

.footer__bottom p{
  color: #ffffff;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media screen and (max-width: 968px) {
  .footer {
      padding-top: 8rem;
  }

  .footer__wave {
      height: 80px;
  }

  .footer__content {
      gap: 1.5rem;
  }

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

@media screen and (max-width: 768px) {
  .footer {
      padding-top: 6rem;
  }

  .footer__wave {
      height: 60px;
  }

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

  .footer__brand {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer__brand a {
      display: flex;
      justify-content: center;
  }

  .logo-image-footer {
      margin: 0 auto;
  }

  .certification__badge {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
  }

  .footer__subtitle {
      font-size: var(--normal-font-size);
      margin-bottom: 1rem;
  }

  .footer__list {
      gap: 0.8rem;
  }

  .social__link {
      width: 35px;
      height: 35px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
      padding-top: 4rem;
  }

  .footer__wave {
      height: 40px;
  }

  .footer__content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .footer__section {
      text-align: center;
  }

  .footer__info {
      align-items: center;
  }

  .footer__social-links {
      justify-content: center;
  }

  .footer__certifications {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
  }

  .certification__badge {
      margin-right: 0;
  }

  .logo-image-footer {
      max-width: 80%;
      height: auto;
  }
}

@media screen and (max-width: 320px) {
  .footer {
      padding-top: 3rem;
  }

  .footer__wave {
      height: 30px;
  }

  .footer__tagline {
      font-size: 0.9rem;
  }

  .certification__badge {
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
  }

  .footer__info p {
      font-size: 0.9rem;
  }

  .social__link {
      width: 30px;
      height: 30px;
      font-size: 1rem;
  }

  .footer__bottom {
      padding: 1.5rem 0;
      font-size: 0.9rem;
  }

  .logo-image-footer {
      max-width: 70%;
  }
}
/* ========================================================= */


.animation-section {
  width: 100%;
}
.canvas-container {
  width: 100%;
}
canvas {
  width: 100%;
}
/* =========================================================== */
.canvas-container {
  border-radius: 15px; /* Adjust the radius as needed */
  overflow: hidden; /* Ensures the rounded corners are applied to the content within */
}

canvas {
  width: 100%;
  height: 100%;
  display: block; /* Prevents extra spacing around the canvas */
}

/* =================================================== */


.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust the height as needed */
  overflow: hidden;
  background: linear-gradient(#000000, #1d2a62);
}

.video-container video {
  width: 65%;
  height: auto;
  position: absolute;
  top: 56%;
  left: 50%;
  border-radius: 100px;
  transform: translate(-50%, -50%);
}

.content {
  padding: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(#000000, #1d2a62);
}

.video-container video {
  width: 65%;
  height: auto;
  position: absolute;
  top: 56%;
  left: 50%;
  border-radius: 100px;
  transform: translate(-50%, -50%);
}

.content {
  padding: 2rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .video-container {
    height: auto;
    min-height: min-content;
    margin-top: var(--header-height); /* Add margin equal to header height */
    padding: 2rem 0; /* Reduced padding since we're using margin-top */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-container video {
    position: relative;
    width: 90%;
    top: auto;
    left: auto;
    transform: none;
    border-radius: 30px;
  }
}

/* Additional adjustments for smaller phones */
@media screen and (max-width: 480px) {
  .video-container {
    margin-top: var(--header-height);
    padding: 1.5rem 0;
    padding-top: 96px;
  }

  .video-container video {
    width: 95%;
    border-radius: 25px;
  }
}

/* For very small devices */
@media screen and (max-width: 320px) {
  .video-container {
    margin-top: var(--header-height);
    padding: 1rem 0;
  }
  
  .video-container video {
    width: 98%;
    border-radius: 20px;
  }
}
/* ========================================================================= */


.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(#c1c6d3, #ffffff);
}

.hero h1 {
  font-size: 4rem;
  text-align: center;
  color: #1d2a62;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(50px);
}

.hero h2 {
  font-size: 2rem;
  color: #1d2a62;
  opacity: 0;
  transform: translateY(50px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  padding: 20px;

  background-color: #f5f5f5;
  background: linear-gradient(#000000, #1d2a62);
}

.gallery-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-container {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-pair {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}

.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgb(6 16 37 / 61%);
}

.image-pair img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.image-pair:hover img:first-of-type {
  opacity: 0;
}

.image-pair:hover img:last-of-type {
  opacity: 1;
}

/* Responsive styles */
@media screen and (max-width: 968px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }
  .image-pair {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 1rem;
  }
  .image-pair {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .image-pair {
    height: 250px;
  }
}

@media screen and (max-width: 320px) {
  .gallery {
    gap: 0.75rem;
    padding: 1rem 0.75rem;
  }
  .image-pair {
    height: 200px;
  }
}


.content {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(#c1c6d3, #ffffff);
}

.content h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1d2a62;
}

.content p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.2rem;
  color: #1d2a62;
}

.cta {
  padding: 4rem 2rem; /* Adjusted padding */
  text-align: center;
  
  color: #1d2a62;
}

.cta h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 1.2rem;
  color: #ffffff;
}

.contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  color: #1d2a62;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@media screen and (max-width: 968px) {
  .content, .cta {
    padding: 3rem 1.5rem;
  }
  .content h3, .cta h3 {
    font-size: 2.2rem;
  }
  .content p, .cta p {
    font-size: 1.1rem;
    max-width: 700px;
  }
  .contact-btn {
    font-size: 1.1rem;
    padding: 0.9rem 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .content, .cta {
    padding: 2.5rem 1.25rem;
  }
  .content h3, .cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .content p, .cta p {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .content, .cta {
    padding: 2rem 1rem;
  }
  .content h3, .cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
  }
  .content p, .cta p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .contact-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

@media screen and (max-width: 320px) {
  .content, .cta {
    padding: 1.5rem 0.75rem;
  }
  .content h3, .cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .content p, .cta p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .contact-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
  .gallery {
      grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
  }
  .hero h1 { font-size: 2.5rem; }
  .hero h2 { font-size: 1.5rem; }
  .content h3, .cta h3 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .gallery {
      grid-template-columns: 1fr; /* One column for small screens */
  }
}

/* ============================================================================ */

.category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: 106px;
  margin-bottom: 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.subcategory-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tab, .subcategory-tab {
  padding: 1.2rem 2.5rem;
  background: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.subcategory-tab {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.category-tab.active, .subcategory-tab.active {
  background-color: var(--first-color-dark);
  color: white;
  transform: translateY(-3px);
}

.subcategory-tabs {
  display: none;
}

.subcategory-tabs.active {
  display: flex;
}

.product-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
  max-width: 1800px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 1200px;
  display: none;
}

.product-card.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.carousel-wrapper {
  position: relative;
  height: 400px;
}

.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

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

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(4px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.next {
  right: 1rem;
}

.prev {
  left: 1rem;
}

.carousel-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 2;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.4);
}

.flavor-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.flavor-option {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flavor-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.flavor-option.active .flavor-circle {
  border-color: var(--first-color-dark);
  transform: scale(1.1);
}

.flavor-name {
  font-size: 0.9rem;
  color: #4a5568;
}

.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2d3436;
}

.product-description {
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.product-details {
  margin-top: auto;
  margin-top: 28px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.logo-container {
  display: flex;
  gap: 2rem;
 
  justify-content: center;
  margin-left: 252px;
  margin-top: 75px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ================================================================================== */


.contact-container {
  width: 100%;
  max-width: 1000px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow);
  position: relative;
  opacity: 80%;
  top: 44px;
}

.contact-info {
  width: 35%;
  background: linear-gradient(#1d2a62, #000000);
  padding: 3rem 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: var(--white);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-item i {
  width: 30px;
  font-size: 1.2rem;
  margin-right: 10px;
}

.info-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
}

.social-links {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--white);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact-form {
  width: 65%;
  padding: 3rem;
  background: var(--white);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--light-text);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.submit-btn {
  background: linear-gradient(#1d2a62, #000000);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }

  .contact-info, .contact-form {
      width: 100%;
  }

  .social-links {
      position: relative;
      bottom: 0;
      margin-top: 2rem;
  }

  .input-row {
      flex-direction: column;
      gap: 0;
  }
}


@media screen and (max-width: 1200px) {
  .contact-container {
      max-width: 900px;
      margin: 0 1rem;
  }
  .contact-info {
      padding: 2.5rem 1.5rem;
  }
  .contact-form {
      padding: 2.5rem;
  }
  .contact-info h2 {
      font-size: 1.6rem;
  }
  .form-header h2 {
      font-size: 1.4rem;
  }
}

@media screen and (max-width: 968px) {
  .contact-container {
      max-width: 800px;
      flex-direction: column;
  }
  .contact-info, .contact-form {
      width: 100%;
  }
  .contact-info {
      padding: 2rem;
  }
  .contact-form {
      padding: 2rem;
  }
  .social-links {
      position: relative;
      bottom: 0;
      margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-container {
      margin: 0 0.5rem;
      border-radius: 15px;
  }
  .contact-info, .contact-form {
      padding: 1.5rem;
  }
  .input-row {
      flex-direction: column;
      gap: 1rem;
  }
  .form-header h2 {
      font-size: 1.3rem;
  }
  .contact-info h2 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
  }
  .info-item {
      margin-bottom: 1rem;
  }
  .info-item i {
      width: 25px;
      font-size: 1.1rem;
  }
  .submit-btn {
      width: 100%;
      padding: 0.7rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-container {
      border-radius: 10px;
      margin: 0;
  }
  .contact-info, .contact-form {
      padding: 1.25rem;
  }
  .contact-info h2 {
      font-size: 1.3rem;
  }
  .form-header h2 {
      font-size: 1.2rem;
  }
  .form-header p {
      font-size: 0.8rem;
  }
  .form-control {
      padding: 0.7rem;
      font-size: 0.85rem;
  }
  .info-item a {
      font-size: 0.85rem;
  }
  .submit-btn {
      font-size: 0.9rem;
  }
}

@media screen and (max-width: 320px) {
  .contact-info, .contact-form {
      padding: 1rem;
  }
  .contact-info h2 {
      font-size: 1.2rem;
  }
  .form-header h2 {
      font-size: 1.1rem;
  }
  .form-control {
      padding: 0.6rem;
      font-size: 0.8rem;
  }
  .info-item i {
      width: 20px;
      font-size: 1rem;
  }
  .info-item a {
      font-size: 0.8rem;
  }
  .submit-btn {
      padding: 0.6rem;
      font-size: 0.85rem;
  }
}

/* ======================================================== */

