/* General Styles */
body {
    font-family: "DM Sans", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

header p {
    font-size: 1.2em;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Swiper Carousel Styles */
.swiper-container {
    width: 100%;
    height: 100vh;
    background-color: #000;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
     padding: 10px;
    border-radius: 8px;
}

.logo-container img {
    max-width: 120px; /* Adjust size as needed */
    height: auto;
}


.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    height: 40px;
    width:  40px;
}

.swiper-pagination-bullet {
    background: rgb(255, 181, 181);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ec6868;
    opacity: 1;
}

/* About Section Styles */
.about {
    padding: 40px 0;
    background: white;
    text-align: center;
    font-family: "Atkinson Hyperlegible Next", serif;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Download Section Styles */
.download {
    padding: 40px 0;
    background: #f4f4f4;
    text-align: center;
}

.download h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.download p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
}

.btn:hover {
    background: #45a049;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* General Container Styles */
.welcome-container {
    background-color: rgba(255, 255, 255, 0.788);
    padding: 20px;
    text-align: center;
}

/* Heading Styles */
.welcome-heading {
    background-color: rgba(0, 0, 0, 0.788);
    padding: 20px;
    padding-bottom: 40px;
    border-radius: 10px;
    font-style: italic;
    color: #ff5456;
    font-size: 2.5rem; /* Default font size */
    margin: 0 auto;
    max-width: 90%; /* Ensure it doesn't overflow on smaller screens */
}

/* Paragraph Styles */
.welcome-text {
    font-size: 1.2rem; /* Default font size */
    background-color: #ff5456;
    padding: 10px;
    font-style: oblique;
    margin: 20px auto 0;
    max-width: 90%; /* Ensure it doesn't overflow on smaller screens */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .welcome-heading {
        font-size: 2rem; /* Smaller font size for tablets */
        padding: 15px;
        padding-bottom: 30px;
    }

    .welcome-text {
        font-size: 1rem; /* Smaller font size for tablets */
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .welcome-heading {
        font-size: 1.5rem; /* Smaller font size for mobile */
        padding: 10px;
        padding-bottom: 20px;
    }

    .welcome-text {
        font-size: 0.9rem; /* Smaller font size for mobile */
        padding: 5px;
    }
}


