* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

:root {
    --primary-color: #2A2B2D;
    --secondary-color: #F4C21A;
    --dark-color: #2A2B2D;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --white: #FFFFFF;
    --yellow: #F4C21A;
    --yellow-dark: #E8A900;
    --gray: #777777;
    --bg-color: #2A2B2D;
    --card-bg: #FFFFFF;
    --navbar-bg: rgba(42, 43, 45, 0.95);
}

body.light-mode {
    --bg-color: #FFFFFF;
    --card-bg: #FFFFFF;
    --text-color: #333333;
    --dark-color: #2A2B2D;
    --navbar-bg: rgba(255, 255, 255, 0.98);
}

body.light-mode .navbar {
    background: var(--navbar-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--yellow);
}

body.light-mode .nav-links a {
    color: var(--dark-color);
}

body.light-mode .nav-links a:hover {
    color: var(--yellow);
}

body.light-mode .hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

body.light-mode .hero-title,
body.light-mode .hero-subtitle {
    color: var(--dark-color);
    text-shadow: 2px 2px 4px rgba(244, 194, 26, 0.2);
}

body.light-mode .scroll-indicator {
    color: var(--dark-color);
}

body.light-mode .services {
    background: #f8f9fa;
}

body.light-mode .about {
    background: #ffffff;
}

body.light-mode .contact {
    background: #f8f9fa;
}

body.light-mode .footer {
    background: #f8f9fa;
    color: var(--dark-color);
    border-top: 3px solid var(--yellow);
}

body.light-mode .footer-column h4 {
    color: var(--dark-color);
}

body.light-mode .footer-column p,
body.light-mode .footer-column a {
    color: #777777;
}

body.light-mode .footer-column a:hover {
    color: var(--yellow);
}

body.light-mode .footer-bottom {
    color: #777777;
}

body.light-mode .theme-toggle i {
    color: var(--dark-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 10px;
    max-width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    flex: 1;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    margin-left: 0;
    padding-left: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Logo switching for dark/light mode */
.logo-img.logo-light,
.hero-logo.logo-light {
    display: none !important;
}

.logo-img.logo-dark,
.hero-logo.logo-dark {
    display: block !important;
}

body.light-mode .logo-img.logo-dark,
body.light-mode .hero-logo.logo-dark {
    display: none !important;
}

body.light-mode .logo-img.logo-light,
body.light-mode .hero-logo.logo-light {
    display: block !important;
    filter: brightness(0.3) saturate(1.2);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a.nav-jobs-highlight {
    color: var(--yellow);
    font-weight: 500;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

.nav-links a.nav-jobs-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    animation: slideWidth 2s ease-in-out infinite;
}

.nav-links a.nav-jobs-highlight:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(244, 194, 26, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(244, 194, 26, 0.8);
    }
}

@keyframes slideWidth {
    0%, 100% {
        width: 100%;
    }
    50% {
        width: 70%;
        left: 15%;
    }
}

/* Fixed Contact Button */
.contact-button-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--yellow);
    border: 2px solid var(--yellow);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.contact-button-fixed.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-button-fixed:hover {
    background: var(--dark-color);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.5);
}

.contact-button-fixed i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.contact-button-fixed:hover i {
    transform: scale(1.1);
}

.button-label {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Fixed Theme Toggle Button */
.theme-toggle-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark-color);
    border: 2px solid var(--yellow);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-toggle-fixed:hover {
    background: var(--yellow);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.5);
}

.theme-toggle-fixed i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.theme-toggle-fixed:hover i {
    transform: rotate(180deg);
}

