@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

:root {
  --purple: #a800ff;
  --yellow: #ffa800;
  --pink: rgb(255, 62, 229);
  --dark-bg: #0b0c2a;
}

a {
  text-decoration: none !important;
}

li {
  list-style-type: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, sans-serif !important;
  font-weight: bold;
}

p,
a,
li,
button,
body {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: normal;
}

.heading1 {
  font-size: 2.5rem;
}

.heading2 {
  font-size: 2rem;
}

.heading3 {
  font-size: 1.75rem;
}

.heading4 {
  font-size: 1.5rem;
}

.heading5 {
  font-size: 1.25rem;
}

.heading6 {
  font-size: 1rem;
}

.pad {
  padding: 90px 0;
}

.wrdbrk {
  white-space: pre;
}

.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}

/* custom css starts */
/* Header Section Styles */
/* Header Topbar styles */
.header-topbar {
  background-color: rgb(255, 216, 62);
  color: #000000;
  padding: 8px 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  z-index: 1031;
  font-size: 0.85rem;
}

.header-topbar.hidden {
  transform: translateY(-100%);
}

/* Header Main Section styles */
.header-section {
  width: 100%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--dark-bg) 100%);
  color: white;
  padding: 0;
  transition: top 0.3s ease;
  overflow: hidden;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-section.topbar-hidden {
  top: 0;
}

.header-section.with-topbar {
  top: 37px;
}

/* Logo and Contact Row */
.header-section .logo-contact {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

/* Header Logo Area */
.header-section .header-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  position: relative;
}

.header-section .header-logo-area::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      var(--yellow),
      transparent);
}

.header-section .header-logo-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      var(--yellow),
      transparent);
}

.header-section .navbar-brand {
  padding: 0;
  margin: 0;
}

.header-section .logo-large {
  max-width: 100%;
  height: auto;
  max-height: 65px;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.header-section .logo-large:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* NEW Contact Area Design */
.header-section .header-contact-area {
  padding: 10px 15px;
}

.header-section .contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.header-section .contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 140px;
}

.header-section .contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.header-section .contact-card:hover::before {
  left: 100%;
}

.header-section .contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.header-section .contact-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.header-section .contact-card:hover .contact-icon {
  background: var(--pink);
  color: white;
  transform: rotate(10deg);
}

.header-section .contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-section .contact-label {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-section .contact-value {
  font-size: 13px;
  color: white;
  font-weight: 500;
  line-height: 1.2;
}

/* WhatsApp CTA Special Styling */
.header-section .whatsapp-cta {
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-color: #25d366;
  padding: 10px 15px;
  min-width: auto;
}

.header-section .whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.header-section .whatsapp-link i {
  font-size: 18px;
}

.header-section .whatsapp-cta:hover {
  background: linear-gradient(45deg, #128c7e, #25d366);
  transform: translateY(-3px);
}

/* NEW Navigation Design */
.header-section .nav-row {
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-section .custom-navbar {
  background-color: transparent;
  padding: 12px 0;
}

.header-section .custom-nav {
  gap: 5px;
}

.header-section .nav-item {
  position: relative;
}

.header-section .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  color: white;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
}

.header-section .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffd946, rgb(248, 210, 60));
  transition: left 0.4s ease;
  z-index: -1;
}

.header-section .nav-link:hover::before,
.header-section .nav-link.active::before {
  left: 0;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
  color: var(--dark-bg);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
  transform: translateY(-2px);
  font-weight: 600;
}

.header-section .nav-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.header-section .nav-link:hover .nav-icon,
.header-section .nav-link.active .nav-icon {
  transform: scale(1.1);
}

.header-section .nav-text {
  font-size: 14px;
}

