@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@300..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Parkinsans:wght@300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #1e1e1e #000000;
}

body {
    background-color: black;
    color: white;
    font-family: Parkinsans;
}

hr {
    display: none;
}

a {
    color: #4d9dff;
    text-decoration: none;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px auto;
}

.logo h1 {
    color: #606dfa;
}

.links a {
    margin: 0 20px;
    color: white;
    padding: 8px;
    border-radius: 5px;
    transition: 0.2s ease;
}

.links a:hover {
    background-color: #ffffff1b;
}

.heroine {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 50px;
    margin: 100px 0;
}

.text-section {
    width: 50%;
}

.text-section h1 {
    margin-bottom: 10px;
}

.text-section p {
    line-height: 1.6;
}

.image-section img {
    border-radius: 20px;
}

.work-btn {
    display: inline-block;
    background-color: #006f14;
    padding: 10px 20px;
    margin: 10px 0px;
    border-radius: 30px;
    color: #ffffff;
    transition: 0.3s ease;
}

.work-btn:hover {
    background-color: #003a74;
}

.services-section {
    margin: 100px 0px;

}

.services-section h1 {
    text-align: center;
}

.services {
    display: flex;
    margin: 30px;
    justify-content: space-around;
}

.service {
    background-color: #ffffff21;
    padding: 20px;
    width: 600px;
    text-align: center;
    border-radius: 20px;
    font-size: 0.9em;
}

.service i {
    font-size: 2em;
    margin-bottom: 10px;
}

.btn {
    display: block;
    background-color: #00446f;
    padding: 10px 20px;
    margin: 10px 0px;
    border-radius: 10px;
    color: #ffffff;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #003a74;
}

.sections {
    margin: 100px;
}

.section-text {
    margin: 100px auto;
    display: flex;
    width: 80%;
}

.section-text p {
    margin: auto;
    list-style: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.section-text p:hover {
    background-color: #ffffff21;
}

#selected {
    background-color: #ffffff21;
}

.text {
    text-align: center;
    margin: 50px 0px;
    margin-top: 70px;
}

.work {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
    width: 1400px;
    margin-bottom: 100px;
}

.work img {
    width: 400px;
    margin: 10px;
    border-radius: 20px;
    border: 4px solid white;
}

.image-container {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100.91%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.visit-btn {
    background: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.visit-btn:hover {
    background: #0056b3;
}

.contact {
    width: 800px;
    margin: 50px auto;
    background-color: #ffffff13;
    border-radius: 20px;
    padding: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00e5ff;
}

form input,
form textarea {
    width: 100%;
    resize: vertical;
    height: auto;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #00e5ff;
    outline: none;
    background: rgba(0, 0, 0, 0.8);
}

/* Buttons */
form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #00698f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background: #3939ff;
}










.footer {
    background-color: #1c1c1c;
    padding: 20px;
    text-align: center;
}

.footer a {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    border-radius: 6px;
    border: 2px solid #000000;
    transition: background 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 6px;
}

body::-webkit-scrollbar {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body:hover::-webkit-scrollbar {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .navigation {
        flex-direction: column;
        align-items: center;
    }

    hr {
        display: block;
        margin-top: -20px;
    }

    .links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .links a {
        margin: 10px;
    }

    .heroine {
        margin-top: 0px;
        padding: 0 20px;
        flex-direction: column;
    }

    .text-section {
        width: 100%;
        font-size: 0.9em;
        padding: 20px;
    }

    .image-section img {
        width: 100%;
        max-width: 400px;
        height: auto;
        display: none;
    }

    .work-btn {
        padding: 10px 25px;

    }

    .services {
        flex-direction: column;
    }

    .service {
        margin: 20px auto;
        width: 300px;
    }

    .footer p {
        font-size: 0.8em;
    }

    .section-text {
        margin-top: 20px;
    }

    .section-text p {
        font-size: 0.8em;
    }

    .work {
        width: 100vw;
    }

    .work img {
        width: 350px;
    }

    .text h1 {
        font-size: 1.5em;
    }

    .text p {
        font-size: 0.9em;
    }

    .image-container img {
        width: 90%;
    }

    .overlay h2 {
        font-size: 1em;
    }

    .overlay a {
        font-size: 0.7em;
    }

    .contact {
        width: 100vw;
    }

    form input, form textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .heroine {
        flex-direction: column;
        padding: 20px;
    }

    .text-section {
        width: 100%;
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .links a {
        margin: 5px;
        padding: 10px;
    }

    .work-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .heroine {
        padding: 10px;
    }

    .text-section p {
        font-size: 14px;
    }

    .navigation {
        padding-top: 10px;
    }

    .links a {
        padding: 10px;
        font-size: 14px;
    }

    .work-btn {
        padding: 15px;
        font-size: 18px;
    }
}