/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Greenish Background Theme */
.greenish-bg {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

.greenish-section {
    background: linear-gradient(to br, #ecfdf5, #d1fae5);
}

.gradient-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.gradient-green-dark {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

/* Core Values Card Styles */
.core-value-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 4px solid #10B981;
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.core-value-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Differentiator Card Styles */
.diff-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.diff-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Sister Companies Card */
.company-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

.company-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

/* Navigation */
.logo-img {
    height: 90px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

.nav-link {
    color: #e5e7eb;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #10B981, #059669);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

#navbar.scrolled {
    background: rgba(6, 78, 59, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.quick-support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-support-btn:hover {
    color: #10B981;
}

/* Mobile Menu */
.mobile-menu {
    background: rgba(6, 78, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    color: #e5e7eb;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #10B981;
    padding-left: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
}

/* Hero Animations */
.hero-title,
.hero-subtitle,
.hero-buttons {
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(30px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #059669;
    border-color: white;
    transform: translateY(-3px);
}

.gradient-text {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Title */
.section-title {
    position: relative;
    display: block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669);
    margin: 0 auto;
    border-radius: 2px;
}

/* Product Cards */
.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    color: #10B981;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-btn:hover {
    color: #059669;
    transform: translateX(5px);
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Clients Slider */
.clients-slider {
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll 15s linear infinite;
}

.client-logo {
    min-width: 200px;
    height: 100px;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.15); /* zoom level */
}
/* Update the existing .clients-slider and .clients-track styles */

/* Clients Slider for Desktop - keeps animation */
.clients-slider {
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll 15s linear infinite;
}

/* Mobile Swipe Functionality */
@media (max-width: 768px) {
    .clients-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        cursor: grab;
        user-select: none;
    }
    
    .clients-slider::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .clients-slider:active {
        cursor: grabbing;
    }
    
    .clients-track {
        animation: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0 1rem;
        width: max-content;
    }
    
    .client-item {
        flex: 0 0 auto;
        min-width: 150px;
        transition: transform 0.2s ease;
    }
    
    .client-item:active {
        transform: scale(0.95);
    }
    
    /* Add swipe indicators */
    .clients-slider::before,
    .clients-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 2;
    }
    
    .clients-slider::before {
        left: 0;
        background: linear-gradient(90deg, rgba(22, 163, 74, 0.3) 0%, transparent 100%);
    }
    
    .clients-slider::after {
        right: 0;
        background: linear-gradient(270deg, rgba(22, 163, 74, 0.3) 0%, transparent 100%);
    }
}

/* Add momentum scrolling for better swipe experience */
@supports (-webkit-overflow-scrolling: touch) {
    .clients-slider {
        -webkit-overflow-scrolling: touch;
    }
}

/* Add visual feedback for swipe */
.client-logo {
    position: relative;
    overflow: hidden;
}

.client-logo::after {
    content: '← swipe →';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .client-logo::after {
        opacity: 1;
    }
}

/* Add JavaScript-enhanced styles for better mobile experience */
.clients-slider.touch-active {
    animation-play-state: paused;
}

/* For iOS momentum scrolling */
.clients-slider {
    scroll-behavior: smooth;
}

/* Optional: Add pagination dots for mobile */
.clients-pagination {
    display: none;
}

@media (max-width: 768px) {
    .clients-pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        background: white;
        transform: scale(1.2);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    transform: translateY(-3px);
}

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    animation: fadeIn 2s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* About Page Styles */
.page-header {
    position: relative;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.motto-text {
    text-align: center;
}

.motto-text ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.5), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.certificate-card {
    /* background: white; */
    padding: 2.5rem;
    /* border-radius: 1.5rem; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    text-align: center;
    transition: all 0.4s ease;
}

.certificate-card:hover {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.certificate-icon {
    margin-bottom: 1.5rem;
}

/* Products Page Styles */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-arrow {
    margin-top: auto;
    color: #10B981;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

.product-item {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 1.5rem;
}

.quote-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Manufacturing Page Styles */
.material-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.material-visual {
    position: relative;
}

.material-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Contact Page Styles */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #10B981;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #10B981;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .floating-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .timeline-item::before {
        left: 28px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }

    .product-image {
        height: 180px;
    }

    .material-stats {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        gap: 1rem;
    }
}

/* Careers Page Styles */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.file-upload {
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed #e5e7eb;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.file-upload:hover {
    border-color: #10B981;
    background: #f0f4ff;
}

.file-upload-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Downloads Page Styles */
.download-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.download-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    color: #10B981;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid #10B981;
    border-radius: 50px;
}

.download-btn:hover {
    background: #10B981;
    color: white;
}

.download-card-mini {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f3f4f6;
}

.download-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

/* Responsive Adjustments for new pages */
@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .download-icon {
        margin-bottom: 1rem;
    }
}

/* Gallery Page Styles */
.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: white;
    color: #4b5563;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-img-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img-wrapper img {
    transition: transform 0.5s ease;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.1);
}

/* Modern Video Section Styles */
.video-card-modern {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-modern:hover {
    transform: translateY(-8px);
}

.video-card-secondary {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    color: #4b5563;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tag:hover {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Lightbox & Cursor Styles */
.cursor-zoom-in {
    cursor: zoom-in;
}

#lightbox {
    backdrop-filter: blur(8px);
}

/* Mobile touch slider styles */
.clients-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 16px;
}

.clients-slider-mobile {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.clients-slider-mobile::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.client-item-mobile {
    flex: 0 0 80%;
    scroll-snap-align: center;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-logo-mobile {
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.client-logo-mobile:active {
    transform: scale(0.95);
}

.scroll-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-indicator-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Desktop slider (existing) */
.clients-slider {
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.client-item {
    min-width: 200px;
    margin: 0 24px;
    text-align: center;
}

.client-logo {
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hide desktop on mobile, hide mobile on desktop */
@media (max-width: 767px) {
    .clients-slider {
        display: none;
    }
}

@media (min-width: 768px) {
    .clients-slider-container {
        display: none;
    }
}


    /* Arrow animations */
    @keyframes arrow-pulse {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }

    @keyframes arrow-pulse-left {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-5px); }
    }

    .swipe-arrow-right {
        animation: arrow-pulse 1.5s infinite;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .swipe-arrow-left {
        animation: arrow-pulse-left 1.5s infinite;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .swipe-arrow-left:hover,
    .swipe-arrow-right:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Scroll hint animation */
    @keyframes hand-point {
        0%, 100% { transform: translateX(0) rotate(-10deg); }
        50% { transform: translateX(10px) rotate(-10deg); }
    }

    .fa-hand-point-up {
        animation: hand-point 2s infinite;
    }

    /* Active scroll indicator */
    .scroll-indicator-dot.active {
        background: white !important;
        transform: scale(1.2);
    }
