@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: var(--primary-clr);
}
:root {
  --primary-clr: #000000;
  --secondary-clr: #131313;
  --third-clr: #ffba19;
  --forth-clr: #ffffff;
}

/* Common Class */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.row {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.row > * {
  padding: 0 15px;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul > li {
  list-style-type: none;
}

/* Header Above Section */
.above-section {
  text-align: center;
  font-size: 15px;
  color: var(--secondary-clr);
  background-color: var(--third-clr);
  padding-top: 12px;
  padding-bottom: 21px;
  font-family: Open Sans;
  position: relative;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 10 Q 10 0 20 10 T 40 10 T 60 10 T 80 10 T 100 10 T 120 10 V20 H0 Z" fill="black"/></svg>')
    repeat-x;
  background-size: contain;
}

/* Header Section */
.nav-logo {
  max-width: 110px;
  min-height: 80px;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav {
  gap: 350px;
}
nav,
.nav-right,
.nav-right > ul {
  display: flex;
  align-items: center;
}
.nav-right {
  flex-grow: 1;
}
.nav-right > ul {
  margin: 0 auto;
  gap: 45px;
}
.nav-right > ul > li > a {
  font-size: 16px;
  color: var(--forth-clr);
  font-family: Open Sans;
}
.nav-right > ul > li > a:hover {
  color: var(--third-clr);
}
.header-search > img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  padding-top: 5px;
}
.header-cart > img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.dropdown {
  position: relative;
  display: inline-block;
  color: var(--forth-clr);
  font-family: Open Sans;
}
.dropdown:hover {
  color: var(--third-clr);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary-clr);
  text-wrap: nowrap;
  margin-top: 2px;
  z-index: 99;
}
.dropdown-content a {
  color: var(--forth-clr);
  padding: 8px;
}
.dropdown-content li :hover {
  background-color: var(--third-clr);
  color: var(--forth-clr);
  width: 100%;
}
.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.divider {
  height: 30px;
  width: 2px;
  display: inline-block;
  background-color: var(--forth-clr);
}
.header-btn {
  position: relative;
  padding: 11px 15px;
  font-size: 16px;
  background-color: #ba3e3e;
  color: var(--forth-clr);
  border-radius: 2px;
  border-bottom: 3px solid var(--third-clr);
  border-right: 3px solid var(--third-clr);
  font-family: Open Sans;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s;
}
.header-btn::before {
  content: "";
  background: var(--third-clr);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}
.header-btn:hover::before {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-btn:hover {
  color: var(--secondary-clr) !important;
}
.hamburger {
  font-size: 1.8rem;
  cursor: pointer;
  margin-top: 2px;
}
.close-icon {
  display: none;
  font-size: 24px;
  margin-left: auto;
  margin-bottom: 20px;
  cursor: pointer;
}
.big-scr {
  display: none;
}

/* Event Flote Section  */
.event-flote-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
.event-subscribe-section {
  background-color: var(--secondary-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  width: 1200px;
  height: 385px;
}
.event-subscribe-text {
  padding-left: 20px;
  text-wrap: wrap;
}
.event-subscribe-text > h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
}
.highlight {
  color: var(--third-clr);
}
.event-subscribe-text > p {
  font-size: 16px;
  color: var(--forth-clr);
  margin: 20px 0;
  font-family: Open Sans;
}
.email-form {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border: 1px solid gray;
  background-color: var(--primary-clr);
  max-width: 450px;
}
.email-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  background-color: var(--primary-clr);
}
.email-form button {
  padding: 10px 20px;
  background-color: #ba3e3e;
  color: var(--forth-clr);
  border-right: 2px solid var(--forth-clr);
  border-bottom: 2px solid var(--forth-clr);
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background-color 0.6s ease-in-out;
}
.email-form button:hover {
  background-color: olive; /* darker blue */
  color: var(--secondary-clr); /* optional: change text color too */
}
.event-subscribe-image {
  max-width: 530px;
}
.event-subscribe-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Small Event Flote Section  */
.small-event-flote-section {
  display: none;
}

/* Category Section  */
.category-section {
  padding: 80px 0;
}
.category-section > div > div {
  text-align: center;
  padding-bottom: 20px;
}
.category-section h2 {
  color: var(--forth-clr);
  font-size: 45px;
  text-align: center;
  font-family: Coustard;
  font-weight: normal;
}
.category-section h2 > span {
  color: var(--third-clr);
}
.col-3 {
  width: 33.33%;
}
.category-card {
  margin: 0 auto;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  padding: 20px 15px;
  color: var(--forth-clr);
  font-family: Open Sans;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--forth-clr);
  animation: waveMotion 1.5s ease-in-out infinite;
}
.category-card:hover {
  animation: waveMotion 0.6s ease-in-out;
}
@keyframes waveMotion {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(-2deg) translateY(-2px);
  }
  50% {
    transform: rotate(2deg) translateY(2px);
  }
  75% {
    transform: rotate(-1deg) translateY(-1px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}
.category-image {
  max-width: 200px;
  border-radius: 8px;
  margin: 0 auto;
}
.category-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-title {
  color: var(--third-clr);
  font-size: 24px;
  font-family: Coustard;
  font-weight: normal;
}
.category-text {
  font-size: 16px;
  color: var(--forth-clr);
}
.divider1 {
  display: inline-block;
  background-color: red;
  height: 2px;
  width: 30px;
  margin-bottom: 5px;
}

/* Featured Section */
.feature-section {
  background: var(--secondary-clr);
  padding: 80px 0;
}
.col-2 {
  width: 50%;
}
.feature-hub {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.feature-img {
  max-width: 500px;
  border: 2px solid var(--forth-clr);
  border-radius: 50%;
  margin: 0 auto;
}
.feature-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-text h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
}
.feature-text h2 > span {
  color: var(--third-clr);
}
.feature-text > p {
  font-size: 16px;
  color: var(--forth-clr);
  margin: 20px 0;
}
.yellow {
  background-color: var(--third-clr);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-clr);
  font-size: 40px;
  font-family: Coustard;
  border-radius: 5px;
}
.gray {
  background-color: gray;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--forth-clr);
  font-size: 40px;
  font-family: Coustard;
  border-radius: 5px;
}
.red {
  background-color: #ba3e3e;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--forth-clr);
  font-size: 40px;
  font-family: Coustard;
  border-radius: 5px;
}
.feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.yellow + p {
  font-size: 16px;
  color: var(--forth-clr);
  text-align: center;
  padding-top: 15px;
  font-family: Open Sans;
}
.gray + p {
  font-size: 16px;
  color: var(--forth-clr);
  text-align: center;
  padding-top: 15px;
  font-family: Open Sans;
}
.red + p {
  font-size: 16px;
  color: var(--forth-clr);
  text-align: center;
  padding-top: 15px;
  font-family: Open Sans;
}

