/* ===== CLEAN PROFESSIONAL HOMEPAGE STYLES ===== */

/* ===== SIMPLE LOADING ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.fade-in-delay-1 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional animation variants */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease-out forwards;
    animation-play-state: paused;
    /* Fix for mobile overflow */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

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

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Color Variables */
:root {
    --primary: #D4AF37;
    --primary-dark: #B8941F;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #6b7280;
    --gray-900: #1a1a1a;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Fix for mobile overflow */
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Section Spacing */
.section {
    padding: 3rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: var(--white);
    padding: 0;
    overflow: hidden;
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    /* Fix for mobile overflow */
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

/* Add a subtle golden accent overlay */
.hero-background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    text-align: left;
    animation: heroContentFadeIn 1s ease-out;
    width: 100%;
    padding: 2rem 1rem; /* Added horizontal padding */
    box-sizing: border-box; /* Ensure padding is included in width */
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary);
    border-radius: 25px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: heroBadgeFadeIn 1s ease-out 0.2s both;
}

@keyframes heroBadgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
    animation: heroTitleFadeIn 1s ease-out 0.4s both;
}

@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
    animation: heroSubtitleFadeIn 1s ease-out 0.6s both;
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: heroButtonsFadeIn 1s ease-out 0.8s both;
}

@keyframes heroButtonsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Background Animation */
.hero-slide img {
    animation: heroZoom 20s ease-in-out infinite;
}

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

/* ===== SERVICES SECTION - COMPACT ===== */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    margin: auto 0;
}

.service-icon.golden {
    background: var(--primary);
    color: var(--white);
}

.service-icon.black {
    background: var(--black);
    color: var(--white);
}

.service-title {
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    margin-bottom: 0.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.service-list li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 0.6rem;
}

/* ===== INDUSTRIES SECTION - SIMPLE DESIGN ===== */
.industries {
    background: var(--white);
}

.industries-simple-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.industry-simple-card {
    background: var(--white);
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.industry-simple-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

.industry-simple-card i {
    font-size: 2rem;
    color: var(--primary);
}

.industry-simple-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    text-align: center;
}

@media (max-width: 1200px) {
    .industries-simple-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-simple-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .industry-simple-card {
        padding: 1rem;
    }
    
    .industry-simple-card i {
        font-size: 1.75rem;
    }
    
    .industry-simple-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .industries-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    background: var(--white);
}

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

.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    font-size: 1.375rem;
}

.industry-icon.golden {
    background: var(--primary);
    color: var(--white);
}

.industry-icon.black {
    background: var(--black);
    color: var(--white);
}

.industry-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.industry-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.industry-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    background: var(--black);
    color: var(--white);
}

.why-choose .section-title,
.why-choose .section-subtitle {
    color: var(--white);
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--black);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Number counting animation */
.stat-number.counting {
    animation: countUp 2s ease-out forwards;
}

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

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #f9d769 0%, #c6a745 100%);
    color: var(--black);
    text-align: center;
    padding: 1.5rem 0;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.8);
}

.cta .btn-primary {
    background: var(--black);
    color: var(--white);
}