.theme-label {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

body.light-mode .contact-button-fixed {
    background: var(--yellow);
    color: var(--dark-color);
    border-color: var(--yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-mode .contact-button-fixed:hover {
    background: var(--dark-color);
    color: var(--yellow);
}

body.light-mode .theme-toggle-fixed {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-mode .theme-toggle-fixed:hover {
    background: var(--yellow);
    color: var(--dark-color);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 0;
    padding-right: 0;
}

.nav-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social-links a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

body.light-mode .nav-social-links a {
    color: var(--dark-color);
}

body.light-mode .nav-social-links a:hover {
    color: var(--yellow);
}

.language-selector {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0.5;
}

.lang-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    border-color: var(--yellow);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--yellow);
    box-shadow: 0 0 5px rgba(244, 194, 26, 0.3);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, #2A2B2D 0%, #333333 50%, #2A2B2D 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12rem 0 10rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 194, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease;
    margin-top: -3rem;
}

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

.hero-logo {
    height: 120px;
    width: auto;
    max-width: 90%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-about {
    margin: 2rem 0 1.5rem;
    width: 100%;
}

.hero-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.hero-about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.hero-about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.hero-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--yellow);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 194, 26, 0.4);
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.6);
    background: #E8A900;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-color);
}

.services .container {
    max-width: 100%;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--yellow);
    margin: 1rem auto;
    border-radius: 2px;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.65;
    transform: scale(1.05);
}

.service-card:nth-child(1)::before {
    background-image: url('1945DC70-5E7A-4A61-ADC6-98E6B89B153E.JPG');
}

.service-card:nth-child(2)::before {
    background-image: url('WhatsApp Image 2025-12-02 at 16.39.59.jpeg');
}

.service-card:nth-child(3)::before {
    background-image: url('przeładunki.JPG');
}

.service-card:nth-child(4)::before {
    background-image: url('Celne.jpeg');
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--yellow);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}



.service-card h3 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #2A2B2D 0%, #F4C21A 50%, #2A2B2D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: serviceGradient 4s ease infinite;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(244, 194, 26, 0.6));
}

@keyframes serviceGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.service-card p {
    color: #777777;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--yellow) 100%);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-section .section-title::after {
    background: var(--white);
}

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

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #777777;
    font-size: 1.1rem;
}

.stats-section .stat-number {
    color: var(--white);
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.stats-section .stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stats-section .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-section .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-section .stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stats-section .stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stats-section .stat-item:nth-child(5) {
    animation-delay: 0.5s;
}

.stats-section .stat-item:nth-child(6) {
    animation-delay: 0.6s;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-color), var(--yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-photo {
    width: 100%;
    height: 550px;
    object-fit: contain;
    border-radius: 10px;
}

.truck-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact .container {
    max-width: 100%;
    padding: 0 2rem;
}

.reviews-section {
    padding: 3rem 0;
    background: var(--light-color);
    overflow: hidden;
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-button-container {
    text-align: center;
    margin-top: 2rem;
    padding: 0 20px;
}

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



.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

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

.info-card > i {
    font-size: 2rem;
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-header i {
    font-size: 2.5rem;
    color: var(--yellow);
    flex-shrink: 0;
    width: 2.5rem;
}

.info-card h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.5rem;
    flex: 1;
    font-weight: 600;
}

.info-card p {
    color: #777777;
    line-height: 1.8;
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
}

.info-header > div {
    flex: 1;
}

.info-card a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}



.google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    background: var(--yellow);
    color: var(--dark-color) !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(244, 194, 26, 0.3);
}

.google-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 194, 26, 0.6);
    color: var(--dark-color) !important;
    background: #E8A900;
}

.google-link i {
    font-size: 1.4rem;
    color: var(--dark-color);
}

.reviews-container {
    display: flex;
    gap: 1.5rem;
    overflow: visible;
    position: relative;
    width: max-content;
    will-change: transform;
    padding: 1rem 0;
}

.review-item {
    padding: 1.5rem;
    background: rgba(244, 194, 26, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--yellow);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 350px;
    box-sizing: border-box;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 194, 26, 0.2);
    background: rgba(244, 194, 26, 0.15);
    animation-play-state: paused;
}

.stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    display: inline-block;
}

.stars::before {
    content: attr(data-stars);
    animation: starGlow 2s ease-in-out infinite;
}

.review-text {
    font-style: italic;
    color: #777777;
    margin: 0.5rem 0;
    line-height: 1.6;
}

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

