/* About Page Specific Styles */
.about-page {
    margin-top: 80px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('../img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(227, 6, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9), rgba(255, 165, 0, 0.9));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: badgePulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
    }
}

.about-hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b00, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 3s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.about-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
}

.hero-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(0, 102, 204, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat:hover .stat-number {
    transform: scale(1.1);
    color: #ff6b00;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: block;
    min-height: 60px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Company Story Section */
.company-story {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(227, 6, 19, 0.8),
        rgba(255, 107, 0, 0.8),
        rgba(0, 102, 204, 0.8)
    );
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: calc(50% - 60px);
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    float: left;
    clear: left;
}

.timeline-item.right {
    float: right;
    clear: right;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item.left::before {
    right: -70px;
    border-color: var(--primary-red);
}

.timeline-item.right::before {
    left: -70px;
    border-color: var(--primary-blue);
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    position: absolute;
    top: -25px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    font-weight: 700;
    border-radius: 20px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.timeline-item.left .timeline-year {
    right: 20px;
}

.timeline-item.right .timeline-year {
    left: 20px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 100px;
    clear: both;
}

.mission-card, .vision-card {
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05), transparent);
    border: 2px solid rgba(227, 6, 19, 0.1);
}

.vision-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
    border-color: rgba(227, 6, 19, 0.3);
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1), transparent);
}

.vision-card:hover {
    border-color: rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.3);
}

.vision-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.mission-card h3, .vision-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission-card p, .vision-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

/* Shop Section */
.shop-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.shop-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite alternate;
}

.shop-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px auto;
    max-width: 1200px;
    align-items: start;
}

.shop-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop-main-image:hover .shop-img {
    transform: scale(1.05);
}

.shop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop-main-image:hover .shop-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.shop-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shop-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.shop-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
}

.info-item i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.shop-features {
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    border-radius: 15px;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.shop-features h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.feature i {
    color: var(--primary-green);
    font-size: 18px;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.shop-gallery {
    margin-top: 80px;
}

.shop-gallery h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
    text-align: center;
    font-weight: 500;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc, #e6f2ff);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px auto;
    max-width: 1200px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.member-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.member-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.member-experience {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.member-skills span {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-desc {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.team-qualifications {
    margin-top: 80px;
    text-align: center;
}

.team-qualifications h3 {
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.qualification {
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.qualification:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
}

.qualification i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.qualification:nth-child(1) i { color: var(--primary-red); }
.qualification:nth-child(2) i { color: var(--primary-orange); }
.qualification:nth-child(3) i { color: var(--primary-blue); }
.qualification:nth-child(4) i { color: var(--primary-green); }

.qualification h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.qualification p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 30px;
    color: var(--dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 auto;
    max-width: 1400px;
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 20px;
    border: 2px dashed var(--primary-blue);
}

.gallery-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.gallery-cta strong {
    color: var(--primary-red);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Certifications Section */
.certifications-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.certification-card {
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.certification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.2);
}

.certification-card:nth-child(2) .certification-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.certification-card:nth-child(3) .certification-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.certification-card:nth-child(4) .certification-icon {
    background: linear-gradient(135deg, #8a2be2, #9370db);
}

.certification-card:nth-child(5) .certification-icon {
    background: linear-gradient(135deg, #00b4d8, #90e0ef);
}

.certification-card:nth-child(6) .certification-icon {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
}

.certification-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.certification-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.certification-year {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.certifications-logos {
    margin-top: 80px;
    text-align: center;
}

.certifications-logos h3 {
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.logo-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.logo-item p {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

/* Why Choose Section */
.why-choose-about {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff9f9, #fff);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1400px;
}

.reason-card {
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.1);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.reason-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.reason-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cta-box {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(227, 6, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%23ffffff" fill-opacity="0.05" d="M0,0L1000,1000"/></svg>');
    background-size: cover;
    animation: ctaPattern 20s linear infinite;
}

@keyframes ctaPattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats,
    .certifications-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .shop-container {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 90px);
        margin-left: 90px;
        float: none;
        clear: both;
    }
    
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: -70px;
        right: auto;
    }
    
    .timeline-item.left .timeline-year,
    .timeline-item.right .timeline-year {
        left: 20px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .projects-gallery {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 30px 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--dark-orange));
}

/* Print Styles */
@media print {
    .about-hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: 50px 0;
    }
    
    .about-hero-title {
        color: black !important;
        -webkit-text-fill-color: black;
        background: none;
    }
    
    .hero-stats,
    .team-grid,
    .projects-gallery,
    .certifications-grid,
    .reasons-grid {
        break-inside: avoid;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-signup {
        display: none;
    }
}