* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #F4F7FA;
    color: #2F5573;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.hero {
    background: radial-gradient(circle at top, #05B3CF, #0B0F14);
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.logo {
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #0B0F14;
    border-left: 4px solid #05B3CF;
    padding-left: 12px;
}

.services,
.founders {
    background: #EEF3F7;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.contact a {
    color: #05B3CF;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.inquiry-form {
    margin-top: 30px;
    max-width: 500px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.inquiry-form button {
    background: #05B3CF;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.inquiry-form button:hover {
    background: #2F5573;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.slide-up {
    animation: slideUp 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    background: #0B0F14;
    color: #ffffff;
    text-align: center;
    padding: 22px;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: rgba(5, 179, 207, 0.35);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    z-index: 998;
}

/* Disable on touch devices */
@media (max-width: 768px) {
    .cursor-dot {
        display: none;
    }
}
