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

/* ================= BASE ================= */
html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
font-family: 'Montserrat', sans-serif;
 background:
 linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
 url("./images/bg5.avif");
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
 background-blend-mode:soft-light
}
.logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s;
  position: absolute;
  top: 5%;
  left: 5%;
}

/* ================= PAGE TRANSITION ================= */
.page-transition {
  position: fixed;
  inset: 0;
  /* background: #1d6c78; */
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}
.page-transition.active { transform: scaleX(1); }

/* ================= FLOATING ICONS ================= */
.floating-element {
  position: fixed;
  font-size: 38px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ================= CURSOR ================= */
.cursor-dot,
.cursor-outline {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 10000;
}
.cursor-dot {
  width: 10px;
  height: 10px;
  background:#ddd ;
}
.cursor-outline {
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  transition: all 0.15s ease-out;
}
/* ================= NEXT PAGE BUTTON ================= */
.next-page-btn,.next-back-btn{
  position: fixed;
  transform: translateY(-50%);
    width: 160px;
    height: 50px;
  border-radius: 10px;
  background: transparent;
  color: gray;
  border: none;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 1000;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.next-page-btn{
 top: 50%;
 right: 2%;
}
.next-back-btn{
top: 50%;
left: 2%;
}

/* text inside */
 .next-page-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
 .next-back-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* icon */
.next-page-btn,.next-back-btn i {
  font-size: 18px;
  transition: 0.3s;
}

/* hover */
.next-page-btn:hover {
  background: #B31802;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.next-page-btn:hover .nbtn{
  color: #fff;

}
.next-back-btn:hover .nbtn{
  color: #fff;

}

.next-back-btn:hover {
  background: #B31802;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.next-page-btn:hover i {
  transform: translateX(5px);
}
.next-back-btn:hover i {
  transform: translateX(-5px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
.logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 999;
}
.next-page-btn,.next-back-btn {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 160px;
    height: 50px;
    border-radius: 12px;
    background: transparent;
    color: gray;
    flex-direction:row;
  }
  /* text inside */
 .next-page-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
 .next-back-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
  .next-page-btn,.next-back-btn i {
    font-size: 16px;
  }
/* hover */
  .next-page-btn:hover {
  background: #B31802;
  transform: translateY(0);
}

.next-back-btn:hover {
  background: #B31802;
  transform: translateY(0);
}
.next-page-btn:hover .nbtn{
  color: #fff;

}
.next-back-btn:hover .nbtn{
  color: #fff;

}

.next-page-btn:hover i {
  transform: translateX(5px);
}
.next-back-btn:hover i {
  transform: translateX(-5px);
}
  .cursor-dot,.cursor-outline{
    display: none;
  }

}
/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  /* .next-page-btn {
    width: 140px;
    height: 45px;
  } */

  .next-page-btn .nbtn {
    font-size: 14px;
  }
}



/* ================= CONTACT SIDEBAR ================= */
.contact-open-btn{
  position:fixed;
  right:20px;
  top:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#B31802;
  font-size:22px;
  cursor:pointer;
  z-index:1200;
}

/* Sidebar */
.contact-sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  max-width:380px;
  height:100vh;
  background:#f7f7f7;
  padding:25px;
  transition:.4s ease;
  z-index:1300;
  overflow-y:auto;
}

.contact-sidebar.active{
  right:0;
}

.close-btn{
  position:absolute;
  top:15px;
  right:15px;
  width:35px;
  height:35px;
  border-radius:50%;
  background:#B31802;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:20px;
}

.contact-sidebar h2{
  color:#c06c78;
  margin-bottom:5px;
}

.sub-text{
  color:#777;
  margin-bottom:20px;
}

/* WhatsApp */
.whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#ccc;
  padding:14px;
  border-radius:30px;
  text-decoration:none;
  font-size:16px;
  margin-bottom:20px;
}
.whatsapp-btn:hover{
  color: #fff;
}

/* Social */
.social-icons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}
.social-icons span{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#c06c78;
  color:#ccc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.social-icons span:hover{
  color: #fff;
}
/* Subscribe */
.subscribe-title{
  margin-bottom:10px;
}

