* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    width: 180px;
    /* Adjust size as needed */
    display: block;
    margin: 0 auto 10px auto;
    /* Centers the logo above the tagline */
}

.shred-video {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.shred-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%) saturate(110%);
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.video-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
}



body {
    background-color: #f9fafc;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(to right, #e0f2fe, #93c5fd);
    color: #1e293b;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1e293b;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 5px;
    animation: fadeIn 1s ease-in-out;
}

/* Subtle fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header h1 {
    font-size: 2em;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    background-color: #334155;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero */
.how-it-works {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.side-img {
    width: 45%;
    border-radius: 10px;
}

.hero-img {
    width: 60%;
    height: 50%;
    object-fit: cover;
    border-radius: 0 0 15px 15px;
}

.hero {
    background: linear-gradient(to right, #1e293b, #3b82f6);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    color: #444;
}

.testimonial .name {
    margin-top: 10px;
    font-weight: bold;
    color: #1e293b;
}

/* Register section */
.register {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #1e293b;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.register h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.register p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    background-color: #1ebc59;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.footer-left p {
    max-width: 400px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a {
    color: #e2e8f0;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3b82f6;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer-left {
        text-align: left;
    }

    .footer-links {
        text-align: right;
    }
}