/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}



.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}


.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: #e51691;
  transition: .3s;
}

.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

.logo-img{
  max-width: 250px;
}

@media screen and (max-width: 468px) {
  .logo-img {
    max-width: 180px;
    margin: 0 auto; /* Center horizontally */
  }
}


/* Container for text and carousel */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

/* Text section */
.text-content {
  flex: 0 1 80%;
  align-items: flex-start;
}

.text-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.5;
}
/* Button group */
.button-group {
  margin-top: 20px;
}

.button-group button {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  width: 50%; /* Ensures all buttons take up the full width of the container */
  height: 50px; /* Set a fixed height for all buttons */
  background-color: #e51691;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px 0;
  cursor: pointer;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: background-color 0.3s ease;
  text-align: left;
  font-size: 1.2rem; /* Ensure uniform text size */
}

.button-group button:hover {
  background-color: #d41480;
}

.button-group button i {
  margin-right: 10px;
}

/* Product container */
.product-container-right {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper for the carousel */
.wrapper-right {
  display: flex;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

/* Carousel arrows container */
.arrow-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

/* Carousel arrows */
.arrow-container i {
  height: 44px;
  width: 44px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.15rem;
  text-align: center;
  line-height: 44px;
  background: #e51691;
  border-radius: 50%;
  margin: 0 10px;
  transition: transform 0.1s linear;
}

.arrow-container i:active {
  transform: scale(0.9);
}

.arrow-container i:hover {
  background: #e042a1;
}

/* Carousel */
.carousel-right {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-right .card {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.carousel-right img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}

.carousel-right h3 {
  font-size: 1.25rem;
  margin-top: 10px;
}

/* Additional styling for image */
.carousel-right img {
  user-select: none;
  object-fit: contain;
}


@media (max-width: 1024px) {
  .content-container {
    flex-direction: column; /* Stack content in column for smaller screens */
  }

}
@media (max-width: 768px) {
  
  .button-group button {
    width: 100%; /* Make buttons full width on mobile */
    height: 45px; 
  }

}


/*Cat product slider*/


/* Container for text and carousel */
.content-container-cat {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

/* Product container on the left */
.product-container-left {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper for the carousel */
.wrapper-left {
  display: flex;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

/* Carousel arrows container */
.arrow-container-cat {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

/* Carousel arrows */
.arrow-container-cat i {
  height: 44px;
  width: 44px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.15rem;
  text-align: center;
  line-height: 44px;
  background: #e51691;
  border-radius: 50%;
  margin: 0 10px;
  transition: transform 0.1s linear;
}

.arrow-container-cat i:active {
  transform: scale(0.9);
}

.arrow-container-cat i:hover {
  background: #e042a1;
}

/* Carousel */
.carousel-left {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-left .card {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.carousel-left img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}

.carousel-left h3 {
  font-size: 1.25rem;
  margin-top: 10px;
}

/* Additional styling for image */
.carousel-left img {
  user-select: none;
  object-fit: contain;
}

/* Text section on the right */
.text-content-cat {
  flex: 0 1 70%;
  align-items: flex-start;
}

.text-content-cat h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.text-content-cat p {
  font-size: 18px;
  line-height: 1.5;
}
/* Button group */
.button-group-cat {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align buttons to the right */
}

.button-group-cat button {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content inside the button to the right */
  width: 50%;
  height: 50px;
  background-color: #e51691;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px 0;
  cursor: pointer;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: background-color 0.3s ease;
  text-align: left;
  font-size: 1.2rem;
}

.button-group-cat button:hover {
  background-color: #d41480;
}

.button-group-cat button i {
  margin-right: 10px; /* Adjust the icon position to the left of the text */
}


@media (max-width: 1024px) {
  .content-container-cat {
    flex-direction: column; /* Stack content in column for smaller screens */
  }

}
@media (max-width: 768px) {
  
  .button-group-cat button {
    width: 100%; /* Make buttons full width on mobile */
    height: 45px; 
  }

}


/*Brands*/
.brand-container {
  display: flex;
  margin: 40px 0 20px 0;
  flex-direction: column;
  align-items: center;
}

.brand-row {
  display: flex;
  justify-content: space-around; /* Adjust as needed */
  flex-wrap: nowrap; /* Ensures all items stay in a single row */
}

.brand-item {
  margin: 10px;
  text-align: center;
}

.brand-item img {
  width: 150px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}

.brand-caption {
  width: 150px; /* Adjust width as needed */
}

.brand-caption h3 {
  margin: 0;
}
.title h2{
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .brand-row {
    flex-wrap: wrap; /* Allow items to wrap to next line */
  }
}



/* feature section styles */

.contact-top{
  margin-top: 80px;
}

.background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.contact-header {
  
  display: flex;
  height: 250px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.contact-header h1 {
  font-size: 36px;
  margin: 0;
}


/*Product left right slider*/
.product-section {
  text-align: center;
  padding: 50px 20px;
}
.product-section h2 {
  font-size: 36px;
  max-width: 1200px;
  text-align: left;
  margin: 0 auto;
}
.product-section p {
  font-size: 18px;
  max-width: 1200px;
  text-align: left;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/*Product section 2*/

.product-section2 {
  text-align: center;
  margin-top: 20px;
  padding: 50px 20px;
}
.product-section2 h2 {
  font-size: 36px;
  max-width: 1200px;
  text-align: left;
  margin: 0 auto;
}
.product-section2 p {
  font-size: 18px;
  max-width: 1200px;
  text-align: left;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/*Product Container*/
.product-container{
  display: flex;
  padding: 0 35px;
  min-height: 50vh;
  align-items: center;
  justify-content: center;

}
.wrapper{
  display: flex;
  max-width: 1200px;
  position: relative;
}
.wrapper i{
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover{
  background: #f2f2f2;
}
.wrapper i:first-child{
  left: -22px;
  display: none;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  height: 250px;
  object-fit: contain;
  user-select: none;
  margin-left: 30px;
  width: calc(70% / 3);
}
.carousel img:first-child{
  margin-left: 0px;
}
@media screen and (max-width: 900px) {
  .carousel img{
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 550px) {
  .carousel img{
    width: 100%;
  }
}




/*Booking Container*/
.book {
  width: 100%;
  padding: 30px;
  height: 400px;
  background-image: url('/assets/images/product_banner1.webp'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
}

.book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 0;
}

.book-text {
  flex: 1;
  max-width: 60%; 
  margin: auto;
  position: relative;
  z-index: 1;
}

.book-text h3 {
  font-size: 1.8rem;
}

.book-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.slide-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: black;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.slide-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: left 0.3s ease;
  z-index: -1;
}

.slide-button:hover::before {
  left: 0;
}

.slide-button:hover .button-text {
  color: white;
}

.button-text {
  position: relative;
  z-index: 1;
}

.slide-button ion-icon {
  position: relative;
  text-align: center;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.slide-button:hover ion-icon {
  transform: translateX(5px); 
  color: white;
}



/* Footer styling */
.main-footer {
  background-color: #2c2c2c; /* Dark background for contrast */
  color: #f5f5f5; /* Light text for readability */
  padding: 40px 20px; /* Padding around the footer content */
}

.main-footer .footer-container {
  max-width: 1250px; /* Limit the container's width */
  margin: auto; /* Center the container */
}
.footer-content {
  background-size: cover; /* Ensure it covers the entire div */
  background-repeat: no-repeat; /* No repeating */
  background-position: center; /* Center the image */
  padding: 10px 20px; /* Padding around the content */
}

/* Footer row with flex layout */
.footer-content .row {
  display: flex; /* Use flexbox for alignment */
  justify-content: space-between; /* Distribute columns evenly */
  flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
  gap: 20px; /* Space between columns */
}

/* Footer column styling */
.footer-column {
  padding: 20px; /* Padding for each column */
  flex: 1; /* Allow each column to grow equally */
}

/* Styling for the logo widget */
.logo-widget .logo-box {
  margin-bottom: 20px; /* Space below the logo */
}

.logo-widget .text {
  font-size: 1em; /* Standard font size */
  line-height: 1.5; /* Improve readability */
}

/* Social media icons */
.footer-social {
  display: flex; /* Horizontal layout for icons */
  gap: 10px; /* Space between icons */
}

.footer-social a {
  color: #f5f5f5; /* Default color */
  font-size: 1.5em; /* Larger font size for visibility */
  transition: color 0.3s; /* Smooth hover effect */
}

.footer-social a:hover {
  color: #ff9d2d; /* Hover effect */
}

/* Service widget styling */
.service-widget .footer-title {
  font-size: 1.2em; /* Title font size */
  margin-bottom: 15px; /* Space below the title */
}

.service-widget .list {
  list-style: none; /* No bullet points */
  padding: 0; /* No padding */
}

.service-widget .list li {
  margin-bottom: 10px; /* Space between list items */
}

.service-widget .list a {
  text-decoration: none; /* No underline */
  color: #f5f5f5; /* Default link color */
  transition: color 0.3s; /* Smooth hover effect */
}

.service-widget .list a:hover {
  color: #ff9d2d; /* Hover effect */
}

/* Contact widget styling */
.contact-widget .footer-title {
  font-size: 1.2em; /* Title font size */
  margin-bottom: 15px; /* Space below the title */
}

.contact-widget .text {
  font-size: 1em; /* Standard font size */
  line-height: 1.5; /* Improve readability */
}
.footer-bottom {
  background-color: #1c1c1c; /* Slightly darker than the main footer */
  padding: 20px; /* Padding for the bottom section */
}

.footer-bottom .footer-container {
  max-width: 1250px; /* Center the container */
  margin: auto; /* Center horizontally */
}

.footer-bottom .row {
  display: flex; /* Use Flexbox for alignment */
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
}

/* Centered copyright text */
.copyright {
  font-size: 1em; /* Standard font size */
  text-align: center; /* Center the text */
  color: #f5f5f5; /* Light text for visibility */
}

.copyright a {
  text-decoration: none; /* No underline */
  color: #f5f5f5; /* Default link color */
  transition: color 0.3s; /* Smooth hover effect */
}

.copyright a:hover {
  color: #ff9d2d; /* Hover color for links */
}

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: hsl(351, 83%, 61%); /* Change to your desired color */
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

/* Show the button when needed */
.back-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover effect */
.back-top-btn:hover {
  background-color: hsl(351, 77%, 54%);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5); /* Change to your desired hover color */
}

/* Style for the icon */
.back-top-btn ion-icon {
  font-size: 24px;
}



/* WhatsApp Chat Icon Styles */
.whatsapp-chat {
  position: fixed;
  bottom: 2px;
  left: 20px;
  z-index: 1000; /* Ensure it's above other elements */
}

.whatsapp-chat img {
  width: 80px;
  height: auto;
  cursor: pointer;
}

.whatsapp-chat img:hover {
  opacity: 0.8;
}

@media screen and (max-width:768px)
{
  .back-top-btn{
    bottom: 80px;
  }
  .whatsapp-chat{
    bottom:60px;
  }
}

/* Media Queries for Footer */
@media (max-width: 991px) {
  /* Stack columns vertically on medium and smaller screens */
  .footer-content .row {
    flex-direction: column; /* Stack columns vertically */
  }
  
  .footer-column {
    padding: 10px; /* Reduce padding for smaller screens */
    flex: 1 0 100%; /* Allow columns to take full width */
  }
}

@media (max-width: 767px) {
  .footer-column {
    padding: 10px; /* Ensure consistent padding */
  }
  
  .footer-content .row {
    flex-direction: column; /* Ensure vertical stacking */
  }
  
  .footer-widget {
    margin-bottom: 20px; /* Space between widgets */
  }
  body{
    margin-bottom:4rem ;
  }
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
}
@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__img {
    display: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
  }
  .nav__link:hover {
    color: #e51691;
  }



}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Media Query for 992px and below */
@media (max-width: 992px) {
  .book {
    height: auto; /* Allow height to adjust based on content */
    padding: 20px;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    text-align: center;
  }

  .book-text {
    max-width: 80%;
    margin-bottom: 20px; /* Add space below text */
  }

  .slide-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .slide-button ion-icon {
    margin-left: 6px;
  }
}

/* Media Query for 762px and below */
@media (max-width: 762px) {
  .book {
    height: auto; /* Allow height to adjust based on content */
    padding: 15px;
  }

  .book-text {
    max-width: 90%;
    margin-bottom: 15px; /* Add space below text */
  }

  .slide-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .slide-button ion-icon {
    margin-left: 4px;
  }
}

/* Media Query for 468px and below */
@media (max-width: 468px) {
  .book {
    height: auto; /* Allow height to adjust based on content */
    padding: 10px;
  }

  .book-text {
    max-width: 100%;
    margin-bottom: 10px; /* Add space below text */
    text-align: left;
  }
  .book-text h3{
    font-size: 1.2rem;
  }
  .slide-button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .slide-button ion-icon {
    margin-left: 2px;
  }
}