/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY laundry
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --sonic-silver: hsl(0, 0%, 47%);
  --eerie-black: hsl(210, 11%, 15%);
  --light-gray: hsl(0, 0%, 83%);
  --davys-gray: hsl(0, 0%, 30%);
  --marigold: hsl(200, 77%, 37%);
  --platinum: hsl(0, 0%, 90%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 21%);
  --laundry: #30d9ba;

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 7rem;
  --fs-2: 4.2rem;
  --fs-3: 3.8rem;
  --fs-4: 3.6rem;
  --fs-5: 3.4rem;
  --fs-6: 3.2rem;
  --fs-7: 3rem;
  --fs-8: 2.4rem;
  --fs-9: 2rem;
  --fs-10: 1.8rem;
  --fs-11: 1.4rem;
  --fs-12: 1.2rem;
  
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 100px;

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-20: 20px;
  --radius-15: 15px;
  --radius-10: 10px;

  /**
   * box shadow
   */

  --shadow-1: 0 0 30px 4px hsla(0, 0%, 0%, 0.05);
  --shadow-2: -1px 15px 26px -4px hsla(0, 5%, 61%, 0.15);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(11, 255, 11, 0);
}
a:focus,a:visited,a:active{
  outline: none;
}



li { list-style: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
}

body.loaded {
  overflow-x: hidden;
  overflow-y: visible;
}

body.active { overflow: hidden; }

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: rgb(250, 250, 250); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--jet);
  font-weight: var(--fw-700);
  line-height: 1.2;
}

.h1,
.h2 { font-size: var(--fs-2); }

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

.h4 { font-size: var(--fs-6); }

.h5 { font-size: var(--fs-8); }

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn {
  padding: 13px 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: max-content;
  background-color: var(--marigold);
  color: var(--white);
  text-transform: uppercase;
  border-radius: var(--radius-10);
  border: 2px solid var(--marigold);
  transition: var(--transition-1);
  overflow: hidden;
}

.btn::after {
  inset: -35px -20px;
  transform: skewY(25deg) translateY(-130px);
  transition: var(--transition-1);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::after { transform: skewY(25deg) translateY(0); }

.btn-primary::after { background-color: var(--white); }

.btn-primary:is(:hover, :focus-visible) { color: var(--marigold); }

.btn-secondary {
  background-color: var(--white);
  color: var(--marigold);
}

.btn-secondary::after { background-color: var(--marigold); }

.btn-secondary:is(:hover, :focus-visible) { color: var(--white); }

.w-100 { width: 100%; }

.section-title { margin-block-end: 20px; }

.grid-list {
  display: grid;
  gap: 60px;
}

.rating-wrapper {
  display: flex;
  gap: 2px;
}

.rating-wrapper ion-icon {
  color: var(--marigold);
  font-size: 2rem;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-2);
}

[data-reveal="left"] { transform: translateX(-20px); }

[data-reveal="right"] { transform: translateX(20px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}

.btn-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/*-----------------------------------*\
  #app store and play store
\*-----------------------------------*/

.btn-item-link {
  overflow: hidden;
  border-radius: var(--radius-10);
}

.btn-item-link .img { width: 136px; }

.w-100 { width: 100%; }

.section-title { margin-block: 10px 20px; }

:is(.features, .blog) :is(.section-subtitle, .section-title) {
  text-align: center;
}

.btn-list {
  list-style: none; /* Remove default list styles */
  padding: 0; /* Remove default padding */
  display: flex; /* Display list items in a row */
  gap: 15px; /* Add spacing between buttons */
}

.btn-item-link {
  display: inline-block; /* Ensure the link wraps around the image */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for transform and box-shadow */
}

.btn-item-link:active {
  transform: scale(1.1); /* Scale the image up on tap */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow on tap */
}

.btn-item-link img {
  display: block; /* Ensure image is treated as a block element */
  width: 100%; /* Ensure images take the full width of their parent */
  height: auto; /* Maintain aspect ratio */
}



/*-----------------------------------*\
  #LOADING
\*-----------------------------------*/

/* Preloader container */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white); /* Background color */
  display: grid;
  place-items: center;
  transition: var(--transition-1);
  z-index: 6;
}

.loading-container.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-circle {
  width: 100px; /* Adjust size based on image */
  height: 100px; /* Adjust size based on image */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle); /* Optional: keep circular */
  animation: loading 0.5s linear infinite; /* Optional: If you want to rotate */
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

