 :root {
     --primary-color: #b76e79;
     --secondary-color: #f8e9e9;
     --accent-color: #e75480;
     --dark-color: #5d3a3a;
 }

 body {
     font-family: 'Poppins', sans-serif;
     overflow-x: hidden;
 }

 .logo {
     font-family: 'Dancing Script', cursive;
     font-size: 2.2rem;
     color: var(--primary-color);
 }

 .hero-section {
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../gallery/banner-mehndi.jpg');
     background-size: cover;
     background-position: center;
     min-height: 90vh;
     color: white;
     display: flex;
     align-items: center;
 }

 .hero-title {
     font-family: 'Dancing Script', cursive;
     font-size: 4.5rem;
     margin-bottom: 1.5rem;
 }

 .btn-mehndi {
     background-color: var(--primary-color);
     color: white;
     padding: 12px 30px;
     border-radius: 30px;
     font-weight: 500;
     border: none;
     transition: all 0.3s;
 }

 .btn-mehndi:hover {
     background-color: var(--accent-color);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .section-title {
     font-family: 'Dancing Script', cursive;
     color: var(--primary-color);
     font-size: 3rem;
     margin-bottom: 2rem;
     position: relative;
     display: inline-block;
 }

 .section-title:after {
     content: '';
     position: absolute;
     width: 50%;
     height: 3px;
     background-color: var(--primary-color);
     bottom: -10px;
     left: 25%;
 }

 .about-section,
 .gallery-section,
 .services-section,
 .testimonials-section,
 .contact-section {
     padding: 80px 0;
 }

 .gallery-section img {
     width: 100%;
     height: 500px;
     object-fit: cover;
 }


 .fixed {
     position: fixed;
     top: 80%;
     left: 0;
     padding-left: 5px;
     z-index: 9999;
 }

 .fixed a img {
     width: 45px;
     border-radius: 50%;
 }

 .about-section {
     background-color: var(--secondary-color);
 }

 .gallery-item {
     overflow: hidden;
     border-radius: 10px;
     margin-bottom: 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s;
 }

 .gallery-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .gallery-item img {
     transition: all 0.5s;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .service-card {
     border: none;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s;
     margin-bottom: 30px;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .service-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .testimonial-card {
     background-color: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin: 15px;
 }

 .testimonial-img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     object-fit: cover;
     border: 5px solid var(--secondary-color);
 }

 .contact-section {
     background-color: var(--secondary-color);
 }

 .form-control {
     border-radius: 10px;
     padding: 12px 15px;
     border: 1px solid #ddd;
 }

 .form-control:focus {
     box-shadow: none;
     border-color: var(--primary-color);
 }

 footer {
     background-color: var(--dark-color);
     color: white;
     padding: 30px 0;
 }

 .social-icon {
     color: white;
     font-size: 1.5rem;
     margin: 0 10px;
     transition: all 0.3s;
 }

 .social-icon:hover {
     color: var(--accent-color);
     transform: translateY(-5px);
 }

 .navbar {
     transition: all 0.3s;
 }

 .navbar.scrolled {
     background-color: white !important;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar.scrolled .nav-link {
     color: var(--dark-color);
 }

 .nav-link {
     color: white;
     font-weight: 500;
     margin: 0 10px;
     position: relative;
 }

 .navbar.scrolled .nav-link:before {
     background-color: var(--primary-color);
 }

 .nav-link:before {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: white;
     transition: all 0.3s;
 }

 .nav-link:hover:before {
     width: 100%;
 }

 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background-color: var(--primary-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s;
 }

 .back-to-top.active {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     background-color: var(--accent-color);
     transform: translateY(-5px);
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 3rem;
     }

     .section-title {
         font-size: 2.5rem;
     }


     .navbar {
         background-color: black;
     }
 }