.container-customize {
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: auto;
}

.about-us {
    width: calc(100% - 40px);
    margin: 40px auto;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Panel */
.about-hero {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 80px 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-tagline {
    font-size: 1.4rem;
    color: #f3f3f3;
    font-family: "Poppins", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7E21, #FFB347);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card-icon {
    font-size: 3rem;
    color: #FF7E21;
    text-shadow: 0 0 20px rgba(255, 126, 33, 0.3);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 1rem;
    color: #f3f3f3;
    line-height: 1.7;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
}

/* Timeline */
.timeline-section {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-top: 20px;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

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

.timeline-icon {
    font-size: 2rem;
    color: #FF7E21;
    margin-bottom: 2px;
    text-shadow: 0 0 15px rgba(255, 126, 33, 0.3);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcba6;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #f3f3f3;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
}

/* Call to Action */
.cta-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 126, 33, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.1rem;
    color: #f3f3f3;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF7E21, #FFB347);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 8px 25px rgba(255, 126, 33, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 126, 33, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-us {
        padding: 50px 30px;
        gap: 60px;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 40px 20px;
        gap: 50px;
    }
    
    .about-hero {
        padding: 60px 30px;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-tagline {
        font-size: 1.2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 35px 25px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .team-photo {
        height: 300px;
    }
    
    .timeline-title,
    .team-title {
        font-size: 2.2rem;
    }
    
    .cta-section {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.4rem;
    }
    
    .about-hero-tagline {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-card h3 {
        font-size: 1.6rem;
    }
    
    .timeline-item {
        padding: 25px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        height: 280px;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
}