:root {
    --primary-blue: #003366;
    --primary-red: #cc0000;
	--hover-red: #c82333;
    --hover-blue: #003d82;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #212529;
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .logo-divider {
    height: 40px;
    width: 1px;
    background-color: #ddd;
    margin: 0 15px;
}

.logo-separator {
    width: 1px;
    height: 40px;
    background-color: #dee2e6;
    margin: 0 15px;
}

.logos-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.btn-apply {
    background-color: var(--primary-red);
    color: white;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: #b30000;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placehold.co/1200x400');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}
		
.hero-section {
    background: var(--primary-blue);
    padding: 0;
    color: white;
    margin-top: 0px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 60px 0;
    text-align: left;
 }

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

 .hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 80%;
 }

.hero-image {
	background-image: url('');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.section-image {
	background-image: url('');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hero-buttons {
    display: flex;
     gap: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 12px 30px;
}

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

.btn-secondary {
    background-color: var(--primary-red);
    border: none;
    padding: 12px 30px;
}

.btn-secondary:hover {
    background-color: var(--hover-red);
}
/*.hero {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.hero h1 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-content {
            padding: 60px 0;
            text-align: left;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .hero-text {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 80%;
        }

        .hero-image {
            background-image: url('https://placehold.co/600x600');
            background-size: cover;
            background-position: center;
            min-height: 530px;
        }

.hero-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
            .hero-section {
                margin-top: 60px;
            }

            .hero-image {
                min-height: 300px;
                order: -1;
            }

            .hero-content {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-text {
                max-width: 100%;
            }
        }
*/
/* Common Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin: 15px auto;
}

#admission{
    min-height: 300px;
}

/* Objectives Section */
.objective-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

/* Curriculum Section */
.course-card {
    border-left: 4px solid var(--primary-red);
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Specialization Section */
.specialization-item {
    text-align: center;
    margin-bottom: 30px;
}

.specialization-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Careers Section */
.career-path {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-red);
}

/* Costs Section */
.pricing-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-red);
    font-weight: bold;
    margin: 20px 0;
}

/* Partners Section */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.accordion-button:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0,51,102,0.25);
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0,51,102,0.25);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    background-color: var(--primary-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.top-bar {
        display: none;
    }
	
    .hero {
        padding: 60px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
	
	.hero-section {
		margin-top: ;
	}

	.hero-image {
		min-height: 300px;
    order: -1;
	}

	.hero-content {
        padding: 40px 0;
    }

     .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        max-width: 100%;
    }
}
