/* About Pages Styling */

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f8b400;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.page-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.header-image {
    flex: 0 0 45%;
    position: relative;
}

.header-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-text {
    flex: 0 0 55%;
    padding-top: 20px;
}

.badge {
    display: inline-block;
    background-color: #f8b400;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.header-text h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.quick-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    color: #888;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.content-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #f8b400;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}

/* Program Blocks */
.program-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.program-block:last-child {
    border-bottom: none;
}

.program-block h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f8b400;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #555;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.program-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #f8b400;
}

.program-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Info Section */
.info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Message Section Styling (for Principal/Chief Mentor pages) */
.message-content {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    margin-top: 40px;
}

.message-content:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 100px;
    color: #f8b400;
    opacity: 0.3;
    font-family: 'Cambria', 'Cambria Math', serif;
    line-height: 1;
}

.message-content p {
    position: relative;
    z-index: 1;
}

.message-signature {
    text-align: right;
    margin-top: 30px;
}

.message-signature .name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.message-signature .position {
    font-size: 16px;
    color: #888;
}

/* Profile Box */
.profile-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.profile-image {
    flex: 0 0 35%;
}

.profile-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-details {
    flex: 0 0 65%;
}

.profile-details h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.profile-details .position {
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details .item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-details .item i {
    width: 20px;
    color: #f8b400;
    margin-right: 10px;
}

/* Quick Info Box */
.quick-info {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.quick-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

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

.info-list li {
    display: flex;
    margin-bottom: 15px;
}

.info-list li .label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #f8b400;
}

.info-list li .value {
    flex: 0 0 60%;
}

/* Testimonial */
.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #f8b400;
    opacity: 0.3;
    font-family: 'Cambria', 'Cambria Math', serif;
}

.testimonial p {
    position: relative;
    z-index: 1;
    font-style: italic;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author .details {
    display: flex;
    flex-direction: column;
}

.testimonial-author .name {
    font-weight: 700;
    color: #2c3e50;
}

.testimonial-author .position {
    font-size: 14px;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-header {
        flex-direction: column;
    }
    
    .header-image,
    .header-text {
        flex: 0 0 100%;
    }
    
    .profile-box {
        flex-direction: column;
    }
    
    .profile-image,
    .profile-details {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Code of Conduct Specific Styling */
.conduct-list {
    margin-left: 20px;
    margin-bottom: 30px;
}

.conduct-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.conduct-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f8b400;
    font-size: 20px;
}

/* Rules & Regulations Specific Styling */
.rule-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.rule-section:last-child {
    border-bottom: none;
}

.rule-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.rule-list {
    margin-left: 20px;
}

.rule-list li {
    margin-bottom: 15px;
}

/* Affiliation Section Styling */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.certificate-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.certificate-image {
    height: 200px;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.certificate-details {
    padding: 20px;
}

.certificate-details h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.certificate-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.certificate-details .issue-date {
    font-size: 12px;
    color: #888;
}

/* Facilities Grid Styling */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.facility-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.facility-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.facility-item h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f8b400;
}

.facility-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Goals Grid Styling */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.goal-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #f8b400;
}

.goal-item:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.goal-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.goal-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Timeline Styling */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20%;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
}

.timeline-year {
    width: 20%;
    text-align: right;
    padding-right: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #f8b400;
}

.timeline-content {
    width: 80%;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #f8b400;
}

.timeline-content h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

/* Vision & Mission Boxes */
.vision-mission {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.vision-box, .mission-box {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.vision-box h3, .mission-box h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.vision-box p, .mission-box p {
    font-size: 16px;
    color: #444;
    position: relative;
    z-index: 1;
    margin: 0;
}

.vision-box:before, .mission-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: #f8b400;
}

.vision-box:after, .mission-box:after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(248, 180, 0, 0.1);
    z-index: 0;
}

/* CTA Section */
.cta-section {
    background-color: #2c3e50;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f8b400;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #fff;
    color: #2c3e50;
}

/* Blockquote Styling */
blockquote {
    background-color: rgba(248, 180, 0, 0.1);
    border-left: 4px solid #f8b400;
    margin: 25px 0;
    padding: 20px 25px;
    font-style: italic;
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
    position: relative;
}

blockquote:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: #f8b400;
    opacity: 0.3;
}

blockquote:after {
    content: '"';
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 24px;
    color: #f8b400;
    opacity: 0.3;
}

/* Leadership Links */
.leadership-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.leadership-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    flex: 1;
    transition: all 0.3s ease;
    border-left: 3px solid #f8b400;
}

.leadership-link:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.leadership-link .link-title {
    font-size: 16px;
}

.leadership-link i {
    color: #f8b400;
    transition: transform 0.3s ease;
}

.leadership-link:hover i {
    transform: translateX(5px);
}

/* Contributions Box */
.contributions-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 25px;
}

.contributions-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contributions-box h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f8b400;
}

@media (max-width: 768px) {
    .facilities-grid, 
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 60px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        width: 100%;
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 60px;
    }
    
    .timeline-content:before {
        left: -48px;
    }
    
    .vision-mission {
        flex-direction: column;
    }
    
    .leadership-links {
        flex-direction: column;
    }
}

/* Modern Bhagirath Sewa Sansthan Page styles */
.modernized-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 3rem 0;
}

.modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.modern-breadcrumb {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-breadcrumb a:hover {
    color: #1e293b;
}

.hero-section {
    position: relative;
    height: 50vh;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 41, 59, 0.3);
    mix-blend-mode: multiply;
    z-index: 10;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent);
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 20;
    color: white;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 500;
    color: #facc15;
}

.hero-established {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    gap: 0.75rem;
}

.hero-established-icon {
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-established-text {
    color: white;
}

.hero-established-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-established-value {
    font-size: 0.75rem;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .modern-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.modern-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-icon i {
    color: white;
    font-size: 1.75rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #1e293b, #364559);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.program-item {
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.program-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.program-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.program-text {
    color: #4b5563;
    font-size: 0.875rem;
}

.impact-section {
    background: linear-gradient(to right, #1e293b, #364559);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    color: white;
}

.impact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.impact-title i {
    margin-right: 0.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.impact-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.impact-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.sidebar-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.sidebar-header {
    background: #1e293b;
    color: white;
    padding: 1rem;
}

.sidebar-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.sidebar-content {
    padding: 1.25rem;
}

.sidebar-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
    transition: transform 0.3s;
}

.course-item:hover {
    transform: translateX(5px);
}

.course-icon {
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background-color: rgba(30, 41, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: background-color 0.3s;
}

.course-item:hover .course-icon {
    background-color: rgba(30, 41, 59, 0.2);
}

.course-icon i {
    color: #1e293b;
    font-size: 1rem;
}

.course-text {
    transition: color 0.3s;
}

.course-item:hover .course-text {
    color: #1e293b;
}

.facts-grid {
    padding: 1.25rem;
    background-color: rgba(30, 41, 59, 0.1);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    align-items: flex-start;
}

.fact-icon {
    color: #1e293b;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.fact-label {
    font-weight: 600;
    display: block;
}

.fact-value {
    color: #4b5563;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

.stagger-item {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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