/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
}

/* Hero Section with Strongly Blurred Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(35px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.buttons button {
    padding: 0.8em 2em; /* Increase padding for larger button size */
    margin: 0.5em;
    border: none;
    border-radius: 30px; /* Slightly larger border radius for a smoother look */
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2em; /* Increase font size */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.buttons button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 4em 1em;
    background-color: #1a1a1a;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #fff;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    max-width: 800px;
    margin: 0 auto;
}

.features h3 {
    font-size: 1.5em;
    color: #fff;
}

/* Rainbow Text Animation */
.rainbow{
    animation: rainbow 4s linear infinite;
}

@keyframes rainbow {
    0% { color: #ff0000; }
    16% { color: #ff9900; }
    33% { color: #ffff00; }
    50% { color: #33cc33; }
    66% { color: #3399ff; }
    83% { color: #9900cc; }
    100% { color: #ff0000; }
}

/* Feature Items with Individual Animations */
.feature-item {
    padding: 1em;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonials Section */
.testimonials {
    padding: 4em 1em;
    text-align: center;
    background-color: #1a1a1a;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    font-size: 1.2em;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial.active {
    opacity: 1;
}

.carousel-controls button {
    margin: 1em 0.5em;
    padding: 0.5em 1em;
    border: none;
    background-color: #222;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-controls button:hover {
    background-color: #444;
}
