@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;
    text-align: center;
    width: 100%;
    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;
}

.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;
}
.about-values {
    background: #252525;
    padding: 60px 0;
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}
.value-card {
    background: rgba(51,51,51,0.45);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(34, 60, 80, 0.18);
    border: 1.5px solid rgba(185, 213, 249, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #bad5f6;
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 32px 24px;
    text-align: center;
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 350px;
    margin: 0 10px 20px 10px;
}
.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px 0 rgba(34, 60, 80, 0.22);
}
.value-card h3 {
    font-size: 2em;
    margin-bottom: 16px;
    color: #b9d5f9;
}
.value-card p {
    font-size: 1.15em;
    color: #fff;
}

/* Small Card Style */
.smcard {
    background: rgba(51,51,51,0.45);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(34, 60, 80, 0.18);
    border: 1.5px solid rgba(185, 213, 249, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #bad5f6;
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 32px 18px 28px 18px;
    text-align: center;
    flex: 0 0 270px;
    min-width: 180px;
    max-width: 270px;
    margin: 0 10px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.smcard img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* CTA Button Style (used for social-media buttons) */
.cta {
    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;
    font-size: 1em;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}
.cta:hover {
    background-color: #008ecc;
}

@media (max-width: 600px) {
    .smcard {
        min-width: 60px;
        max-width: 80px;
        padding: 8px 2px;
    }
    .smcard img {
        width: 40px;
        height: 40px;
    }
    .smcard .cta {
        font-size: 0.95em;
        padding: 8px 0;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        margin: 10px 0 0 0;
    }
}