@keyframes starGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(244, 194, 26, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(244, 194, 26, 0.8);
    }
}



body.light-mode .info-card h3 {
    color: var(--dark-color);
}

body.light-mode .review-text {
    color: #777777;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-section h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.map-wrapper {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: 450px;
    width: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-address {
    font-size: 1.1rem;
    color: #777777;
    line-height: 2;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 400px;
}

.map-address i {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-address strong {
    color: var(--dark-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

body.light-mode .map-section h3 {
    color: var(--dark-color);
}

body.light-mode .map-address {
    color: #777777;
    background: var(--white);
}

/* Certificates Section */
.certificates {
    padding: 3rem 0 2rem 0;
    background: var(--white);
}

.certificates-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #777777;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.certificate-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

.certificate-preview {
    position: relative;
    width: 100%;
    height: 350px;
    background: #f5f5f5;
    overflow: hidden;
}

.certificate-preview iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.certificate-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}

.certificate-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.cert-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--yellow);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-download-btn:hover {
    background: #E8A900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 194, 26, 0.4);
}

body.light-mode .certificates {
    background: #ffffff;
}

body.light-mode .certificates-desc {
    color: #777777;
}

/* Service Pages Styles */
.service-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #2A2B2D 0%, #333333 50%, #2A2B2D 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(244, 194, 26, 0.15) 0%, transparent 70%);
    animation: pulseBackground 4s ease-in-out infinite;
}

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

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #F4C21A, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, textGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(244, 194, 26, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(244, 194, 26, 0.8));
    }
}

.service-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.service-content {
    padding: 5rem 0;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.intro-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

.intro-image {
    display: flex;
    justify-content: center;
}

.features-section {
    margin: 5rem 0;
}

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

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dark-color), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-item p {
    color: #777777;
    line-height: 1.6;
}

.service-cta {
    background: linear-gradient(135deg, var(--dark-color), var(--yellow));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 5rem;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-button-secondary {
    background: var(--white);
    color: var(--dark-color);
}

.cta-button-secondary:hover {
    background: #f5f5f5;
}

body.light-mode .service-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    color: var(--dark-color);
}

body.light-mode .service-hero h1 {
    color: var(--dark-color);
}

body.light-mode .intro-text h2 {
    color: var(--dark-color);
}

@media (max-width: 968px) {
    .service-intro {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-cta {
        padding: 2rem;
    }
    
    .service-cta h2 {
        font-size: 1.8rem;
    }
}

/* Special Routes Section */
.special-routes {
    margin: 5rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
    border-radius: 20px;
}

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

.route-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--yellow);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.route-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.route-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.route-card p {
    color: #777777;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-address {
        text-align: center;
    }
}





/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 0.8rem 0 0.4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    margin-bottom: 0;
}

.footer-column h4 {
    color: var(--yellow);
    margin-bottom: 0.1rem;
    font-size: 0.85rem;
}

.footer-column p {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-column i {
    color: var(--yellow);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 25px;
    padding-top: 0;
    text-decoration: none;
    cursor: pointer;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
    filter: none;
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    filter: none;
}

.social-links a:hover {
    color: var(--yellow-dark);
    transform: translateY(-3px);
    text-shadow: none;
    filter: none;
}

body.light-mode .social-links a {
    border-color: var(--dark-color);
    color: var(--dark-color);
    background: rgba(45, 45, 45, 0.05);
}

body.light-mode .social-links a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark-color);
}

/* Back Button */
.back-button {
    position: fixed;
    top: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-color);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    cursor: pointer;
}

.back-button:hover {
    background: var(--yellow);
    color: var(--dark-color);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.5);
}

body.light-mode .back-button {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-mode .back-button:hover {
    background: var(--yellow);
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .back-button {
        top: 80px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-color);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--yellow);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.5);
}