/* Trending Section  */
.trending-section {
  padding: 80px 0;
}
.trending-section > div {
  text-align: center;
}
.trending-section h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
}
h2 > span {
  color: var(--third-clr);
}
.trending-section > div > p {
  font-size: 16px;
  color: var(--forth-clr);
  margin-bottom: 20px;
  font-family: Open Sans;
}
.col-3 {
  width: 33.33%;
}
.trending-img {
  max-width: 350px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.trending-img:hover img {
  transform: scale(1.05);
}
.trending-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p1 {
  font-size: 14px;
  text-align: start;
  font-family: Open Sans;
  color: var(--forth-clr);
  margin-bottom: 15px;
}
.p2 {
  font-size: 18px;
  font-weight: normal;
  text-align: start;
  font-family: Coustard;
  color: var(--forth-clr);
  margin-bottom: 15px;
}
.p3 {
  font-size: 16px;
  text-align: start;
  font-family: Open Sans;
  color: var(--forth-clr);
  margin-bottom: 15px;
}
.trending-btn {
  display: flex;
  color: var(--third-clr);
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: Open Sans;
  transition: transform 0.3s ease;
}
.trending-btn:hover {
  transform: translateY(-5px);
}
.trending-btn > img {
  max-width: 16px;
  min-height: 16px;
  object-fit: contain;
}

/* Featured Slider Section */
.featured-slider-section h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
  text-align: center;
}
h2 > span {
  color: var(--third-clr);
}
.featured-slider-section {
  background-color: var(--secondary-clr);
  padding: 40px 0;
}
.featured-slider-section > div {
  text-align: center;
}
.swiper {
  width: 90%;
  padding: 40px 0;
}
.swiper-slide {
  border-radius: 10px;
  padding: 30px;
  transition: 0.3s;
  text-align: start;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.swiper-slide h4 {
  margin-top: 10px;
  font-size: 18px;
  font-family: Coustard;
  font-weight: normal;
  color: var(--forth-clr);
}
.swiper-slide p {
  font-size: 14px;
  color: var(--forth-clr);
  font-family: Open Sans;
}
.custom-navigation {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.custom-navigation button {
  color: var(--third-clr);
  border: none;
  background-color: transparent;
  cursor: pointer;
  pointer-events: all;
  font-size: 15px;
}
.custom-navigation button:hover {
  background-color: var(--third-clr);
}

/* Our Event Slider */
.our-slider-section h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
  text-align: center;
}
h2 > span {
  color: var(--third-clr);
}
.our-slider-section > div > p {
  font-size: 16px;
  color: var(--forth-clr);
  margin-bottom: 10px;
  font-family: Open Sans;
  text-align: center;
}
.our-slider-section {
  padding: 40px 0;
}
.our-slider-section > div div {
  text-align: center;
  margin-bottom: 5px;
}
.col {
  width: 100%;
}
.our-slider-section .swiper {
  width: 100%;
  height: 100%;
}
.main-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trending-box {
  max-width: 340px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background-color: var(--forth-clr) !important;
  color: var(--primary-clr);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 1;
  border-radius: 0 !important;
  transition: background-color 0.3s, color 0.3s;
}
.swiper-pagination-bullet-active {
  background-color: var(--third-clr) !important;
  color: var(--forth-clr);
}

/* Flote Box Section */
.flote-section {
  display: flex;
  justify-content: center;
}
.subscribe-section {
  background-color: var(--secondary-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px 0 40px;
  border-radius: 10px;
  width: 1200px;
  height: 385px;
  margin-bottom: 60px;
}
.flote-main {
  display: flex;
}
.subscribe-text {
  padding-bottom: 60px;
}
.subscribe-text > h2 {
  color: var(--forth-clr);
  font-size: 45px;
  font-family: Coustard;
  font-weight: normal;
}
.highlight {
  color: var(--third-clr);
}
.subscribe-text > p {
  font-size: 16px;
  color: var(--forth-clr);
  margin: 20px 0;
  font-family: Open Sans;
}
.email-form {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border: 1px solid gray;
}
.email-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  width: 250px;
  background-color: transparent;
  color: var(--forth-clr);
}
.email-form .header-btn {
  padding: 10px 20px;
  background-color: #ba3e3e;
  color: var(--forth-clr);
  border-right: 2px solid var(--forth-clr);
  border-bottom: 2px solid var(--forth-clr);
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background-color 0.6s ease-in-out;
}
.footer-icon > img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.subscribe-image {
  max-width: 530px;
}
.subscribe-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.subscribe-plant {
  max-width: 130px;
}
.subscribe-plant > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.small-flote-section {
  display: none;
}

/* Footer Section */
.col-4 {
  width: 25%;
}
.footer-logo {
  max-width: 75px;
}
.footer-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-1st > h4 {
  font-size: 16px;
  color: var(--third-clr);
  margin-bottom: 20px;
  font-family: Coustard;
  font-weight: normal;
}
.footer-1st > p {
  color: var(--forth-clr);
  margin-bottom: 40px;
  font-size: 16px;
  font-family: Open Sans;
}
.footer-icon {
  border-radius: 50%;
  background-color: #ba3e3e;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icon > img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--third-clr);
  font-family: Coustard;
  font-weight: normal;
}
.footer-section ul > li {
  margin-bottom: 10px;
  font-size: 16px;
}
ul > li > a {
  color: var(--forth-clr);
  font-family: Open Sans;
  position: relative;
}
ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--third-clr);
  transition: width 0.3s ease;
}
ul > li > a:hover::after {
  width: 100%;
}
.footer-section > p {
  font-size: 16px;
  color: var(--forth-clr);
  text-align: center;
  font-family: Open Sans;
  margin-bottom: 10px;
}
.footer-section > hr {
  margin-top: 50px;
  margin-bottom: 10px;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: whitesmoke;
  color: black;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 15px 0 15px 0;
  display: none;
  transition: background-color 0.3s ease;
}
#scrollToTopBtn:hover {
  background-color: var(--third-clr);
}
@media screen and (max-width: 1200px) {
  /*  Event Flote Section */
  .event-subscribe-section {
    max-width: 1000px;
  }

  /* Flote Box Section  */
  .subscribe-section {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1135px) {
  /* Header Section */
  .big-scr {
    display: flex;
    align-items: center;
    color: var(--forth-clr);
    margin-left: auto;
    gap: 20px;
  }
  .fa-xmark {
    color: var(--forth-clr);
  }
  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    z-index: 10;
  }
  .nav-right.active {
    right: 0;
    animation: dropdown 1 500ms forwards linear;
  }
  @keyframes dropdown {
    from {
      transform: translateY(-30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .nav-right ul {
    flex-direction: column;
    width: 100%;
  }
  .close-icon {
    display: block;
  }
  .small-scr {
    display: none;
  }
  .nav-right > ul > li {
    margin-bottom: 30px;
  }
  .dropdown {
    padding: 10px;
  }
  .dropdown-content {
    z-index: 20;
    text-align: center;
  }
  nav {
    gap: 150px;
  }
  .nav-btn {
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  /*  Event Flote Section */
  .event-subscribe-section {
    max-width: 800px;
  }
  /*  Event Flote Section  */
  .event-subscribe-image {
    max-width: 430px;
  }
  .event-subscribe-text > h2 {
    font-size: 35px;
  }

  /* Category Section */
  .category-section > div > div {
    row-gap: 20px;
  }
  .col-3 {
    width: 50%;
  }
  .category-card {
    margin: 0 auto;
  }

  /* Featured Section */
  .col-2 {
    width: 100%;
  }
  .feature-img {
    margin: 0 auto;
  }
  .feature-section > div > div {
    row-gap: 20px;
  }
  .feature-text {
    text-align: center;
  }
  .feature-box {
    display: flex;
    justify-content: center;
  }

  /* Trending Section  */
  .trending-section > div > div {
    row-gap: 20px;
  }

  /* Flote Box Section  */
  .subscribe-image {
    max-width: 430px;
  }
  .subscribe-plant {
    max-width: 100px;
  }
  .subscribe-section {
    max-width: 800px;
  }
  .subscribe-text > h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  /* Event Flote Section */
  .event-flote-section {
    display: none;
  }

  /* Small Event Flote Section  */
  .small-event-flote-section {
    display: block;
    padding: 40px 0;
    margin: 40px 0;
    background-color: var(--secondary-clr);
  }
  .small-event-flote-section .event-subscribe-text {
    padding-left: 0;
  }

  /* Category Section */
  .category-section {
    padding: 40px 0;
  }

  /* Featured Section  */
  .feature-section {
    padding: 40px 0;
  }

  /* Trending Section */
  .trending-section {
    padding: 40px 0;
  }
  .trending-box {
    margin: 0 auto;
  }

  /* Flote Box Section */
  .flote-section {
    display: none;
  }

  /* Small Flote Section */
  .small-flote-section {
    display: block;
    background-color: var(--secondary-clr);
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .small-flote-section .subscribe-text {
    padding-bottom: 0;
  }

  /* Footer Section */
  .col-4 {
    width: 50%;
  }
  .footer-section > div > div {
    row-gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  /* Header Above Section */
  .above-section {
    font-size: 12px;
  }

  /* Header Section */
  .hamburger {
    font-size: 1.6rem;
  }
  .big-scr {
    gap: 10px;
  }
  nav {
    gap: 50px;
  }
  .nav-logo {
    max-width: 80px;
    min-height: 50px;
  }
  .header-btn {
    padding: 10px;
    font-size: 12px;
  }
  .nav-right > ul > li > a {
    font-size: 14px;
  }
  .dropdown-content a {
    font-size: 12px;
  }
  .dropdown {
    font-size: 13px;
  }
  .nav-right > ul > li {
    margin-bottom: 20px;
  }
    .nav-right{
    width: 100vw;
  }
  .dropdown ul > li {
    margin-bottom: 0;
  }

  /* Event Flote Section */
  .subscribe-text {
    padding-left: 0;
  }

  /* Small Event Flote Section  */
  .small-event-flote-section {
    display: block;
    padding: 20px 0;
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .event-subscribe-text > h2 {
    font-size: 25px;
  }
  .event-subscribe-text > p {
    font-size: 12px;
    margin: 10px 0;
    max-width: 250px;
  }
  .email-form button {
    padding: 10px 12px;
    font-size: 12px;
  }
  .small-event-flote-section .header-btn {
    padding: 11px 12px;
    font-size: 12px;
  }

  /* Category Section */
  .category-section h2 {
    font-size: 25px;
  }
  .category-section {
    padding: 20px 0;
  }
  .category-section > div > div {
    row-gap: 20px;
  }
  .col-3 {
    width: 100%;
  }
  .category-title {
    font-size: 18px;
  }
  .category-text {
    font-size: 12px;
  }
  .category-card {
    width: 200px;
    padding: 10px 12px;
  }
  .category-image {
    max-width: 100px;
  }

  /* Featured Section  */
  .feature-section {
    padding: 20px 0;
  }
  .feature-img {
    max-width: 350px;
  }
  .feature-text h2 {
    font-size: 25px;
  }
  .feature-text > p {
    font-size: 12px;
    margin: 10px 0;
  }
  .yellow {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .gray {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .red {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .feature-box {
    gap: 10px;
    margin-bottom: 10px;
  }
  .yellow + p {
    font-size: 12px;
    padding-top: 10px;
  }
  .gray + p {
    font-size: 12px;
    padding-top: 10px;
  }
  .red + p {
    font-size: 12px;
    padding-top: 10px;
  }

  .header-btn > a {
    padding: 10px 12px;
    font-size: 12px;
  }

  /* Trending Section  */
  .trending-section > div > div {
    row-gap: 10px;
  }
  .col-3 {
    width: 100%;
  }
  .trending-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p1 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .p2 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .p3 {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-section h2 {
    font-size: 25px;
  }
  .trending-section > div > p {
    font-size: 14px;
  }
  .trending-section {
    padding: 20px 0;
  }
  .trending-btn {
    font-size: 12px;
  }
  .trending-btn > img {
    max-width: 12px;
    min-height: 12px;
    object-fit: contain;
  }

  /* Featured Slider Section */
  .featured-slider-section {
    padding: 20px 0;
  }
  .featured-slider-section h2 {
    font-size: 25px;
  }
  .swiper-slide h3 {
    font-size: 14px;
  }
  .swiper-slide p {
    font-size: 12px;
  }
  .swiper-slide {
    padding: 25px;
  }
  .swiper-slide h4 {
    font-size: 16px;
    text-align: center;
  }
  .swiper-slide p {
    font-size: 12px;
    text-align: center;
  }

  /* Our Event Slider */
  .our-slider-section {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .our-slider-section h2 {
    font-size: 25px;
  }
  .our-slider-section > div > p {
    font-size: 12px;
  }

  /* Small Flote Section */
  .small-flote-section {
    display: block;
    background-color: var(--secondary-clr);
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .subscribe-text > h2 {
    font-size: 25px;
  }
  .subscribe-text > p {
    font-size: 12px;
    margin: 10px 0;
  }
  .small-flote-section .header-btn {
    padding: 11px 12px;
    font-size: 12px;
  }

  /* Footer Section */
  .footer-icon {
    padding: 6px;
  }
  .footer-icon> img {
    width: 12px;
    height: 12px;
    object-fit: contain;
  }
  .footer-icons {
    gap: 10px;
  }
  .footer-section > div > div {
    row-gap: 10px;
  }
  .footer-section > hr {
    margin-top: 20px;
  }
  .footer-section h4 {
    font-size: 12px;
  }
  .footer-section ul > li {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .footer-section > p {
    font-size: 12px;
  }
  .footer-1st > h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-1st > p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
