* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html {
    min-height: 100%;
    font-family: 'Sora', sans-serif;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scroll-behavior: auto !important; /* Disables default smooth scrolling */
    overflow-x: hidden;
}

body {
    background-color: #000000;
}

/* Hide scrollbar for Chrome, Safari, and Edge */
::-webkit-scrollbar {
    display: none;
}

h1 {
    font-size: 2rem;
    margin: 0;
}

h2,
h3,
h4 {
    margin: 0 !important;
}

h2 span {
    white-space: pre-wrap; /* Preserves spaces and line breaks */
    word-break: keep-all; /* Prevents breaking words */
}

ul,
ol {
    list-style: none; /* Remove bullet points and numbering */
}

table {
    border-collapse: collapse; /* Remove space between table cells */
}

a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Set the link color equal to the surrounding text */
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* Dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-size: 3rem;
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.loader-logo {
    width: 200px;
    opacity: 0;
    position: absolute;
    margin: 0 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width:768px) {
    .loader-text {
        font-size: 2rem;
    }
    .loader-logo {
        width: 120px;
    }
}

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    position: fixed;
    padding: 40px 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

nav {
    background: rgba(170, 179, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #f3f3f3;
    font-size: 1rem;
    width: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

ul {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    width: 100%;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #f3f3f3;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
    text-align: center;
}
.title {
    color: #f3f3f3;
    font-size: 3rem;
    font-weight: 500;
    transition: transform 0.1s ease-out;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        width: 80%;
        font-size: 0.8rem;
    }

    .title {
        font-size: 0.8rem;
    }
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Changed to min-height */
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    color: #f3f3f3;
}

.contact-form {
    background: rgba(170, 179, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 2rem;
    color: #f3f3f3;
    font-size: 1.25rem;
    width: 50%;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-section h1 {
    padding: 20px;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row.full-width {
    flex-direction: column;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #ccc;
}

.checkbox-row label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-row input {
    width: auto;
}

.contact-form button {
    padding: 0.75rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ===================== RESPONSIVE ==================== */

/* Tablets */
@media (max-width: 1024px) {
    .contact-form {
        width: 80%;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .contact-form {
        width: 90%;
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .contact-form {
        font-size: 0.8rem;
        padding: 1rem;
    }

    .contact-form h3 {
        font-size: 0.75rem;
    }

    .form-row input,
    .form-row textarea {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px; /* size of the dot */
    height: 8px;
    background-color: white; /* dot color */
    border-radius: 50%;
    pointer-events: none; /* so it doesn't block clicks */
    z-index: 9999;
    transform: translate(-50%, -50%); /* center the dot */
    opacity: 0; /* Start invisible */
}

@media (max-width: 1024px) {
    .custom-cursor {
        display: none;
    }
}
