
/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
   
    content: '';
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/about.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards, bounce 2s infinite 1.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Story Section */
.our-story {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stats .stat-item {
    text-align: center;
}

.story-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-stats .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    letter-spacing: 1px;
}
.story-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.story-image:hover img {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: #6bb91a;
    transform: scale(1.1);
}

/* Design Process Timeline */
.design-process {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #6bb91a);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item.reverse {
    direction: rtl;
}

.timeline-item.reverse .timeline-content {
    direction: ltr;
    text-align: right;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
}

.timeline-content {
    background-color: #222222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.timeline-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: rgba(126, 211, 33, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(126, 211, 33, 0.3);
}

.timeline-image {
    border-radius: 10px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Fabric Selector */
.fabric-selector {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.fabric-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.fabric-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: #222222;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 1px;
}

.fabric-btn:hover,
.fabric-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.fabric-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.fabric-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: #222222;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.fabric-content.active {
    display: grid;
    animation: fadeInUp 0.5s ease-out;
}

.fabric-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.fabric-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fabric-properties {
    list-style: none;
}

.fabric-properties li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.fabric-properties i {
    color: var(--primary-color);
}

.fabric-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fabric-sample {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.fabric-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fabric-sample:hover {
    transform: scale(1.05);
}

.cotton-sample {
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.silk-sample {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.3) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.3) 25%, transparent 25%);
    background-size: 30px 30px;
}

.wool-sample {
    background: linear-gradient(45deg, #8d6e63, #a1887f, #bcaaa4);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 3px, transparent 3px),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 2px, transparent 2px);
    background-size: 25px 25px;
}

.linen-sample {
    background: linear-gradient(45deg, #d7ccc8, #efebe9, #f5f5f5);
    background-image: 
        linear-gradient(0deg, rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background-color: #222222;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(126, 211, 33, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.member-overlay .social-links a:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.member-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #222222;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.value-description {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
.story-text {
    text-align: center;
   
    margin: 0 auto;
}
    .story-stats {
        justify-content: center;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item.reverse {
        direction: ltr;
    }

    .timeline-item.reverse .timeline-content {
        text-align: center;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-number {
        position: static;
        transform: none;
        margin: 0 auto 1rem;
    }

    .fabric-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .fabric-categories {
        flex-direction: column;
        align-items: center;
    }

    .fabric-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .fabric-content {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
.story-stats {
    flex-direction: column;
    align-items: center;
}
.fabric-sample  img{
    width: 300px;
    height: 300px;
}
    .values-grid {
        grid-template-columns: 1fr;
    }
}