/* General styles for the page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    overflow-x: hidden;
    text-align: center;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    padding: 40px;
    background-color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

header img {
    max-width: 180px;
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.1);
}


/* Content section */

.content {
    padding: 120px 20px 40px;
    animation: fadeIn 1.5s ease-in-out;
}

h1,
h2 {
    color: #333;
    font-size: 36px;
    margin: 20px 0;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    color: #444;
}

p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 28px;
    margin: 40px 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #444;
    display: inline-block;
    padding-bottom: 10px;
}


/* Screenshot images */

.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.screenshots img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshots img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}


/* Footer */

footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 20px;
    font-size: 14px;
}

a {
    color: #f1f1f1;
    text-decoration: underline;
}

a:hover {
    color: #f76c6c;
}


/* Call to Action Button */

.cta-btn {
    background-color: black;
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 30px;
}

.cta-btn:hover {
    background-color: #333;
    transform: scale(1.05);
}


/* Services & Vision Sections */

.services,
.vision {
    padding: 40px 20px;
    background-color: #f1f1f1;
    margin-top: 40px;
    border-radius: 8px;
}

.services h3,
.vision h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.services p,
.vision p {
    font-size: 18px;
    color: #555;
}


/* FadeIn Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
