
:root {
    --bg-dark: #060b1a;
    --accent-blue: #00d4ff;
    --nav-height: 80px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow-x: hidden;
}

/* --- Navigation Header --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(6, 11, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px; /* Restored to original visible size */
    width: auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.btn-glow {
    padding: 10px 25px;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
} 

/* --- Contact Us Section --- */
.contact-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-item p {
    color: #cbd5e1;
    line-height: 1.5;
    margin: 5px 0;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}
.footer-cta {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-blue);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-cta:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.zoho-embed-container {
    margin-top: 15px;
    background: #ffffff; /* Keep white if your Zoho theme is white */
    border-radius: 8px;
    padding: 0;
    width: 100%;
    /* Remove any 'height' or 'max-height' here */
    overflow: hidden; 
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.zoho-embed-container iframe {
    display: block;
    margin: 0 auto;
    /* The height is now controlled by JavaScript */
}

/* Ensure the main wrapper can accommodate the form's height */
.form-wrapper {
    width: 95%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    /* Allow the wrapper to grow with the form */
    height: auto; 
    max-height: none; 
}

/* Social Row Styling */
.mini-social-row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.mini-social-row a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: 0.3s;
}

.mini-social-row a:hover {
    color: #00d4ff;
    transform: translateY(-3px);
}
/* Mobile Responsiveness for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .links-row {
        flex-direction: column;
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}