/* Achievements Section Styles */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), rgba(10, 37, 64, 0.9));
    color: var(--white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

/* Achievements Page Styles */
.achievements-page-content {
    padding: 60px 0 100px;
    background: var(--white);
    color: var(--navy);
    min-height: 80vh;
}

.achievements-page-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Breadcrumb for achievements page */
.achievements-page ~ .breadcrumb,
.breadcrumb {
    padding: 20px 0;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 80px;
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--gold);
    font-weight: bold;
}

.breadcrumb-list a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list li:last-child {
    color: var(--gold);
    font-weight: 600;
}

.achievements-page {
    padding: 60px 0 100px;
    background: var(--white);
    min-height: calc(100vh - 200px);
}

.achievements .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.achievements-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.achievement-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.achievement-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievement-section:last-child {
    margin-bottom: 0;
}

.achievement-category {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.achievement-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-size: 2.2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.achievement-icon {
    width: 24px;
    height: 24px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
}

.achievement-detail {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Business Metrics */
.business-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.metric-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Featured Projects */
.featured-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.project-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.project-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.project-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Social Contributions */
.social-contributions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contribution-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.contribution-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contribution-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contribution-item h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.contribution-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Milestone Timeline */
.milestone-timeline {
    margin-top: 60px;
}

.achievements .timeline {
    position: relative;
    padding: 40px 0;
}

.achievements .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--light-gold));
    transform: translateX(-50%);
}

.achievements .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.achievements .timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievements .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.achievements .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.achievements .timeline-year {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.achievements .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 12px;
    margin: 0 30px;
    max-width: 510px;
}

.achievements .timeline-content h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.achievements .timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.milestone-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.milestone-stat {
    background: rgba(212, 175, 55, 0.2);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Thank You Section */
.thank-you-section {
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px;
    margin-bottom: 60px;
}

.thank-you-content {
    max-width: 900px;
    margin: 0 auto;
}

.thank-you-greeting {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.thank-you-text {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thank-you-text p {
    margin-bottom: 20px;
}

.thank-you-text p:last-child {
    margin-bottom: 0;
}

.thank-you-closing {
    font-weight: 600;
    color: var(--gold);
    margin-top: 30px;
    text-align: center;
}

.thank-you-signature {
    margin-top: 40px;
    text-align: right;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* Intro Section */
.intro-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.intro-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.intro-item p strong {
    color: var(--gold);
    font-weight: 600;
}

/* History Section */
.history-section {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 50px;
}

.history-content {
    max-width: 1000px;
    margin: 40px auto 0;
}

.history-content p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-content p:last-child {
    margin-bottom: 0;
}

/* Section Header Styles */
.achievement-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.achievement-section .section-title {
    font-size: 2.2rem;
    color: var(--white);
    margin: 20px 0;
    font-weight: 700;
}

.achievement-section .decorative-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.achievement-section .decorative-line {
    width: 80px;
    height: 3px;
    margin: 20px auto;
    border-radius: 2px;
}

.achievement-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-weight: 400;
}

/* Achievements Main Section */
.achievements-main-section {
    padding: 60px 40px;
}

.achievements-page-content {
    padding: 0;
}

.achievements-page-content .achievements-main-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}


.achievements-page-content .achievement-item {
    background: var(--light-gray);
    border: 1px solid rgba(10, 37, 64, 0.1);
}

.achievements-page-content .achievement-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
}

.achievements-page-content .section-header .decorative-icon {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.achievements-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.achievements-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Achievements List */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.achievement-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.achievement-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

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

.achievement-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.achievement-details li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.achievement-details li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thank-you-content,
    .history-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .achievements {
        padding: 60px 0;
    }
    
    .achievement-section {
        margin-bottom: 50px;
    }
    
    .achievements-main-section {
        padding: 40px 20px;
    }
    
    .achievements-page {
        padding: 40px 0 60px;
    }
    
    .breadcrumb {
        margin-top: 60px;
        padding: 15px 0;
    }
    
    .breadcrumb .container {
        padding: 0 3%;
    }
    
    .achievement-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .achievement-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        align-self: flex-start;
    }
    
    .achievement-title {
        font-size: 1.1rem;
    }
    
    .achievement-details li {
        font-size: 0.95rem;
    }
    
    .achievements-intro p {
        font-size: 1rem;
    }
    
    .thank-you-section,
    .intro-section,
    .history-section {
        padding: 30px 20px;
    }
    
    .thank-you-greeting {
        font-size: 1.1rem;
    }
    
    .thank-you-text,
    .history-content p {
        font-size: 1rem;
    }
    
    .achievement-section .section-title {
        font-size: 1.8rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .signature-name {
        font-size: 1.1rem;
    }
    
    .achievements .timeline::before {
        left: 30px;
    }
    
    .achievements .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .achievements .timeline-year {
        position: absolute;
        left: -50px;
        min-width: 80px;
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .achievements .timeline-content {
        margin: 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .achievements-main-section {
        padding: 30px 15px;
    }
    
    .achievement-item {
        padding: 20px;
        gap: 15px;
    }
    
    .achievement-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .achievement-title {
        font-size: 1rem;
    }
    
    .achievement-details li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .achievements-intro p {
        font-size: 0.95rem;
    }
    
    .achievement-section .section-title {
        font-size: 1.6rem;
    }
    
    .thank-you-section,
    .intro-section,
    .history-section {
        padding: 25px 15px;
    }
    
    .thank-you-signature {
        text-align: center;
    }
}
