body {
    padding-top: 56px;
    /* Adjust for fixed navbar height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

#hero {
    background: #f8f9fa;
    text-align: center;
    padding: 60px 0;
}

.course-card {
    background: var(--dark-bg-secondary);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--citrine);
    color: var(--dark-text-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-card h3 {
    color: var(--citrine);
    margin-bottom: 15px;
    text-align: center;
}

.course-card p {
    text-align: center;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.course-category {
    background: linear-gradient(145deg, var(--dark-bg-secondary), var(--dark-bg-tertiary));
    padding: 70px 0;
    margin-bottom: 40px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.course-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--citrine);
}

.course-category h2 {
    margin-bottom: 40px;
    color: white;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.course-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--citrine);
}

.btn-more-info {
    background-color: var(--citrine);
    color: var(--dark-bg-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-more-info:hover {
    background-color: white;
    color: var(--dark-bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-more-info::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-more-info:hover::after {
    transform: translateX(5px);
}

#contact-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

footer {
    background: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}


section.hero-section {
    background: linear-gradient(rgba(11, 31, 80, 0.8), rgba(11, 31, 80, 0.9)), url('/ICP/public/img/bg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--citrine);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--citrine);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    background: var(--citrine);
    color: var(--dark-bg-primary);
    transform: rotateY(180deg);
}

#contact-cta {
    background: linear-gradient(rgba(11, 31, 80, 0.9), rgba(11, 31, 80, 0.9)), url('/ICP/public/img/bg4.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}

#contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, var(--dark-bg-primary) 70%);
}

#contact-cta .container {
    position: relative;
    z-index: 1;
}

#contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

#contact-cta .btn-more-info {
    background-color: white;
    color: var(--dark-bg-primary);
    font-size: 1.1rem;
    padding: 12px 30px;
    margin-top: 30px;
}

#contact-cta .btn-more-info:hover {
    background-color: var(--citrine);
    color: var(--dark-bg-primary);
}

.footer-area {
    padding: 0;
}