 /* Base styles */
        body {
            font-family: 'Inter', sans-serif;
            color: #2F2F2F; /* darkSlate */
            background-color: #F1F0FF; /* paleLavender */
        }
        
        /* Page Section Display */
        .page-section {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        .page-section.active {
            display: block;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
        }
        .modal.is-open {
            display: flex;
        }
        
        /* Scroll Progress */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background-color: #303C6C; /* deepIndigo */
            width: 0%;
            z-index: 100;
            transition: width 0.1s linear;
        }

        /* Parallax-like effect */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Testimonial Carousel */
        .testimonial-slide {
            display: none;
            animation: fadeIn 0.8s;
        }
        .testimonial-slide.active {
            display: block;
        }

        /* Floating particles (example) */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        .hero-particles span {
            position: absolute;
            display: block;
            list-style: none;
            width: 20px;
            height: 20px;
            animation: float 25s linear infinite;
            bottom: -150px;
        }
        .hero-particles span:nth-child(1) { left: 25%; width: 30px; height: 30px; animation-delay: 0s; }
        .hero-particles span:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
        .hero-particles span:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
        .hero-particles span:nth-child(4) { left: 40%; width: 40px; height: 40px; animation-delay: 0s; animation-duration: 18s; }
        .hero-particles span:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
        .hero-particles span:nth-child(6) { left: 75%; width: 30px; height: 30px; animation-delay: 3s; }
        .hero-particles span:nth-child(7) { left: 35%; width: 50px; height: 50px; animation-delay: 7s; }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
        }
/* Typewriter cursor */
@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}
#typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 1s step-end infinite;
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: inline-block;
  min-width: 200%;
  animation: marquee 25s linear infinite;
}

/* Slideshow */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.active {
  opacity: 1;
}