/* Custom Mobile Toggle */
.header-section .custom-toggler {
  border: 2px solid var(--yellow);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-section .custom-toggler:hover {
  background: var(--yellow);
}

.header-section .toggler-icon {
  width: 25px;
  height: 20px;
  position: relative;
  display: block;
}

.header-section .toggler-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-section .toggler-icon span:nth-child(1) {
  top: 0;
}

.header-section .toggler-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-section .toggler-icon span:nth-child(3) {
  bottom: 0;
}

.header-section .custom-toggler:hover .toggler-icon span {
  background: var(--dark-bg);
}

/* CTA Button */
.header-section .navbar-cta {
  margin-left: 20px;
}

.header-section .cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.header-section .cta-button:hover {
  background: linear-gradient(45deg, var(--purple), var(--pink));
  border-color: var(--yellow);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.header-section .cta-button i {
  font-size: 16px;
}

/* index page */
section.home-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

section.home-carousel .home-carousel-swiper {
  width: 100%;
  height: 100%;
}

section.home-carousel .swiper-wrapper {
  height: 100%;
}

section.home-carousel .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.home-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* hero section */
section.hero-content {
  background: url("../images/white-bg.webp") center center / cover no-repeat;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  color: #000000;
}

section.hero-content .hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: 1;
}

section.hero-content .container {
  position: relative;
  z-index: 2;
}

section.hero-content .hero-content-badge {
  background: var(--yellow);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

section.hero-content .hero-content-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
}

/* our products section */
/* .products-content .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.products-content .product-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.products-content .product-card:hover {
  transform: scale(1.03);
}

.products-content .product-card:hover img {
  transform: scale(1.1);
}

.products-content .product-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 1rem;
}

.products-content .product-card:hover .overlay {
  opacity: 1;
}

.products-content .overlay h5 {
  font-size: 1.25rem;
  font-family: "Arial", sans-serif;
  margin-bottom: 0.5rem;
  color: var(--yellow);
}

.products-content .overlay p {
  font-size: 0.95rem;
  font-family: "Helvetica", sans-serif;
  margin-bottom: 1rem;
  color: var(--pink);
}

.products-content .overlay a.btn {
  background-color: var(--purple);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
  font-family: "Helvetica", sans-serif;
  font-size: 0.9rem;
}

.products-content .overlay a.btn:hover {
  background-color: #8000cc;
} */
.service-card {
  position: relative;
}

.service-card__content {
  position: relative;
  padding: 43px 36px 0;
}

.service-card__content__overlay {
  /* position: relative; */
  width: 100%;
  height: calc(100% + 20px);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 0px 0px 10px 10px;
}

.service-card__content__overlay::before {
  content: "";
  width: 100%;
  height: calc(100% + 20px);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0px 0px 10px 10px;
}

.service-card__content__overlay::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E33E36;
  border-radius: 0px 0px 10px 10px;
  transition: all 500ms ease;
}

.service-card__content__inner {
  position: relative;
  text-align: center;
  z-index: 2;
  top: -43px;
}

.service-card__shape {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 500ms ease;
}

.service-card__image {
  position: relative;
  z-index: 1;
}

.service-card__image img {
  width: 100%;
  display: block;
}

.service-card__image__overlay {
  width: calc(100% - 124px);
  height: calc(100% - 124px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  background-color: RGBA(225, 61, 53, 0.5);
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.service-card__image__icon {
  display: inline-flex;
  font-size: 71px;
  color: #fff;
}

.service-card:hover .service-card__content__overlay::after {
  height: calc(100% + 20px);
}

.service-card:hover .service-card__title {
  color: #fff;
}

.service-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-weight: bold;
}

.service-card__title a:hover {
  background-size: 100% 1px;
}

.service-card:hover .service-card__text {
  color: #fff;
}

.service-card__btn-box {
  margin: 0 auto;
  padding: 8px;
  display: flex;
  justify-content: center;
  width: 74px;
  height: 75px;
  background-color: #232428;
  border-radius: 0px 0px 100px 100px;
}

.service-card__btn {
  width: 45px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/service-card-btn-shape-1-1.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 14px;
  color: #E13D35;
  transition: all 500ms ease;
}


.service-card:hover .service-card__image__overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.brands-content .brands-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #ff1919;
}

.brands-content .brands-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--purple);
  border-radius: 3px;
}

/* Make all slides initially invisible with opacity and translate */
.brands-content .brand-slide {
  width: 100%;
  max-width: 20em;
  margin: 0 auto;
  height: 100%;
}

.brands-content .swiper-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

/* When slide comes into viewport, apply the class to animate it */
.brands-content .swiper-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* index parallax */
.parallax-section .parallax1 {
  background: url("../images/index-parallax.webp") no-repeat center center fixed;
  background-size: cover;
  background-color: #000000b7;
  background-blend-mode: overlay;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

/* Scoped Parallax Text */
.parallax-section .parallax-text {
  font-family: "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  font-style: italic;
}

.parallax-section .parallax-text i {
  color: #ffa800;
  /* You can adjust this to match your theme */
}

.parallax-section .parallax-text::before,
.parallax-section .parallax-text::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #ffa800;
  /* Color of the quote symbols */
  margin: 0 10px;
  vertical-align: middle;
}

.parallax-section .wow.zoomIn {
  animation: zoomIn 1s ease-in-out;
}

.parallax-section p {
  font-size: 45px;
}

/* specialities section */
.specialities-content {
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow-x: hidden !important;
}

.specialities-content .specialities-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: #333;
}

.specialities-content .specialities-heading::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 60px;
  background: var(--purple);
  bottom: 0;
  border-radius: 2px;
}

.specialities-content .specialities-heading::before {
  left: calc(50% - 70px);
}

