.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.about-hero .hero-content h1 {
    margin-bottom: 20px;
}

.about-hero .hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 100px 5%;
    background-color: var(--secondary-color);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.owner-message {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}



.owner-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.owner-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.owner-signature {
    margin-top: 30px;
    text-align: center;
}

.owner-signature img {
    height: 50px;
    margin-bottom: 10px;
}

.owner-signature p {
    color: var(--light-gray);
    font-style: italic;
}

.owner-content {
    flex: 2;
    min-width: 300px;
}

.owner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
}

.owner-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
}

.owner-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.owner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-width: 120px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 5%;
    background: #100f0f;
    position: relative;
}

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

.milestones-section .section-header h2 {
    color: white;
}

.milestones-section .section-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), rgba(163, 41, 25, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: all 0.6s ease;
}

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

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(163, 41, 25, 0.3);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 500px;
    transform: translateX(-25%);
}

.timeline-content h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.values-section {
    padding: 100px 5%;
    background: #100f0f;
    position: relative;
}

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

.values-section .section-header h2 {
    color: white;
}

.values-section .section-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(163, 41, 25, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
    transition: width 0.4s;
}

.value-card:hover h3::after {
    width: 80px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.4s;
}

.value-card:hover p {
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.mobile-menu .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-menu .login-btn {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .owner-content h2 {
        font-size: 2rem;
    }
    
    .owner-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .navbar .nav-links {
        display: none;
    }
    
    .navbar .login-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        left: 30px;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 70px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px !important;
        margin-right: 0 !important;
        transform: translateY(40%);
    }
    
    .owner-stats {
        gap: 15px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .owner-message {
        gap: 30px;
    }
    
    .owner-content h2 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        min-width: calc(50% - 15px);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        min-width: 100%;
    }
    
    .owner-image, .owner-content {
        min-width: 100%;
    }
    
    .owner-stats {
        flex-direction: column;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-year {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}