@charset "UTF-8";
/* CSS Document */

/* Basic Reset / Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #121C27;
    color: #fff;
}

/* Header */
.header-section {
    background-color: #373F51;
    padding: 2rem 0;
}
.header-container h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    margin: 0;
}
.demo-button {
    background-color: #E54444;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.demo-button:hover {
    background-color: #D44646;
}

/* Hero Section */
.hero-section {
    background-color: #1f2025;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.hero-subtitle {
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.hero-title {
    font-size: 64px;
    color: #4949E2;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
}
.hero-title-2 {
    font-size: 1.875rem; /* 30px */
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: "Oxanium", sans-serif;
    font-weight: 500;
}
.text-line-container {
    display: flex;
    align-items: center;
    margin: 0rem 0;
}
.text-line-container .hero-title-2 {
    margin-right: 1rem;
}
.text-line-bar {
    flex: 1;
    height: 2px;
    background-color: #fff;
}
.btn-started {
    background-color: #E54444;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-started:hover {
    background-color: #D44646;
}
.btn-look {
    background-color: #ffffff;
    color: #121C27;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-look:hover {
    opacity: 0.9;
}

/* Logos */
.svg-section img {
    height: 30px;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
    border-radius: 35px;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    height: 100%;
}
.feature-card img {
    max-width: 60px;
    margin-bottom: 5px;
    margin-top: 8px;
}
.feature-card h5 {
    font-size: 20px;
    line-height: 40px;
    margin-top: 10px;
}
.feature-card p {
    font-size: 15px;
    color: #ccc;
    width: 300px;
}

.white-section {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;	
}

/* Contact Form */
.contact-container {
    background: white;
    padding: 24px;
    max-width: 600px;
    border-radius: 35px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    margin: auto;
}

.contact-form {
    width: 100%;
    display: grid;
    grid-template-columns: 6;
    grid-gap: 10px;
    align-items: center;
}

.contact-form input {
    width: 100%;
    padding: 16px;
    border: none;
    background: #f0f0f0;
    border-radius: 35px;
    font-size: 16px;
    color: #333;
}

.full-width {
    grid-column: span 2;
}

.btn-submit {
    background: #d9534f;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    background: #c9302c;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-title-2 {
        font-size: 1.4rem;
    }
		
    .position-absolute.text-white.text-center {
        left: 50% !important; /* Move text to center */
        right: auto !important;
        transform: translate(-50%, -50%) !important; /* Ensure it's centered */
        text-align: center;
        max-width: 90%; /* Make sure it doesn't overflow */
    }

    .contact-form {
        grid-template-columns: 1; /* Make inputs stack on mobile */
    }

    .btn-submit {
        grid-column: span 1;
    }
}

.hero-buttons button + button {
    padding-bottom: 15px;
}	

    .oxanium-<uniquifier> {
     font-family: "Oxanium", sans-serif;
     font-optical-sizing: auto;
     font-weight: <weight>;
     font-style: normal;
}