.specialities-content .specialities-heading::after {
  right: calc(50% - 70px);
}

.specialities-content .card1 {
  position: relative;
  border-radius: 0px 75px;
  padding: 25px 10px;
  background-color: #fdfdfd;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.specialities-content .card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--pink);
  opacity: 0.5;
  transform: skewX(-20deg);
  transition: 0.5s;
  z-index: 0;
}

.specialities-content .card1:hover::before {
  left: 100%;
}

.specialities-content .card1 h3 {
  color: var(--purple);
}

.specialities-content .card1:hover h3 {
  color: var(--pink);
}

.specialities-content .card1:hover h3 {
  color: var(--pink);
}

.specialities-content .card1 .card-body {
  position: relative;
  z-index: 2;
}

.specialities-content .icon-box img {
  height: 70px;
  object-fit: contain;
}

.specialities-content .btn {
  border-radius: 50px;
  font-weight: 500;
  padding: 8px 24px;
  text-transform: uppercase;
}

/* index cta */
/* CTA Section Scoped */
.index-cta-section {
  /* position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--purple), var(--yellow));
  color: #fff;
  overflow: hidden;
  text-align: center; */
  background-image: url("../images/fireworks.webp");
  padding: 60px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.index-cta-section::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Optional Sparkle Glow using ::before and ::after */
.index-cta-section::before,
.index-cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 70%);
  z-index: 0;
}

.index-cta-section::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.index-cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.index-cta-section .container {
  position: relative;
  z-index: 1;
}

/* Heading */
.index-cta-section .cta-heading {
  font-size: 2.5rem;
  font-family: "Arial", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.index-cta-section .cta-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--pink);
  border-radius: 2px;
}

/* Subheading */
.index-cta-section .cta-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: "Helvetica", sans-serif;
  color: #fff;
}

/* CTA Button */
.index-cta-section .cta-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--pink);
  color: #000;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.index-cta-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  z-index: 0;
}

.index-cta-section .cta-button:hover::before {
  left: 100%;
}

.index-cta-section .cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* index last */
/* Seasonal Packages Section Styles - Properly Scoped */

/* Seasonal Section Styles */
/* Base Section Styles */
.seasonal-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Card Sizing and Transitions */
.seasonal-section {
  --card-height: 500px;
  --transition-speed: 0.4s;
}

/* Section Header Styles */
.seasonal-section .section-header {
  margin-bottom: 3rem;
}

.seasonal-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.seasonal-section .section-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--pink);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.seasonal-section .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Card Base Styles */
.seasonal-section .package-card {
  height: var(--card-height);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.seasonal-section .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Styles */
.seasonal-section .card-image {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.seasonal-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform calc(var(--transition-speed) * 1.5);
}

.seasonal-section .package-card:hover .card-image img {
  transform: scale(1.1);
}

.seasonal-section .package-card:hover .card-body {
  padding: 0.5rem 1.5rem;
  flex: 1;
  overflow-y: auto;
  /* Allow scrolling if content is too long */
  max-height: 60%;
  /* Limit maximum height to prevent overlap */
}

/* Overlay Styles */
.seasonal-section .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(168, 0, 255, 0.8));
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.seasonal-section .package-card:hover .card-overlay {
  opacity: 1;
}

/* Content Styles */
.seasonal-section .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 10;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Before hover - only show header */
.seasonal-section .card-header {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  transition: all var(--transition-speed);
}

.seasonal-section .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: yellow !important;
  transition: color var(--transition-speed);
}

.seasonal-section .card-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Initially hidden body & footer */
.seasonal-section .card-body,
.seasonal-section .card-footer {
  padding: 0 1.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all var(--transition-speed);
}

/* On hover - expand to show full content */
.seasonal-section .package-card:hover .card-content {
  height: 100%;
  background: rgba(168, 0, 255, 0.85);
  display: flex;
  flex-direction: column;
}

.seasonal-section .package-card:hover .card-header {
  background: none;
  padding-top: 2rem;
}

.seasonal-section .package-card:hover .card-title {
  color: var(--pink);
}

.seasonal-section .package-card:hover .card-body,
.seasonal-section .package-card:hover .card-footer {
  max-height: 1000px;
  opacity: 1;
  overflow: visible;
}

.seasonal-section .package-card:hover .card-body {
  padding: 0.5rem 1.5rem;
  flex: 1;
}

.seasonal-section .package-card:hover .card-footer {
  padding: 1.5rem;
  margin-top: auto;
}

/* Features List */
.seasonal-section .package-features {
  list-style: none;
  padding-left: 0.5rem;
  margin: 0.8rem 0 1.2rem 0;
}

