:root {
      --primary-color: #8e6c88;
      --secondary-color: #d4b483;
      --dark-color: #333333;
      --light-color: #f8f9fa;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-color);
      overflow-x: hidden;
    }

    #sparkCanvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      display: block;
    }

    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }
    
    .navbar {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(255, 255, 255, 0.98);
    }
    
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary-color) !important;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--dark-color) !important;
      margin: 0 10px;
      position: relative;
    }
    
    .nav-link:hover {
      color: var(--primary-color) !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .hero-section {
      height: 100vh;
      min-height: 600px;
      position: relative;
      overflow: hidden;
    }
    
    .carousel-item {
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    
    .carousel-item img {
      object-fit: contain;
      height: 100%;
      width: 100vh;
    }
    
    .carousel-caption {
      bottom: 30%;
      text-align: center;
      left: 10%;
      right: 50%;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease 0.3s forwards;
      opacity: 0;
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      padding: 12px 30px;
      font-weight: 500;
      letter-spacing: 1px;
      animation: fadeInUp 1s ease 0.6s forwards;
      opacity: 0;
    }
    
    .btn-primary:hover {
      background-color: transparent;
      color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .btn-outline-primary {
      color: var(--primary-color);
      border-color: var(--primary-color);
      background-color: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
      background-color: var(--primary-color);
      color: #fff;
      border-color: var(--primary-color);
    }

    
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      color: var(--primary-color);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background-color: var(--secondary-color);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-section {
      padding: 100px 0;
      background-color: var(--light-color);
    }
    
    .about-img {
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .about-img:hover {
      transform: scale(1.03);
    }
    
    .services-section {
      padding: 100px 0;
      background-color: #fff;
    }
    
    .service-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      margin-bottom: 30px;
      background-color: #fff;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
        
    .contact-section {
      padding: 100px 0;
      background-color: var(--light-color);
    }
    
    .contact-info {
      margin-bottom: 30px;
    }
    
    .contact-icon {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-right: 15px;
    }
    
    .form-control {
      border-radius: 0;
      border: 1px solid #ddd;
      padding: 12px 15px;
      margin-bottom: 20px;
    }
    
    .form-control:focus {
      box-shadow: none;
      border-color: var(--primary-color);
    }
    
    footer {
      background-color: var(--dark-color);
      color: #fff;
      padding: 50px 0 20px;
    }
    
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 20px;
    }
    
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: #fff;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--primary-color);
      transform: translateY(-5px);
    }
    
    .footer-link {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-link:hover {
      color: var(--secondary-color);
    }
    
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-color);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    #whatsapp-button{
      position: fixed;
     bottom: 20px;
     left: 20px;
     z-index: 1000;
     background-color: #f3f7f4;
     padding: 12px;
     border-radius: 50%;
     box-shadow: 0 4px 10px rgba(0,0,0,0.2);
     transition: background-color 0.3s ease;

    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @media (max-width: 992px) {
      .carousel-caption {
        right: 10%;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero-section, .carousel-item {
        height: 80vh;
        min-height: 500px;
      }
      
      .carousel-caption {
        bottom: 20%;
        left: 5%;
        right: 5%;
        text-align: center;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
    }