/* Main CSS for QamSoft website */

/* Reset & base */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #0f172a;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.navbar-bg {
    background-color: #1e3a8a; /* Dark blue for logo visibility */
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #facc15; /* Yellow accent */
}

.navbar-nav .sign-in a {
    background: #f97316; /* Orange sign-in button */
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
}

.navbar-nav .sign-in a:hover {
    background: #ea580c;
    color: white;
}

/* Contact Bar / Section Header */
#contact-bar {
    padding: 60px 0;
    background: #2563eb; /* Blue banner */
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

#contact-bar h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Hero Section */
.hero {
    
    padding: 20px 20px;
    background: #bae6fd; /* light blue hero style */
    text-align: center;
    color: #0f172a;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #020305;
}

.hero p {
    font-size: 20px;
    color: #1e293b;
    margin-top: 15px;
}

/* Buttons */
.btn-theme {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-theme:hover {
    background: #1d4ed8;
    color: white;
}

/* Courses / Cards */
.course-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease-in-out;
    margin-bottom: 35px;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.course-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f1f5f9;
    padding: 20px;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    text-align: center;
}

.course-desc {
    color: #475569;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    min-height: 60px;
}

/* Footer */
.footer {
    background: #1e293b; /* Dark grey/blue */
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #facc15;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

.landing-form-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.landing-form-btn:hover {
    background: #1d4ed8;
}