body.light-mode .scroll-to-top {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-mode .scroll-to-top:hover {
    background: var(--yellow);
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 0.2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-controls {
        gap: 0.5rem;
    }
    
    .language-selector {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .lang-btn {
        width: 28px;
        height: 28px;
    }
    
    .theme-toggle-fixed {
        bottom: 20px;
        right: 20px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .theme-label {
        font-size: 0.85rem;
    }
    
    .theme-toggle-fixed i {
        font-size: 1.1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-logo {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    

    
    .reviews-container {
        flex-direction: column;
    }
    
    .review-item {
        min-width: 100%;
    }
}


/* Jobs Section Styles */
.jobs-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.job-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-header {
    background: linear-gradient(135deg, var(--dark-color), var(--yellow));
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-header h3 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-header h3 i {
    font-size: 2rem;
}

.job-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-content {
    padding: 2rem;
}

.job-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.job-section h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.job-section h4 i {
    color: var(--yellow);
}

.job-section ul {
    list-style: none;
    padding: 0;
}

.job-section li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.job-section li::before {
    content: "•";
    color: var(--yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-apply {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.job-apply p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 194, 26, 0.3);
}

.apply-btn:hover {
    background: var(--dark-color);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 194, 26, 0.5);
}

.apply-btn.secondary {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.apply-btn.secondary:hover {
    background: var(--yellow);
    color: var(--dark-color);
}

/* Active navigation link */
.nav-links a.active {
    color: var(--yellow);
    font-weight: 600;
}

/* Light mode adjustments for jobs */
body.light-mode .job-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body.light-mode .job-description {
    color: var(--text-color);
}

body.light-mode .job-section h4 {
    color: var(--dark-color);
}

body.light-mode .apply-btn.secondary {
    color: var(--dark-color);
    border-color: var(--dark-color);
}

body.light-mode .apply-btn.secondary:hover {
    background: var(--dark-color);
    color: var(--yellow);
}

/* Responsive design for jobs */
@media (max-width: 768px) {
    .job-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
    }
    
    .job-header h3 {
        font-size: 1.5rem;
    }
    
    .apply-btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        justify-content: center;
    }
}


/* Partners Section Styles */
.partners-section {
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.partners-section .container {
    max-width: 100%;
    padding: 0;
}

.partners-section .section-title {
    padding: 0 20px;
}

.partners-wrapper {
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.partners-container {
    display: flex;
    gap: 2rem;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-container:hover {
    animation-play-state: paused;
}

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

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 250px;
    height: 180px;
    flex-shrink: 0;
}

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

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

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

/* Light mode adjustments for partners */
body.light-mode .partners-section {
    background: var(--light-color);
}

body.light-mode .partner-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .partner-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive design for partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-card {
        max-width: 100%;
    }
}


/* Animations for page elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to elements */
.service-hero h1 {
    animation: fadeInUp 0.8s ease-out;
}

.intro-text {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.intro-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.route-card {
    animation: fadeInUp 0.6s ease-out both;
}

.route-card:nth-child(1) {
    animation-delay: 0.1s;
}

.route-card:nth-child(2) {
    animation-delay: 0.2s;
}

.route-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item {
    animation: scaleIn 0.5s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.15s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.25s; }
.feature-item:nth-child(5) { animation-delay: 0.3s; }
.feature-item:nth-child(6) { animation-delay: 0.35s; }

.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.cta-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover animations */
.route-card {
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-10px);
}

.route-icon {
    transition: all 0.3s ease;
}

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

.feature-icon {
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Image animations */
.truck-photo, .about-photo {
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.truck-photo:hover, .about-photo:hover {
    transform: scale(1.02);
}

/* Certificate cards animation */
.certificate-card {
    animation: fadeInUp 0.6s ease-out both;
}

.certificate-card:nth-child(1) { animation-delay: 0.1s; }
.certificate-card:nth-child(2) { animation-delay: 0.2s; }
.certificate-card:nth-child(3) { animation-delay: 0.3s; }

/* Partner cards animation */
.partner-card {
    animation: scaleIn 0.5s ease-out both;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }

/* Job cards animation */
.job-card {
    animation: fadeInUp 0.7s ease-out both;
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.3s; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
