/* Hero Section */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1503694978374-8a2fa686963a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5vw;
    margin-bottom: 1vw;
}

.hero-content p {
    font-size: 1.5vw;
    margin-bottom: 2vw;
}

.cta-button {
    display: inline-block;
    background-color: #ffb800;
    color: #0b2f55;
    padding: 1vw 2vw;
    font-size: 1.2vw;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0b2f55;
    color: #ffb800;
}

/* Program Overview */
.program-overview {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2vw;
}

.overview-card {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 2vw;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.overview-card i {
    font-size: 3vw;
    color: #ffb800;
    margin-bottom: 1vw;
}

.overview-card h3 {
    font-size: 1.5vw;
    margin-bottom: 0.5vw;
    color: #0b2f55;
}

.overview-card p {
    font-size: 1.2vw;
    color: #333;
}

/* Specializations */
.specializations {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}

.spec-card {
    flex: 1;
    background-color: #0b2f55;
    color: white;
    padding: 2vw;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.spec-card:hover {
    transform: translateY(-10px);
}

.spec-card i {
    font-size: 3vw;
    color: #ffb800;
    margin-bottom: 1vw;
}

.spec-card h3 {
    font-size: 1.3vw;
}

/* Course Objective */
.course-objective {
    background-color: white;
    padding: 2vw;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-objective p {
    font-size: 1.1vw;
    margin-bottom: 1vw;
    line-height: 1.6;
}

.course-objective ul {
    list-style-type: none;
    padding-left: 0;
}

.course-objective li {
    font-size: 1.1vw;
    margin-bottom: 0.5vw;
    padding-left: 1.5vw;
    position: relative;
}

.course-objective li::before {
    content: '\2022';
    color: #ffb800;
    font-size: 1.5vw;
    position: absolute;
    left: 0;
}

/* Career Opportunities */
.career-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2vw;
}

.career-card {
    background-color: white;
    padding: 2vw;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.career-card:hover {
    transform: translateY(-10px);
}

.career-card i {
    font-size: 3vw;
    color: #ffb800;
    margin-bottom: 1vw;
}

.career-card h3 {
    font-size: 1.3vw;
    color: #0b2f55;
}

/* Admission Process */
.admission-process {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}

.process-step {
    flex: 1;
    background-color: white;
    padding: 2vw;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3vw;
    height: 3vw;
    background-color: #ffb800;
    color: #0b2f55;
    font-size: 1.5vw;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1vw;
}

.process-step h3 {
    font-size: 1.3vw;
    color: #0b2f55;
    margin-bottom: 0.5vw;
}

.process-step p {
    font-size: 1vw;
    color: #333;
}

/* Apply Now Section */
.apply-now-section {
    background-color: #0f3c6b;
    color: white;
    text-align: center;
    padding: 4vw 0;
    margin-top: 5vw;
    margin-bottom: -5vw;
}

.apply-now-section h2 {
    font-size: 2.5vw;
    margin-bottom: 1vw;
}

.apply-now-section p {
    font-size: 1.2vw;
    margin-bottom: 2vw;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 6vw;
    }

    .hero-content p {
        font-size: 3vw;
    }

    .cta-button {
        font-size: 3vw;
        padding: 2vw 4vw;
    }

    .overview-card, .spec-card, .career-card, .process-step {
        flex-basis: 100%;
        margin-bottom: 2vw;
    }

    .overview-card i, .spec-card i, .career-card i {
        font-size: 6vw;
    }

    .overview-card h3, .spec-card h3, .career-card h3, .process-step h3 {
        font-size: 4vw;
    }

    .overview-card p, .course-objective p, .course-objective li, .process-step p {
        font-size: 3vw;
    }

    .step-number {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    .apply-now-section h2 {
        font-size: 5vw;
    }

    .apply-now-section p {
        font-size: 3vw;
    }
}

/* Course Objective Section Styles */
.course-objective {
    font-family: "Inter";
    background-color: white;
    padding: 3vw;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(11, 47, 85, 0.1);
    margin-top: 2vw;
}

.course-objective p {
    font-size: 1.3vw;
    margin-bottom: 2vw;
    line-height: 1.8;
    color: #444;
    text-align: left;
    padding: 0 1vw;
}

.course-objective ul {
    list-style-type: none;
    padding: 2vw 3vw;
    background: #f8f9fa;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}

.course-objective li {
    font-size: 1.2vw;
    margin-bottom: 1vw;
    padding-left: 2vw;
    position: relative;
    color: #0b2f55;
    display: flex;
    align-items: center;
}

.course-objective li::before {
    content: '\2022';
    color: #ffb800;
    font-size: 2vw;
    position: absolute;
    left: 0;
    line-height: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .course-objective ul {
        grid-template-columns: 1fr;
        padding: 4vw;
    }
    
    .course-objective p {
        font-size: 3.5vw;
        padding: 0;
    }
    
    .course-objective li {
        font-size: 3.2vw;
        padding-left: 5vw;
    }
    
    .course-objective li::before {
        font-size: 5vw;
    }
}