
:root {
    --primary-color: #0056b3; 
    --secondary-color: #e63946; 
    --accent-color: #ffc107; 
    --dark-color: #2a4365; 
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --success-color: #28a745;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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





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

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: #2a4365;
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #aea8a8;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}



.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Header Styles */


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}



.about-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner/banner1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(230, 57, 70, 0.6) 100%);
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Timeline Container */
.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Timeline Center Line */
.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-color), 
        var(--accent-color),
        var(--primary-color));
    border-radius: 4px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Content */
.timeline-content {
    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

/* Alternate sides for timeline items */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: right;
}

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

/* Year Marker */
.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 4px solid white;
}

.timeline-item:nth-child(odd) .timeline-year {
    left: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: -50px;
}

/* Content Styling */
.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.timeline-item:nth-child(odd) .timeline-content h3::after {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-content h3::after {
    left: 0;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Arrow Indicators */
.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;

    transform: translateY(-50%) rotate(45deg);
    box-shadow: 3px -3px 10px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    right: -10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-timeline::before {
        left: 100px;
    }
    
    .timeline-content {
        width: calc(100% - 150px);
        margin-left: 150px !important;
        text-align: left !important;
    }
    
    .timeline-year {
        left: 50px !important;
        right: auto !important;
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .timeline-content::after {
        left: -10px !important;
        right: auto !important;
    }
    
    .timeline-content h3::after {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-timeline::before {
        left: 70px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        padding: 1.5rem;
    }
    
    .timeline-year {
        left: 30px !important;
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .our-story {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .story-timeline::before {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.25rem;
    }
    
    .timeline-year {
        left: 10px !important;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.animate-fade-up.visible,
.animate-fade-right.visible,
.animate-fade-left.visible {
    opacity: 1;
    transform: translate(0);
}
/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

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

.mv-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.mission .mv-icon {
    background: linear-gradient(45deg, var(--primary-color), #0077cc);
}

.vision .mv-icon {
    background: linear-gradient(45deg, var(--secondary-color), #f54b5e);
}

.mv-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

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

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .team-img img {
    transform: scale(1.1);
}


.team-card h3 {
    margin-top: 20px;
    color: var(--dark-color);
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    color: var(--text-light);
    padding: 0 20px 20px;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* ====== Compact FAQ Section ====== */
.compact-faq-section {
    padding: 60px 0;
    background: #f8fafc;
}

.compact-faq-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.compact-faq-section h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.compact-faq-section .subtitle {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.compact-faq-section .divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card[open] {
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

.faq-card summary {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-card summary:hover {
    background: #f5f9ff;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary span {
    font-size: 0.95rem;
}

.faq-card summary i {
    color: #3498db;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.faq-card[open] summary i {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 15px 15px;
}

.faq-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    gap: 12px;
}

.cta-link i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-card summary {
        padding: 10px 12px;
    }
    
    .faq-content {
        padding: 0 12px 12px;
    }
}
/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('../images/blog/default/thum1.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 110, 110, 0.9);
}

.cta-content {
    position: relative;
    z-index: 2;
    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;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ====== Partners Section ====== */
.partners-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1000px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.partner-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    transform: scale(1.2);
}

.partner-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.partners-logos {
    margin-top: 60px;
    padding: 20px 0;
}

.logos-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos-slider img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logos-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-slider {
        gap: 20px;
    }
    
    .logos-slider img {
        height: 40px;
    }
}



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

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

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

/* Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInRight 1s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 1s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.3s;
}

.animate-delay-2 {
    animation-delay: 0.6s;
}

.animate-delay-3 {
    animation-delay: 0.9s;
}

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

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-counter {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-content::after {
        left: 20px !important;
        right: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