.cta .btn-primary:hover {
    background: #2a2a2a;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero {
        height: calc(100vh - 50px);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 50px);
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.875rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card,
    .industry-card {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero {
        height: calc(100vh - 50px);
        padding: 1.5rem 0;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .hero-badge i {
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.125rem;
        font-size: 0.8125rem;
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
    .hero {
        height: calc(100vh - 50px);
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content{
    border: 2px solid #B8941F;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.about-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.about-container {
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ===== CORE VALUES SECTION ===== */
.core-values {
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.value-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    background: var(--white);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wwd-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.wwd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.wwd-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
}

.wwd-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.wwd-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.wwd-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wwd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wwd-list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.wwd-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    background: var(--gray-50);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.case-study-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--black);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-study-content {
    padding: 1.25rem;
}

.case-study-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.case-study-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-study-stats {
    display: flex;
    gap: 1.5rem;
    /* padding: 1rem 0; */
    border-top: 1px solid var(--gray-200);
}

.stat-item-small {
    display: flex;
    flex-direction: column;
}

.stat-item-small strong {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-item-small span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.case-study-link:hover {
    gap: 0.6rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.process-step {
    position: relative;
}

.process-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.process-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.process-step:hover .process-content {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.process-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== TECHNOLOGIES SECTION ===== */
.technologies {
    background: var(--gray-50);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tech-category {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
}

.tech-category-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-900);
}

.tech-category-title i {
    color: var(--primary);
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: center;
}

.tech-item:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.75rem;
    color: var(--gray-900);
}

.tech-item:hover i {
    color: var(--black);
}

.tech-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-900);
}

.tech-item:hover span {
    color: var(--black);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom i {
    color: #ff4444;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    z-index: 998;
    /* Fix for mobile overflow */
    max-width: 60px;
    box-sizing: border-box;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    background: #128C7E;
}

.fab-call {
    background: var(--primary);
    color: var(--black);
}

.fab-call:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== ADDITIONAL RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .what-we-do-grid,
    .case-studies-grid,
    .testimonials-grid,
    .process-timeline,
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .case-study-stats {
        gap: 0.75rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ===== MISSION & VISION ===== */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mv-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.mv-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.mv-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== CORE VALUES - COMPACT ===== */
.values-grid {
    gap: 1rem;
}

.value-card {
    padding: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

.value-title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

.value-desc {
    font-size: 0.8rem;
}

/* ===== WHAT WE DO - INNOVATIVE ===== */
.wwd-innovative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.wwd-card-new {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.wwd-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.wwd-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    margin: auto;
}

.wwd-icon-new.golden {
    background: var(--primary);
    color: var(--white);
}

.wwd-icon-new.black {
    background: var(--black);
    color: var(--white);
}

.wwd-content-new {
    flex: 1;
}

.wwd-number-new {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.wwd-title-new {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.wwd-desc-new {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== INFINITE SCROLL CONTAINERS ===== */
.features-infinite-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.features-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

.features-scroll-track:hover {
    animation-play-state: paused;
}

.features-scroll-track .feature-card {
    min-width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.features-scroll-track .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

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

/* Technologies infinite scroll */
.tech-infinite-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.tech-scroll-track {
    display: flex;
    gap: 1rem;
    animation: scrollRight 25s linear infinite;
    width: max-content;
}

.tech-scroll-track:hover {
    animation-play-state: paused;
}

.tech-scroll-track .tech-simple-item {
    min-width: 120px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.tech-scroll-track .tech-simple-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.tech-scroll-track .tech-simple-item i {
    font-size: 2rem;
    color: var(--primary);
}

.tech-scroll-track .tech-simple-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
}

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

/* ===== HORIZONTAL SCROLL CONTAINERS WITH INFINITE SCROLL ===== */
.features-scroll-container,
.tech-simple-scroll-container {
    position: relative;
    width: 100%;
}

.features-scroll-wrapper,
.tech-simple-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.features-scroll,
.tech-simple-scroll {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.features-scroll {
    height: 210px;
}

.features-scroll:hover {
    animation-play-state: paused;
}

.features-scroll::-webkit-scrollbar,
.tech-simple-scroll::-webkit-scrollbar {
    display: none;
}

.features-scroll .feature-card {
    min-width: 220px;
    flex-shrink: 0;
}

.tech-simple-scroll .tech-simple-item {
    min-width: 120px;
    flex-shrink: 0;
}

/* Infinite scroll animation for both sections */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure smooth infinite scrolling */
.features-scroll,
.tech-simple-scroll {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.scroll-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* ===== WHY CHOOSE - COMPACT ===== */
.feature-card {
    padding: 1.25rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

.feature-desc {
    font-size: 0.8rem;
}

/* ===== PROCESS TIMELINE - INNOVATIVE ===== */
.process-timeline-new {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--black));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
}

.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
}

.timeline-dot.golden {
    background: var(--primary);
}

.timeline-dot.black {
    background: var(--black);
}

.timeline-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.25rem;
    max-width: 400px;
    position: relative;
    transition: all 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.timeline-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-icon.golden {
    background: var(--primary);
    color: var(--white);
}

.timeline-icon.black {
    background: var(--black);
    color: var(--white);
}

.timeline-number {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.timeline-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== CASE STUDIES & TESTIMONIALS - COMPACT ===== */
.case-study-card,
.testimonial-card {
    padding: 1rem;
}

.case-study-image {
    height: 180px;
}

.case-study-content {
    padding: 1rem;
}

.case-study-title,
.testimonial-text {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

.case-study-desc {
    font-size: 0.8rem;
    margin-bottom: 0.875rem;
}

.testimonial-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
}

.author-name {
    font-size: 0.875rem;
}

.author-position {
    font-size: 0.75rem;
}

/* ===== ADDITIONAL RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .mission-vision-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .wwd-innovative-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wwd-card-new {
        flex-direction: column;
        text-align: center;
    }
    
    .features-scroll-container,
    .tech-scroll-container {
        padding: 0 2.5rem;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 3rem;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features-scroll-container,
    .tech-scroll-container,
    .tech-simple-scroll-container {
        padding: 0;
    }
    
    .scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .features-scroll .feature-card {
        min-width: 220px;
    }
    
    .tech-categories-scroll .tech-category {
        min-width: 280px;
    }
    .wwd-innovative-grid{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .mission-vision-container{
        grid-template-columns: 1fr;
    }
}

/* ===== ENHANCED ABOUT SECTION ===== */
.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.overlay-stat {
    text-align: center;
    color: white;
}

.overlay-stat h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.overlay-stat p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.about-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.about-badge i {
    font-size: 1.125rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: all 0.2s ease;
}

.about-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.about-feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* About section button hover effect */
.about-content .btn {
    transition: all 0.2s ease;
}

.about-content .btn:hover {
    transform: translateY(-2px);
}

/* Responsive design for about section */
@media (max-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-image {
        display: none;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-feature-item {
        padding: 1.25rem;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mv-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0.75rem;
    }
    
    .about-feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-icon-small {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mv-card {
        padding: 1.25rem 0.75rem;
    }
    
    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===== WHY CHOOSE - COMPACT CARDS ===== */
.features-scroll .feature-card {
    min-width: 220px;
    max-width: 220px;
    padding: 1rem 0.75rem;
}

.feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}

.feature-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.75rem;
    line-height: 1.5;
    white-space: normal;
}

/* ===== STATS SECTION - RESPONSIVE 2x2 GRID ===== */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===== CLIENTS SECTION - FIX ===== */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ===== CASE STUDIES - COMPACT CARDS ===== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.case-study-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.case-study-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-tag {
    position: absolute;
    top: 1rem;
    background: var(--primary);
    color: var(--black);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-study-content {
    padding: 1.25rem;
}

.case-study-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.case-study-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-study-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

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

.stat-item-small strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item-small span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS - 2 COLUMN GRID ON MOBILE ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-author img {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.8rem;
    }
    
    .author-position {
        font-size: 0.7rem;
    }
}

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

/* ===== TECHNOLOGIES - SIMPLE HORIZONTAL SCROLL ===== */
.tech-simple-scroll-container {
    position: relative;
    /* padding: 0 3rem; */
}

.tech-simple-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.tech-simple-scroll::-webkit-scrollbar {
    display: none;
}

.tech-simple-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-simple-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.tech-simple-item i {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.tech-simple-item:hover i {
    color: var(--primary);
}

.tech-simple-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* ===== COMPACT FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column {
    min-width: 0;
}

.footer-logo img {
    height: 35px;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--black);
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a i {
    font-size: 0.625rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== MODERN FOOTER REDESIGN ===== */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    min-width: 0;
}

.footer-col-brand {
    padding-right: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col:last-child {
        grid-column: auto;
    }
}

/* ===== COMPANIES RATING SECTION - COMPACT ===== */
.companies-rating-section {
    padding: 3rem 0;
    position: relative;
}

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

.company-card-modern {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    overflow: hidden;
    cursor: pointer;
}

.company-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.company-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.company-badge.verified {
    background: rgba(52, 168, 83, 0.1);
    color: #34A853;
}

.company-badge.partner {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.company-badge.trusted {
    background: rgba(12, 170, 65, 0.1);
    color: #0CAA41;
}

.company-badge.client {
    background: rgba(227, 30, 36, 0.1);
    color: #E31E24;
}

.company-card-inner {
    position: relative;
    z-index: 2;
}

.company-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.75rem;
}

.company-logo-modern {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f9fafb;
    transition: all 0.2s ease;
    padding: 0.5rem;
}

.company-card-modern:hover .company-logo-modern {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-name-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.company-card-modern:hover .company-name-modern {
    color: #D4AF37;
}

.company-rating-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars-wrapper {
    display: flex;
    gap: 0.125rem;
}

.stars-wrapper i {
    color: #FFA500;
    font-size: 0.875rem;
}

.rating-score-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.company-reviews {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

.company-hover-effect {
    display: none;
}

.trust-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.trust-stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.trust-stat-item i {
    font-size: 1.75rem;
    color: #D4AF37;
    transition: transform 0.2s ease;
}

.trust-stat-item:hover i {
    transform: scale(1.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.stat-label {
    font-size: 0.75rem;
    color: black;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .companies-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.875rem;
    }
    
    .trust-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.25rem;
    }
}

@media (max-width: 991px) {
    .companies-rating-section {
        padding: 2.5rem 0;
    }
    
    .company-card-modern {
        padding: 0.875rem;
    }
    
    .company-logo-modern {
        width: 45px;
        height: 45px;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .companies-rating-section {
        padding: 2rem 0;
    }
    
    .companies-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .company-card-modern {
        padding: 0.75rem;
    }
    
    .company-logo-modern {
        width: 40px;
        height: 40px;
    }
    
    .company-name-modern {
        font-size: 0.8rem;
    }
    
    .trust-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .trust-stat-item {
        padding: 0.5rem;
    }
    
    .trust-stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) {
    .companies-rating-section {
        padding: 1.5rem 0;
    }
    
    .company-card-modern {
        padding: 0.625rem;
    }
    
    .company-badge {
        font-size: 0.5rem;
        padding: 0.2rem 0.4rem;
    }
    
    .company-logo-modern {
        width: 35px;
        height: 35px;
    }
    
    .company-name-modern {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .stars-wrapper i {
        font-size: 0.75rem;
    }
    
    .rating-score-modern {
        font-size: 0.75rem;
    }
    
    .company-reviews {
        font-size: 0.625rem;
    }
    
    .trust-stat-item {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }
    
    .trust-stat-item i {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
}

/* ===== MOBILE SIDE SCROLLING FOR SERVICES & TESTIMONIALS (<480px) ===== */
@media (max-width: 480px) {
    .services-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible; /* Prevent vertical scrollbar */
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--gray-200);
    }
    
    .services-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: var(--gray-200);
        border-radius: 10px;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    
    .services-grid .service-card {
        min-width: 280px;
        flex-shrink: 0;
    }
    
    /* Testimonials side scroll */
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto;
        overflow-y: visible; /* Prevent vertical scrollbar */
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--gray-200);
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
        width: 0; /* Hide vertical scrollbar */
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: var(--gray-200);
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    
    .testimonials-grid .testimonial-card {
        min-width: 280px;
        height: auto; /* Allow height to adjust naturally */
    }
}

.collapsible-hint{
        display: none;
}

/* ===== COLLAPSIBLE SECTIONS ON MOBILE (<480px) ===== */
@media (max-width: 480px) {
    /* Core Values, What We Do, Case Studies Collapsible */
    .core-values .section-title,
    .what-we-do .section-title,
    .case-studies .section-title {
        cursor: pointer;
        position: relative;
        /* padding-right: 3rem; */
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    /* Arrow button styles - only visible on mobile */
    .collapse-arrow {
        display: none;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.25rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .collapse-arrow:hover {
        background-color: rgba(var(--primary-rgb), 0.1);
        transform: scale(1.1);
    }
    
    .collapse-arrow:active {
        transform: scale(0.95);
    }
    
    .core-values .collapse-arrow,
    .what-we-do .collapse-arrow,
    .case-studies .collapse-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hide the old ::after pseudo-elements since we're using button arrows now */
    .core-values .section-title::after,
    .what-we-do .section-title::after,
    .case-studies .section-title::after {
        display: none;
    }
    
    /* Arrow rotation for collapsed state */
    .core-values.collapsed .collapse-arrow i,
    .what-we-do.collapsed .collapse-arrow i,
    .case-studies.collapsed .collapse-arrow i {
        transform: rotate(180deg);
    }
    
    /* Collapsible hint text */
    .collapsible-hint {
        display: block;
        text-align: center;
        color: var(--primary);
        font-size: 0.8125rem;
        font-weight: 500;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        font-style: italic;
    }
    
    .core-values.collapsed .collapsible-hint,
    .what-we-do.collapsed .collapsible-hint,
    .case-studies.collapsed .collapsible-hint {
        display: block;
    }
    
    .core-values:not(.collapsed) .collapsible-hint,
    .what-we-do:not(.collapsed) .collapsible-hint,
    .case-studies:not(.collapsed) .collapsible-hint {
        display: none;
    }
    
    .core-values .section-subtitle,
    .what-we-do .section-subtitle,
    .case-studies .section-subtitle {
        transition: all 0.3s ease;
        max-height: 200px;
        overflow: hidden;
        opacity: 1;
    }
    
    .core-values.collapsed .section-subtitle,
    .what-we-do.collapsed .section-subtitle,
    .case-studies.collapsed .section-subtitle {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }
    
    .values-grid,
    .wwd-innovative-grid,
    .case-studies-grid {
        transition: all 0.4s ease;
        max-height: 10000px;
        overflow: hidden;
        opacity: 1;
    }
    
    .core-values.collapsed .values-grid,
    .what-we-do.collapsed .wwd-innovative-grid,
    .case-studies.collapsed .case-studies-grid {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .companies-grid-modern{
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .company-card-modern {
        padding: 0.5rem;
    }
    
    .company-logo-modern {
        width: 30px;
        height: 30px;
    }
    
    .company-name-modern {
        font-size: 0.7rem;
    }
    
    .stars-wrapper i {
        font-size: 0.625rem;
    }
    
    .rating-score-modern {
        font-size: 0.625rem;
    }
    
    .company-reviews {
        font-size: 0.5rem;
    }
}

/* ===== HIDE ARROW BUTTONS ON LARGER SCREENS (>480px) ===== */
@media (min-width: 481px) {
    .collapse-arrow {
        display: none !important;
    }
}

/* ===== FOOTER COLLAPSIBLE ON MOBILE (<768px) ===== */
@media (max-width: 768px) {
    .footer-col:not(.footer-col-brand) .footer-title {
        cursor: pointer;
        position: relative;
        padding-right: 2rem;
        user-select: none;
    }
    
    .footer-col:not(.footer-col-brand) .footer-title::after {
        font-family: 'remixicon';
        position: absolute;
        right: 0;
        top: 100%;
        transform: translateY(-50%);
        font-size: 1.25rem;
        color: var(--primary);
        transition: transform 0.3s ease;
    }
    
    .footer-col.collapsed .footer-title::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .footer-col:not(.footer-col-brand) .footer-links-grid,
    .footer-col:not(.footer-col-brand) .footer-contact {
        transition: all 0.3s ease;
        max-height: 500px;
        overflow: hidden;
        opacity: 1;
    }
    
    .footer-col.collapsed .footer-links-grid,
    .footer-col.collapsed .footer-contact {
        max-height: 0;
        opacity: 0;
        margin: 0;
    }
}
