* {
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    color: #343a40;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.Home {
    background-color: #f8f9fa;
}

.Home h1 {
    text-align: center;
    color: #343a40;
}

.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.imgs {
    display: flex;
    margin-top: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.imgs img {
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.infrom {
    margin: 20px auto;
    padding: 20px;
    max-width: 1000px;
}

.infrom1 {
    display: flex;
    gap: 20px;
}

.infrom1 .text-content {
    flex: 1;
}

.infrom1 img {
    flex: 1;
    border-radius: 15px;
    max-width: 45%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.infrom2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}


.infrom2 img {
    border-radius: 15px;
    width: 450px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.information {
    background-color: #ffffff;
    color: #343a40;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    border: 1px solid #dee2e6;
}

.information h2 {
    font-family: 'Segoe UI', sans-serif;
    color: #007bff;
    margin-bottom: 25px;
    font-size: 2.2em;
    font-weight: 600;
}

.information p {
    color: #6c757d;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 10px;
}

.information a {
    text-decoration: none;
    color: #007bff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.information a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    /* Darker, more modern blue-gray */
    color: #ecf0f1;
    /* Lighter text for contrast */
    padding: 50px 30px;
    /* Increased padding */
    text-align: center;
    margin-top: 80px;
    /* More space above footer */
    border-top: 4px solid #3498db;
    /* Accent border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    /* Space between footer elements */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: space-around;
    /* Distribute space */
    align-items: center;
    max-width: 1200px;
    /* Max width for content */
    width: 100%;
    gap: 30px;
}

.footer-text {
    flex: 1;
    /* Take up available space */
    min-width: 300px;
    /* Minimum width before wrapping */
    text-align: left;
    /* Align text to the left */
}

.footer-text h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Slightly softer font */
    color: #ecf0f1;
    font-size: 2.2em;
    /* Larger heading */
    margin-bottom: 20px;
    font-weight: 700;
    /* Bolder */
    letter-spacing: 1px;
}

.footer-text h2 {
    color: #bdc3c7;
    /* Softer accent color */
    font-size: 1.3em;
    /* Larger font size */
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-text h2 a {
    color: #3498db;
    /* Accent color for link */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-text h2 a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.footer-text p {
    color: #95a5a6;
    /* Muted text color */
    font-size: 1em;
    /* Slightly larger paragraph text */
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-image {
    flex-shrink: 0;
    /* Prevent image from shrinking */
    width: 300px;
    /* Default width */
    height: 300px;
    /* Default height */
    object-fit: cover;
    border: 4px solid #3498db;
    /* Accent border */
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* Softer shadow */
}

.footer-image img {
    display: block;
    /* Remove extra space below image */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure image covers the container */
    border-radius: inherit;
    /* Inherit border-radius from parent */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-text {
        text-align: center;
        min-width: unset;
    }

    .footer-image {
        width: 250px;
        height: 250px;
    }
}

.information .btn a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    /* Modern blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    /* Rounded corners */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    width: 200px;
    text-align: center;
}

.information .btn a:hover {
    background-color: #2980b9;
    /* Darker blue on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    /* Slight lift on hover */
}

.btn a:active {
    transform: translateY(0);
    /* Reset lift on click */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* General Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 5px;
    }

    .infrom1,
    .infrom2 {
        flex-direction: column;
    }

    .infrom1 img,
    .infrom2 img {
        max-width: 100%;
    }

    .information {
        padding: 20px;
        margin: 40px auto;
    }

    .information h2 {
        font-size: 1.8em;
    }

    .information p {
        font-size: 1em;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-text h1 {
        font-size: 1.8em;
    }

    .footer-text h2 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .imgs img {
        height: 200px;
    }

    .information h2 {
        font-size: 1.5em;
    }

    .information p {
        font-size: 0.9em;
    }

    .footer-text h1 {
        font-size: 1.5em;
    }

    .footer-text h2 {
        font-size: 1em;
    }

    .footer-image {
        width: 200px;
        height: 200px;
    }

    .information .btn a {
        width: 100%;
        padding: 15px;
    }
}