/* ===================================
   HOME PAGE SPECIFIC STYLES
   =================================== */

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 833px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}


@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, #F0F9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.1rem;
    color: #F1F5F9;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card svg {
    color: var(--primary-color);
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 30%;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    gap: -8px;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    color: #FFFFFF;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scroll-arrow svg:first-child {
    opacity: 0.6;
    margin-bottom: -12px;
}

.scroll-text {
    font-size: 0.875rem;
    color: #FFFFFF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Services Carousel */
.services-carousel-section {
    padding: 6rem 0 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.services-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 77vh;
    z-index: 1;
}

.services-slider {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.service-item {
    width: 150px;
    height: 200px;
    position: absolute;
    top: 66%;
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s, opacity 0.75s;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 20px;
    opacity: 1;
    transition: opacity 0.75s;
    pointer-events: none;
}

.service-item:nth-child(1),
.service-item:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
}

.service-item:nth-child(1)::after,
.service-item:nth-child(2)::after {
    opacity: 0;
}

.service-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 1;
}

.service-item:nth-child(2) .service-content {
    z-index: 2;
    position: relative;
}

.service-item:nth-child(3) {
    left: 72%;
}

.service-item:nth-child(4) {
    left: calc(70% + 220px);
}

.service-item:nth-child(5) {
    left: calc(68% + 440px);
}

.service-item:nth-child(6) {
    left: calc(65% + 660px);
    opacity: 0;
}

.service-content {
    width: min(30vw, 400px);
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.service-item:nth-of-type(2) .service-content {
    display: block;
    animation: showContent 0.75s ease-in-out 0.3s forwards;
}

@keyframes showContent {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-50%);
    }
}

