/* Created by Tivotal */

/* Google Fonts(Playfair Display) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --theme-color: #ff69b4;
  --theme-color-dark: #ff1493;
  --theme-color-light: #ffb6c1;
  --bg-color: #ffffff;
  --text-color: #333;
  --secondary-bg: #f8f9fa;
}

* {
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
}

section {
  padding: 2rem 9%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 9%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scroll-down {
  transform: translateY(-100%);
}

.header.scroll-up {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  height: 5rem;
  width: auto;
  display: block;
}

.header .logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header .logo span {
  color: var(--theme-color);
}

.header .navbar {
  transition: all 0.3s ease-in-out;
}

.header .navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 2rem;
  padding: 1rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  background: transparent;
}

.header .navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--theme-color);
  transition: width 0.3s ease;
}

.header .navbar a:hover {
  color: var(--theme-color);
  transform: translateY(-2px);
}

.header .navbar a:hover::after {
  width: 100%;
}

#menu-bars {
  font-size: 3rem;
  color: var(--text-color);
  cursor: pointer;
  display: none;
}

.home {
  padding: 2rem 9%;
}

.home .content {
  text-align: center;
  padding-top: 6rem;
  margin: 2rem auto;
  max-width: 70rem;
}

.home .content h3 {
  color: var(--text-color);
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.home .content h3 span {
  color: var(--theme-color);
  text-transform: uppercase;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 3rem;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  background: var(--theme-color);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: var(--theme-color-dark);
}

.home .home-slider {
  position: relative;
  padding: 4rem 0;
  perspective: 1200px;
  transform-style: preserve-3d;
  max-width: 140rem;
  margin: 0 auto;
}

.home .home-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.home .home-slider .swiper-slide {
  overflow: hidden;
  border-radius: 1.5rem;
  height: 35rem;
  width: 28rem;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: center center;
  backface-visibility: hidden;
  background: var(--bg-color);
  position: relative;
}

.home .home-slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  backface-visibility: hidden;
}

.home .home-slider .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
  border-radius: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.home .home-slider .swiper-slide:hover::after {
  opacity: 1;
}

.home .home-slider .swiper-slide-active {
  transform: translateZ(0) scale(1.2) !important;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.home .home-slider .swiper-slide-prev,
.home .home-slider .swiper-slide-next {
  transform: translateZ(-100px) scale(0.9) !important;
  z-index: 1;
}

.home .home-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  transform: translateZ(-200px) scale(0.7) !important;
  z-index: 0;
  opacity: 0.5;
}

/* Enhanced Navigation */
.home .home-slider .swiper-button-next,
.home .home-slider .swiper-button-prev {
  width: 5rem !important;
  height: 5rem !important;
  background: var(--theme-color) !important;
  border-radius: 50%;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.home .home-slider .swiper-button-next:hover,
.home .home-slider .swiper-button-prev:hover {
  background: var(--theme-color-dark) !important;
  transform: scale(1.1);
  opacity: 1;
}

.home .home-slider .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--theme-color) !important;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.home .home-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color-dark) !important;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .home .home-slider .swiper-slide {
    height: 32rem;
    width: 26rem;
  }
  
  .home .home-slider .swiper-slide-active {
    transform: translateZ(0) scale(1.15) !important;
  }
}

@media (max-width: 768px) {
  .home .home-slider .swiper-slide {
    height: 30rem;
    width: 24rem;
  }
  
  .home .home-slider .swiper-slide-active {
    transform: translateZ(0) scale(1.1) !important;
  }
}

@media (max-width: 450px) {
  .home .home-slider .swiper-slide {
    height: 28rem;
    width: 22rem;
  }
  
  .home .home-slider .swiper-slide-active {
    transform: translateZ(0) scale(1.05) !important;
  }
}

.heading {
  text-align: center;
  padding-bottom: 2rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 700;
}

.heading span {
  color: var(--theme-color);
  text-transform: uppercase;
}

.service .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem;
}

.service .box-container .box {
  border-radius: 0.5rem;
  background: var(--secondary-bg);
  text-align: center;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service .box-container .box:hover {
  transform: translateY(-5px);
}

.service .box-container .box i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  font-size: 2.5rem;
  background: var(--theme-color);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.service .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--text-color);
  padding: 1rem 0;
  font-weight: 600;
}

.service .box-container .box p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about .row .image {
  flex: 1 1 45rem;
  padding: 1rem;
}

