/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 7%;
    display: flex;
    align-items: center;
    z-index: 100;
    transition: 0.5s ease;
    box-shadow: 0 0.0625rem 0.625rem var(--shadow-color);
    background: var(--main-color);
    border-bottom: 2px solid var(--accent-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: auto;
    text-decoration: none;
    transition: 0.3s ease;
}

.logo img:nth-child(1) {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.ltxt {
    font-weight: 650;
    text-decoration: none;
    color: var(--bg-color);
    font-size: 1.25rem;
    border-bottom: 1px solid var(--logo-yellow);
    font-family: var(--font-family-Geom);
}

.logo-text img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.navbar a {
    position: relative;
    font-size: 16px;
    margin-right: 2.1875rem;
    color: var(--bg-color);
    font-weight: 500;
}

.demo-btn {
    align-items: center;
    background-color: #fa6400;
    border-radius: .25rem;
    color: var(--white-color);
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    position: relative;
    padding: 10px 15px;
}

.demo-btn:hover,
.demo-btn:focus {
    background-color: #fb8332;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.demo-btn:hover { transform: translateY(-1px); }
.demo-btn:active {
    background-color: #c85000;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    font-size: 20px;
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 8px;
    border-radius: 5px;
}

.toggle-btns {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 890px) {
    .navbar {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 15px 25px;
        border-radius: 30px;
        background: var(--main-color);
        box-shadow: 0 0.1rem 1rem var(--shadow-color);
        width: 85%;
    }

    .header {
        box-shadow: none;
    }

    .header.sticky {
        box-shadow: 0 0.1rem 1rem var(--shadow-color);
        background: var(--main-color);
    }

}


@media (max-width: 685px) {
    .menu-toggle {
        display: inline-flex;
    }

    .navbar {
        position: fixed;
        right: -100%;
        top: 0;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        width: 80%;
        height: 100%;
        border-radius: 0;
        padding: 2rem;
        gap: 2px;
    }

    .navbar.active {
        display: flex;
        right: 0;
    }

    .navbar a:nth-child(1) { margin-top: 25px; }
    .navbar a {
        width: 100%;
        padding: 15px 5px;
    }
    
    .demo-btn{
        padding: 15px 5px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 35px;
    }

    #mobile-close {
        position: absolute;
        bottom: 5px;
        left: 0;
        background: var(--danger-color);
        padding: 8px;
        font-size: 20px;
        border-radius: 2px;
        color: white;
    }
}


@media (max-width: 500px) {
    .navbar {
        left: 0;
        width: 100%;
    }
}



/* HERO */
.hero {
    padding: 5rem 0 6rem;
    overflow: hidden;
    background-color: var(--light-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 25px 0 15px 0;
    color: var(--dark-color);
    font-family: var(--font-family-Oxygen);
}

.hero p {
    font-size: 16px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: var(--font-family-Geom);
}

.hero-cta {
    display: flex;
    gap: 10px;
}

.hero-cta .btn {
    padding: 10px 20px;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--info-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 25%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 12s ease-in-out infinite;
}


@media (max-width: 768px) {
    .hero { padding: 100px 0; }

    .hero-container{
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem;
    }

    .hero-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1,
    .hero-content p{
        text-align: center;
    }

    .hero-image { height: 300px; }
    .hero-image img { object-fit: contain; }
    .user-form-container.container{ padding: 0; }
}

@media (max-width: 580px) {
    .hero-cta{
        display: flex;
        flex-direction: column;
        width: 80%;
    }
    
    .hero-cta .btn{
        width: 100%;
        text-align: center;
    }
}

/* USER FORM */
.user{
    background: rgba(30, 30, 40, 0.95);
    padding: 40px 30px;
}

.user-form-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.user-form-container h3 {
    font-size: 25px;
    color: #fa6400;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.form-description {
    color: #adb5bd;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
}


.form-box {
    border-radius: 20px;
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.15), inset -2px -2px 6px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.form-input {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #e9ecef;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-group label::after {
    content: '';
    color: #e74c3c;
    margin-left: 3px;
}

.form-group label[for="students"]::after,
.form-group label[for="message"]::after,
.form-group label[for="newsletter"]::after {
    content: '';
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #495057;
    border-radius: 12px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #2d3436;
    color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b2bec3;
}

.form-group select {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.form-note {
    font-size: 16px;
    color: #adb5bd;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.form-note a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    border-color: #e9ecef;
}

@media (max-width: 992px) {
    .form-row{ flex-direction: column; }
    .form-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 5px;
        margin-top: 15px;
    }
}

@media (max-width: 800px) {
    .user-form-container {
        display: flex;
        flex-direction: column;
    }
}

@keyframes formSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*





.demo-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.demo-success i {
    color: #28a745;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.demo-success h4 {
    color: #155724;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.demo-success p {
    color: #0f5132;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus) {
    border-color: #2ecc71;
}



.hero-form-container {
    animation: formSlideUp 0.6s ease-out;
}

.hero-content h1 {
    margin-bottom: 10px;
}

.hero-content {
    padding-right: 20px;
} */

/* @media (prefers-color-scheme: dark) {
    .hero-form-container {
        background: rgba(30, 30, 40, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-form-container h3 {
        color: #f8f9fa;
    }
    
    .form-description {
        color: #adb5bd;
    }
    
    .form-group label {
        color: #e9ecef;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #2d3436;
        border-color: #495057;
        color: #f8f9fa;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #6c757d;
    }
    
    .checkbox-group label {
        color: #adb5bd;
    }
    
    .form-note {
        color: #adb5bd;
    }
} */

/* FEATURES */
.features {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 60%;
    background: radial-gradient(circle at center top,
        rgba(231, 101, 85, 0.15) 0%,
        rgba(231, 101, 85, 0.10) 40%,
        rgba(231, 101, 85, 0.00) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin: 20px 0;
}

.section-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.section-description {
    color: var(--gray-color);
    font-size: 16px;
    font-family: var(--font-family-Oxygen);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card.first-feature {
    grid-column: span 3;
}

.feature-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--main-color);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    margin: 15px 0;
    color: var(--accent-color);
    font-family: var(--font-family-Geom);
}

.feature-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .feature-card.first-feature { grid-column: span 2; }
}

@media (max-width: 600px) {
    .section-title { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.first-feature { grid-column: span 1; }
}



/* DASHBOARD */
.dashboard {
    padding: 2rem 0;
    background-color: var(--logo-yellow);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dashboard-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
    font-family: var(--font-family-Geom);
}

.dashboard-content p {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 16px;
    font-family: var(--font-family-Oxygen);
    line-height: 1.6;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.stat-item {
    background: var(--white-color);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

@media (max-width: 999px){
    .dashboard{ padding: 5rem; }
    .dashboard-container{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dashboard-content h2,
    .dashboard-content p{
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 410px){
    .dashboard-stats{ grid-template-columns: 1fr; }
}


/* PARTNERS */
.partners {
    padding: 6rem 0;
    background-color: var(--white-color);
    overflow: hidden;
}

.partners-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    padding: 0 1rem;
    transition: var(--transition);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partner-logo {
        width: 150px;
        height: 80px;
    }
}



/* ANNIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}