/* Styling the preloader image */
.preloader-image {
  width: 100%; /* Adjust to fit within container */
  height: auto;
  animation: pulse 1.5s infinite ease-in-out; /* Optional: adding subtle pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.overlay,
.header .btn { display: none; }

/* Header styles */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 0;  /* Reduce padding */
  z-index: 4;
  background-color: transparent; /* Make it transparent initially */
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.header.active {
  position: fixed;
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 0px 0;  /* Adjust padding when the header becomes fixed */
  animation: slideIn 0.5s ease forwards;
}

.hero-content {
  margin-top: 100px; /* Add margin to push the hero content down */
}

/* Fix overlapping issue */
body {
  padding-top: 0px;  /* Ensure content starts below the header */
}

/* Keyframes for slide in */
@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action { margin-inline-start: auto; }

.cart-btn,
.nav-open-btn {
  padding: 12px;
  color: var(--marigold); /* Change the text color to white for better contrast */
  background-color: rgba(255, 255, 255, 0); /* Initial background color */
  border: none; /* Remove any border */
  border-radius: 4px; /* Add some border-radius */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for color and scale */
}

.nav-open-btn:active {
  background-color: var(--green); /* Change to green on active */
  transform: scale(1.1); /* Scale up the button */
}

/* Optional: Add hover effect for better user experience */
.nav-open-btn:hover {
  background-color: var(--marigold-light); /* Optional lighter color on hover */
}



.cart-btn { font-size: 1.8rem; }

.nav-open-btn { font-size: 2.9rem; }

.navbar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding: 50px 40px;
  visibility: hidden;
  transition: 0.35s var(--cubic-out);
  z-index: 2;
}

.navbar.active {
  transform: translateX(100%);
  visibility: visible;
  transition-duration: 0.5s;
}

.nav-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--davys-gray);
  font-size: 2.8rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-circle);
  padding: 2px;
}

.nav-close-btn:active {
  background-color: var(--green); /* Change to green on active */
  transform: scale(1.1); /* Scale up the button */
}

/* Optional: Add hover effect for better user experience */
.nav-close-btn:hover {
  background-color: var(--marigold-light); /* Optional lighter color on hover */
}


.nav-close-btn ion-icon { --ionicon-stroke-width: 35px; }

.navbar .logo { margin-block-end: 30px; }

.navbar-item { border-block-end: 1px solid var(--light-gray); }

.navbar-link {
  color: var(--eerie-black);
  padding-block: 12px;
  cursor: pointer; /* Change cursor to pointer */
    transition: color 0.3s ease; /* Smooth transition */

}

.navbar-link.clicked {
    color: var(--marigold); /* Change to desired color when clicked */
}

.navbar-link:is(:hover, :focus-visible) { color: var(--jet); }

/* Add the fade-out effect */
body.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease; /* Match duration with JS timeout */
  overflow: hidden; /* Prevent scrolling */
}

.header.hidden {
  opacity: 0; /* Change visibility without moving */
  transition: opacity 0.5s ease; /* Smooth transition */
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { padding-block-start: calc(var(--section-padding) + 5px); }

.hero .container {
  display: grid;
  gap: 80px;
  margin-top: -10px;
}

.hero-text { margin-block: 8px 40px; }

.hero .shape { display: none; }






/*-----------------------------------*\
  #INSTRUCTION
\*-----------------------------------*/

.instruction {
  padding-block-start: 0;
  text-align: center;
  margin-bottom: -150px;
  margin-top: 50px ;
}

.instruction .section-text { margin-block-end: 60px; }

.instruction .card-title { margin-block: 25px; }

.instruction .card-title .span {
  display: inline-block;
  color: var(--laundry);
  font-size: var(--fs-4);
  line-height: 1;
}





/*-----------------------------------*\
  #TOP laundry
\*-----------------------------------*/

.laundry-card { padding: 20px; }

.laundry-card .card-icon {
  width: 100px;
  border-radius: var(--radius-15);
  overflow: hidden;
  margin-block-end: 20px;
}

.laundry-card .rating-wrapper { margin-block-start: 5px; }

.laundry-card .card-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.laundry-card .card-meta {
  color: var(--marigold);
  font-size: var(--fs-11);
  border: 1px solid;
  padding: 5px 15px;
  border-radius: var(--radius-10);
  margin-block: 15px 20px;
  transition: var(--transition-1);
}

.laundry-card .card-meta:is(:hover, :focus-visible) {
  background-color: var(--marigold);
  color: var(--white);
}

.top-laundry .btn {
  margin-inline: auto;
  margin-block-start: 40px;
  margin-bottom: -60px;
}





/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta .container {
  display: grid;
  gap: 60px;
  margin-top: -100px;
}

.cta .section-text { margin-block: 20px 30px; }





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats .section-title { 
  margin-block-end: 0;
  margin-top: -50px;

}

.stats-item {
  background-color: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-10);
  text-align: center;
}

.stats-item .span {
  color: var(--marigold);
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  line-height: 1;
}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testi .container {
  display: grid;
  gap: 80px;
  margin-top: -50px;
}

.testi-text {
  font-size: var(--fs-10);
  margin-block: 25px 20px;
}

