﻿/* ===============================
   ABOUT SECTION
   =============================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1c1c1c;
    color: white;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

/* Title Styling */
.about-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1c40f;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* Description Styling */
.about-description {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.8;
}

/* CTA Button Styling */
.btn-warning {
    background: linear-gradient(135deg, #ffb200, #ff8f00);
    border: none;
    color: white;
    background-size: 200%;
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 30px;
    transition: background-position 0.4s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

    .btn-warning:hover {
        background-position: right center;
        transform: scale(1.05);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .about-section h3 {
            font-size: 2rem;
        }

    .about-description {
        font-size: 1rem;
    }

    .btn-warning {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section h3 {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .btn-warning {
        width: 100%;
        font-size: 1.1rem;
    }
}





/* ===============================
   STEPS SECTION
   =============================== */

/* Section Styling */
.steps-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Title Styling */
h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow accent */
}

.text-soft {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Glass Effect */
.glass {
    background: rgba(0, 0, 0, 0.5); /* Dark background with transparency */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Step Styling */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-circle {
    background-color: #f1c40f;
    color: #121212;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    z-index: 2; /* Ensure the circle stays on top */
}

.step-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #f1c40f;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* Place line below the circle */
}

.step:last-child .step-line {
    display: none; /* Remove the line for the last step */
}

/* Hover and Active Step */
.step:hover .step-circle {
    background-color: #f39c12; /* Darker yellow on hover */
    cursor: pointer;
}

/* Footer Line Styling */
.text-soft {
    color: #f39c12;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .steps-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .step {
        flex-direction: column;
        align-items: center;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-line {
        width: 80px; /* Shorter line for mobile */
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        width: 60px; /* Adjust line width for mobile */
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}


/* ===============================
   Form Section
   =============================== */

/* Section Styling */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Glass Effect */
.glass {
    background: rgba(0, 0, 0, 0.4); /* Dark background with transparency */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    padding: 30px;
    transition: all 0.3s ease;
}

    .glass:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Elevates glass effect on hover */
    }

/* Title Styling */
h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow accent */
    margin-bottom: 15px;
}

.text-soft {
    color: #ccc;
    font-size: 1.1rem;
}

/* Input and Select Styling */
.form-control, .form-select {
    background-color: #121212; /* Dark background for form fields */
    color: #fff;
    border: 1px solid #444; /* Dark border */
    border-radius: 10px;
    padding: 12px;
    font-size: 1rem;
    transition: border 0.3s ease, background-color 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #f1c40f; /* Yellow border on focus */
        outline: none;
        background-color: #2c2c2c; /* Slightly lighter background on focus */
    }

/* Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

    .btn-accent:hover, .btn-accent:focus {
        background-color: #f39c12; /* Darker yellow on hover */
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .glass {
        padding: 25px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .form-control, .form-select {
        font-size: 1rem;
        padding: 12px;
    }

    .btn-accent {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .btn-accent {
        width: 100%;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}


/* Placeholder Styling */
::placeholder {
    color: #fff !important; /* White placeholder text */
    opacity: 1; /* Full opacity for placeholder */
}