/* ===============================
   GLOBAL
=============================== */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #212529;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #6f42c1;
    text-decoration: none;
}

a:hover {
    color: #512b9e;
    text-decoration: underline;
}

/* ===============================
   HERO SECTION
=============================== */
section.bg-primary {
    background: linear-gradient(135deg, #20c997, #6f42c1);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 5rem 0;
}

section.bg-primary h1 {
    font-size: 3rem;
}

section.bg-primary .btn {
    font-weight: 600;
    border-radius: 0.35rem;
}

/* ===============================
   SECTION HEADINGS
=============================== */
section h2 {
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
    font-weight: 600;
}

/* ===============================
   CARDS
=============================== */
.card {
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #fff;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.card h4 {
    color: #20c997;
}

/* ===============================
   PRICING
=============================== */
.card h3 {
    font-size: 2rem;
    margin: 1rem 0;
}

.card .btn {
    margin-top: 1rem;
}

/* ===============================
   TESTIMONIALS
=============================== */
blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    padding: 1rem;
    border-left: 4px solid #20c997;
    background: #fff;
    border-radius: 0.25rem;
}

/* ===============================
   FAQ
=============================== */
section.bg-light h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

section.bg-light p {
    font-size: 0.95rem;
}

/* ===============================
   CTA
=============================== */
section.bg-dark {
    background: #343a40 !important;
}

section.bg-dark h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* ===============================
   BUTTONS
=============================== */
.btn-primary {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-primary:hover {
    background-color: #512b9e;
    border-color: #512b9e;
}

.btn-success {
    background-color: #20c997;
    border-color: #20c997;
}

.btn-success:hover {
    background-color: #17a589;
    border-color: #17a589;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 992px) {
    section.bg-primary h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    section.bg-primary h1 {
        font-size: 2rem;
    }

    .card h4 {
        font-size: 1.2rem;
    }
}


/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
    section.bg-primary h1 {
        font-size: 2.25rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    section {
        padding: 2rem 0;
    }
}


.form-container {
    max-width: auto;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    animation: fadeInUp 0.5s ease-in-out;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-container label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 500;
    color: #555;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-container input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
    outline: none;
}

.form-container button {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(90deg, #4a90e2, #007bff);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.register-section {
    background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.form-container {
    max-width: 500px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.5s ease-in-out;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #333;
}


/* ===== Contact Form Styles ===== */

.contact-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.contact-container p {
    font-size: 15px;
    color: #666;
}

.contact-form .form-label {
    font-weight: 600;
    color: #444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}

.alert {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #e6ffed;
    color: #257942;
    border: 1px solid #c1e3c8;
}

.alert-danger {
    background: #ffe6e6;
    color: #a94442;
    border: 1px solid #f2c0c0;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-container {
        margin: 20px;
        padding: 20px;
    }
}