.testi .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi .author-title {
  color: var(--jet);
  font-size: var(--fs-10);
  font-weight: var(--fw-500);
  margin-block-end: 5px;
}





/*-----------------------------------*\
  #PARTNERSHIP
\*-----------------------------------*/

.partnership {
  background-color: var(--jet);
  overflow-x: hidden;
  margin-top: -50px;
}

.partnership .section-title {
  text-align: center;
  color: var(--white);
  margin-block-end: 50px;
  margin-top: -50px;
}

.partnership-card { position: relative; }

.partnership-card .card-banner {
  outline: 7px solid var(--marigold);
  border-radius: var(--radius-20);
  margin: 7px;
}

.partnership-card .card-title {
  color: var(--white);
  margin-block-end: 10px;
}

.partnership-card .card-content {
  position: absolute;
  bottom: -20px;
  left: 20px;
}





/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter .container {
  display: grid;
  gap: 40px;
  margin-top: -50px;
  margin-bottom: -50px;
}

.newsletter .section-title { margin-block-end: 30px; }

.newsletter .input-field {
  background-color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-2);
  margin-block-end: 20px;
  outline: none;
}

.newsletter .input-field:focus { box-shadow: inset 0 0 0 2px var(--marigold); }

.newsletter .btn ion-icon { --ionicon-stroke-width: 50px; }





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--jet);
  color: var(--light-gray);
}

.footer .section-title {
  color: var(--white);
  margin-block-start: 35px;
}

.footer-list-title {
  color: var(--sonic-silver);
  margin-block-end: 25px;
}

.footer-link,
.address {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-1);
  padding-block: 10px;
}

.footer-link ion-icon { font-size: 1.8rem; }

.address { border-block-end: 1px solid var(--sonic-silver); }

.footer-link:is(:hover, :focus-visible) { color: var(--marigold); }

.address ion-icon { flex-shrink: 0; }

.social-list {
  display: flex;
  gap: 20px;
  padding-block-start: 40px;
}

.social-link {
  font-size: 2rem;
  border: 1px solid;
  padding: 10px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus-visible) {
  background-color: var(--laundry);
  border-color: var(--laundry);
}

.footer-top {
  padding-block-end: 40px;
  border-block-end: 1px solid var(--sonic-silver);
  margin-top: -50px;
}

.footer-bottom {
  padding-block: 25px;
  text-align: center;
}

.copyright {
  color: var(--sonic-silver);
  font-size: var(--fs-11);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-6: 4.2rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
  }

  .h1 { --fs-2: 6rem; }

  .h2 { --fs-2: 4.8rem; }



  /**
   * HERO
   */

  .hero-banner { position: relative; }

  .hero .shape {
    display: block;
    position: absolute;
    box-shadow: var(--shadow-2);
    border-radius: var(--radius-20);
  }

  .hero .shape-1 {
    left: 0;
    bottom: 60px;
  }

  .hero .shape-2 {
    top: 60px;
    right: -10px;
  }



  /**
   * INSTRUCTION
   */

  .instruction-card .card-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * STATS
   */

  .stats-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }



  /**
   * PARTNERSHIP
   */

  .partnership-card .card-content { left: 40px; }

  .partnership-card .card-title { --fs-8: 3.5rem; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  


  /**
   * TOP laundry, STATS
   */

  :is(.top-laundry, .stats) .grid-list { align-items: center; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .hero .shape-1 { bottom: 30px; }

  .hero .shape-2 {
    top: 80px;
    right: -40px;
  }



  /**
   * INSTRUCTION
   */

  .instruction .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }

  .instruction .grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }



  /**
   * CTA, TESTIMONIALS, NEWSLETTER
   */
  
  :is(.cta, .testi, .newsletter) .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 0.5fr 1fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-6: 4.8rem;

  }


  /**
   * STATS
   */

  .stats .grid-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stats-item .span { --fs-1: 4.8rem; }

}


 /**
   * laundry blur
   */

.laundry-card {
  position: relative; /* Positioning for the lock icon */
  overflow: hidden; /* Hide overflow for absolute positioning */
}
.card-icon{
filter: blur(4px); /* Apply blur effect only to card content */
transition: filter 0.3s ease; /* Smooth transition for the blur effect */
}
.laundry-card-content {
  filter: blur(4px); /* Apply blur effect only to card content */
  transition: filter 0.3s ease; /* Smooth transition for the blur effect */
}

.lock-icon {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Offset to center */
  width: 78px; /* Adjust size */
  height: 78px; /* Adjust size */
  z-index: 10; /* Bring icon to front */
  pointer-events: auto; /* Enable interactions */
  display: flex; /* Center the icon inside */
  text-decoration: none; /* Remove underline from link */
}

.lock-icon:focus {
  outline: none; /* Remove focus outline */
}

