/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9fb;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6e6e, #f44336);
    padding: 100px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.hero-section .logo img {
    max-width: 180px;
    transition: transform 0.5s ease;
}

.hero-section .logo img:hover {
    transform: scale(1.1);
}

.hero-section .title {
    font-size: 3.2em;
    margin: 20px 0;
    color: white;
    letter-spacing: 1px;
}

.hero-section .subtitle {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 300;
}

.download-button {
    background-color: white;
    color: #f44336;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.download-button i {
    margin-right: 10px;
}

.download-button:hover {
    background-color: #f44336;
    color: white;
    transform: scale(1.05);
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Next and previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

@media (max-width: 900px) {
    .content-container {
        grid-template-columns: 1fr;
    }
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.content-card h2 {
    font-size: 2.2em;
    color: #34495e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.content-card h2 i {
    margin-right: 10px;
    color: #f44336;
}

.features-list li {
    padding: 10px 0;
    font-size: 1.2em;
    color: #7f8c8d;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #4caf50;
    margin-right: 10px;
}

.install-list li {
    padding: 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.install-list i {
    color: #f44336;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

footer .social-media p {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 300;
}

footer .social-media i {
    color: white;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-media i:hover {
    transform: scale(1.2);
    color: #f1c40f;
}

/* Responsive Design */

/* For tablets (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-section .title {
        font-size: 2.6em;
    }

    .hero-section .subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .download-button {
        font-size: 1.1em;
        padding: 12px 35px;
    }

    .content-card {
        padding: 30px;
    }

    .content-card h2 {
        font-size: 2em;
    }

    .features-list li,
    .install-list li {
        font-size: 1.1em;
    }

    .screenshot-container {
        flex-direction: column;
    }
}

/* For mobile phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-section .logo img {
        max-width: 150px;
    }

    .hero-section .title {
        font-size: 2.2em;
    }

    .hero-section .subtitle {
        font-size: 1.1em;
    }

    .download-button {
        font-size: 1em;
        padding: 10px 30px;
    }

    .content-container {
        padding: 15px;
    }

    .content-card {
        padding: 20px;
    }

    .content-card h2 {
        font-size: 1.8em;
    }

    .features-list li,
    .install-list li {
        font-size: 1em;
    }

    footer .social-media p {
        font-size: 1.1em;
    }
}