@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #002D62;
    /* Navy Blue */
    --secondary-color: #F37021;
    /* Orange */
    --accent-color: #00A651;
    /* Green */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Slider */
.carousel-item {
    height: 650px;
    min-height: 650px;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    background: transparent;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    border: 2px solid var(--white);
    background-color: transparent;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 50% 50%;
}

/* Course Card */
.course-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.course-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.course-card:hover .course-icon {
    background: var(--primary-color);
    color: var(--white);
}

.course-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Statistics Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-links a {
    color: #bbb;
    display: block;
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--secondary-color);
}

/* Legal & Certification Banner */
.legal-banner {
    background: linear-gradient(135deg, #001f44 0%, #002D62 100%);
    color: var(--white);
    padding: 30px 0;
    border-top: 3px solid #D4AF37;
    /* Gold top border */
    border-bottom: 3px solid #D4AF37;
    /* Gold bottom border */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.legal-item {
    padding: 10px 20px;
    position: relative;
}

.legal-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    /* Gold */
    margin-bottom: 15px;
}

.legal-item h6 {
    color: #D4AF37;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.legal-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

.legal-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .legal-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}