.lock-icon:hover {
  opacity: 0.8; /* Example hover effect */
}

/**
   * testonomoial review slider
   */

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.testimonial-item.active {
  opacity: 1;
  position: relative;
}

.social-icons {
  position: absolute; /* Position the icons around the banner */
  top: 20%; /* Adjust top positioning */
  left: 50%; /* Center the icons horizontally */
  transform: translateX(-50%); /* Center alignment */
  display: flex; /* Use flexbox for alignment */
  gap: 15px; /* Space between icons */
}

/* Specific styling for individual icons */
.social-icon {
  display: inline-block; /* Display as inline-block for proper margins */
  animation: float 3s ease-in-out infinite; /* Apply floating animation */
}

/* General icon styles */
.social-icon img {
  width: 40px; /* Default icon size */
  height: 40px; /* Default icon size */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.social-icon:hover img {
  transform: scale(1.1); /* Scale up on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow effect on hover */
}

/* Floating animation */
@keyframes float {
  0%, 100% {
      transform: translateY(0); /* Start and end position */
  }
  50% {
      transform: translateY(-10px); /* Move up */
  }
}

/* Customize size and position for specific icons */
.facebook-icon img {
  width: 60px; /* Facebook icon size */
  height: 60px; /* Facebook icon size */
  position: relative; /* Adjust position if needed */
  top: 50px; /* Adjust vertical position */
  left: -23px;
}

.whatsapp-icon img {
  width: 50px; /* Instagram icon size */
  height: 50px; /* Instagram icon size */
  position: relative; 
  top: 110px; /* Adjust vertical position */
  left: 100px;
}

.instagram-icon img {
  width: 50px; /* Instagram icon size */
  height: 50px; /* Instagram icon size */
  position: relative; 
  top: 110px; /* Adjust vertical position */
  right: 100px;
}

.linkedin-icon img {
  width: 60px; /* Facebook icon size */
  height: 60px; /* Facebook icon size */
  position: relative; /* Adjust position if needed */
  top: 50px; /* Adjust vertical position */
  right: -23px;
}

/* newsletter */
 .input-wrapper button {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.input-wrapper button:active {
  transform: scale(0.95); /* Button shrink effect on click */
}

/* spinner and droplets */

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

.section.hero {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

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

.hero-banner img {
  width: 90%;
  height: auto;
  margin-top: -30px; /* Adjust this value as needed to create space above the image */
  position: relative; /* Ensure positioning for z-index */
}
.hero-content {
  position: relative;
  z-index: 2; /* Keep content above the banner */
}
.droplet-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.droplet {
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 15px;
  background-color: #2098d4ae;
  border-radius: 50%;
  animation: rise-large 6s linear infinite;
}

@keyframes rise-large {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

.droplet:nth-child(2) { animation-duration: 5s; left: 10%; animation-delay: 0.5s; }
.droplet:nth-child(3) { animation-duration: 4.5s; left: 30%; animation-delay: 1s; }
.droplet:nth-child(4) { animation-duration: 6.5s; left: 50%; animation-delay: 0.7s; }
.droplet:nth-child(5) { animation-duration: 5.2s; left: 70%; animation-delay: 1.2s; }
.droplet:nth-child(6) { animation-duration: 4s; left: 90%; animation-delay: 1.5s; }
.droplet:nth-child(7) { animation-duration: 5.7s; left: 20%; animation-delay: 1.8s; }
.droplet:nth-child(8) { animation-duration: 4.2s; left: 40%; animation-delay: 2s; }
.droplet:nth-child(9) { animation-duration: 6.8s; left: 60%; animation-delay: 0.3s; }
.droplet:nth-child(10) { animation-duration: 5.1s; left: 80%; animation-delay: 2.3s; }

.hero-content, .hero-banner {
  position: relative;
  z-index: 2;
}

.spinner img {
  animation: spin 5s linear infinite;
}

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

/* smooth scroll */
html {
  scroll-behavior: smooth; /* This enables smooth scrolling for anchor links */
}

/* BACK TO TOP*/
 /* Back to Top Button Styles */
 .Btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(#30d9ba, #1677a7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: fixed; /* Change to fixed for scrolling effect */
  bottom: 20px;
  right: 20px;
  border: none;
  z-index: 1000; /* Ensure it appears above other elements */
  display: none; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

.arrow path {
  fill: white;
}

.text {
  font-size: 0.7em;
  width: 100px;
  position: absolute;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -18px;
  opacity: 0;
  transition-duration: 0.7s;
}

.Btn:hover .text {
  opacity: 1;
  transition-duration: 0.7s;
}

.Btn:hover .arrow {
  animation: slide-in-bottom 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Add responsiveness */
@media (max-width: 768px) {
  .Btn {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .Btn {
    bottom: 50px;
    right: 30px;
    width: 35px;
    height: 35px;
  }
}