/* Custom CSS */
:root {
    --primary-blue: #004B91;
    --secondary-teal: #318188;
    --accent-yellow: #edb018;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-blue) !important;
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    color: white;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
}

.login-btn {
    background-color: var(--accent-yellow);
    color: #333 !important;
    border-radius: 4px;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}



.hero-section {
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 7rem 0;
    color: white;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .row {
    min-height: 80vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro {
    position: relative;
    overflow: hidden;
}

/* .about-section {
    padding: 60px 0;
    background-image: url('/assets/img/Premium.jpg');
    background-size: cover;
    background-position: center;
    color: #333;
    position: relative;
} */

.bg-image {
    background-image: url('/assets/img/Premium.jpeg');
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.intro .overlay {
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    position: absolute;
    inset: 0;
    z-index: 2;
}

.intro .container {
    position: relative;
    z-index: 3;
}

.intro h2,
.intro p {
    color: #fff;
    /* white text for visibility */
}

@media (max-width: 992px) {
    .hero .row {
        min-height: auto;
    }

    .hero-image {
        height: 400px;
        margin-top: 30px;
    }
}

.btn-primary {
    background-color: var(--accent-yellow) !important;
    border-color: var(--accent-yellow) !important;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: #d69c15;
    border-color: #d69c15;
    color: #333;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Introduction Section */
.intro {
    background-color: #f6f33178;
}

/* Courses Section */
.course-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--tech-gold);
    margin-top: 15px;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* height: 100%; */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--tech-blue);
    margin-bottom: 1rem;
}

.service-card {
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.stats-section {
    background-color: var(--tech-blue);
    color: white;
    padding: 4rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tech-gold);
}

.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tech-blue);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-yellow);
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 60px 0;
    }

    .hero .btn {
        margin-bottom: 10px;
    }

    .footer .col-lg-4 {
        margin-bottom: 30px;
    }
}


.accent-gold {
    color: var(--tech-gold);
}

.login-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.btn-outline-primary {
    color: var(--tech-blue);
    border-color: var(--tech-blue);
}


.form-control {
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--tech-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.btn-primary {
    background-color: var(--tech-blue);
    border-color: var(--tech-blue);
    padding: 0.8rem;
}

.btn-primary:hover {
    background-color: var(--tech-dark-blue);
    border-color: var(--tech-dark-blue);
}

.accent-gold {
    color: var(--tech-gold);
}

.role-heading {
    color: var(--tech-dark-blue);
}



:root {
    --primary-blue: #004B91;
    --secondary-teal: #318188;
    --accent-yellow: #edb018;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-secondary {
    color: var(--secondary-teal) !important;
}

.text-accent {
    color: var(--accent-yellow) !important;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.page-header {
    background-blend-mode: multiply;
}

.card {
    border-radius: 12px;
}

.card-body i {
    color: var(--secondary-teal);
}

.btn-primary:hover {
    background-color: #003a73;
    border-color: #003a73;
}

.accent-text {
    color: var(--accent-yellow);
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.partner-logo {
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* CONTACT US PAGE*/
/* General reset for this contact page */
.contact-content-c,
.page-header-c,
.map-section-c,
.faq-section-c,
.cta-section-c {
    overflow-x: hidden;
    /* Prevents horizontal scroll */
    box-sizing: border-box;
}

/* Page Header */
.page-header-c {
    background: linear-gradient(rgba(0, 75, 145, 0.8), rgba(0, 75, 145, 0.9)), url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

.page-header-c h1 {
    color: #fff;
}

.page-header-c p {
    color: #f1f1f1;
}

/* Contact Info Box */
.contact-info-box-c {
    padding: 1.5rem;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.2s ease;
}

.contact-info-box-c:hover {
    transform: translateY(-5px);
}

.contact-icon-c {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Social icons */
.social-icon-c {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--secondary-teal);
    color: #fff;
    transition: background 0.3s ease;
}

.social-icon-c:hover {
    background: var(--accent-yellow);
    color: #000;
}

/* Contact Form */
.form-control-c,
.form-select.form-control-c {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    width: 100%;
}

.form-control-c:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 75, 145, 0.2);
}

.btn-primary-c {
    background: var(--primary-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    color: #fff;
    transition: background 0.3s ease;
}

.btn-primary-c:hover {
    background: var(--secondary-teal);
}

/* Map Section */
.map-container-c {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.map-container-c iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Accordion */
.accordion-button-c {
    background: #fff;
    border: none;
    font-weight: 500;
}

.accordion-button-c:not(.collapsed) {
    background: var(--secondary-teal);
    color: #fff;
}

.accordion-body {
    background: #fdfdfd;
    border-top: 1px solid #ddd;
}

/* CTA Section */
.cta-section-c {
    background: var(--secondary-teal) !important;
    text-align: center;
}

.cta-section-c h2,
.cta-section-c p {
    color: #fff;
}

.cta-section-c .btn-light {
    border-radius: 6px;
    padding: 0.75rem 2rem;
}


/*  ABOUT US PAGE*/

.page-header-a {
    background: linear-gradient(rgba(0, 75, 145, 0.8), rgba(0, 75, 145, 0.9)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

.display-4-a {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lead-a {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header-a {
        padding: 3rem 0;
    }

    .display-4-a {
        font-size: 2.5rem;
    }

    .lead-a {
        font-size: 1.2rem;
    }
}