/* 
   Prabhu Junior Degree College Website
   Main Stylesheet
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #1e88e5; /* Light Blue */
    --secondary-color: #0d47a1; /* Navy Blue */
    --accent-color: #64b5f6;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #555;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.btn-outline {
    border: 2px solid var(--light-color);
    color: var(--light-color);
    background: transparent;
}

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

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-transform: capitalize;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 80px 0;
}

/* ===== HEADER STYLES ===== */
.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    color: white;
}

.contact-info, .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.contact-info li {
    margin-right: 20px;
    font-size: 14px;
}

.contact-info li i {
    margin-right: 5px;
}

.social-links {
    justify-content: flex-end;
}

.social-links li {
    margin-left: 15px;
}

.social-links a {
    color: white;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--accent-color);
}

.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo {
    max-height: 80px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 70%;
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-nav .dropdown-item {
    padding: 8px 25px;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.navbar-nav .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 25px;
}

.btn-admission {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 10px;
}
/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(13, 71, 161, 0.9)), url('../images/building.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 1s;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 1s 0.6s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.feature-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}
/* ===== COURSES SECTION ===== */
.courses-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.course-category {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.course-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
}

.course-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 15px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 14px;
    margin-bottom: 0;
}
/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(13, 71, 161, 0.95)), url('../images/building.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #222;
    color: #aaa;
    padding-top: 70px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer .social-links {
    margin-top: 20px;
    justify-content: flex-start;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom .fa-heart {
    color: var(--primary-color);
}
/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .feature-box, .course-category, .testimonial-card {
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}
/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(13, 71, 161, 0.9)), url('../images/building.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== MISSION VISION SECTION ===== */
.mission-vision-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.mission-box, .vision-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-box .icon, .vision-box .icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 100px 0;
}

.why-choose-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-item .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 25px;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 80px 0 40px;
}

.contact-info-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-box .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 25px;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 40px 0 80px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: none;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    margin-bottom: 30px;
}

.gallery-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-filter ul li {
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    background-color: #f5f5f5;
}

.gallery-filter ul li.active,
.gallery-filter ul li:hover {
    background-color: var(--primary-color);
    color: white;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 136, 229, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 5px;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery-section {
    padding: 40px 0 80px;
    background-color: var(--light-color);
}

.video-item {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FACILITIES LIST ===== */
.facilities-list {
    padding: 40px 0;
}

.facility-item {
    margin-bottom: 80px;
}

.facility-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facility-image img {
    width: 100%;
    transition: var(--transition);
}

.facility-image:hover img {
    transform: scale(1.05);
}

.facility-content {
    padding: 20px;
}

.facility-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 25px;
}

.facility-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.facility-content ul {
    padding-left: 20px;
}

.facility-content ul li {
    margin-bottom: 8px;
}

/* ===== ADMISSION PROCESS ===== */
.admission-process {
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: calc(50% - 40px);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 767px) {
    .process-timeline:before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
}

/* ===== ELIGIBILITY SECTION ===== */
.eligibility-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.eligibility-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.eligibility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eligibility-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.eligibility-header h3 {
    margin: 0;
    color: white;
}

.eligibility-body {
    padding: 30px;
}

.eligibility-body ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.eligibility-body ul li {
    margin-bottom: 10px;
}

.eligibility-body ul li:last-child {
    margin-bottom: 0;
}

/* ===== DOCUMENTS SECTION ===== */
.documents-section {
    padding: 80px 0;
}

.document-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.document-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-content {
    flex-grow: 1;
}

.document-content h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.document-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.document-content ul li {
    margin-bottom: 8px;
}

.document-content ul li:last-child {
    margin-bottom: 0;
}

/* ===== APPLICATION FORM SECTION ===== */
.application-form-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.admission-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

/* ===== COURSES INTRO ===== */
.courses-intro {
    padding: 80px 0 40px;
}

/* ===== INTERMEDIATE COURSES ===== */
.intermediate-courses {
    padding: 40px 0;
}

.course-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.course-item:last-child {
    border-bottom: none;
}

.course-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-image img {
    width: 100%;
    transition: var(--transition);
}

.course-image:hover img {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.course-content h4 {
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.course-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.course-content ul li {
    margin-bottom: 8px;
}

/* ===== DEGREE COURSES ===== */
.degree-courses {
    padding: 40px 0;
    background-color: var(--light-color);
}

/* ===== BCOM COURSES ===== */
.bcom-courses {
    padding: 40px 0 80px;
}
/* Updated Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-3px);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 70%;
}

/* Dropdown menu improvements */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-width: 230px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .dropdown-item {
    padding: 8px 25px;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.navbar-nav .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 25px;
}

.btn-admission {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 10px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-admission:hover {
    background-color: white;
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile navbar adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block;
    }
    
    .navbar-nav .dropdown-item:hover {
        transform: none;
    }
}
/* Updated Hero Section Styles */
.hero-section {
    position: relative;
    height: 700px;
    background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(13, 71, 161, 0.9)), url('../images/building.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 1s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.3s;
    animation-fill-mode: both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    animation: fadeInUp 1s 0.6s;
    animation-fill-mode: both;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for hero section */
@media (max-width: 991px) {
    .hero-section {
        height: 600px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        margin: 5px;
        padding: 10px 20px;
    }
}
/* Course image enhancements */
.course-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 220px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-image:hover img {
    transform: scale(1.05);
}
/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: #007bff;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 80px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}