.seasonal-section .package-features li {
  margin-bottom: 0.6rem;
  /* Increase spacing between list items */
  line-height: 1.4;
  /* Better line height for readability */
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.seasonal-section .package-features li:before {
  content: "✨";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* Buttons */
.seasonal-section .btn-view {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: var(--pink);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--pink);
}

.seasonal-section .btn-view:hover {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

.seasonal-section .btn-contact {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--purple);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--purple);
}

.seasonal-section .btn-contact:hover {
  background-color: transparent;
  color: var(--purple);
  text-decoration: none;
}

/* about page */
/* About Intro Section Styles - All selectors properly scoped */
.about-intro {
  background-color: #f8f9fa;
  position: relative;
}

.about-intro .content {
  padding: 20px 0;
}

.about-intro .title {
  color: #212529;
  font-weight: 700;
  font-size: 2.5rem;
}

.about-intro .title::after {
  content: "";
  position: relative;
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), #f39c12);
}

.about-intro .subtitle {
  color: #495057;
  font-size: 1.25rem;
  font-weight: 500;
}

.about-intro .text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.about-intro .cta {
  background-color: #e74c3c;
  border-color: #e74c3c;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-intro .cta:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.about-intro .image-container {
  position: relative;
  padding: 15px;
}

.about-intro .image {
  width: 100%;
  border: 5px solid #fff;
}

.about-intro .experience {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(231, 76, 60, 0.9);
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 120px;
}

.about-intro .experience-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-intro .experience-text {
  display: block;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* CTA Button */
.about-intro .cta-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--pink);
  color: #000;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.about-intro .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  z-index: 0;
}

.about-intro .cta-button:hover::before {
  left: 100%;
}

.about-intro .cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Parallax Section */
.about-parallax {
  background-image: url("../images/about-parallax.webp");
  background-color: #00000088;
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 39px;
}

.hero-content-features {
  text-align: center;
}

.about-parallax .about-parallax-container {
  padding: 40px 0;
}

