/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: aqua;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above the content */
}

/* Main Container */
.maincontainer {
    padding: 30px;
    margin-top: 10%;
    margin-left: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 5%;
    width: 90%;
    border-radius: 5px;
    background-color: #fff;
}


.overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.overlay h1 {
    font-size: 3vw;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.5vw;
    margin-bottom: 20px;
}

.overlay button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.overlay button a {
    color: white;
    text-decoration: none;
}

/* About Section */


.about h1 {
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.director h2 {
    font-size: 2.5vw;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline;
}

.founderinfo {
    text-align: right;
    margin-bottom: 20px;
}

.founderinfo img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.founderinfo h5 {
    font-size: 1rem;
    color: #222;
}

.founder-message {
    text-align: left;
    font-size: 1.2vw;
    line-height: 1.7;
    color: #555;
    margin-top: 10px;
}

.founder-message p {
    margin-bottom: 20px;
}

/* Footer */
footer {
    margin-bottom: 0;
    background-color: #050404;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Hide Scrollbar (WebKit - Chrome, Safari) */
::-webkit-scrollbar {
    display: none;
}

/* Hide Scrollbar (Firefox) */
.scroll-container {
    scrollbar-width: none;
}

/* Responsive Design */

/* For Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .overlay h1 {
        font-size: 4vw;
    }

    .overlay p {
        font-size: 2vw;
    }

    .about h1 {
        font-size: 4vw;
    }

    .director h2 {
        font-size: 3vw;
    }

    .founderinfo img {
        width: 25vw;
        height: 25vw;
    }

    .founder-message {
        font-size: 1.5vw;
    }
}

/* For Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        padding-top: 10%;
    }

    .overlay h1 {
        font-size: 6vw;
    }

    .overlay p {
        font-size: 3.5vw;
    }

    .about h1 {
        font-size: 5vw;
    }

    .director h2 {
        font-size: 4.5vw;
    }

    .founderinfo img {
        width: 40vw;
        height: 40vw;
    }

    .founder-message {
        font-size: 2.5vw;
    }
}

/* For Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .overlay h1 {
        font-size: 8vw;
    }

    .overlay p {
        font-size: 4vw;
    }
    

    .about h1 {
        font-size: 6.5vw;
    }

    .director h2 {
        font-size: 5.5vw;
    }

    .founderinfo img {
        width: 45vw;
        height: 45vw;
    }

    .founder-message {
        font-size: 3vw;
    }
}