.service-content .service-title {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.service-content .service-description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.service-content .service-btn {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 0.875rem 1.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

.service-content .service-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.discover-more-item .service-content .service-title,
.discover-more-item .service-content .service-description {
    color: white;
}

.discover-card-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 2;
}

.discover-card-text span {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-item:nth-child(1) .discover-card-text,
.service-item:nth-child(2) .discover-card-text {
    display: none;
}

.carousel-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 4rem;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn:hover svg {
    color: white;
}

.carousel-btn svg {
    transition: color var(--transition-base);
}

[data-theme="dark"] .carousel-btn {
    background-color: rgba(30, 41, 59, 0.9);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .carousel-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Industries We Serve */
.industries-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .industries-section {
background-color: #0F172A;
}

.industries-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
position: relative;
z-index: 1;
}

.industry-card {
background: var(--bg-card);
border-radius: 20px;
border: 1px solid var(--border-color);
transition: all var(--transition-base);
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.industry-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

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

.industry-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="dark"] .industry-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
}

.industry-content::before {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.industry-icon {
    display: none;
}

.industry-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.industry-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background-image: url('../Assets/whyChooseUs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.why-choose-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-text {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-text .section-title {
    color: var(--text-primary);
}

.why-choose-text .section-description {
    color: #2C2E31;;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    /* -webkit-backdrop-filter: blur(12px) saturate(150%); */
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(249, 115, 22, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(255, 255, 255, 0.9);
}

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

[data-theme="dark"] .stat-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-color: rgba(51, 65, 85, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-icon svg {
    color: #F59E0B;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.stat-card:hover .stat-icon svg {
    color: #FFFFFF;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number .counter {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}

[data-theme="dark"] .stat-title {
    color: #F3F4F6;
}

[data-theme="dark"] .stat-description {
    color: #D1D5DB;
}

/* Our Clients */
.our-clients {
    padding: 15rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.our-clients .container {
    max-width: 100%;
    padding: 0;
}

.our-clients .section-header-centered {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    animation: slideClients 30s linear infinite;
    width: fit-content;
    padding: 0 20%;
}

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

.clients-grid:hover {
    animation-play-state: paused;
}

/* Gradient fade effect on sides */
.our-clients::before,
.our-clients::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    pointer-events: none;
    z-index: 2;
}

.our-clients::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.our-clients::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.client-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    min-width: 250px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.client-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Larger logos for specific clients */
.client-card:nth-child(4) .client-logo img,
.client-card:nth-child(5) .client-logo img,
.client-card:nth-child(12) .client-logo img,
.client-card:nth-child(13) .client-logo img {
    max-height: 100px;
}

.client-logo-text {
    text-align: center;
    width: 100%;
}

.client-logo-text span {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.3;
    display: block;
}

/* Logistics Insights */
.logistics-insights {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.insights-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insights-highlight {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.insights-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.insights-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.insights-article:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

[data-theme="dark"] .insights-article {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
}

.article-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    color: #F59E0B;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.article-meta span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
}

.article-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    border: none;
    cursor: pointer;
}

.article-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.insights-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.insights-footer-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.insights-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #F59E0B;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #F59E0B;
    border-radius: 10px;
    transition: all var(--transition-base);
}

.insights-view-all:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.insights-view-all svg {
    transition: transform var(--transition-base);
}

.insights-view-all:hover svg {
    transform: translateX(4px);
}

/* Responsive - Home Page */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-plus {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-image {
        height: 220px;
    }
    
    .industry-content {
        padding: 1.75rem;
    }
    
    .insights-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .insights-visual img {
        max-width: 400px;
    }
    
    .insights-article {
        padding: 2.5rem;
    }
    
    .clients-grid {
        gap: 1.5rem;
    }
    
    .client-card {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        min-height: 500px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.01em;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 90%;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stat-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.85rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-plus {
        font-size: 1.5rem;
    }
    
    .stat-description {
        margin-top: auto;
    }
    
    .stat-title {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .insights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insights-visual img {
        max-width: 320px;
    }
    
    .insights-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
    
    .article-meta {
        gap: 1rem;
    }
    
    .article-btn,
    .insights-view-all {
        width: 100%;
        justify-content: center;
    }
    
    .service-content .service-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .industry-image {
        height: 180px;
    }
    
    .industry-content {
        padding: 1.25rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .industry-description {
        font-size: 0.9rem;
    }
    
    .clients-grid {
        gap: 1.25rem;
    }
    
    .client-card {
        padding: 1.5rem 1.25rem;
        min-height: 110px;
        min-width: 170px;
    }
    
    .client-logo img {
        max-height: 55px;
    }
    
    .client-logo-text span {
        font-size: 0.95rem;
    }
}

/* Responsive Carousel - Tablet */
@media (min-width: 650px) and (max-width: 900px) {
    .service-content .service-title {
        font-size: 2rem;
    }
    
    .service-content .service-description {
        font-size: 0.875rem;
    }
    
    .service-content .service-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .service-item {
        width: 80px;
        height: 120px;
    }
    
    .service-item:nth-child(3) {
        right: 1.5rem;
    }
    
    .service-item:nth-child(4) {
        right: calc(1.5rem + 90px);
    }
    
    .service-item:nth-child(5) {
        right: calc(1.5rem + 180px);
    }
    
    .service-item:nth-child(6) {
        right: calc(1.5rem + 270px);
        opacity: 0;
    }
    
    .carousel-wrapper {
        height: 65vh;
    }
    
    .discover-card-text span {
        font-size: 0.9rem;
    }
}

/* Responsive Carousel - Mobile */
@media (max-width: 649px) {
    .services-carousel-section {
        padding: 4rem 0 2rem;
    }
    
    .carousel-wrapper {
        height: 600px;
        overflow: hidden;
        background: var(--bg-secondary);
    }
    
    .services-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .service-item {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        background-size: cover;
        background-position: center;
    }
    
    .service-item:nth-child(1) {
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }
    
    .service-item:nth-child(2) {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        z-index: 2;
    }
    
    .service-item:nth-child(3),
    .service-item:nth-child(4),
    .service-item:nth-child(5),
    .service-item:nth-child(6) {
        opacity: 0;
        transform: translateX(100%);
        pointer-events: none;
    }
    
    .service-item::after {
        opacity: 0;
    }
    
    .service-item:nth-child(2)::before {
        width: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%);
        z-index: 1;
    }
    
    .service-content {
        left: 50% !important;
        top: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: auto;
        max-width: 85%;
        text-align: center;
    }
    
    .service-content .service-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .service-content .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 1rem 0 1.5rem;
    }
    
    .service-content .service-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .carousel-nav {
        bottom: 2rem;
        gap: 2rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .discover-card-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 703px;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.7rem;
        max-width: 95%;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-number {
        font-size: 1.35rem;
    }
    
    .services-carousel-section {
        padding: 3rem 0 0;
    }
    
    .carousel-wrapper {
        height: 550px;
        overflow: hidden;
        background: var(--bg-secondary);
    }
    
    .service-item::after {
        opacity: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
    }
    
    .service-item:nth-child(2)::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.8) 100%);
    }
    
    .service-content {
        left: 50% !important;
        top: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        max-width: 90%;
        text-align: center;
    }
    
    .service-content .service-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-content .service-description {
        font-size: 0.85rem;
        margin: 0.75rem 0 1.25rem;
        line-height: 1.5;
    }
    
    .service-content .service-btn {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
        width: 100%;
        max-width: 180px;
    }
    
    .carousel-nav {
        bottom: 1.5rem;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .our-clients {
        padding: 3rem 0;
    }
    
    .our-clients::before,
    .our-clients::after {
        width: 10%;
    }
    
    .clients-grid {
        gap: 1rem;
        padding: 0 10%;
    }
    
    .client-card {
        padding: 1.25rem 1rem;
        min-height: 100px;
        min-width: 150px;
    }
    
    .client-logo img {
        max-height: 50px;
    }
    
    /* Larger logos for specific clients on mobile */
    .client-card:nth-child(4) .client-logo img,
    .client-card:nth-child(5) .client-logo img,
    .client-card:nth-child(12) .client-logo img,
    .client-card:nth-child(13) .client-logo img {
        max-height: 60px;
    }
    
    .client-logo-text span {
        font-size: 0.8rem;
    }
}