.about-parallax .about-parallax-subtitle {
  font-family: Arial, sans-serif;
  font-size: 26px;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.about-parallax .about-parallax-title {
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.about-parallax .about-parallax-cta {
  margin-top: 3rem;
}

.about-parallax .about-parallax-btn {
  font-family: Arial, sans-serif;
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-parallax .about-parallax-btn:hover {
  background-color: #e64a19;
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-parallax .about-parallax-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-parallax .cloud-divider {
  position: absolute;
  top: 220px;
}

/* Counter Section Styles */
.counter-section {
  position: relative;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.counter-section .container {
  position: relative;
  z-index: 2;
}

/* Left Content Styles */
.counter-section .counter-section-subtitle {
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: #ff5722;
  margin-bottom: 15px;
}

.counter-section .counter-section-title {
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.counter-section .counter-section-text {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.counter-section .counter-section-btn {
  font-family: Arial, sans-serif;
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.counter-section .counter-section-btn:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-three__image__inner {
  position: relative;
  display: table;
}

.about-three__image__one {
  position: relative;
  z-index: 1;
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 267.000000"><g transform="translate(0.000000,267.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2670 5319 c-1041 -161 -1907 -1039 -2000 -2027 -6 -67 -16 -160 -22 -206 l-10 -85 -314 -5 -314 -6 68 -37 c45 -24 88 -33 128 -25 68 14 112 -27 113 -106 1 -27 26 -81 56 -120 50 -66 55 -87 55 -249 0 -158 5 -180 45 -213 40 -33 41 -38 11 -63 -34 -29 -125 -210 -126 -252 0 -33 138 -101 238 -117 75 -12 82 -18 82 -74 0 -47 24 -82 109 -162 109 -102 151 -174 151 -260 0 -25 18 -62 40 -82 55 -50 50 -103 -18 -171 -54 -54 -96 -152 -74 -173 21 -22 155 41 185 86 38 58 93 62 144 11 21 -21 82 -44 135 -52 85 -13 113 -30 211 -133 89 -92 127 -118 173 -118 53 0 60 -7 72 -82 16 -100 84 -238 117 -238 42 1 223 92 252 126 25 30 30 29 63 -11 33 -40 54 -45 215 -45 163 0 184 -5 250 -55 40 -30 92 -55 115 -55 82 0 124 -38 110 -99 -7 -33 2 -90 22 -141 l35 -86 36 45 c24 30 37 78 37 139 0 110 25 142 111 142 37 0 77 16 98 39 54 59 158 86 273 71 109 -15 207 13 227 65 10 27 18 25 57 -11 47 -44 206 -123 250 -124 34 0 102 155 109 247 5 68 10 73 69 73 60 0 206 115 206 161 0 25 168 99 223 99 28 0 67 18 87 40 50 55 97 50 166 -19 56 -56 154 -98 176 -76 19 19 -49 153 -91 179 -49 31 -54 109 -9 159 18 19 41 79 51 131 15 81 36 114 139 213 105 100 121 124 114 175 -8 53 -4 58 52 58 113 1 277 92 261 145 -31 98 -47 130 -99 191 l-54 64 47 38 c43 36 47 51 42 207 -5 160 -2 173 55 252 33 45 60 103 60 128 1 80 31 102 138 104 68 1 112 13 136 36 33 33 20 35 -278 35 l-312 0 -13 145 c-125 1378 -1360 2379 -2681 2174z"/> <path d="M207 2869 c-15 -39 3 -57 42 -42 17 7 25 25 19 42 -16 40 -46 40 -61 0z"/> <path d="M5732 2869 c-6 -17 2 -35 19 -42 39 -15 57 3 42 42 -15 40 -45 40 -61 0z"/> <path d="M911 1161 c-18 -28 4 -61 42 -61 17 0 27 14 23 33 -7 41 -47 57 -65 28z"/> <path d="M5034 1167 c-28 -27 -13 -70 21 -63 19 4 35 19 35 35 0 31 -35 49 -56 28z"/> <path d="M1109 958 c-7 -12 -4 -31 7 -42 25 -25 64 -4 64 35 0 34 -51 39 -71 7z"/> <path d="M4823 947 c9 -44 67 -50 67 -7 0 16 -17 33 -37 37 -27 5 -35 -3 -30 -30z"/> <path d="M2829 258 c-21 -33 26 -71 53 -44 23 23 9 66 -22 66 -10 0 -24 -10 -31 -22z"/> <path d="M3107 249 c-15 -39 3 -57 42 -42 40 15 40 45 0 61 -17 6 -35 -2 -42 -19z"/> </g> </svg>');
  mask-repeat: repeat;
  mask-position-x: 0%;
  mask-position-y: 0%;
  mask-size: auto;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: auto;
}

.about-three__image__one img {
  max-width: 100%;
  height: auto;
}

/* Counter Box Styles */
.counter-section .counter-box {
  position: relative;
  padding: 14px 8px 39px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #006052, #12c2b1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  will-change: clip-path;
  margin-top: 26px;
}

/* Smooth Clip Path Animations for Each Counter Box */
.counter-section .counter-box-1 {
  animation: clipPathAnimate1 6s infinite alternate-reverse linear;
}

.counter-section .counter-box-2 {
  animation: clipPathAnimate1 6s infinite alternate-reverse linear;
}

.counter-section .counter-box-3 {
  animation: clipPathAnimate1 6s infinite alternate-reverse linear;
}

.counter-section .counter-box-4 {
  animation: clipPathAnimate1 6s infinite alternate-reverse linear;
}

.counter-section .counter-box:hover {
  transform: translateY(-10px);
}

.counter-section .counter-icon {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.counter-section .num {
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.counter-section .counter-label {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .counter-section {
    padding: 50px 0;
  }

  .counter-section .counter-section-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .counter-section .counter-section-subtitle {
    font-size: 18px;
  }

  .counter-section .counter-section-title {
    font-size: 30px;
  }

  .counter-section .counter-box {
    margin-bottom: 20px;
    padding: 25px 15px;
  }

  .counter-section .num {
    font-size: 36px;
  }

  .parallax-section p {
    font-size: 28px !important;
  }

  .footerbg {
    padding: 0 16px !important;
  }

  .pd15 {
    padding: 0px 15px !important;
  }

  .header-section .header-contact-area {
    display: none;
  }

  .header-section .custom-toggler {
    text-align: center !important;
    margin: 0px auto !important;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .counter-section .counter-section-content {
    margin-bottom: 50px;
  }

  .header-section .custom-toggler {
    text-align: center !important;
    margin: 0px auto !important;
  }

  .counter-section .counter-section-title {
    font-size: 34px;
  }

  .counter-section .counter-section-counters {
    padding-left: 20px;
  }

  .about-intro .experience {
    position: absolute;
    bottom: 103px;
    right: -259px;
    width: 170px;
  }

  .about-parallax {
    padding-bottom: 0px !important;
  }

}

/* safety page */
.brdr {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 20px;
  border-bottom: 1px #cac9c9 solid;
  color: #ec2424;
}

.brdr::before {
  position: absolute;
  bottom: -3px;
  left: 20px;
  width: 35px;
  height: 5px;
  content: "";
  display: inline-block;
  background-color: #ec2424;
}

.brdr::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  content: "";
  display: inline-block;
  background-color: #ec2424;
}

.box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  height: 150px;
  margin-bottom: 20px;
}

.dont-icon {
  margin-right: 1rem;
}

.clr-grn {
  color: #559926;
}

.clr-red {
  color: #ec2424;
}

.do i {
  font-size: 40px;
  background: #e9edf6;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}

/* safety banner */

/* contact page */
.four-card-container .card {
  border: none;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #1063ac, #048c80) !important;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.four-card-container .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.four-card-container .card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--pink), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.four-card-container .card:hover::before {
  opacity: 0.07;
}

.four-card-container .card-body {
  position: relative;
  z-index: 1;
  padding: 25px;
}

.four-card-container .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: yellow;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.four-card-container .card-title i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* .four-card-container .card:hover .card-title i {
  transform: scale(1.2);
  color: var(--pink);
} */

.four-card-container .card-text {
  font-size: 0.95rem;
  color: #ddd;
  transition: color 0.3s ease;
}

.four-card-container .card:hover .card-text {
  color: #fff;
}

.map-section iframe {
  display: block;
  margin-bottom: 0;
}

.map-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* products page */
/* footer code */
/* Footer Base */
.footer-svg svg {
  rotate: 180deg;
  bottom: -3px;
  position: relative;
}

.footerbg {
  background: #fdc300;
}

.text1 {
  position: relative;
  padding: 5px 0 0 30px;
  margin-top: -47px;
}

.tagcloud a {
  background: red;
  padding: 6px 10px;
  float: left;
  font-style: italic;
  font-size: 12px;
  margin: 0 5px 5px 0;
  color: #fff !important;
  border-radius: 4px;
}

.clr1 {
  color: red;
}

.bg12 {
  background-color: #FF0054;
}

.clr5 {
  color: yellow !important;
}

/* .fireworks-footer {
  background-color: #222;
  color: #ccc;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fireworks-footer .footer-heading {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.fireworks-footer .footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--purple);
  margin-top: 0.3rem;
  transition: width 0.3s ease;
}
.fireworks-footer .footer-heading:hover::after {
  width: 80px;
} */

/* About Paragraph */
.fireworks-footer .footer-about {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* Contact Info and Store Hours */
.fireworks-footer .footer-contact li,
.fireworks-footer .footer-hours li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.fireworks-footer .footer-contact i,
.fireworks-footer .footer-hours i {
  color: var(--purple);
  margin-right: 0.5rem;
}

/* Quick Links */
.fireworks-footer .footer-links li {
  margin-bottom: 0.5rem;
}

.fireworks-footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.fireworks-footer .footer-links a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--purple);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.fireworks-footer .footer-links a:hover {
  color: var(--purple);
}

.fireworks-footer .footer-links a:hover::after {
  width: 100%;
}

/* Bottom Section */
.fireworks-footer .developer-link {
  display: inline-block;
  background-color: var(--yellow);
  /* blue-600 */
  color: #000000;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.fireworks-footer .developer-link:hover {
  background-color: var(--yellow);
  /* blue-700 */
  transform: scale(1.05);
}

.fireworks-footer .developer-link i {
  margin-right: 5px;
}

.fireworks-footer img {
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.fireworks-footer img:hover {
  transform: scale(1.05);
}

/* utility classes */
.bg-black {
  background-color: var(--dark-bg);
}

.bg-purple {
  background-color: var(--purple) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.text-pink {
  color: var(--pink) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.custom-badge {
  border-radius: 1rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  background-color: var(--purple);
  color: #fff;
}

.mix-font {
  background: linear-gradient(97.34deg,
      var(--pink) 25.43%,
      var(--purple) 25.44%,
      var(--pink) 25.44%,
      #fcc326 55.55%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-btn {
  position: relative;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark-bg);
  background-color: var(--pink);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.theme-btn::before,
.theme-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: left 0.5s ease;
  background: linear-gradient(120deg, var(--purple), var(--yellow));
}

.theme-btn::after {
  left: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.6s ease-in-out;
}

.theme-btn:hover::before {
  left: 0;
}

.theme-btn:hover::after {
  left: 0;
}

.theme-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--purple);
  background-color: var(--yellow);
  color: #ffffff;
}

/* custom css ends */
.w0 {
  width: 0%;
}

.fixed {
  position: fixed;
  z-index: 2;
}

.priceicn {
  width: 50px;
}

.priceicn2 {
  width: 120px;
}

.point {
  bottom: 10px;
  left: 10px;
}

.point1 {
  bottom: 70px;
  left: 10px;
}

.point2 {
  bottom: 15px;
  right: 10px;
}

.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flipX {
  0% {
    transform: perspective(600px) rotateX(0deg);
  }

  50% {
    transform: perspective(600px) rotateX(90deg);
  }

  100% {
    transform: perspective(600px) rotateX(0deg);
  }
}

/* Updated Keyframes with More Steps for Smoother Animations */
@keyframes clipPathAnimate1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  }

  20% {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
  }

  40% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
  }

  60% {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 20% 100%, 0 90%);
  }

  80% {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  }
}

@keyframes clipPathAnimate2 {
  0% {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  }

  20% {
    clip-path: polygon(5% 0, 100% 5%, 95% 100%, 0 100%, 0 10%);
  }

  40% {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  }

  60% {
    clip-path: polygon(5% 5%, 95% 0, 100% 95%, 0 100%);
  }

  80% {
    clip-path: polygon(10% 0, 100% 0, 100% 95%, 90% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  }
}

@keyframes clipPathAnimate3 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
  }

  20% {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
  }

  40% {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 85% 100%, 0 100%);
  }

  60% {
    clip-path: polygon(0 0, 100% 10%, 90% 100%, 0 90%);
  }

  80% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
  }
}

@keyframes clipPathAnimate4 {
  0% {
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
  }

  20% {
    clip-path: polygon(10% 0, 100% 5%, 100% 85%, 90% 100%, 0 100%);
  }

  40% {
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  }

  60% {
    clip-path: polygon(0 10%, 90% 0, 100% 10%, 100% 100%, 0 90%);
  }

  80% {
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
  }
}

/* *************************Media Query ******************************  */
/* mobile media query */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }

  .about-parallax {
    padding: 40px 0;
  }

  .about-parallax .cloud-divider {
    display: none;
  }

  .about-parallax .about-parallax-subtitle {
    font-size: 20px;
    text-align: center;
  }

  .about-parallax .about-parallax-title {
    font-size: 32px;
    text-align: center;
  }

  .about-parallax .about-parallax-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .about-parallax .about-parallax-image-container {
    margin-top: 30px;
  }

  /* about intro */
  .about-intro .content {
    text-align: left;
    padding: 20px 15px;
  }

  .about-intro .title {
    font-size: 2rem;
  }

  .about-intro .divider {
    margin: 0 auto;
  }

  .about-intro .image-container {
    margin-top: 30px;
    padding: 0;
  }

  .about-intro .experience {
    bottom: 15px;
    right: 15px;
    padding: 10px;
    width: 90px;
  }

  .about-intro .experience-number {
    font-size: 1.8rem;
  }

  .about-intro .experience-text {
    font-size: 0.75rem;
  }

  /* seasonal section */
  .seasonal-section {
    --card-height: 380px;
    padding: 3rem 0;
  }

  .seasonal-section .section-title {
    font-size: 1.8rem;
  }

  .seasonal-section .section-subtitle {
    font-size: 1rem;
  }

  .seasonal-section .card-title {
    font-size: 1.3rem;
  }

  .seasonal-section .card-subtitle {
    font-size: 0.9rem;
  }

  .seasonal-section .package-card:hover .card-body {
    padding: 0 1.5rem;
  }

  .seasonal-section .package-features {
    margin: 0.7rem 0;
  }

  .seasonal-section .package-features li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .seasonal-section .btn-view,
  .seasonal-section .btn-contact {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .seasonal-section .package-card:hover .card-header {
    padding-top: 1.5rem;
  }

  .seasonal-section .package-card:hover .card-footer {
    padding: 1.5rem;
    margin-top: auto;
    min-height: 70px;
    /* Minimum height for footer area */
    display: flex;
    align-items: center;
  }

  /* header */
  .header-topbar {
    padding: 6px 0;
    font-size: 0.8rem;
  }

  .header-section.with-topbar {
    top: 35px;
  }

  .header-section .logo-contact {
    padding: 10px 0;
  }

  .header-section .header-logo-area {
    padding: 8px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-section .header-logo-area::after {
    display: none;
  }

  .header-section .logo-large {
    max-height: 45px;
  }

  .header-section .header-contact-area {
    padding: 8px 10px;
  }

  .header-section .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .header-section .whatsapp-cta {
    grid-column: 1 / -1;
  }

  .header-section .contact-card {
    padding: 8px;
    min-width: auto;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }

  .header-section .contact-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin: 0 auto;
  }

  .header-section .contact-content {
    align-items: center;
  }

  .header-section .contact-label {
    font-size: 9px;
  }

  .header-section .contact-value {
    font-size: 11px;
  }

  .header-section .custom-navbar {
    padding: 8px 0;
  }

  .header-section .custom-toggler {
    margin: 0 auto;
  }

  .header-section .custom-nav {
    padding-top: 15px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header-section .nav-link {
    padding: 10px 25px !important;
    width: 200px;
    justify-content: center;
    text-align: center;
  }

  .header-section .navbar-cta {
    margin: 15px 0 0 0;
    text-align: center;
  }

  .header-section .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* about counter */
  .counter-section {
    padding: 50px 0;
  }

  .counter-section .counter-section-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .counter-section .counter-section-subtitle {
    font-size: 18px;
  }

  .counter-section .counter-section-title {
    font-size: 30px;
  }

  .counter-section .counter-box {
    margin-bottom: 20px;
    padding: 25px 15px;
  }

  .counter-section .counter-number {
    font-size: 36px;
  }

  /* products page */
  section.home-carousel {
    /* margin-top: 173px;
  }
  section.about-banner {
    margin-top: 135px;
  }
  section.products-banner {
    margin-top: 135px;
  }
  section.safety-banner {
    margin-top: 173px;
  }
  section.contact-banner {
    margin-top: 173px;
  } */
  }

  /* tablet media query */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .pad {
      padding: 40px 0;
    }

    /* about parallax */
    .about-parallax .cloud-divider {
      display: none;
    }

    .about-parallax .about-parallax-subtitle {
      font-size: 24px;
    }

    .about-parallax .about-parallax-title {
      font-size: 36px;
    }

    .about-parallax .about-parallax-image-container {
      margin-top: 40px;
    }

    /* about-intro */
    .about-intro .content {
      padding: 10px 0;
    }

    .about-intro .title {
      font-size: 2.2rem;
    }

    .about-intro .experience {
      bottom: 20px;
      right: 20px;
      padding: 15px;
      width: 100px;
    }

    .about-intro .experience-number {
      font-size: 2rem;
    }

    /* seasonal-section */
    .seasonal-section {
      --card-height: 400px;
    }

    .seasonal-section .section-title {
      font-size: 2.2rem;
    }

    .seasonal-section .section-subtitle {
      font-size: 1.1rem;
    }

    .seasonal-section .card-title {
      font-size: 1.4rem;
    }

    .seasonal-section .package-features li {
      margin-bottom: 0.4rem;
    }

    .seasonal-section .btn-view {
      padding: 0.6rem 1.3rem;
    }

    /* header styles */
    .header-section .logo-contact {
      padding: 12px 0;
    }

    .header-section .header-logo-area::after {
      display: none;
    }

    .header-section .contact-wrapper {
      gap: 8px;
    }

    .header-section .contact-card {
      padding: 6px 8px;
      min-width: 120px;
    }

    .header-section .contact-icon {
      width: 30px;
      height: 30px;
      font-size: 14px;
    }

    .header-section .contact-label {
      font-size: 10px;
    }

    .header-section .contact-value {
      font-size: 12px;
    }

    .header-section .nav-link {
      padding: 8px 12px !important;
      gap: 6px;
    }

    .header-section .nav-text {
      font-size: 13px;
    }

    .header-section .navbar-cta {
      margin-left: 10px;
    }

    .header-section .cta-button {
      padding: 8px 15px;
      font-size: 13px;
    }

    /* about-counter */
    .counter-section .counter-section-content {
      margin-bottom: 50px;
    }

    .counter-section .counter-section-title {
      font-size: 34px;
    }

    .counter-section .counter-section-counters {
      padding-left: 20px;
    }

    /* banner images */
    /* section.home-carousel {
    margin-top: 173px;
  }
  section.about-banner {
    margin-top: 135px;
  }
  section.products-banner {
    margin-top: 135px;
  }
  section.safety-banner {
    margin-top: 173px;
  }
  section.contact-banner {
    margin-top: 173px;
  } */
  }

  #notfound {
    position: relative;
    height: 100vh;
  }

  #notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .notfound {
    max-width: 410px;
    width: 100%;
    text-align: center;
  }

  .oopslogo {
    width: 350px;
  }

  .notfound h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
  }

  .notfound p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 5px;
  }

  .notfound a {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    background: #0046d5;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0px 4px 15px -5px #0046d5;
  }

  @media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
      height: 142px;
    }

    .parallax-section .parallax-text {
      font-size: 1.2rem;
    }
  }

  .time-of-year {
    margin: 100px 75px 10px 75px;
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .time-of-year .tooltip {
    background: #db2a1b;
    border-radius: 3px;
    bottom: -49px;
    font-size: 20px;
    display: block;
    left: -67px;
    padding: 15px;
    pointer-events: none;
    position: absolute;
    width: 320px;
    height: 100px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
  }

  .time-of-year .tooltip::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #db2a1b;
    bottom: 58px;
    content: " ";
    position: absolute;
    left: 0%;
    margin-left: -13px;
    transform: rotate(92deg);
  }

  .time-of-year:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .sticky-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 10px;
    font-weight: bold;
    color: white;
    z-index: 1000;
  }