
    /* About Page Header - No Background Color */
    .about-header {
        padding: 60px 0 30px;
        text-align: center;
    }
    
    .about-header h1 {
        font-size: 56px;
        font-weight: 800;
        color: #333;
        margin-bottom: 15px;
    }
    
    .about-header p {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    /* Section Styles */
    .about-section {
        padding: 60px 0;
    }
    
    .about-section:nth-child(even) {
        background-color: #f8f9fa;
    }
    
    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        padding-bottom: 15px;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 3px;
    }
    
    .section-title-left {
        font-size: 42px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 30px;
        text-align: left;
        position: relative;
        padding-bottom: 15px;
    }
    
    .section-title-left:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 3px;
    }
    
    /* Company Description Text - Pure Black & Bold */
    .company-description {
        font-size: 20px;
        line-height: 1.8;
        color: #000000;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .company-text {
        font-size: 18px;
        line-height: 1.8;
        color: #000000;
        font-weight: 500;
        margin-bottom: 20px;
    }
    
    /* Info Cards */
    .info-card {
        background: white;
        border-radius: 20px;
        padding: 35px 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        text-align: center;
        border: 1px solid #f0f0f0;
    }
    
    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        border-color: #667eea;
    }
    
    .info-card .icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea15, #764ba215);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 32px;
        color: #667eea;
        transition: all 0.3s ease;
    }
    
    .info-card:hover .icon {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        transform: scale(1.1);
    }
    
    .info-card h3 {
        font-size: 24px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 15px;
    }
    
    .info-card p {
        color: #333;
        font-weight: 500;
        line-height: 1.7;
        font-size: 15px;
        margin: 0 0 15px;
    }
    
    /* Vision & Mission Boxes */
    .vision-box, .mission-box {
        background: white;
        border-radius: 20px;
        padding: 45px 35px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        height: 100%;
        border: 1px solid #f0f0f0;
        transition: all 0.4s ease;
    }
    
    .vision-box:hover, .mission-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
        border-color: #667eea;
    }
    
    .vision-box .icon, .mission-box .icon {
        font-size: 56px;
        color: #667eea;
        margin-bottom: 25px;
    }
    
    .vision-box h3, .mission-box h3 {
        font-size: 32px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 20px;
    }
    
    .vision-box p, .mission-box p {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
        font-weight: 500;
    }
    
    /* Values Grid */
    .value-item {
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    }
    
    .value-item .value-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: white;
    }
    
    .value-item h4 {
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
    }
    
    .value-item p {
        color: #333;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }
    
    /* Product Categories */
    .category-tag {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 6px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        display: inline-block;
    }
    
    /* Partner Cards */
    .partner-card {
        background: white;
        border-radius: 15px;
        padding: 30px 25px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f0f0f0;
    }
    
    .partner-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(102, 126, 234, 0.15);
        border-color: #667eea;
    }
    
    .partner-card .icon {
        font-size: 48px;
        color: #667eea;
        margin-bottom: 20px;
    }
    
    .partner-card h4 {
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
    }
    
    .partner-card p {
        color: #333;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Feature List */
    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
        padding: 8px 15px;
        background: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        background: #667eea10;
        transform: translateX(5px);
    }
    
    .feature-item i {
        width: 32px;
        height: 32px;
        background: #667eea;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        margin-right: 15px;
    }
    
    .feature-item span {
        color: #000000;
        font-weight: 600;
        font-size: 16px;
    }
    
    /* Team Card - Updated to show images like team page */
    .team-card-simple {
        text-align: center;
        padding: 0 0 25px 0;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f0f0f0;
        overflow: hidden;
    }
    
    .team-card-simple:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(102, 126, 234, 0.15);
        border-color: #667eea;
    }
    
    .team-card-simple .team-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 20px;
    }
    
    .team-card-simple h4 {
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 8px;
        padding: 0 15px;
    }
    
    .team-card-simple .position {
        color: #667eea;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
        padding: 0 15px;
    }
    
    .team-card-simple .education {
        color: #333;
        font-weight: 500;
        font-size: 14px;
        padding: 0 15px;
    }
    
    /* CEO Section */
    .ceo-section {
        background: linear-gradient(135deg, #667eea08, #764ba208);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    .ceo-card {
        background: white;
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }
    
    .ceo-image-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        height: 100%;
        min-height: 400px;
    }
    
    .ceo-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .ceo-image-wrapper:hover .ceo-image {
        transform: scale(1.05);
    }
    
    .ceo-content {
        padding: 20px 0 20px 30px;
    }
    
    .ceo-content h2 {
        font-size: 42px;
        font-weight: 800;
        color: #000000;
        margin-bottom: 15px;
    }
    
    .ceo-name {
        font-size: 32px;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 10px;
    }
    
    .ceo-title {
        font-size: 20px;
        color: #666;
        font-weight: 600;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .ceo-message {
        font-size: 18px;
        line-height: 1.9;
        color: #333;
        font-weight: 500;
        margin-bottom: 25px;
        font-style: italic;
    }
    
    .ceo-signature {
        font-size: 28px;
        font-weight: 700;
        color: #667eea;
        font-family: 'Dancing Script', cursive;
        margin-bottom: 10px;
    }
    
    /* Events Gallery Section */
    .events-gallery {
        padding: 60px 0;
        background: #f8f9fa;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin: 40px 0;
    }
    
    .gallery-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        aspect-ratio: 1/1;
        cursor: pointer;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .gallery-item .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.9));
        padding: 20px;
        color: white;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }
    
    .gallery-item:hover .overlay {
        transform: translateY(0);
    }
    
    .gallery-item .overlay h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }
    
    .gallery-item .overlay p {
        font-size: 13px;
        opacity: 0.9;
        margin: 5px 0 0;
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('@assets/img/pattern.png') repeat;
        opacity: 0.1;
    }
    
    .cta-section .container {
        position: relative;
        z-index: 2;
    }
    
    .cta-section h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 30px;
        color: white;
    }
    
    .cta-section .btn {
        background: white;
        color: #667eea;
        padding: 15px 45px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        border: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-section .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .about-header h1 {
            font-size: 42px;
        }
        
        .section-title {
            font-size: 36px;
        }
        
        .vision-box, .mission-box {
            padding: 35px 25px;
        }
        
        .vision-box h3, .mission-box h3 {
            font-size: 28px;
        }
        
        .vision-box p, .mission-box p {
            font-size: 16px;
        }
        
        .ceo-content {
            padding: 30px 0 0;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .about-header h1 {
            font-size: 36px;
        }
        
        .about-header p {
            font-size: 16px;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .section-title-left {
            font-size: 32px;
        }
        
        .company-description {
            font-size: 18px;
        }
        
        .company-text {
            font-size: 16px;
        }
        
        .vision-box, .mission-box {
            padding: 30px 20px;
        }
        
        .vision-box h3, .mission-box h3 {
            font-size: 24px;
        }
        
        .ceo-content h2 {
            font-size: 32px;
        }
        
        .ceo-name {
            font-size: 28px;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .cta-section h2 {
            font-size: 32px;
            padding: 0 20px;
        }
    }
    
    @media (max-width: 480px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* Loading Animation */
    .wow {
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fadeInUp {
        animation-name: fadeInUp;
    }
/* Who We Are Image Section */
.who-we-are-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 120, 240, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 400px;
}

.who-we-are-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

.who-we-are-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 120, 240, 0.3), rgba(255, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.who-we-are-image:hover .image-overlay {
    opacity: 1;
}

.who-we-are-image .overlay-content {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.who-we-are-image:hover .overlay-content {
    transform: translateY(0);
}

.who-we-are-image .overlay-content i {
    color: #1a78f0;
    font-size: 20px;
}

.who-we-are-image .overlay-content span {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

/* Decorative elements */
.who-we-are-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #1a78f0;
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.who-we-are-image:hover::before {
    opacity: 0.3;
}

/* Animation classes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .who-we-are-image {
        min-height: 350px;
        margin-bottom: 30px;
    }
    
    .who-we-are-image .overlay-content {
        padding: 12px 25px;
    }
    
    .who-we-are-image .overlay-content i {
        font-size: 18px;
    }
    
    .who-we-are-image .overlay-content span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .who-we-are-image {
        min-height: 300px;
    }
    
    .section-title-left {
        margin-top: 20px;
    }
}

/* ===== Company Gallery Slider ===== */
.company-slider-container {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-top: 30px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.slider-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    position: relative;
    padding-left: 15px;
}

.slider-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1a78f0, #ff0000);
    border-radius: 2px;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #1a78f0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.slider-prev:hover, .slider-next:hover {
    background: #1a78f0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 120, 240, 0.2);
    border-color: #1a78f0;
}

.slider-prev:active, .slider-next:active {
    transform: translateY(0);
}

/* Company Slider */
.company-slider {
    overflow: hidden;
    margin: 0 -10px;
}

.company-slider .slick-track {
    display: flex;
    padding: 10px 0;
}

.company-slider .slider-item {
    padding: 0 10px;
}

.company-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 280px;
    transition: all 0.4s ease;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 120, 240, 0.2);
}

.company-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.company-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(26, 120, 240, 0.9));
    padding: 25px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.company-card:hover .company-card-overlay {
    transform: translateY(0);
}

.company-card-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.company-card-overlay .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1a78f0;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-card-overlay .view-btn:hover {
    background: #1a78f0;
    color: white;
    transform: translateX(5px);
}

.company-card-overlay .view-btn i {
    font-size: 12px;
}

/* Progress Bar */
.slider-progress {
    margin-top: 25px;
    height: 3px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1a78f0, #ff0000);
    transition: width 0.3s ease;
}

/* Slick Dots Customization */
.company-slider .slick-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .company-slider-container {
        padding: 25px;
    }
    
    .slider-title {
        font-size: 22px;
    }
    
    .company-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .company-slider-container {
        padding: 20px;
    }
    
    .slider-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .slider-title {
        font-size: 20px;
    }
    
    .slider-nav {
        align-self: flex-end;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .company-card {
        height: 220px;
    }
    
    .company-card-overlay {
        padding: 20px;
    }
    
    .company-card-overlay h4 {
        font-size: 16px;
    }
    
    .company-card-overlay .view-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .company-card {
        height: 200px;
    }
}
