
/* Header */
.header-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(180deg, #0d1028 0%, #090b1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1.5rem;
}
.header-content p {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.btn-custom {
    background-color: #5379f6;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #5379f6;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: transparent;
    color: #5379f6;
    border-color: #5379f6;
}
/* Content */
.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Raleway', Arial, sans-serif;
    /* margin-bottom: 1.5rem; */
    text-align: center;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
}
.icon-box {
    background: #fff;
    border-left: 6px solid #142044;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.icon-box i {
    font-size: 2.5rem;
    color: #142044;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}
.icon-box:hover i {
    color: #142044;
}
.icon-box h5 {
    font-weight: 600;
    /* margin-bottom: 0.75rem; */
    font-family: 'Roboto', sans-serif;
    color: #142044;
    margin-bottom: 15px;
    font-size: 26px;
}
.icon-box p {
    font-size: 20px;
    color: #4a4a4a;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
    font-size: 2.5rem;
    }
    .header-content p {
    font-size: 1rem;
    }
    .icon-box {
    flex-direction: column;
    text-align: center;
    }
    .icon-box i {
    margin-bottom: 1rem;
    margin-right: 0;
    }
    .navbar-brand img {
    width: 50px;
    height: 50px;
    }
    .degree-text {
    font-size: 1.2rem;
    }
    .company-text {
    font-size: 1rem;
    }
}