﻿/* ✅ Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* ✅ Header & Footer: Light Gray Background */
header {
    background-color: #f8f8f8;
    padding: 15px 0;
    text-align: center;
}

/* ✅ Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

/* ✅ Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #333;
    margin-top: 20px;
}

.footer-logo {
    height: 40px;
    display: block;
    margin: auto;
}

/* ✅ HERO SECTION - RESPONSIVE SLIDESHOW */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Default height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ HERO SECTION - RESPONSIVE SLIDESHOW */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Default height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ Slideshow Container */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    /* ✅ RESPONSIVE SLIDESHOW IMAGES */
    .slideshow img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* ✅ Ensures the whole image is visible */
        position: absolute;
        opacity: 0;
        animation: slideshow 9s infinite;
    }

        /* ✅ Ensure Each Image Appears in Order */
        .slideshow img:nth-child(1) {
            animation-delay: 0s;
        }

        .slideshow img:nth-child(2) {
            animation-delay: 3s;
        }

        .slideshow img:nth-child(3) {
            animation-delay: 6s;
        }

/* ✅ Animation for Smooth Transitions */
@keyframes slideshow {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

/* ✅ HERO CONTENT */
.hero-content {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9; /* ✅ Light background to improve readability */
    width: 100%;
}

    .hero-content h1 {
        font-size: 36px;
        color: #333;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: auto;
        color: #555;
    }

/* ✅ MOBILE-FRIENDLY BUTTON */
.cta-button {
    display: inline-block;
    background-color: #1877f2;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    border: 2px solid white;
    transition: background 0.3s, color 0.3s;
}

    .cta-button:hover {
        background-color: #0056b3;
    }

/* ✅ FULLY MOBILE-FRIENDLY STYLES */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh; /* ✅ Reduce height for better fit */
    }

    .slideshow img {
        object-fit: cover; /* ✅ Make sure image fills without weird cropping */
    }

    .hero-content {
        padding: 20px;
    }

        .hero-content h1 {
            font-size: 24px; /* ✅ Smaller text for mobile */
        }

        .hero-content p {
            font-size: 14px;
        }

    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}




/* ✅ Slideshow Animation */
@keyframes slideshow {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ✅ Cycle Images */
.slideshow img:nth-child(1) {
    animation: fade 12s infinite 0s;
}

.slideshow img:nth-child(2) {
    animation: fade 12s infinite 4s;
}

.slideshow img:nth-child(3) {
    animation: fade 12s infinite 8s;
}

/* ✅ Fade Animation */
@keyframes fade {
    0%, 100% {
        opacity: 0;
    }

    20%, 80% {
        opacity: 1;
    }
}


/* ✅ Features Section */
.features-section {
    padding: 50px 20px;
    text-align: center;
    background: white;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

    .feature-box img {
        width: 80px;
        margin-bottom: 10px;
    }

    .feature-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

/* ✅ Benefits Section */
.benefits-section {
    background: #f3f3f3;
    padding: 50px 20px;
    text-align: center;
}

.benefits-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

    .benefit img {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        margin-right: 20px;
    }

.benefit-text h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

.benefit-text p {
    font-size: 16px;
}

/* ✅ Responsive Adjustments */
@media (max-width: 568px) {
    .benefit {
        flex-direction: column;
        text-align: center;
    }

        .benefit img {
            margin-bottom: 10px;
        }
}

.logo {
    height: 50px;
    vertical-align: middle;
}
/* ✅ Contact Page */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    padding: 20px;
    background: #f3f3f3;
    border-radius: 8px;
}

    .contact-info h1 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .contact-info p {
        font-size: 16px;
        margin: 5px 0;
    }

    .contact-info a {
        color: #007bff;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

@media (max-width: 668px) {
    .contact-container {
        flex-direction: column;
        width: 90%;
    }
}
/* ✅ Pricing Page */
.container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 250px;
    text-align: center;
}

    .plan h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .plan h2 {
        font-size: 18px;
        margin: 5px 0;
    }

.price {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* ✅ Subscribe Button */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

    button:hover {
        background-color: #0056b3;
    }
/* ✅ Hero Section - Full-Screen Slideshow */

