/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6c757d 100%);
}

.hero-bg {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.min-vh-75 {
    min-height: 75vh;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Cards */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15) !important;
}

.event-detail-card {
    transition: all 0.3s ease;
}

.event-detail-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1) !important;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    transition: transform 0.5s ease;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Icon Boxes */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Logos */
.partner-logo {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(108, 117, 125, 0.1));
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

/* Badge Styling */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Star Rating */
.bi-star-fill {
    font-size: 1rem;
}

/* Modal */
.modal-content {
    border: none;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
}


/* Premium Design Enhancements */

/* Typography & Spacing */
.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.display-1 {
    font-size: calc(2rem + 4.5vw);
    font-weight: 800;
    line-height: 1.1;
}

.display-2 {
    font-size: calc(1.8rem + 3.5vw);
    font-weight: 800;
}

/* Hero Section Premium */
.hero-section-premium {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #084298 100%);
}


/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-video-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(108, 117, 125, 0.85));
    z-index: 1;
}

/* Ensure content appears above video */
.hero-video-bg .container {
    position: relative;
    z-index: 2;
}



.hero-title {
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-premium {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-premium {
    background: white;
    color: #0d6efd;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
    color: #0d6efd;
}

.btn-outline-premium {
    border: 2px solid white;
    color: white;
    font-weight: 700;
    background: transparent;
    transition: all 0.4s ease;
}

.btn-outline-premium:hover {
    background: white;
    color: #0d6efd;
    transform: translateY(-5px);
}

.stats-row {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge-light {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card-featured {
    border: 2px solid #198754;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #198754, #146c43);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(25, 135, 84, 0.4);
}

.service-icon-wrapper {
    display: inline-block;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #198754, #146c43);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #495057;
}

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

/* Feature Highlights */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0d6efd, #6c757d);
    top: -100px;
    left: -100px;
    animation: float 20s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #198754, #0d6efd);
    bottom: -50px;
    right: 10%;
    animation: float 15s infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffc107, #dc3545);
    top: 40%;
    right: -50px;
    animation: float 18s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.feature-highlight-group {
    position: relative;
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* About Section */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .main-image {
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.icon-box-large {
    width: 70px;
    height: 70px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-box {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 2rem 0 1rem;
}

/* Gallery Premium */
.gallery-item-premium {
    position: relative;
    overflow: hidden;
    height: 350px;
    transition: all 0.5s ease;
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item-premium:hover img {
    transform: scale(1.15);
}

.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

.gallery-content {
    color: white;
}

/* Event Cards Premium */
.event-card-premium {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.event-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.event-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card-premium:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.event-category {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #0d6efd;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.event-card-body {
    padding: 2rem;
}

.event-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
}

.seats-left {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dc3545;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-item i {
    font-size: 1.2rem;
}

.price-tag h3 {
    line-height: 1;
}

/* Past Event Cards */
.past-event-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.past-event-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.past-event-card .card-body {
    padding: 1.5rem;
}

/* Testimonials Premium */
.testimonial-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.testimonial-card-premium .rating {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
}

/* Partner Logos */
.partner-logo-premium {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-logo-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.partner-logo-premium img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

/* Accordion Premium */
.accordion-premium .accordion-item {
    border: none;
    background: white;
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-premium .accordion-button {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem !important;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: none;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(108, 117, 125, 0.05));
    color: #0d6efd;
}

.accordion-premium .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
}

/* Contact Section */
.contact-form-premium {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float 25s infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: float 20s infinite reverse;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .display-1 {
        font-size: 3rem;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .py-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-form-premium {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .gallery-item-premium {
        height: 280px;
    }
    
    .event-image-wrapper {
        height: 220px;
    }
}


/* About Page Styles */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #084298 100%);
    min-height: 60vh;
}

.about-hero-bg {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.92), rgba(108, 117, 125, 0.88));
    z-index: 1;
}

.min-vh-60 {
    min-height: 60vh;
}

/* Story Section */
.story-image-grid {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.story-image-wrapper:hover {
    transform: translateY(-5px);
}

.story-image-wrapper img {
    transition: transform 0.5s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.story-image-wrapper:hover .image-caption {
    transform: translateY(0);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0d6efd, #198754);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d6efd;
    border: 4px solid #f8f9fa;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
    z-index: 2;
}

.timeline-dot-current {
    background: #198754;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.2), 0 0 20px rgba(25, 135, 84, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.mission-vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.icon-box-xlarge {
    width: 100px;
    height: 100px;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d, #565e64);
}

/* Team Cards */
.team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
    position: relative;
    display: inline-block;
}

.team-image-wrapper img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
}

/* Achievement Cards */
.achievement-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.achievement-icon {
    font-size: 4rem;
}

/* Stat Cards */
.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-dot {
        left: -30px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .icon-box-xlarge {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }
    
    .about-hero-bg {
        min-height: 50vh;
    }
    
    .min-vh-60 {
        min-height: 50vh;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .value-card,
    .team-card,
    .achievement-card {
        padding: 2rem 1.5rem;
    }
    
    .team-image-wrapper img {
        width: 150px;
        height: 150px;
    }
}
