/* style.css */
:root {
    --primary: #034694;
    --secondary: #B2282C;
    --accent: #F9A321;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #02367d;
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #9a1c20;
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #f1f2f6;
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-gray {
    background-color: #f1f2f6;
}

/* Header Styles */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact span {
    margin-right: 20px;
}

.top-bar-social a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    font-size: 14px;
    color: var(--dark);
}

.header-cta {
    text-align: right;
}

.header-cta .btn {
    margin-left: 10px;
}


/* ==================== CAROUSEL FIXES ==================== */
.carousel {
    position: relative;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.9;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* ==================== WELCOME SECTION FIXES ==================== */
.about-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.welcome-content {
    line-height: 1.8;
    color: #555;
	text-align: justify;
}

.welcome-content p {
    margin-bottom: 1rem;
}



/* Programs Grid */
.academic-programs-section {
    background: linear-gradient(135deg, #ffffff 0%, #a8bba3 100%);
    position: relative;
    overflow: hidden;
}

.academic-programs-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(3, 70, 148, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.academic-programs-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(178, 40, 44, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.program-duration {
    background: rgba(3, 70, 148, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-type {
    background: rgba(178, 40, 44, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.program-meta span {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-meta i {
    color: #007bff;
}

.program-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Program Categories Filter */
.program-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.category-filter {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6c757d;
}

.category-filter.active,
.category-filter:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .program-actions {
        flex-direction: column;
    }
    
    .program-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .category-filter {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .program-content {
        padding: 20px;
    }
    
    .program-content h3 {
        font-size: 1.2rem;
    }
    
    .program-overlay {
        top: 10px;
        right: 10px;
    }
    
    .program-duration,
    .program-type {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}
   /* Ranking */
.ranking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ranking-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(3, 70, 148, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.ranking-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(178, 40, 44, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.ranking-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.recognition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.recognition-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recognition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recognition-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.card-icon {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon img {
    max-height: 70px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.recognition-card:hover .card-icon img {
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.card-content p {
    color: #6c757d;
    line-height: 1.6;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.achievement-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recognition-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .achievement-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
}

/* Campus Life Section */
.campus-life-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.campus-feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.campus-feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.campus-feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.campus-feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Placements Section Redesign */
.placements-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.placements-section .section-title h2,
.placements-section .section-subtitle {
    color: white;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ffd700;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.process-step h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Recruiters Section */
.recruiters-section {
    background: linear-gradient(135deg, #ffffff 0%, #C6D870 100%);
    position: relative;
}

.recruiter-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.recruiter-item:hover {
    transform: translateY(-5px);
}

.recruiter-item img {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
}

.recruiters-slider .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.recruiters-slider .owl-prev,
.recruiters-slider .owl-next {
    background: #007bff !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 10px !important;
	display: none !important;
}

.recruiters-slider .owl-prev:hover,
.recruiters-slider .owl-next:hover {
    background: #0056b3 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .recruiter-item {
        height: 100px;
    }
    
    .recruiter-item img {
        max-height: 50px;
    }
}
/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(3, 70, 148, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(178, 40, 44, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f8f9fa;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-featured {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.testimonial-featured::before {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-featured .testimonial-text {
    color: white;
}

.testimonial-featured .author-info h4 {
    color: white;
}

.testimonial-featured .author-info p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-featured .testimonial-rating .fa-star {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-featured .testimonial-rating .fa-star.active {
    color: #FFD700;
}

.testimonial-featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonial-rating {
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-rating .fa-star {
    color: #ddd;
    font-size: 16px;
}

.testimonial-rating .fa-star.active {
    color: #FFD700;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.graduation-year {
    color: #007bff;
    font-weight: 500;
}

.empty-testimonials {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-testimonials i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #dee2e6;
}

/* Owl Carousel Customization for Testimonials */
.testimonials-slider .owl-stage-outer {
    padding: 20px 0;
}

.testimonials-slider .owl-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonials-slider .owl-item.center {
    opacity: 1;
}

.testimonials-slider .owl-nav {
    text-align: center;
    margin-top: 30px;
	display:none;
}

.testimonials-slider .owl-prev, 
.testimonials-slider .owl-next {
    background: #007bff !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 15px !important;
    transition: all 0.3s ease;
    font-size: 20px !important;
}

.testimonials-slider .owl-prev:hover, 
.testimonials-slider .owl-next:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
}

.testimonials-slider .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.testimonials-slider .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6 !important;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonials-slider .owl-dot.active {
    background: #007bff !important;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
    
    .testimonial-text {
        padding: 0 10px;
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .testimonials-slider .owl-prev, 
    .testimonials-slider .owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(3, 70, 148, 0.9), rgba(3, 70, 148, 0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* --------------------------Footer --------------*/
/* Footer Enhancements */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ccc;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-column:hover h3:after {
    width: 80px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-links li:hover {
    padding-left: 8px;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Link hover effects */
.link-hover-effect {
    position: relative;
}

.link-hover-effect::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.link-hover-effect:hover {
    color: white;
    transform: translateX(5px);
}

.link-hover-effect:hover::after {
    width: 100%;
}

/* External link styling */
.external-link {
    position: relative;
    padding-right: 20px;
}

.external-link .fa-external-link-alt {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: var(--accent);
}

.external-link:hover .fa-external-link-alt {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
}

/* Footer contact info - unique class names to avoid conflicts */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    color: white;
    transform: scale(1.2);
}

/* Social icons */
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Specific colors for social icons */
.social-icon:nth-child(1):hover { background: #3b5998; }
.social-icon:nth-child(2):hover { background: #1da1f2; }
.social-icon:nth-child(3):hover { background: #e4405f; }
.social-icon:nth-child(4):hover { background: #0077b5; }
.social-icon:nth-child(5):hover { background: #ff0000; }

.social-icon:nth-child(1):hover::before,
.social-icon:nth-child(2):hover::before,
.social-icon:nth-child(3):hover::before,
.social-icon:nth-child(4):hover::before,
.social-icon:nth-child(5):hover::before {
    opacity: 0;
}

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.footer-bottom .fa-heart {
    color: var(--secondary);
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    5% { transform: scale(1.2); }
    10% { transform: scale(1); }
    15% { transform: scale(1.2); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li::before {
        left: -12px;
    }
    
    .footer-links li:hover::before {
        left: -8px;
    }
    
    .footer-contact-item {
        padding: 10px 0;
    }
}

/* ==================== ANIMATIONS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Additional responsive fixes */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .header-main {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .header-cta {
        text-align: center;
    }
    
    .header-cta .btn {
        margin: 5px;
    }
}


/* Mobile responsive styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        z-index: 1000;
        padding: 15px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Tab styles */
.tab-btn {
    cursor: pointer;
    user-select: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Dropdown menu styles for desktop */
@media (min-width: 769px) {
    .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .nav-menu li:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
/* ==================== TAB FIXES ==================== */
.news-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: #f1f2f6;
    margin-right: 5px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 5px;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e9ecef;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ensure news grid displays properly */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Mobile responsive tabs */
@media (max-width: 768px) {
    .news-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        margin-right: 0;
        margin-bottom: 5px;
        border-radius: 5px;
    }
}
/* ==================== DROPDOWN MENU FIXES ==================== */


/* News & Events Styles */
.news-event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-event-card:hover {
    transform: translateY(-5px);
}

.news-event-card .card-image {
    height: 200px;
    overflow: hidden;
}

.news-event-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-event-card:hover .card-image img {
    transform: scale(1.05);
}

.news-event-card .card-content {
    padding: 20px;
}

.news-event-card .badge {
    margin-bottom: 10px;
}

.news-event-card .badge-news {
    background: #007bff;
    color: white;
}

.news-event-card .badge-event {
    background: #28a745;
    color: white;
}

.news-event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-event-card h3 a {
    color: #333;
    text-decoration: none;
}

.news-event-card h3 a:hover {
    color: #007bff;
}

.news-event-card .excerpt {
    color: #666;
    margin-bottom: 15px;
}

.news-event-card .meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.news-event-card .meta span {
    margin-right: 15px;
}

.news-event-card .meta i {
    margin-right: 5px;
}

/* Single News/Event Page */
.news-event-single .meta-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-event-single .meta-info span {
    margin-right: 20px;
    color: #666;
    font-size: 0.9rem;
}

.news-event-single .meta-info i {
    margin-right: 5px;
    color: #007bff;
}

.news-event-single .featured-image {
    margin-bottom: 30px;
}

.news-event-single .featured-image img {
    width: 100%;
    border-radius: 8px;
}

.news-event-single .content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.gallery-section {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.download-section, .external-link {
    margin-top: 0px;
}

/* Sidebar */
.sidebar .recent-items {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.sidebar .recent-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2685d4;
}

.sidebar .recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .recent-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.sidebar .recent-item h4 a {
    color: #333;
    text-decoration: none;
}

.sidebar .recent-item h4 a:hover {
    color: #007bff;
}

.sidebar .recent-item .date {
    font-size: 0.8rem;
    color: #666;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .news-event-card {
        margin-bottom: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .news-event-single .meta-info span {
        display: block;
        margin-bottom: 5px;
    }
}
/* Testimonials Section */
.testimonials-container {
    position: relative;
}

.testimonials-slider .owl-stage-outer {
    padding: 20px 0;
}

.testimonials-slider .owl-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonials-slider .owl-item.center {
    opacity: 1;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f8f9fa;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .fa-star {
    color: #ddd;
    font-size: 14px;
}

.testimonial-rating .fa-star.active {
    color: #FFD700;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.graduation-year {
    color: #007bff;
    font-weight: 500;
}

.empty-testimonials {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-testimonials i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #dee2e6;
}

/* Owl Carousel Navigation */
.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-prev, .owl-next {
    background: #007bff !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 10px !important;
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6 !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #007bff !important;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card::before {
        font-size: 40px;
        top: 10px;
        right: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}
 /* Redesigned Latest Section */
        .latest-section {
            background: #CADCAE;
            position: relative;
            overflow: hidden;
        }
        
        .latest-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .latest-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .latest-tab {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 5px 10px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .latest-tab.active {
            background: var(--primary);
            color: white;
            border-color: white;
            box-shadow: 0 5px 15px rgba(3, 70, 148, 0.3);
        }
        
        .latest-content {
            background: white;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        
        .scrolling-container {
            height: 100%;
            overflow-y: auto;
            padding: 20px;
            scroll-behavior: smooth;
        }
        
        .scrolling-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .scrolling-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .scrolling-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        .scrolling-item {
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
        }
        
        .scrolling-item:last-child {
            border-bottom: none;
        }
        
        .scrolling-item:hover {
            background: #f8f9fa;
            transform: translateX(5px);
        }
        
        .item-date {
            background: var(--primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .item-date .day {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .item-date .month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .item-content {
            flex-grow: 1;
        }
        
        .item-content h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .item-content p {
            color: #666;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        
        .item-action {
            margin-top: 10px;
        }
        
        .new-badge {
            background: var(--secondary);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            margin-left: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }
        
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
        }
        
        .empty-state i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #dee2e6;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .latest-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .scrolling-item {
                flex-direction: column;
            }
            
            .item-date {
                margin-right: 0;
                margin-bottom: 15px;
                width: 50px;
                height: 50px;
            }
            
            .item-date .day {
                font-size: 1.2rem;
            }
            
            .latest-content {
                height: 450px;
            }
        }
		
/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.page-header .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
}