.about .row .image img {
  width: 100%;
  border-radius: 0.5rem;
  border: 1rem solid var(--secondary-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about .row .content {
  flex: 1 1 45rem;
}

.about .row .content h3 {
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 700;
}

.about .row .content p {
  font-size: 1.7rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2;
  font-weight: 400;
}

.gallery .box-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 140rem;
  margin: 0 auto;
}

.gallery .box-container .box {
  position: relative;
  border: 0.5rem solid var(--secondary-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Pattern Layout */
.gallery .box-container .box:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery .box-container .box:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery .box-container .box:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery .box-container .box:nth-child(7) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(8) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery .box-container .box:nth-child(10) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery .box-container .box:nth-child(11) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery .box-container .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery .box-container .box:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.gallery .box-container .box .title {
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gallery .box-container .box:hover .title {
  bottom: 0;
}

.gallery .box-container .box .icons {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.gallery .box-container .box:hover .icons {
  opacity: 1;
  transform: translateY(0);
}

.gallery .box-container .box .icons a {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.gallery .box-container .box .icons a:hover {
  background: var(--theme-color-dark);
  transform: scale(1.1);
}

.reivew {
  padding: 4rem 0;
  position: relative;
  margin-bottom: 4rem;
}

.reivew .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.reivew .box {
  position: relative;
  padding: 3rem;
  background: var(--bg-color);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reivew .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reivew .box .fa-quote-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--theme-color);
  font-size: 5rem;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.reivew .box:hover .fa-quote-right {
  opacity: 0.2;
  transform: scale(1.1);
}

.reivew .box .user {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.reivew .box .user img {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.3rem solid var(--theme-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.reivew .box:hover .user img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.reivew .box .user h3 {
  font-size: 2.2rem;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.reivew .box .user span {
  font-size: 1.6rem;
  color: var(--theme-color);
  font-weight: 500;
}

.reivew .box p {
  line-height: 1.8;
  color: #666;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .reivew .box-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .reivew .box-container {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }

  .reivew .box {
    padding: 2rem;
  }

  .reivew .box .user {
    gap: 1.5rem;
  }

  .reivew .box .user img {
    height: 6rem;
    width: 6rem;
  }

  .reivew .box .user h3 {
    font-size: 1.8rem;
  }

  .reivew .box p {
    font-size: 1.4rem;
  }
}

@media (max-width: 450px) {
  .reivew .box {
    padding: 1.5rem;
  }

  .reivew .box .user {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .reivew .box .user img {
    height: 5rem;
    width: 5rem;
    margin: 0 auto;
  }
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.contact form .inputBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .inputBox input,
.contact form textarea {
  width: 100%;
  background: var(--secondary-bg);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0.7rem ;
  font-size: 1.5rem;
  color: var(--text-color);
  text-transform: none;
  -webkit-appearance: none;
  appearance: none;
}



.contact form .inputBox input {
  width: 49%;
}

.contact form textarea {
  resize: none;
}

.footer {
  background: var(--secondary-bg);
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.8rem;
  padding: 1rem 0;
  color: var(--text-color);
  font-weight: 600;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.7rem;
  padding: 1rem 0;
  color: #666;
  font-weight: 400;
}

.footer .box-container .box a i {
  padding-right: 0.5rem;
  color: var(--theme-color);
}

.footer .box-container .box a:hover i {
  padding-right: 1.5rem;
  color: var(--theme-color-light);
}

.footer .credit {
  text-align: center;
  border-top: 0.1rem solid #ddd;
  color: var(--text-color);
  padding: 2rem;
  padding-top: 2.5rem;
  margin-top: 1rem;
  font-size: 2rem;
}

.footer .credit span {
  color: var(--theme-color);
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #444;
}

html::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 5rem;
}

.theme-toggler {
  position: fixed;
  top: 10rem;
  right: -20rem;
  background: #333;
  z-index: 1000;
  width: 20rem;
  text-align: center;
}

.theme-toggler.active {
  right: 0;
}

.theme-toggler h3 {
  color: #fff;
  padding: 1rem 0;
  font-size: 2rem;
}

.theme-toggler .buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.theme-toggler .buttons .theme-btn {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  cursor: pointer;
}

.theme-toggler .toggle-btn {
  position: absolute;
  top: 0;
  left: -5.9rem;
  padding: 1.3rem 1.5rem;
  background: #333;
  cursor: pointer;
}

.theme-toggler .toggle-btn i {
  color: #fff;
  font-size: 3rem;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
}

/* media queries  */

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  
  section {
    padding: 2rem 7%;
  }
  
  .header {
    padding: 1.5rem 7%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  
  section {
    padding: 2rem 5%;
  }
  
  .header {
    padding: 1.5rem 5%;
  }
  
  .home .content h3 {
    font-size: 3.5rem;
  }
  
  .heading {
    font-size: 3.5rem;
  }
  
  .service .box-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery .box-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery .box-container .box:nth-child(n) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery .box-container .box:nth-child(2n+1) {
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  #menu-bars {
    display: inline-block;
  }
  
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  .fa-times {
    transform: rotate(180deg);
  }
  
  .header .navbar a {
    display: block;
    font-size: 1.6rem;
    margin: 1rem;
    padding: 1.2rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .header .navbar a::after {
    display: none;
  }
  
  .header .navbar a:hover {
    color: var(--theme-color);
    background: var(--secondary-bg);
    transform: none;
  }
  
  .home .content h3 {
    font-size: 4rem;
  }
  
  .about .row {
    flex-direction: column;
  }
  
  .about .row .image {
    flex: 1 1 100%;
  }
  
  .about .row .content {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .service .box-container {
    grid-template-columns: 1fr;
    max-width: 50rem;
  }
  
  .service .box-container .box {
    margin: 1rem 0;
  }
  
  .gallery .box-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  
  .gallery .box-container .box:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery .box-container .box:nth-child(4n+1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .header .logo {
    font-size: 2.8rem;
  }
  
  .heading {
    font-size: 3.8rem;
  }
  
  .service .box-container .box h3 {
    font-size: 2rem;
  }
  
  .service .box-container .box p {
    font-size: 1.5rem;
  }
  
  .about .row .content h3 {
    font-size: 3.5rem;
  }
  
  .about .row .content p {
    font-size: 1.6rem;
  }
  
  .home .home-slider .swiper-slide {
    height: 35rem;
    width: 25rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  
  .home .home-slider .swiper-slide {
    height: 30rem;
    width: 22rem;
  }
  
  .contact form .inputBox input {
    width: 100%;
  }
  
  .footer .box-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer .box-container .box {
    margin-bottom: 2rem;
  }
  
  .footer .credit {
    text-align: center;
  }
  
  .header .logo {
    font-size: 2.5rem;
  }
  
  .home .content h3 {
    font-size: 3.5rem;
  }
  
  .heading {
    font-size: 3.2rem;
  }
  
  .gallery .box-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .gallery .box-container .box:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Mobile-first optimizations */
@media (max-width: 360px) {
  .home .content h3 {
    font-size: 3rem;
  }
  
  .heading {
    font-size: 2.8rem;
  }
  
  .btn {
    padding: 0.7rem 2rem;
    font-size: 1.6rem;
  }
  
  .service .box-container .box,
  .gallery .box-container .box {
    padding: 1.5rem;
  }
  
  .service .box-container .box h3,
  .gallery .box-container .box .title {
    font-size: 2rem;
  }
  
  .service .box-container .box p {
    font-size: 1.4rem;
  }
  
  .home .home-slider .swiper-slide {
    height: 25rem;
    width: 20rem;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .gallery .box-container .box:hover img {
    transform: none;
    filter: none;
  }
  
  .gallery .box-container .box:hover .title {
    top: -10rem;
  }
  
  .gallery .box-container .box:hover .icons {
    transform: translateY(10rem);
  }
}

/* Landscape mode optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .header {
    position: relative;
  }
  
  .home .content {
    padding-top: 2rem;
  }
  
  .home .home-slider .swiper-slide {
    height: 20rem;
    width: 30rem;
  }
  
  section {
    padding: 2rem 3%;
  }
  
  .header .navbar {
    max-height: 70vh;
  }
  
  .home .content {
    padding-top: 1rem;
  }
  
  .home .home-slider .swiper-slide {
    height: 20rem;
  }
  
  .service .box-container .box,
  .gallery .box-container .box {
    margin: 0.5rem 0;
  }
}

/* High-DPI screen optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .home .home-slider .swiper-slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Improved slider navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 5rem !important;
  height: 5rem !important;
  background: var(--theme-color) !important;
  border-radius: 50%;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--theme-color-dark);
  transform: scale(1.1);
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--theme-color) !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--theme-color-dark) !important;
  transform: scale(1.2);
}