.subscribe-box{
  display:flex;
  gap:10px;
  margin-bottom:25px;
}
.subscribe-box input{
  flex:1;
  padding:12px;
  border-radius:25px;
  border:1px solid #ccc;
}
.subscribe-box button{
  padding:12px 20px;
  border:none;
  border-radius:25px;
  background:#c06c78;
  color:#fff;
  cursor:pointer;
}

/* Map */
.map-box iframe{
  width:100%;
  height:220px;
  border:0;
  border-radius:12px;
  margin-bottom:25px;
}

/* Address */
.address-box{
  background:#c06c78;
  color:#fff;
  padding:20px;
  border-radius:12px;
  text-align:center;
}
.address-box h5{
  margin-bottom:8px;
}
/* ================= RESPONSIVE ================= */

/* Mobile (max 480px) */
@media (max-width: 480px){

  .contact-sidebar{
    width:100%;
    max-width:100%;
    padding:20px;
  }

  .contact-sidebar h2{
    font-size:22px;
  }

  .sub-text{
    font-size:14px;
  }

  .whatsapp-btn{
    font-size:14px;
    padding:12px;
  }

  .social-icons span{
    width:36px;
    height:36px;
    font-size:16px;
  }

  .subscribe-box{
    flex-direction:column;
  }

  .subscribe-box input,
  .subscribe-box button{
    width:100%;
  }

  .map-box iframe{
    height:200px;
  }

  .address-box{
    font-size:14px;
    padding:15px;
  }
}

/* Tablet (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px){

  .contact-sidebar{
    width:360px;
  }

  .whatsapp-btn{
    font-size:15px;
  }

  .map-box iframe{
    height:220px;
  }
}

/* Desktop (769px+) */
@media (min-width: 769px){

  .contact-sidebar{
    width:380px;
  }
}
/* contance end */

/* hero section */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }


        /* Reviews Section */
        .reviews-section {
            margin-top: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h1 {
            font-size: 2.2rem;
            color: #fff;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h1:after {
            content: '';
            position: absolute;
            width: 20%;
            height: 4px;
            background: linear-gradient(to right, #4b5563);
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Reviews Slider */
        .reviews-slider {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .swiper {
            padding: 30px 10px 60px !important;
            width: 100%;
        }

        .review-card {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            /* height: 220px; */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f3e8ff;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-header img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid #111827;
        }

        .review-header h3 {
            font-size: 1.3rem;
            color: #4b5563;
            margin-bottom: 5px;
        }

        .review-header p {
            color: #6b7280;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .stars {
            color: #B31802;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .review-text {
            color: #4b5563;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .date {
            color: #111827;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .swiper-button-next, .swiper-button-prev {
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: black;
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
        }

        .swiper-pagination-bullet {
            background-color: #111827;
            opacity: 0.7;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            background-color: #111827;
            opacity: 1;
        }

        /* Brands Section */
        .brands-section {
            margin-top: 40px;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .brand-card {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #111827;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .brand-card img {
            height: 60px;
            width: auto;
            margin-bottom: 20px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .brand-card:hover img {
            filter: grayscale(0);
            opacity: 1;
        }

        .brand-card h3 {
            font-size: 1.4rem;
            color: #4b5563;
            margin-bottom: 10px;
        }

        .brand-card p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            margin: 60px 0;
            background: linear-gradient(135deg, #4b5563 0%, #111827 100%);
            border-radius: 20px;
            padding: 50px 30px;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Footer */
        .page-footer {
            text-align: center;
            margin-top: 60px;
            margin-bottom: 60px;
            padding-top: 30px;
            border-top: 1px solid #e5e7eb;
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.3rem;
            }
            .review-card {
                height: 300px;
            }
        }

        @media (max-width: 768px) {

           .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }
            .page-header {
                padding: 40px 20px 30px;
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .review-card {
                height: 350px;
                padding: 25px;
            }

            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-number {
                font-size: 2.5rem;
            }
            .page-footer {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 60px;
            padding-top: 30px;
            border-top: 1px solid #e5e7eb;
            color: #6b7280;
            font-size: 0.95rem;
        }
         .review-text {
            color: #4b5563;
            font-size: 1.05rem;
            line-height: 1.5;
            margin-bottom: 0px;
            flex-grow: 1;
        }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .review-card {
                height: 380px;
            }

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

            .stats-grid {
                grid-template-columns: 1fr;
            }
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }
