<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset default browser styles */
body, p, ul, li, header, nav, footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #ffffff;
}

header {
    background: #fff;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

header #logo img {
    max-width: 120px;
    margin-left: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    margin-right: 20px;
}

.hamburger:hover {
    color: #555;
}

.overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.overlay-menu ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    width: 100%; /* Ensure the menu spans the full width */
}

.overlay-menu ul li {
    margin: 15px 0; /* Add vertical spacing between menu items */
}

.overlay-menu ul li a {
    display: block; /* Ensure each link takes up the full width */
    color: #fff; /* Set text color to white */
    text-decoration: none; /* Remove underline */
    font-size: 1.2rem; /* Adjust font size for readability */
    text-align: left; /* Align text to the left */
}
.overlay-menu.open {
    display: flex;
}

.overlay-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}

.overlay-menu a:hover {
    text-decoration: underline;
}

.overlay-menu button {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
}
.overlay-menu .close-btn {
    font-size: 1.8rem; /* Set the font size for the X */
    color: #fff; /* Make the X white */
    background: none; /* Remove any background */
    border: none; /* Remove any border */
    cursor: pointer; /* Add a pointer cursor for interactivity */
    margin-bottom: 20px; /* Add space below the X */
    text-align: left; /* Align text to the left */
    padding-left: 20px; /* Add padding to align with menu points */
    display: block; /* Ensure it's treated as a block-level element */
}

/* Padding for all texts */
p, h1, h2, h3, h4, h5, h6 {
    padding-left: 20px;
    padding-right: 20px;
}

/* Image adjustments for reference screen */
.full-width-image img {
    width: 100%; /* Ensures 100% width of the viewport */
    max-width: 100%;
    height: auto; /* Maintain the aspect ratio */
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero section directly under the header */
#hero {
    margin: 0;
    padding: 0;
    position: relative; /* Aligns directly below the header */
    z-index: 1; /* Stays below the header */
}

.hero-bg {
    display: block; /* Remove inline image gaps */
    width: 100%; /* Ensure the image spans the full width */
    height: auto; /* Maintain the aspect ratio */
    max-height: 47vh; /* Limit height to 47% of the viewport */
    margin: 0; /* Remove all margins */
    position: relative; /* Ensure correct placement */
    top: 0; /* Attach directly to the header */
    object-fit: cover; /* Ensures the image covers its container without stretching */
}

.hero-content {
    position: absolute;
    top: 50%; /* Adjust text vertically to the center of the image */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    white-space: nowrap; /* Prevents line breaks */
    font-size: 3.5rem;
    margin-bottom: 6rem;
    color: #fff;
    font-weight: 100; /* Reduced font weight */
}

.btn {
    background: transparent;
    color: #fff;
    padding: 0.4rem 1.5rem;
    font-size: 1.0rem;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 30%;
    background-color: rgba(218, 218, 218, 0.2);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
/* General styles for gallery */
.gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing between rows */
    margin: 0 auto;
}

.gallery .column {
    flex: 1 1 100%; /* Each image takes full width on small screens */
    max-width: 100%;
    text-align: center; /* Center the content in the column */
    padding: 0 20px; /* Add left and right padding */
}

.gallery-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* Center image */
    display: block;
}

.gallery p {
    margin-top: 10px;
    margin-bottom: 20px; /* Add space below each text block */
    text-align: justify;
    line-height: 1.5;
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
    header {
        height: 75px; /* Adjust the height of the header */
        padding: 0; /* Remove additional padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Smaller logo on mobile */
    header #logo img {
        max-width: 80px; /* Make the logo smaller */
        margin-left: 10px; /* Reduce the margin on the left */
    }

    /* Center the hamburger menu */
    .hamburger {
        display: block;
        margin: 0 auto; /* Center the hamburger menu */
        font-size: 1.8rem; /* Adjust size for better visibility */
    }

    nav ul {
        display: none; /* Hide the menu points in the nav bar */
    }

    .hamburger {
        display: block; /* Show hamburger menu in mobile */
        margin: 0 auto; /* Center the hamburger icon */
    }

    .btn {
        margin-top: 20%;
        padding: 0.3rem 1rem; /* Adjust button padding */
        font-size: 0.9rem;
    }

    .hero-content h1 {
        width: 90%; /* Limit the width of the text */
        margin: 0 auto; /* Center the text horizontally */
        font-size: 1.7rem; /* Adjust the font size for mobile devices */
        white-space: nowrap; /* Prevent line breaks */
        overflow: hidden; /* Handle any overflow gracefully */
        text-overflow: ellipsis; /* Add ellipsis if the text overflows */
        margin-bottom: 15px;
    }

    /* Move the "DOWNLOADS" button up */
    .hero-content .btn {
        margin-top: 27%; /* Reduce the top margin to move it up */
        padding: 0.3rem 1.2rem; /* Slightly reduce padding for better fit */
        font-size: 1rem; /* Keep the font size readable */
    }
   /* Gallery layout adjustments for mobile devices */
.gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Consistent gap between items */
    margin-bottom: 10px; /* Ensure rows have the same vertical spacing */
}

.gallery .column {
    flex: 0 0 100%; /* Make each column take up 100% width on mobile */
    text-align: center;
    margin-bottom: 20px; /* Ensure vertical spacing matches the row gap */
    padding: 10; /* Remove any padding to match image width */
}

.gallery img {
    width: 95%;
    max-width: 600px; /* Ensure images have consistent max width */
    height: auto;
    display: block;
    margin: 0 auto;
}

.gallery p {
    width: 95%; /* Match the width of the images */
    max-width: 600px; /* Keep consistent max width */
    margin: 10px auto 10px auto; /* Reduce bottom margin to half */
    padding: 0; /* Remove padding */
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: justify;
}

}

@media (min-width: 769px) {
    .overlay-menu {
        display: none !important; /* Ensure overlay menu is hidden on desktop */
    }

    nav ul {
        display: flex !important; /* Keep normal menu for desktop */
    }

    .hamburger {
        display: none !important; /* Hide hamburger menu on desktop */
    }
}
</pre></body></html>