* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #333333;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: -17px 0;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2ecc71;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2ecc71;
    transition: width 0.3s ease;
}

.nav-links a.active {
    color: #2ecc71;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 50px;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
}

.language-button:hover {
    background: #f8f9fa;
    border-color: #2ecc71;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.language-dropdown.open .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: #333333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #2ecc71;
    color: #ffffff;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%),
                url('https://images.unsplash.com/photo-1541976590-713941681591?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    background-attachment: fixed;
}

/* Video Background Styles */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(255, 107, 53, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Mobile hero adjustments - Clean Professional Design */
@media (max-width: 768px) {
    /* Mobile hero with video throughout */
    .hero {
        min-height: 100vh;
        padding: 0;
        margin-top: 80px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    /* Video covers full hero on mobile */
    .hero-video {
        top: 0;
        height: 100%;
    }

    /* Strong dark overlay for text readability */
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(26, 26, 26, 0.7) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }

    /* Content starts from top with proper padding to clear nav */
    .hero-content {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        justify-content: flex-start;
        padding: 8rem 1.5rem 3rem;
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    /* Text section */
    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Heading - compact and readable */
    .hero-text h2 {
        color: #ffffff !important;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 1),
                     0 0 40px rgba(0, 0, 0, 0.9) !important;
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
        padding: 0 !important;
        margin-top: 0 !important;
        font-weight: 900 !important;
    }

    /* Paragraph - readable size */
    .hero-text p {
        color: #f5f5f5 !important;
        text-shadow: 1px 1px 12px rgba(0, 0, 0, 1),
                     0 0 20px rgba(0, 0, 0, 0.8) !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    /* Button section */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 0;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn-primary {
        display: none;
    }

    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 600;
    }

    /* Stats section - compact */
    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .visual-grid {
        gap: 0.6rem;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stat cards with strong glass effect - compact size */
    .stat-card {
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding: 0.7rem 0.5rem !important;
    }

    .stat-card:hover {
        background: rgba(255, 107, 53, 0.4) !important;
        border-color: rgba(255, 107, 53, 0.7) !important;
    }

    .stat-number {
        font-size: 1.3rem !important;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 1));
        margin-bottom: 0.2rem !important;
    }

    .stat-label {
        color: #f5f5f5 !important;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 1) !important;
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }

    /* Gradient text visibility */
    .gradient-text {
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 1));
    }
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
    overflow: visible;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Reduce font size for English version when content is longer */
html[lang="en"] .hero-text h2,
.hero-text h2:not([data-lang="fr"]) {
    font-size: 2.5rem;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.gradient-text {
    background: linear-gradient(135deg, #2ecc71, #27ae60, #1abc9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.btn-primary {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 50px;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    text-decoration: none;
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid #2ecc71;
    border-radius: 50px;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    display: inline-block;
}

.stat-number.counted {
    animation: countPulse 0.6s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.stat-label {
    color: #f0f0f0;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.services {
    padding: 2rem 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666666;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.service-icon {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

footer {
    background: #f8f9fa;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer p {
    color: #666666;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-socials {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: translateY(-2px);
}

.linkedin-icon {
    fill: #0077B5;
}

.facebook-icon {
    fill: #1877F2;
}

.social-link:hover .linkedin-icon {
    fill: #005885;
}

.social-link:hover .facebook-icon {
    fill: #166FE5;
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 5%;
    }
    
    .logo-img {
        height: 90px;
        margin: -25px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
        text-align: center;
    }

    .cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .language-button {
        padding: 0.5rem 0.8rem;
        min-width: 80px;
        font-size: 0.8rem;
    }

    .language-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .logo-img {
        height: 60px;
        margin: -10px 0;
    }

    /* Smaller hero on mobile */
    .hero {
        min-height: 70vh;
        padding: 1rem 5%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 1rem;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        padding-top: 0;
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Actualities mobile styles */
    .carousel-container {
        height: auto;
        min-height: 400px;
    }
    
    .carousel-item {
        grid-template-columns: 1fr;
        position: relative;
        transform: none;
        opacity: 0;
        display: none;
    }
    
    .carousel-item.active {
        opacity: 1;
        display: block;
    }
    
    .carousel-image-gallery {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.3rem;
        padding: 0.3rem;
    }
    
    .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .gallery-counter {
        bottom: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Lightbox mobile styles */
    .lightbox-container {
        width: 95vw;
        height: 90vh;
    }
    
    .lightbox-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lightbox-image-container {
        flex: 1;
        min-height: 40%;
    }
    
    .lightbox-info {
        padding: 1rem;
        flex: none;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: -40px;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-thumbnails {
        gap: 0.3rem;
        padding: 0.5rem;
    }
    
    .lightbox-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .carousel-content {
        padding: 2rem 1.5rem;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: 0.5rem;
    }
    
    .carousel-nav.next {
        right: 0.5rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        margin-bottom: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .partnerships-content {
        gap: 3rem;
    }

    .partner-card.featured {
        padding: 2rem;
    }

    .partner-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partnership-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content blockquote p::before {
        left: -1rem;
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 3rem;
    }

    .form-row {
        flex-direction: column;
    }
    
    .partnerships {
        padding: 1rem 0;
    }
    
    .partnerships-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0;
        overflow: hidden;
        margin-top: -1rem;
    }
    
    .partners-row {
        display: block;
        width: 100%;
        margin: 0;
        height: auto;
        padding: 0 1rem;
    }
    
    
    .partner-card.featured {
        display: none !important;
    }
    
    .mobile-partner-deck {
        position: relative;
        width: 280px;
        height: 320px;
        margin: 1rem auto;
        perspective: 1000px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-partner-card.deck-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.95));
        border: 2px solid rgba(255, 107, 53, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transform-style: preserve-3d;
        display: flex;
        text-align: center;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity;
    }
    
    .mobile-partner-card.deck-card:nth-child(1) {
        z-index: 3;
        transform: translateX(0px) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 1;
    }

    .mobile-partner-card.deck-card:nth-child(2) {
        z-index: 2;
        transform: translateX(-8px) translateY(4px) rotateZ(-2deg) scale(0.96);
        opacity: 0.8;
    }

    .mobile-partner-card.deck-card:nth-child(3) {
        z-index: 1;
        transform: translateX(-16px) translateY(8px) rotateZ(-4deg) scale(0.92);
        opacity: 0.6;
    }
    
    .mobile-partner-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .mobile-partner-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .mobile-partner-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.5rem;
    }
    
    .mobile-partner-badge {
        background: rgba(255, 107, 53, 0.2);
        border: 1px solid rgba(255, 107, 53, 0.3);
        border-radius: 15px;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #2ecc71;
    }
    
    .mobile-partner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        animation: cyclePartners 9s infinite;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .partner-content h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .partnership-badge {
        margin-top: 0.5rem;
    }
    
    .partnership-badge span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .partnership-stats,
    .partnership-benefits,
    .partnership-testimonial {
        display: none;
    }
    
    /* Media Page Mobile Styles */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card h3 {
        font-size: 1.2rem;
        padding: 1rem 1rem 0.5rem;
    }
    
    .news-card p {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .news-category {
        margin: 1rem;
        font-size: 0.75rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-card {
        padding: 1.5rem;
    }
    
    .award-card h3 {
        font-size: 1.2rem;
    }
    
    .media-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .media-filter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .press-resources {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .resource-card h3 {
        font-size: 1.2rem;
    }
    
    .press-contact {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .press-contact h3 {
        font-size: 1.2rem;
    }
    
    /* Contact Page Mobile Styles */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .quick-contact-card h3 {
        font-size: 1.2rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .map-info h3 {
        font-size: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Media Page Styles */
.news-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-date {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: #333333;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.news-card p {
    padding: 0 1.5rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.news-category {
    margin: 1.5rem;
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Awards Section */
.awards-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.award-card h3 {
    color: #333333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.award-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.award-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Media Gallery */
.media-gallery {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.media-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.media-filter {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.media-filter:hover,
.media-filter.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.media-item:hover .media-overlay {
    transform: translateY(0);
}

.media-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Press Kit */
.press-kit {
    padding: 4rem 5%;
    background: #ffffff;
}

.press-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.resource-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-card h3 {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.press-contact {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.press-contact h3 {
    color: #333333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.press-contact p {
    color: #666666;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #ff6b35;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.contact-info h2 {
    color: #333333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666666;
    margin: 0;
    font-size: 0.95rem;
}

.social-contact h3 {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.social-contact .social-link {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-contact .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.contact-form h2 {
    color: #333333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.contact-form .btn-primary {
    align-self: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Quick Contact Section */
.quick-contact {
    padding: 4rem 5%;
    background: #ffffff;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.quick-contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-contact-card h3 {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.map-placeholder {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.map-info h3 {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-info p {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-directions {
    margin-top: 2rem;
}

.map-directions .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
}

/* Actualities Section Styles */
.actualities {
    padding: 2rem 5%;
    background: #ffffff;
}

.actualities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.prev {
    transform: translateX(-100%);
}

/* Image Gallery Styles */
.carousel-image-gallery {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    height: 100%;
    padding: 0.5rem;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    border: 2px solid #2ecc71;
}

.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 10;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.carousel-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.carousel-category {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.carousel-date {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.carousel-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.carousel-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.3;
}

.carousel-content p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.carousel-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333333;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2ecc71;
    border-color: #2ecc71;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(46, 204, 113, 0.7);
    border-color: #2ecc71;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    max-width: 95vw;
    max-height: 95vh;
    width: 1200px;
    height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: #2ecc71;
    transform: scale(1.1);
}

.lightbox-content {
    display: flex;
    flex: 1;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-image-container {
    flex: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #2ecc71;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.lightbox-counter {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #2ecc71;
    transform: scale(1.1);
}

/* About Section Styles */
.about {
    padding: 2rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    margin-bottom: 0.8rem;
    color: #666666;
    line-height: 1.6;
}

.about-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-section {
    flex: 1;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 53, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    font-size: 3rem;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Partnerships Section Styles */
.partnerships {
    padding: 2rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnerships-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.partnership-highlight {
    display: flex;
    justify-content: center;
}

.partners-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card.featured {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.partner-card.featured:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.partner-logo {
    text-align: left;
}

.logo-placeholder {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.partner-logo-img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-subtitle {
    font-size: 1rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.partnership-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
}

.partnership-badge span {
    color: #2ecc71;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.partner-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.partnership-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: space-around;
}

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

.stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-item .stat-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
}

.partnership-benefits h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333333;
}

.benefit-item p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partnership-testimonial {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-content blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content blockquote p::before {
    content: '"';
    font-size: 3rem;
    color: #2ecc71;
    position: absolute;
    left: -2rem;
    top: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: center;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.author-title {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Projects Section Styles */
.projects {
    padding: 2rem 5%;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.project-image {
    height: 320px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.project-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 100%;
}

.project-gallery .main-image {
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.additional-images {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
}

.additional-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.8;
}

.additional-images img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.project-card:hover .project-gallery .main-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.image-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.image-count::before {
    content: "📷";
    font-size: 0.8rem;
}

/* Single image fallback for compatibility */
.project-image img:not(.gallery-item) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img:not(.gallery-item) {
    transform: scale(1.05);
}

.project-image.placeholder {
    font-size: 4rem;
    color: #2ecc71;
}

.project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.project-type {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-stats .stat {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2ecc71;
}

/* Contact Section Styles */
.contact {
    padding: 2rem 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #e9ecef 100%);
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #666666;
    line-height: 1.6;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group select option {
    background: #ffffff;
    color: #333333;
    padding: 0.5rem;
}

/* ===== MULTI-PAGE LAYOUT STYLES ===== */

/* Page Hero Sections */
.page-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    text-align: center;
    margin-top: 0;
}

.page-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Navigation Active State */
.nav-links a.active {
    color: #ff6b35;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

/* Services Preview (Home Page) */
.services-overview {
    padding: 4rem 5%;
    background: #ffffff;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.service-preview-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.service-preview-card .service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-preview-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333333;
}

.service-preview-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Projects Preview (Home Page) */
.featured-projects {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.projects-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.project-preview-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.project-preview-card .project-image {
    height: 200px;
    overflow: hidden;
}

.project-preview-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-preview-card:hover .project-image img {
    transform: scale(1.05);
}

.project-preview-card .project-content {
    padding: 2rem;
}

.project-preview-card .project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.project-preview-card .project-type {
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-preview-card .project-content p {
    color: #666666;
    line-height: 1.6;
}

.projects-cta {
    text-align: center;
}

/* Company Story Section */
.company-story {
    padding: 4rem 5%;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333333;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
}

.story-visual {
    position: relative;
}

.story-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.story-stat {
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.story-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.story-stat .stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

/* About Details Section */
.about-details {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.about-details .about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-details .about-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-details .about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

.about-details .about-card p {
    line-height: 1.7;
    color: #666666;
    font-size: 1.05rem;
}

.about-details .about-card ul {
    list-style: none;
    padding: 0;
}

.about-details .about-card ul li {
    margin-bottom: 1rem;
    color: #666666;
    line-height: 1.6;
}

.about-details .about-card ul li strong {
    color: #ff6b35;
}

/* Team Section */
.team-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6b35;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.member-title {
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partnerships Overview */
.partnerships-overview {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.partners-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-highlight {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.partner-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.partner-info p {
    color: #666666;
    line-height: 1.6;
}

/* Company Stats */
.company-stats {
    padding: 4rem 5%;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-stats .stat-card {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.company-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Services Page Styles */
.service-card.featured {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.service-features {
    margin: 2rem 0;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #666666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* Service Process */
.service-process {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

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

.process-step {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333333;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333333;
}

.tech-card p {
    color: #666666;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.map-placeholder {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

.map-placeholder ul {
    list-style: none;
    padding: 0;
}

.map-placeholder ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #666666;
}

.areas-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333333;
}

.capability-item {
    margin-bottom: 2rem;
}

.capability-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
}

.capability-item p {
    color: #666666;
    line-height: 1.6;
}

/* Project Filters */
.project-filters {
    padding: 2rem 5%;
    background: #ffffff;
    text-align: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: #666666;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: transparent;
}

/* Project Timeline */
.project-timeline {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-year {
    grid-column: 2;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.timeline-content p {
    color: #666666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 4rem 5%;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: #333333;
    font-size: 1.1rem;
}

.author-title {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #ff6b35;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #ff6b35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        grid-column: 1;
        justify-self: start;
        margin-left: 20px;
    }
    
    .timeline-content {
        grid-column: 1 !important;
        text-align: left !important;
        margin-left: 80px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Home Page Testimonials Section */
.testimonials-home {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-home::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
}

.testimonials-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 3rem;
}

.testimonial-card-home {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.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;
}

.testimonial-card-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card-home:hover::before {
    transform: scaleX(1);
}

.testimonial-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.client-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-home:hover .avatar-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.client-position {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #f7931e;
    font-size: 1.1rem;
}

.testimonial-content {
    position: relative;
    padding-left: 2rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255, 107, 53, 0.15);
    line-height: 1;
    font-weight: 700;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444444;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Mobile Styles for Testimonials */
@media (max-width: 768px) {
    .testimonials-home {
        padding: 4rem 5%;
    }

    .testimonials-grid-home {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .testimonial-card-home {
        padding: 2rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .avatar-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .client-info h4 {
        font-size: 1.1rem;
    }

    .client-position {
        font-size: 0.85rem;
    }

    .testimonial-content {
        padding-left: 1.5rem;
    }

    .quote-icon {
        font-size: 3rem;
        top: -5px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }
}


/* Home Page Partners Section */
.partners-home {
    padding: 4rem 5%;
    background: #ffffff;
    position: relative;
}

.partners-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 4rem;
}

.partners-grid-home.single-partner {
    grid-template-columns: 1fr;
    max-width: 400px;
    justify-items: center;
}

.partner-card-home {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.partner-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.partner-logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.partner-card-home:hover .partner-logo-container {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-card-home:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-card-home h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.partner-card-home p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Partners Stats */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border-radius: 20px;
}

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

.partner-stat .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.partner-stat .stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 600;
}

/* Mobile Styles for Partners */
@media (max-width: 768px) {
    .partners-home {
        padding: 4rem 5%;
    }

    .partners-grid-home {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 2rem auto 3rem;
    }

    .partner-card-home {
        padding: 2rem 1.5rem;
    }

    .partner-logo-container {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .partner-card-home h4 {
        font-size: 1.1rem;
    }

    .partner-card-home p {
        font-size: 0.85rem;
    }

    .partners-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .partner-stat .stat-number {
        font-size: 2.5rem;
    }

    .partner-stat .stat-label {
        font-size: 0.9rem;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon-container {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    transform: scale(1.1) rotate(5deg);
}

.why-icon svg {
    width: 48px;
    height: 48px;
    color: #ff6b35;
    transition: all 0.5s ease;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card:hover .why-icon svg {
    color: #f7931e;
    transform: scale(1.1);
}

/* Animated ring effect */
.why-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.why-card:hover .why-icon::before {
    border-color: rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.why-card:hover h3 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Staggered animation handled by scroll animation system */

/* Mobile Styles for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 5%;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card {
        padding: 2.5rem 1.5rem;
    }

    .why-icon-container {
        width: 80px;
        height: 80px;
    }

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

    .why-icon svg {
        width: 40px;
        height: 40px;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .why-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   PROCESS TIMELINE SECTION
   ======================================== */

.process-timeline {
    padding: 4rem 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    max-width: 1400px;
    margin: 4rem auto 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Connecting Line */
.timeline-line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg,
        #ff6b35 0%,
        #f7931e 33%,
        #2ecc71 66%,
        #27ae60 100%
    );
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

/* Icon Container */
.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid #f8f9fa;
}

.step-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #2ecc71);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-step:hover .step-icon::before {
    opacity: 1;
}

.timeline-step:hover .step-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.step-icon svg {
    width: 50px;
    height: 50px;
    color: #ff6b35;
    transition: all 0.5s ease;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-step:hover .step-icon svg {
    color: #f7931e;
    transform: scale(1.15) rotate(5deg);
}

/* Step Content */
.step-content {
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-content h3 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Different colors for each step */
.timeline-step:nth-child(2) .step-icon svg {
    color: #ff6b35;
}

.timeline-step:nth-child(3) .step-icon svg {
    color: #f7931e;
}

.timeline-step:nth-child(4) .step-icon svg {
    color: #2ecc71;
}

.timeline-step:nth-child(5) .step-icon svg {
    color: #27ae60;
}

.timeline-step:nth-child(2):hover .step-icon svg {
    color: #f7931e;
}

.timeline-step:nth-child(3):hover .step-icon svg {
    color: #2ecc71;
}

.timeline-step:nth-child(4):hover .step-icon svg {
    color: #27ae60;
}

.timeline-step:nth-child(5):hover .step-icon svg {
    color: #1abc9c;
}

/* Staggered entrance animation handled by scroll animation system */

/* Mobile Styles for Timeline */
@media (max-width: 768px) {
    .process-timeline {
        padding: 4rem 5%;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin: 3rem auto 0;
    }

    .timeline-line {
        top: 60px;
        left: 60px;
        right: auto;
        width: 3px;
        height: calc(100% - 120px);
        background: linear-gradient(180deg,
            #ff6b35 0%,
            #f7931e 33%,
            #2ecc71 66%,
            #27ae60 100%
        );
    }

    .timeline-step {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 2rem;
        text-align: left;
    }

    .step-number {
        top: 0;
        left: 60px;
        transform: translateX(-50%);
    }

    .step-icon {
        grid-row: 1 / 3;
        margin: 0;
    }

    .step-content {
        grid-column: 2;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }
}

/* ========================================
   ACTIVITIES PREVIEW SECTION
   ======================================== */

.activities-preview {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 3rem;
}

.activity-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Activity Image */
.activity-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.08);
}

.activity-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6b35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Activity Content */
.activity-content {
    padding: 2rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.activity-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    color: #ff6b35;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.activity-photos {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 600;
}

.activity-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-content h3 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

/* Activity Tags */
.activity-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.activity-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-tags .tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    color: #ff6b35;
}

/* Activities CTA */
.activities-cta {
    text-align: center;
    margin-top: 3rem;
}

.activities-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Staggered animation handled by scroll animation system */

/* Mobile Styles for Activities */
@media (max-width: 768px) {
    .activities-preview {
        padding: 4rem 5%;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto 2rem;
    }

    .activity-image {
        height: 220px;
    }

    .activity-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .activity-content {
        padding: 1.5rem;
    }

    .activity-content h3 {
        font-size: 1.2rem;
    }

    .activity-content p {
        font-size: 0.9rem;
    }

    .activity-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   SMOOTH SCROLL ANIMATIONS
   ======================================== */

/* Initial state - elements are hidden and translated down */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animated state - elements fade in and move to position */
.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Different animation delays for staggered effects */
.service-preview-card.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.service-preview-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.service-preview-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.why-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.why-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.15s;
}

.why-card.animate-on-scroll:nth-child(4) {
    transition-delay: 0.2s;
}

.why-card.animate-on-scroll:nth-child(5) {
    transition-delay: 0.25s;
}

.why-card.animate-on-scroll:nth-child(6) {
    transition-delay: 0.3s;
}

.why-card.animate-on-scroll:nth-child(7) {
    transition-delay: 0.35s;
}

.timeline-step.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.timeline-step.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.timeline-step.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.timeline-step.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.activity-card.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.activity-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.project-preview-card.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.project-preview-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.project-preview-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonial-card-home.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card-home.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-card-home.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

/* Smoother animation for sections */
section.animate-on-scroll {
    transition-duration: 1s;
}

/* Section headers get slightly different animation */
.section-header.animate-on-scroll {
    transform: translateY(30px);
    transition-duration: 0.7s;
}
