/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f6f6f6;
    color: #333;
}

/* COMMON CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #1c1c1c;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
}

.logo h2 {
    color: #fff;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: #4da3ff;
}

/* COURSE DETAILS SECTION */
.course-details {
    padding: 70px 0;
    background: #f2f2f2;
}

.course-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT IMAGE CARD */
.course-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.course-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #0b1c2d, #1f3b5c);
    padding: 15px;
}

/* RIGHT CONTENT */
.course-info {
    flex: 1.2;
}

.course-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.course-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
}

.course-points {
    list-style: none;
    margin-bottom: 20px;
}

.course-points li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-points i {
    color: #2c6fff;
    font-size: 18px;
}

.course-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 10px;
}

.primary-btn {
    background: #2c3e50;
    color: #fff;
}

.primary-btn:hover {
    background: #1a252f;
}

/* FOOTER */
.footer {
    background: #1c1c1c;
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .course-flex {
        flex-direction: column;
        text-align: center;
    }

    .course-image img {
        max-width: 300px;
    }

    .course-points li {
        justify-content: center;
    }
}

.partners-section {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.partners-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

/* Slider Wrapper */
.logo-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

/* Track */
.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 60px;
}

/* Logos */
.logo-track img {
    height: 50px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.05);
}

/* Animations */
.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

/* Keyframes */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-track img {
        height: 40px;
    }
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f5f7fb;
}

/* Form Container */
.contact-form {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Groups */
.form-group {
    margin-bottom: 18px;
}

/* Inputs, Select & Textarea */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease;
    background: #fafafa;
}

/* Focus Effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Textarea */
.form-group textarea {
    resize: none;
}

/* Submit Button */
/* .primary-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
} */

/* Button Hover */
.primary-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .contact-form {
        padding: 25px;
    }
}

/* Success Message */
.success-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    animation: fadeIn 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

.success-content {
    display: flex;
    align-items: center;
}

.success-content i {
    font-size: 24px;
    margin-right: 15px;
}

.success-content h3 {
    margin: 0 15px 0 0;
    font-size: 18px;
}

.success-content p {
    margin: 0;
    flex: 1;
}

.error-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc3545;
    cursor: help;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}





/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    position: relative;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
