@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat:wght@400;700&display=swap');
body, html {
    font-family: 'Montserrat', Arial, sans-serif;
    color: white;
    background-color: #1c1c1c;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.highlight {
    color: #b9d5f9;
    font-size: 3em;
    font-weight: 700;
    font-family: "Merriweather", 'Times New Roman', Times, serif;
}
.container {
    width: 80%;
    margin: 0 auto;
}
header {
    position: relative;
    color: white;
    overflow: hidden;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    top: 0;
    z-index: 2;
}
.navbar img { width:10rem; }
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 80px;
}
.navbar .nav-links li { display: inline-block; position: relative; }
.navbar .nav-links a {
    text-decoration: none;
    color: #b8d5fc;
    font-size: 26px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}
.navbar .nav-links a:hover { color: #ddd; }
.contact {
    padding: 100px 0;
    background-color: #333;
    text-align: center;
}
.contact h2 {
    font-size: 48px;
    margin-bottom: 50px;
}
.contact form {
    max-width: 600px;
    margin: 0 auto;
}
.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: white;
}
.contact form input::placeholder,
.contact form textarea::placeholder {
    color: #aaa;
}
.contact form button {
    padding: 10px 20px;
    background-color: #bad5f6;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-family: "Montserrat", 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: background-color 0.3s;
}
.contact form button:hover {
    background-color: #008ecc;
}
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 100;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-logo p {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease-in-out;
}
.footer-links li a:hover {
    color: #bad5f6;
}
.footer-bottom {
    margin-top: 20px;
}
.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9em;
    opacity: 0.8;
}
.about-hero {
    background: linear-gradient(120deg, #222 60%, #2c3e50 100%);
    padding: 100px 0 60px 0;
    text-align: center;
}
.about-hero-title {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    color: #b9d5f9;
    font-family: "Merriweather", 'Times New Roman', Times, serif;
}
.about-hero-sub {
    font-size: 1.5em;
    color: #bad5f6;
    margin-bottom: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}
.about-modern {
    background: #333;
    padding: 60px 0;
}
.about-modern-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}
.about-modern-img {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.about-modern-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-modern-text {
    flex: 1 1 0;
    min-width: 0;
    font-size: 1.15rem;
    color: #fff;
    background: rgba(44,62,80,0.08);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
    .about-hero { padding: 60px 0 30px 0; }
    .about-hero-title { font-size: 2em; }
    .about-hero-sub { font-size: 1.1em; }
    .about-modern-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .about-modern-img {
        width: 100%;
        margin-bottom: 1rem;
    }
    .about-modern-img img {
        max-width: 98vw;
        min-width: 0;
    }
    .about-modern-text {
        text-align: left;
        padding: 24px 10px;
        width: 100%;
        font-size: 1em;
    }
}
@media (max-width: 600px) {
    .about-hero { padding: 40px 0 20px 0; }
    .about-hero-title { font-size: 1.3em; }
    .about-hero-sub { font-size: 1em; }
    .about-modern {
        padding: 30px 0;
    }
    .about-modern-img img {
        max-width: 98vw;
        border-radius: 12px;
    }
    .about-modern-text {
        padding: 16px 4px;
        font-size: 0.98em;
    }
}

.interactive-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgba(185, 213, 249, 0.3);
    border: 2px solid #bad5f6;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background 0.2s, border 0.2s;
    z-index: 9999;
    opacity: 0;
    box-shadow: 0 0 24px #bad5f644;
}