/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.email-button{
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.email-button {
    background-color: #0066cc;
    color: white;
}

.email-button:hover {
    background-color: #0066cc;
}

.btn-secondary {
    background-color: #00b050;
    color: white;
}

.btn-secondary:hover {
    background-color: #0066cc;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #00b050;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0066cc;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

.hero-content {
    flex: 1;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #0066cc;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #0066cc;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    padding: 0 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px #00b050;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(#0066cc), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: white;
}

.about-preview .container {
    text-align: center;
}

.about-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0066cc;
}

.about-preview p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Popular Courses */
.popular-courses {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.popular-courses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0066cc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card .course-info {
    padding: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.course-card p {
    color: #666;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.course-meta i {
    margin-right: 5px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0066cc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-card h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Partners */
.partners {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.partners h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0066cc;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Course Categories */
.course-categories {
    padding: 40px 0;
    background-color: white;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #e9ecef;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #007bff;
    color: white;
}

/* Courses Grid */
.courses-grid-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.course-item {
    margin-bottom: 30px;
}

.course-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.course-info {
    padding: 25px;
    flex: 1;
}

.course-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.course-details span {
    display: flex;
    align-items: center;
}

.course-details i {
    margin-right: 5px;
    margin-left: 10px;
}

.course-outcomes h4 {
    margin: 15px 0 10px 0;
    color: #2c3e50;
}

.course-outcomes ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #666;
}

/* Course Features */
.course-features {
    padding: 60px 0;
    background-color: white;
}

.course-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
}

/* Admission Process */
.admission-process {
    padding: 30px 0;
    background-color: white;
}

.admission-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
}

/* Entry Requirements */
.entry-requirements {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.requirements-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.requirements-text p {
    margin-bottom: 20px;
    color: #555;
}

.requirements-list {
    list-style: none;
    margin: 20px 0;
}

.requirements-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #28a745;
}

.requirements-list i {
    margin-right: 10px;
}

.course-reqs h4 {
    margin: 20px 0 10px 0;
    color: #2c3e50;
}

.course-reqs p {
    color: #666;
    margin-bottom: 15px;
}

.requirements-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements-form h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Intake Periods */
.intake-periods {
    padding: 60px 0;
    background-color: white;
}

.intakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.intake-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.intake-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.intake-card p {
    margin-bottom: 10px;
    color: #666;
}

.intake-card strong {
    color: #333;
}

/* Fee Structure */
.fee-structure {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.fee-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fee-table th,
.fee-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background-color: #007bff;
    color: white;
}

.financial-aid {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.financial-aid h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.financial-aid ul {
    padding-left: 20px;
    margin-top: 15px;
}

.financial-aid li {
    margin-bottom: 10px;
    color: #666;
}

/* Prospectus Download */
.prospectus-download {
    padding: 60px 0;
    background-color: white;
}

.prospectus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.prospectus-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.prospectus-text p {
    margin-bottom: 20px;
    color: #555;
}

.prospectus-text ul {
    list-style: none;
    margin: 20px 0;
}

.prospectus-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #007bff;
}

.prospectus-text i {
    margin-right: 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}

.download-btn i {
    margin-right: 10px;
}

.file-size {
    text-align: center;
    margin-top: 10px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Gallery Styles */
.gallery-categories {
    padding: 20px 0;
    background-color: white;
}

.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: white;
    font-size: 2rem;
}

/* Video Gallery */
.video-gallery {
    padding: 60px 0;
    background-color: white;
}

.video-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item iframe {
    border-radius: 10px;
    margin-bottom: 15px;
}

.video-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-item p {
    color: #666;
}

/* Achievements */
.achievements {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.achievement-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #666;
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.whatsapp-button {
    margin-top: 20px;
}

.email-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-form p {
    margin-bottom: 30px;
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.hours h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.social-media {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.social-media h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link.facebook { background-color: #3b5998; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.instagram { background-color: #e4405f; }
.social-link.linkedin { background-color: #0077b5; }
.social-link.youtube { background-color: #ff0000; }

.social-link:hover {
    opacity: 0.9;
    transform: translateX(5px);
}

.social-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.emergency-contact {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.emergency-contact i {
    color: #dc3545;
    margin-right: 10px;
}

/* Application Form */
.application-form-section {
    padding: 60px 0;
    background-color: white;
}

.application-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
}

.checkbox-group a {
    color: #007bff;
    text-decoration: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.application-steps,
.application-tips,
.support-contact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.application-steps h3,
.application-tips h3,
.support-contact h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.application-steps ol {
    padding-left: 20px;
}

.application-steps li {
    margin-bottom: 10px;
    color: #666;
}

.application-steps strong {
    color: #2c3e50;
}

.application-tips ul {
    padding-left: 20px;
}

.application-tips li {
    margin-bottom: 8px;
    color: #666;
}

.support-contact p {
    margin-bottom: 10px;
    color: #666;
}

.support-contact i {
    margin-right: 10px;
    color: #007bff;
}

/* Application Benefits */
.application-benefits {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.application-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
}

/* Footer */
footer {
    background-color: #0066cc;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #00b060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #fff;
}

/*Apply Button Styling*/
.apply-section {
    text-align: center;
    padding: 40px 0;
    padding-bottom: 20px;
    padding-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        margin: 15px 0;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content,
    .hero-image {
        padding: 20px;
        flex: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .requirements-content,
    .form-container,
    .application-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Submission Modal Styles */
#submissionModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

#submissionModal > div {
    background: #fff;
    border-radius: 10px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    padding: 20px;
    max-height: 90vh;
    overflow: auto;
}

#submissionModal h2 {
    margin-top: 0;
    color: #2c3e50;
}

#submissionModal p {
    color: #555;
}

#submissionModal pre {
    background: #f7f7f7;
    padding: 12px;
    border-radius: 6px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

#submissionModal .btn {
    font-size: 14px;
    padding: 10px 16px;
}

@media (max-width: 600px) {
    #submissionModal > div { padding: 14px; }
    #submissionModal h2 { font-size: 18px; }
    #submissionModal div[style*="grid"] { grid-template-columns: 1fr !important; }
}