:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --header-height: 70px;
    --container-width: 1200px;
    --section-spacing: 6rem;
    --primary-color-light: #3498db;
    --secondary-color-light: #e74c3c;
}

/* Add base styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Header Styles */
.header {
    height: var(--header-height);
    background-color: #f3f4f5;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: calc(var(--header-height) - 10px);
    background-color: #f3f4f5;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Logo Styles */
.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.logo .company-name {
    color: #0066cc;  /* Changed to blue */
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 102, 204, 0.2);  /* Updated shadow to match blue */
}

.logo .company-type {
    color: #8B0000;  /* Dark red */
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Enhanced Navigation Styles */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Hamburger menu button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* Enhanced Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu a:hover {
    background: rgba(52, 152, 219, 0.08);
}

/* Employee Login Button */
.employee-login a {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.employee-login a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.employee-login a::after {
    display: none;
}

/* Supplier Portal Button */
.supplier-portal a {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.supplier-portal a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Adjust spacing between portal buttons */
.employee-login {
    margin-right: 1rem;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: flex-start;  /* Changed from center */
    position: relative;
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.98) 0%, rgba(2, 6, 23, 0.98) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-slideshow {
    width: 100%;
    height: 650px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-slide-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.hero-prev-slide,
.hero-next-slide {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-prev-slide:hover,
.hero-next-slide:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-slide-dots {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Add slide caption */
.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-caption h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-slide-caption p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-slideshow {
        height: 550px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-slideshow {
        height: 500px;
        width: 90%;
        margin: 2rem auto;
    }

    .hero-slide-caption h3 {
        font-size: 1.8rem;
    }

    .hero-slide-caption p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-slideshow {
        height: 400px;
        width: 100%;
    }

    .hero-slide-caption {
        padding: 2rem;
    }

    .hero-prev-slide,
    .hero-next-slide {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: left;
}

/* Update company name with 3D effect and animation */
.hero-content h1 .company-name {
    color: #0066cc;
    display: inline-block;
    text-shadow: 
        2px 2px 0px #0044aa,
        4px 4px 0px #003388,
        6px 6px 0px #002266;
    transform-style: preserve-3d;
    animation: float 3s ease-in-out infinite;
    letter-spacing: 2px;
    font-weight: 900;
}

/* Add floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateZ(0);
        text-shadow: 
            2px 2px 0px #0044aa,
            4px 4px 0px #003388,
            6px 6px 0px #002266;
    }
    50% {
        transform: translateY(-10px) translateZ(20px);
        text-shadow: 
            4px 4px 0px #0044aa,
            8px 8px 0px #003388,
            12px 12px 0px #002266;
    }
}

.hero-content h1 .company-type {
    color: #8B0000;  /* Dark red */
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(139, 0, 0, 0.3);  /* Dark red glow */
    display: inline-block;
    margin-left: 0.5rem;
    letter-spacing: 2px;
    font-weight: 900;
}

/* Make LEADING DISTRIBUTOR smaller */
.hero-content h1 .highlight {
    color: white;
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.4rem);  /* Smaller size */
    margin-top: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    opacity: 0.9;
    line-height: 1.4;
    margin-top: 1.5rem;
    max-width: 450px;
    font-weight: 400;
    text-align: left;
}

.about-hero {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    text-align: left;
}

.about-hero h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

@media screen and (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }

    .hero-text-wrapper {
        margin: 1rem 0 0 1rem;
        max-width: 400px;  /* Reduced for mobile */
    }

    .hero-content h1 .company-name,
    .hero-content h1 .company-type {
        font-size: clamp(3rem, 10vw, 6rem);  /* Slightly smaller on mobile */
    }

    .hero-content h1 .highlight,
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.6rem);
    }

    .hero-content h1 .highlight {
        font-size: clamp(0.8rem, 1.8vw, 1.2rem);  /* Even smaller on mobile */
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.6rem);
    }
}

.star-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 1s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Update hero content styles */
.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    align-items: flex-start;  /* Changed from center */
    justify-content: flex-start;  /* Changed from center */
}

.hero-text-wrapper {
    text-align: left;
    margin: 4rem 0 0 4rem;
    max-width: 800px;
}

.about-hero {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);  /* Increased font size */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content h1 .company-name {
    color: #ffffff;  /* Changed to blue */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.hero-content h1 .company-type {
    color: #ffffff;  /* Dark red for STAR */
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
    display: inline-block;
    margin-left: 0.5rem;
}

.hero-content h1 .highlight {
    color: white;
    display: block;
    font-size: 0.2em;  /* Smaller than TILI STAR */
    margin-top: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 4rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-achievements {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-achievements {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .achievement-item {
        width: 100%;
        max-width: 250px;
    }

    .hero-text-wrapper {
        margin: 3rem 0 0 2rem;
    }
    
    .about-hero {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .about-hero h2 {
        font-size: 1.5rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
}

/* Services Section Styles */
.services {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Service Cards Responsive Layout */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--secondary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
    margin-top: auto;
}

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

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

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

    .service-features li {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 1rem 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

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

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Stats Section */
.stats {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png') repeat;
    opacity: 0.1;
}

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

.stat-item {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
}

.stat-icon i {
    color: var(--white);
    font-size: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .plus {
    color: var(--secondary-color);
    font-size: 2rem;
}

.stat-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--primary-color);
}

.stat-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-content h3 {
        font-size: 1.2rem;
    }
}

/* Focus Areas Section */
.how-we-work {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

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

.work-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.work-step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.work-step p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .how-we-work .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .how-we-work .focus-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Section */
.timeline {
    padding: var(--section-spacing) 0;
    background: linear-gradient(rgba(44, 62, 80, 0.03), rgba(44, 62, 80, 0.08));
    position: relative;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.3;
}

.timeline-items {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 0;
    right: -8px;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Timeline responsive styles */
@media screen and (max-width: 768px) {
    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 22px !important;
        right: auto !important;
    }

    .timeline-date {
        margin-bottom: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .timeline-wrapper {
        padding: 1rem 0;
    }

    .timeline-items {
        padding: 0 1rem;
    }

    .timeline-item {
        padding-left: 60px !important;
        margin-bottom: 3rem;
    }

    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-dot {
        left: 12px !important;
    }

    .timeline-content {
        padding: 1.2rem;
    }
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2634 100%);
    color: var(--white);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 2fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

/* Contact Info Box */
.footer-section.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.business-hours h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info address {
    font-style: normal;
}

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

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Map Container */
.footer-section.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    min-height: 300px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1.5fr 2fr 2fr;
    }

    .footer-section.map {
        grid-column: span 2;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 4rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section.map {
        grid-column: span 1;
        height: 250px;
    }

    .footer-section {
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .contact-details {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Enhanced responsive design */
@media screen and (max-width: 1024px) {
    :root {
        --header-height: 70px;
        --section-spacing: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

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

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

    .header {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .company-name {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --header-height: 60px;
        --section-spacing: 3rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .services-grid {
        gap: 3.5rem;
    }

    .service-content {
        padding: 3rem 1.2rem 1.5rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: var(--header-height);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

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

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

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* Products Grid Styles */
.products-grid {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--light-gray) 0%, #fff 100%);
}

/* Product Filter Styles */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--white);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

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

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

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.2);
    z-index: 1;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-category {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

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

/* Product Grid Responsive */
@media screen and (max-width: 1200px) {
    .products-container {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    .product-filters {
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* External Link Styles */
.nav-menu a i.fa-external-link-alt {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-menu a:hover i.fa-external-link-alt {
    opacity: 1;
    transform: translateX(2px) translateY(-2px);
}

/* Adjust spacing for external link items */
.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Remove underline effect for external links */
.nav-menu a[target="_blank"]::after {
    display: none;
}

/* Add subtle background for external links */
.nav-menu a[target="_blank"] {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-menu a[target="_blank"]:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Infrastructure Page Styles */
.infrastructure-hero {
    background-image: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                      url('warehouse-bg.jpg');
}

.infrastructure-overview {
    padding: 6rem 0;
    background: var(--light-gray);
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-highlight {
    margin-bottom: 3rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-unit {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Features Section */
.infrastructure-features {
    padding: 6rem 0;
    background: white;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Temperature Control Section */
.temperature-control {
    padding: 6rem 0;
    background: linear-gradient(rgba(44, 62, 80, 0.05), rgba(44, 62, 80, 0.1));
}

.temp-control-content {
    text-align: center;
}

.temp-control-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.temp-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.spec-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.spec-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.spec-item p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .features-grid,
    .temp-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .features-grid,
    .temp-specs {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-unit {
        font-size: 1.5rem;
    }

    .overview-text {
        font-size: 1.1rem;
    }
}

/* Load More Button Styles */
.load-more-container {
    width: 100%;
    text-align: center;
    grid-column: 1 / -1;
    margin: 2rem 0;
}

.load-more-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Login Page Styles */
.login-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

.login-box {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-header h1 span {
    color: var(--secondary-color);
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.login-form label i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: var(--primary-color);
}

/* Forgot Password Page Styles */
.forgot-password-content {
    text-align: center;
}

.contact-info-box {
    padding: 1rem;
}

.contact-info-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-box p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
}

.support-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.support-item p {
    margin: 0;
    text-align: left;
}

.support-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.support-item a:hover {
    text-decoration: underline;
}

.back-to-login {
    margin-top: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    background: rgba(52, 152, 219, 0.4);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

/* Cursor hover effect */
.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(52, 152, 219, 0.3);
    border-color: var(--white);
}

/* Hide default cursor */
* {
    cursor: none !important;
}

/* Cursor hover state for interactive elements */
a:hover ~ .cursor,
button:hover ~ .cursor,
input:hover ~ .cursor,
textarea:hover ~ .cursor,
.filter-btn:hover ~ .cursor,
.login-btn:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(52, 152, 219, 0.3);
}

/* Show cursor on mobile/touch devices */
@media (hover: none) {
    * {
        cursor: auto !important;
    }
    .cursor, .cursor-dot {
        display: none !important;
    }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        margin: 0;
        min-width: 100%;
    }

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 1rem 0;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
    }

    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(0, 8px);
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(0, -8px);
    }

    /* Mobile Menu Animation */
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for menu items */
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu li:nth-child(7) { transition-delay: 0.7s; }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    /* External link styles in mobile */
    .nav-menu a[target="_blank"] {
        background: none;
        padding: 1rem;
    }

    .employee-login {
        margin-top: 1rem;
    }

    .employee-login a {
        width: 100%;
        text-align: center;
    }

    .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

/* Additional mobile adjustments */
@media screen and (max-width: 480px) {
    .header {
        padding: 0 1.5rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .company-type {
        font-size: 0.8rem;
    }

    .nav-menu {
        width: 100%;
        max-width: none;
    }
}

/* Brands Grid Styles */
.brands-grid {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--light-gray) 0%, #fff 100%);
}

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

.brand-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: none;
    backdrop-filter: blur(5px);
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    margin: 10px;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.brand-card:hover::before {
    transform: translateX(100%);
}

.brand-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.brand-card:hover .brand-card-inner {
    transform: rotateY(180deg);
}

.brand-card-front, .brand-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.brand-card-back {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    transform: rotateY(180deg);
    padding: 2.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.brand-card-back h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.brand-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.brand-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.brand-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.brand-card-front:hover .brand-image img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.05);
}

.brand-info {
    padding: 1.8rem;
    text-align: center;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.brand-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.brand-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-info h3::after {
    opacity: 1;
    width: 60px;
}

.brand-info p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.brand-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-category {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    margin-top: auto;
    transition: all 0.3s ease;
}

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

/* Responsive Brands Grid */
@media screen and (max-width: 768px) {
    .brands-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .brand-image {
        height: 150px;
    }

    .brand-info {
        padding: 1.5rem;
    }
}

/* Brands Grid Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.brand-type {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Coming Soon Page Styles */
.coming-soon-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coming-soon-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.back-home {
    margin-top: 2rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Responsive Coming Soon */
@media screen and (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem;
    }

    .coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
}

.service-details {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-detail-image {
    height: 200px;
    background: var(--light-gray);
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1rem;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.service-features-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Responsive Services Page */
@media screen and (max-width: 768px) {
    .service-details {
        padding: 1rem;
    }

    .service-detail-card {
        margin-bottom: 2rem;
    }

    .service-detail-image {
        height: 180px;
    }
}

.service-description {
    margin-top: 1.5rem;
}

.service-description p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.05);
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--primary-color);
}

/* Loading Animation Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2634 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease;
}

.page-loader.active {
    opacity: 1;
}

.loader-content {
    text-align: center;
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.loader-subtext {
    color: var(--secondary-color);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
    position: relative;
    margin-top: 2rem;
}

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

/* Supplier Portal Page Styles */
.supplier-portal-page {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.supplier-portal-page .login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.supplier-portal-page .login-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.supplier-portal-page .login-header h1 span {
    color: var(--secondary-color);
    font-weight: 700;
}

.supplier-help {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.supplier-help p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.support-contact {
    background: rgba(52, 152, 219, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-contact a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.supplier-portal-page .login-btn {
    background: var(--primary-color);
}

.supplier-portal-page .login-btn:hover {
    background: var(--secondary-color);
}

/* Brand Partners Section */
.brand-partners {
    padding: var(--section-spacing) 0;
    background: var(--light-gray);
}

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

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

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.partner-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design for Brand Partners */
@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo {
        height: 80px;
    }
}

/* Slideshow Section */
.slideshow-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 4rem 0;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 500px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    flex: 1;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease 0.7s;
}

.slide.active .slide-image {
    opacity: 1;
    transform: translateX(0);
}

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

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.7s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.slide-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.prev-slide,
.next-slide {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.slide-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .slides-container {
        height: auto;
    }
    
    .slide {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    
    .slide-content {
        text-align: center;
        padding: 1rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-image {
        height: 300px;
    }
}

/* Hero Slideshow Styles */
.hero-slideshow-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-slideshow {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 2rem auto;
    background: var(--light-gray);
}

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

.hero-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s ease;
}

.hero-slide.active .hero-slide-image img {
    transform: scale(1);
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.hero-slide-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.5s;
}

.hero-slide.active .hero-slide-caption h3,
.hero-slide.active .hero-slide-caption p {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 2;
}

.hero-prev-slide,
.hero-next-slide {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.hero-prev-slide:hover,
.hero-next-slide:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--white);
}

.hero-dot:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* About Company Section */
.about-company {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
    overflow: hidden;
}

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

.about-company-content {
    padding-right: 2rem;
}

.about-company-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-company-content .section-title::after {
    left: 0;
    transform: none;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

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

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

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-company-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio for larger height */
    background: var(--primary-color);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--primary-color);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.3), rgba(52, 152, 219, 0.3));
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-company-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-company-content {
        padding-right: 0;
    }

    .about-company-content .section-title {
        text-align: center;
    }

    .about-company-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .company-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-description p {
        font-size: 1rem;
    }
}

/* Adjust responsive breakpoint for larger screens */
@media screen and (min-width: 1200px) {
    .about-company-grid {
        gap: 6rem;
    }

    .about-company-video {
        max-width: 900px;
    }

    .video-wrapper {
        padding-top: 80%;
    }
}

/* Latest News Section */
.latest-news {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

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

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

.read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners Showcase Section */
.partners-showcase {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

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

.partner-showcase-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.partner-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-showcase-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-showcase-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .partners-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .partners-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Offices Section */
.main-offices {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.main-offices .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.main-offices .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.main-offices .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}

.offices-grid {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.office-card {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card:hover {
    transform: translateY(-2px);
}

.office-media-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.office-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
    pointer-events: none;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.office-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.office-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.office-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.office-info p:hover {
    background: rgba(52, 152, 219, 0.05);
    transform: translateX(5px);
}

.office-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.office-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: var(--secondary-color);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media screen and (max-width: 1280px) {
    .offices-grid {
        flex-direction: column;
    }
    
    .office-card {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-dots {
    display: flex;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    .hero-slideshow {
        height: 450px;
        margin: 1rem;
    }
    
    .hero-slides-container {
        height: 100%;
    }
}

/* Logo Scroll Animation */
.logo-scroll-container {
    width: 100%;
    margin: 3rem 0;
    overflow: hidden;
    background: var(--white);
    padding: 2rem 0;
    position: relative;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-scroll-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.logo-slide {
    width: 200px;
    padding: 0 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-slide {
        width: 150px;
        padding: 0 1rem;
    }
    
    .logo-slide img {
        height: 40px;
    }
}

/* How We Work Page Styles */
.work-hero {
    padding: var(--section-spacing) 0;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

.work-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.work-hero h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    color: var(--primary-color);
}

.work-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.work-hero .office-card {
    max-width: 1280px;
    margin: 3rem auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-hero .office-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.work-hero .office-info-container {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.work-hero .office-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
}

.work-hero .office-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.work-hero-image {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    margin: 3rem auto;
    background: #000;
    padding-bottom: 56.25%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px;
}

.work-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-description {
    padding: 3rem;
    background: white;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.key-features {
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

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

.key-features h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.key-feature-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.key-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.key-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-content li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.feature-content li:hover {
    transform: translateX(5px);
    background: rgba(52, 152, 219, 0.1);
}

.feature-content li i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .key-feature-box {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .feature-content ul {
        grid-template-columns: 1fr;
    }

    .feature-content li {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .key-features {
        padding: 2rem 1rem;
    }

    .key-features h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex !important;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.3s ease-out;
}

.modal-header {
    padding: 1.5rem;
    background: #f3f4f5;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
}

.video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: black;
}

.video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
}

.feature-details {
    color: var(--text-color);
    line-height: 1.6;
}

.feature-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-details li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

/* Coverage Page Styles */
.coverage-hero {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    text-align: center;
}

.coverage-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coverage-hero .hero-description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

.coverage-details {
    padding: 4rem 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.coverage-text p {
    line-height: 1.8;
    color: var(--text-color);
}

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

.distribution-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.distribution-category h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.store-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.store-list li {
    text-align: center;
}

.store-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: translateY(-5px);
}

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

.store-list li span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .coverage-hero h1 {
        font-size: 2rem;
    }

    .coverage-text h2 {
        font-size: 1.8rem;
    }

    .distribution-details {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .coverage-hero {
        padding: calc(var(--header-height) + 1rem) 1rem 2rem;
    }

    .coverage-hero h1 {
        font-size: 1.8rem;
    }

    .coverage-details {
        padding: 2rem 1rem;
    }

    .coverage-text h2 {
        font-size: 1.5rem;
    }

    .distribution-category {
        padding: 1.5rem;
    }

    .store-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .store-logo {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .coverage-hero h1 {
        font-size: 1.5rem;
    }

    .store-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-logo {
        width: 50px;
        height: 50px;
        padding: 0.5rem;
    }

    .store-list li span {
        font-size: 0.8rem;
    }

    .distribution-category h3 {
        font-size: 1.2rem;
    }
}

/* Add these styles to your existing coverage styles */
.coverage-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.stats-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto;
    padding: 1rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.06),
        0 10px 20px rgba(0,0,0,0.04),
        inset 0 -5px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.distribution-details {
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.distribution-category {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distribution-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.distribution-category h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.distribution-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.store-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.store-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.store-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.store-logo {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Prevent logo from shrinking */
    border-radius: 10px;
    overflow: hidden;
    background: white;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-list li:hover .store-logo img {
    transform: scale(1.1);
}

.store-list li span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    .distribution-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .distribution-details {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .distribution-category {
        padding: 1.5rem;
    }

    .store-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .store-list li span {
        font-size: 0.9rem;
    }
}

.store-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.store-name {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.store-locations {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.store-list li {
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .store-name {
        font-size: 1rem;
    }
    
    .store-locations {
        font-size: 0.8rem;
    }
    
    .store-list li {
        padding: 0.8rem;
    }
}

/* Add/update coverage map styles */
.coverage-map {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 5px 5px 0 0;
}

.coverage-map img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.coverage-map:hover img {
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .coverage-map {
        padding: 1.5rem;
        margin-top: 3rem;
    }
}

.coming-soon-message {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    max-width: 600px;
    margin: 2rem auto;
}

.construction-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.main-message {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sub-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.visit-message {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

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

@media screen and (max-width: 768px) {
    .coming-soon-message {
        padding: 2rem;
        margin: 1rem;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    .main-message {
        font-size: 1.5rem;
    }
    
    .sub-message,
    .visit-message {
        font-size: 1rem;
    }
}

/* Footer contact links color */
.footer-section.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.contact-info a:hover {
    color: var(--secondary-color);
}

.footer-section.contact-info .contact-details p {
    color: var(--white);
}

.service-detail-emoji {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color-light), var(--secondary-color-light));
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-emoji {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

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

@media screen and (max-width: 768px) {
    .service-emoji {
        font-size: 4rem;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    height: 400px;
    background-image: url('path/to/hero-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9));
}

.services-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 3rem;
    padding: 0 1rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

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

.service-detail-emoji {
    background: linear-gradient(135deg, var(--primary-color-light), var(--secondary-color-light));
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-emoji {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-features-list i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.service-note {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .services-hero {
        height: 300px;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-emoji {
        font-size: 3rem;
    }
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    /* Header Responsive Styles */
    .header {
        padding: 0 1rem;
    }

    .logo .company-name {
        font-size: 1.5rem;
    }

    .logo .company-type {
        font-size: 0.7rem;
    }

    /* Hero Section Responsive */
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-text-wrapper h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 1rem 0;
    }

    .about-hero {
        padding: 1rem;
    }

    .about-hero h2 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    /* Services Section Responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .map iframe {
        height: 200px;
    }

    /* Navigation Menu */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    /* Container Padding */
    .container {
        padding: 0 1rem;
    }

    /* Section Spacing */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .hero-text-wrapper h1 {
        font-size: 1.8rem;
    }

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

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
    }
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    /* Hide dropdown menu and FAB */
    .dropdown-menu, .fab, .fab-menu {
        display: none;
    }

    /* Floating Navigation Buttons */
    .floating-nav {
        position: fixed;
        right: 1rem;
        top: 50%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        z-index: 9999;
        transform: scale(0.9);
    }

    .floating-nav a {
        width: 50px;
        height: 50px;
        background: var(--secondary-color);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        cursor: pointer !important;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .floating-nav a:hover {
        transform: scale(1.1);
        background: var(--primary-color);
    }

    .floating-nav .tooltip {
        position: absolute;
        right: 60px;
        background: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;
        color: var(--text-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .floating-nav a:hover .tooltip {
        opacity: 1;
        visibility: visible;
        right: 70px;
    }
}

/* Hero Section Responsive Styles */
@media screen and (max-width: 430px) {  /* iPhone 15 Pro Max and similar devices */
    .hero {
        min-height: 100vh;
        padding-top: calc(var(--header-height) + 1rem);
    }

    .hero-content {
        padding: 1rem;
        flex-direction: column;
    }

    .hero-text-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-content h1 .company-name,
    .hero-content h1 .company-type {
        display: block;
        margin: 0;
    }

    .hero-content h1 .highlight {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 1rem auto;
    }

    .about-hero {
        margin: 2rem auto;
        padding: 1rem;
        max-width: 100%;
        text-align: center;
    }

    .about-hero h2 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    .vertical-divider {
        display: none;
    }

    /* Services Section */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .service-card {
        margin-top: 2.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-content {
        padding: 1rem;
    }

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

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Main Offices Section */
    .office-card {
        grid-template-columns: 1fr;
    }

    .office-media-container,
    .office-info-container {
        height: auto;
    }

    .office-media-container {
        height: 200px;
    }

    .office-info-container {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-section {
        padding: 0;
    }

    .map iframe {
        height: 200px;
    }
}

/* Navigation Menu Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        padding: 0.8rem;
        display: block;
        font-size: 1.1rem;
    }

    .employee-login {
        margin: 1rem 0;
    }

    .employee-login a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
}

/* Floating Navigation Mobile Styles */
@media screen and (max-width: 430px) {
    .floating-nav {
        right: 0.5rem;
        transform: scale(0.75);
    }

    .floating-nav a {
        width: 45px;
        height: 45px;
    }

    .floating-nav .tooltip {
        display: none;
    }
}

/* Coverage Page Responsive Styles */
@media screen and (max-width: 430px) {  /* iPhone 15 Pro Max */
    .coverage-hero {
        padding: calc(var(--header-height) + 1rem) 1rem 2rem;
    }

    .coverage-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .coverage-hero .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .coverage-details {
        padding: 2rem 1rem;
    }

    .coverage-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .coverage-text p {
        font-size: 0.9rem;
        text-align: center;
    }

    /* Stats and Chart Section */
    .coverage-stats {
        padding: 1rem;
        margin: 1rem;
    }

    .stats-flex {
        padding: 1rem 0;
        gap: 2rem;
    }

    .chart-container {
        height: 300px;
        padding: 0.5rem;
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Distribution Categories */
    .distribution-details {
        padding: 1rem;
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .distribution-category {
        padding: 1rem;
    }

    .distribution-category h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Store List */
    .store-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .store-list li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .store-logo {
        width: 40px;
        height: 40px;
        padding: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .store-list li span {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Chart Labels and Text */
    .modal-title, .feature-details h4 {
        font-size: 1rem;
    }

    .feature-details p, .feature-details li {
        font-size: 0.9rem;
    }
}

/* Additional adjustments for very small screens */
@media screen and (max-width: 360px) {
    .store-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .store-logo {
        width: 35px;
        height: 35px;
    }

    .store-list li span {
        font-size: 0.7rem;
    }

    .distribution-category {
        padding: 0.8rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('BACKGROUNDPIC.jpg');  /* Rename your file to remove spaces */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.office-media-container {
    position: relative;
    width: 100%;
    padding-bottom: 54.73%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.office-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
    pointer-events: none;
}

.office-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.office-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.office-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.office-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-color);
}

.office-info i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media screen and (max-width: 1280px) {
    .offices-grid {
        flex-direction: column;
    }
    
    .office-card {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .offices-grid {
        flex-direction: column;
    }
    
    .office-card {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }
}

.office-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.office-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.office-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.slide-nav:hover {
    background: rgba(255,255,255,0.4);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

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

.office-card:hover .office-video {
    transform: scale(1.05);
}

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

.office-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.office-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
}

.office-icon i {
    color: var(--white);
    font-size: 2rem;
}

.office-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.office-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.office-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-color);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.office-info p:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.office-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    margin-top: 0.2rem;
}

.office-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .office-info-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .office-icon {
        margin: 0 auto 1.5rem;
    }
    
    .office-details h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .office-info p {
        justify-content: center;
    }
}

.chart-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.08),
        0 15px 25px rgba(0,0,0,0.05),
        inset 0 -5px 10px rgba(0,0,0,0.02);
}

.treemap-tooltip {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

.treemap-tooltip strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.treemap-tooltip span {
    color: var(--secondary-color);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .chart-container {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .chart-container {
        height: 300px;
    }
}

/* iPhone 15 Pro Max and similar devices */
@media screen and (max-width: 430px) {
    .work-hero {
        padding: calc(var(--header-height) + 1rem) 0 2rem;
    }
    
    .work-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .office-card {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .office-media-container {
        height: 200px;
    }
    
    .office-overlay h3 {
        font-size: 1.4rem;
    }
    
    .office-overlay p {
        font-size: 0.9rem;
    }
    
    .office-info-container {
        padding: 1.5rem;
    }
    
    .office-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .office-icon i {
        font-size: 1.5rem;
    }
    
    .office-details h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .office-info p {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .key-feature {
        min-height: auto;
    }
    
    .key-feature-inner {
        padding: 1rem;
    }
    
    .key-feature-front {
        font-size: 0.9rem;
    }
    
    .key-feature-front i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .key-feature-back {
        padding: 1rem;
    }
    
    .key-feature-back h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .key-feature-back ul li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* Enhance animations for mobile */
@media (hover: hover) {
    .office-card:hover {
        transform: translateY(-5px);
    }
    
    .key-feature:hover .key-feature-inner {
        transform: rotateY(180deg);
    }
}

/* Optimize performance on mobile */
@media (hover: none) {
    .office-card {
        transform: none !important;
    }
    
    .key-feature-inner {
        transform-style: flat;
    }
    
    .key-feature-back {
        position: relative;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
    }
    
    .key-feature-front {
        display: none;
    }
}

/* Base responsive adjustments */
:root {
    --header-height: 60px;  /* Reduced for mobile */
}

/* iPhone 15 Pro Max and similar devices */
@media screen and (max-width: 430px) {
    /* Header adjustments */
    .header {
        height: var(--header-height);
        padding: 0 1rem;
    }
    
    .logo .company-name {
        font-size: 1.2rem;
    }
    
    .logo .company-type {
        font-size: 0.6rem;
    }
    
    /* Navigation adjustments */
    .nav-menu {
        top: var(--header-height);
        padding: 1rem;
    }
    
    .nav-menu li a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    /* Content adjustments */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Stats grid adjustments */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Office card adjustments */
    .office-card {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .office-media-container {
        height: 200px;
    }
    
    .office-video {
        object-fit: cover;
    }
    
    .office-overlay {
        padding: 1rem;
    }
    
    .office-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .office-overlay p {
        font-size: 0.8rem;
    }
    
    .office-info-container {
        padding: 1.2rem;
    }
    
    .office-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .office-details h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .office-info p {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .business-hours p {
        font-size: 0.85rem;
    }
    
    /* Floating navigation adjustments */
    .floating-nav {
        bottom: 1rem;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .floating-nav a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .tooltip {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Additional adjustments for very small devices */
@media screen and (max-width: 375px) {
    .office-media-container {
        height: 180px;
    }
    
    .office-details h3 {
        font-size: 1.2rem;
    }
    
    .office-info p {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Fix for notched devices */
@supports (padding-top: env(safe-area-inset-top)) {
    .header {
        padding-top: env(safe-area-inset-top);
        height: calc(var(--header-height) + env(safe-area-inset-top));
    }
    
    .nav-menu {
        top: calc(var(--header-height) + env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .floating-nav {
        bottom: calc(1rem + env(safe-area-inset-bottom));
    }
}

/* Partner Logo Slideshow */
.partner-showcase {
    padding: 1rem 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
    margin: 1rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.partner-slider {
    position: relative;
    padding: 0.8rem;
    overflow: hidden;
    height: 120px;
}

.partner-track {
    display: flex;
    animation: slideTrack 30s linear infinite;
    gap: 2.5rem;
    align-items: center;
    width: fit-content;
    padding: 0.5rem;
}

.partner-logo {
    flex: 0 0 140px;
    height: 100px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo span {
    font-size: 0.8rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.partner-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.partner-logo:hover span {
    opacity: 1;
    transform: translateY(0);
}

.partner-logo:hover::after {
    width: 50%;
}

/* Add fade edges */
.partner-slider::before,
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 1;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa, transparent);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(-90deg, #f8f9fa, transparent);
}

/* Responsive adjustments for partner showcase */
@media screen and (max-width: 430px) {
    .partner-showcase {
        margin: 0.5rem 1rem;
    }
    
    .partner-slider {
        padding: 0.5rem;
        height: 100px;
    }
    
    .partner-logo {
        flex: 0 0 100px;
        height: 80px;
        padding: 0.5rem;
    }
    
    @keyframes slideTrack {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 5 - 2.5rem * 5));
        }
    }
}

/* Partners Categories Section */
.partners-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.category-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trade-category {
    width: 100%;
}

.trade-category h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-item img {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item:hover img {
    opacity: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
    }
    
    .partner-item {
        padding: 1rem;
    }
    
    .partner-item img {
        max-width: 120px;
        height: 60px;
    }
    
    .trade-category h2 {
        font-size: 1.5rem;
    }
}

/* Trade Distribution Chart */
.trade-distribution {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trade-distribution h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.donut-chart {
    position: relative;
    width: 250px;
    height: 250px;
}

.donut-chart circle {
    fill: none;
    stroke-width: 30;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dasharray 1s ease;
}

.chart-ring {
    stroke: #f8f9fa;
}

.modern-trade {
    stroke: #3498db;
}

.traditional-trade {
    stroke: #e74c3c;
}

.ecommerce {
    stroke: #2ecc71;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-value {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.chart-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-item.modern .legend-color {
    background: #3498db;
}

.legend-item.traditional .legend-color {
    background: #e74c3c;
}

.legend-item.ecommerce .legend-color {
    background: #2ecc71;
}

.legend-label {
    flex: 1;
    text-align: left;
}

.legend-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Add animation */
@keyframes chartAnimation {
    0% {
        stroke-dasharray: 0 600;
    }
}

.modern-trade,
.traditional-trade,
.ecommerce {
    animation: chartAnimation 1.5s ease forwards;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .trade-distribution {
        padding: 1rem;
    }
    
    .chart-container {
        gap: 2rem;
    }
    
    .donut-chart {
        width: 200px;
        height: 200px;
    }
    
    .chart-value {
        font-size: 1.5rem;
    }
}

/* Add slideTrack animation */
@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-140px * 5 - 2.5rem * 5));
    }
}

@media screen and (max-width: 430px) {
    .partner-showcase {
        margin: 0.5rem 1rem;
    }
    
    .partner-slider {
        padding: 0.5rem;
        height: 100px;
    }
    
    .partner-logo {
        flex: 0 0 100px;
        height: 80px;
        padding: 0.5rem;
    }
    
    @keyframes slideTrack {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 5 - 2.5rem * 5));
        }
    }
}

/* Population Statistics Sections */
.population-stats {
    padding: 4rem 0;
}

.population-stats h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.population-chart {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.population-chart h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.chart-wrapper {
    height: 400px;
}

/* Main Cities Section */
.Population-MainCities-UAE {
    padding: 4rem 0;
    background: #f8f9fa;
}

.Population-MainCities-UAE h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.city-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.city-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.city-card .population {
    display: block;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .stats-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        height: 300px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .city-card {
        padding: 1.5rem;
    }
}

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

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

/* Rank color variations */
.city-card:nth-child(-n+3) .city-rank {
    background: var(--primary-color);
}

.city-card:nth-child(n+4):nth-child(-n+8) .city-rank {
    background: #2ecc71;
}

.city-card:nth-child(n+9) .city-rank {
    background: #95a5a6;
}

@media screen and (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .city-card {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .city-card h3 {
        font-size: 1.2rem;
    }
    
    .city-card .population {
        font-size: 0.9rem;
    }
}

.population-chart {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.population-chart h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.chart-wrapper {
    height: 400px;
    padding: 1rem;
    position: relative;
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

/* UAE Landmarks Showcase */
.landmarks-showcase {
    padding: 2rem 0;
    margin: 0 auto 3rem;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.landmarks-showcase h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.landmarks-slider {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 400px;
}

.landmarks-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: fit-content;
    padding: 1rem;
    animation: landmarkSlide 40s linear infinite;
}

.landmark-item {
    flex: 0 0 300px;
    height: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.landmark-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.landmark-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.landmark-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.landmark-item:hover {
    transform: translateY(-10px);
}

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

.landmark-item:hover .landmark-info {
    transform: translateY(0);
}

@keyframes landmarkSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%)); /* Move exactly half the width */
    }
}

/* Responsive adjustments for landmarks */
@media screen and (max-width: 768px) {
    .landmarks-slider {
        height: 300px;
    }
    
    .landmark-item {
        flex: 0 0 250px;
        height: 280px;
    }
    
    .landmark-info {
        padding: 1rem;
    }
    
    .landmark-info h3 {
        font-size: 1.1rem;
    }
    
    .landmark-info p {
        font-size: 0.8rem;
    }
    
    @keyframes landmarkSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50%));
        }
    }
}

/* Add hover pause effect */
.landmarks-slider:hover .landmarks-track {
    animation-play-state: paused;
}

/* Improve performance */
.landmarks-track {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    @keyframes landmarkSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50%));
        }
    }
}

/* Responsive adjustments for landmarks */
@media screen and (max-width: 768px) {
    .landmarks-showcase {
        padding: 1rem 0;
        margin: 0 auto 2rem;
    }
    
    .landmarks-showcase h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .landmarks-slider {
        height: 280px;
    }
    
    .landmark-item {
        flex: 0 0 220px;
        height: 260px;
    }
    
    .landmark-info {
        padding: 1rem;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    }
    
    .landmark-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .landmark-info p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* iPhone Pro Max specific adjustments */
@media screen and (max-width: 430px) {
    .population-stats {
        padding: 1rem;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .population-chart {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .population-chart h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .chart-wrapper {
        height: 300px;
        padding: 0.5rem;
    }
    
    .landmarks-showcase h2 {
        font-size: 1.6rem;
    }
    
    .landmarks-slider {
        height: 240px;
    }
    
    .landmark-item {
        flex: 0 0 180px;
        height: 220px;
    }
    
    .landmarks-track {
        gap: 1rem;
        padding: 0.5rem;
    }
}

/* Ensure smooth scrolling on iOS */
@supports (-webkit-touch-callout: none) {
    .landmarks-track {
        -webkit-overflow-scrolling: touch;
    }
}

/* iPhone Pro Max specific adjustments */
@media screen and (max-width: 430px) {
    /* Trade Distribution adjustments */
    .partner-showcase {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .partner-slider {
        height: 100px;
        padding: 0;
    }
    
    .partner-track {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .partner-logo {
        flex: 0 0 120px;
        height: 80px;
        padding: 0.5rem;
    }
    
    .partner-logo img {
        max-height: 40px;
        margin-bottom: 0.3rem;
    }
    
    .partner-logo span {
        font-size: 0.7rem;
    }
    
    /* Add fade edges for better visual */
    .partner-slider::before,
    .partner-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        z-index: 2;
        pointer-events: none;
    }
    
    .partner-slider::before {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }
    
    .partner-slider::after {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }
    
    /* Adjust animation speed for smaller screens */
    .partner-track {
        animation: partnerSlide 30s linear infinite;
    }
    
    @keyframes partnerSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50%));
        }
    }
    
    /* Improve touch interaction */
    .partner-slider:active .partner-track {
        animation-play-state: paused;
    }
}

/* iPhone Pro Max specific adjustments */
@media screen and (max-width: 430px) {
    /* Trade Distribution Stats */
    .trade-distribution {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .trade-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trade-stat {
        padding: 1rem;
        min-height: auto;
    }

    .trade-percentage {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .trade-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .trade-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* Distribution Chart Container */
    .distribution-chart {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .distribution-chart h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Fix overlapping issue */
    .trade-stats {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .trade-stat {
        flex: 1;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border-radius: 15px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1.2rem;
    }

    /* Ensure proper spacing between items */
    .trade-stat:not(:last-child) {
        margin-bottom: 1rem;
    }
}

/* Brands Page Styles */
.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.brands-filter {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

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

.brand-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 250px;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.brand-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

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

.brand-info h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-description {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    display: none;
}

.category-description.active {
    display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
    
    .brand-image {
        height: 120px;
    }
}

/* Coming Soon Styles */
.brand-card.coming-soon {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.brand-card.coming-soon .brand-image {
    height: 80px;
    margin-bottom: 1.5rem;
}

.brand-card.coming-soon .brand-image i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.brand-card.coming-soon .brand-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.brand-card.coming-soon .brand-info p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Hide category descriptions */
.category-description {
    display: none;
}

/* Brands Page Styles */
.brand-card.hidden {
    display: none;
}

.show-more-container {
    text-align: center;
    margin: 2rem 0;
}

.show-more-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

/* Responsive adjustments for filter buttons */
@media screen and (max-width: 768px) {
    .brands-filter {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Brands Page Styles */
.brands-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.brands-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.brands-intro {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: -50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 3;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.intro-icon i {
    font-size: 2rem;
    color: white;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

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

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

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.brands-filter {
    position: sticky;
    top: var(--header-height);
    background: white;
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Brands Page Styles */
/* Brand Showcase Slider */
.brand-showcase {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 3rem 0;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.brand-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.brand-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(150px * 20); /* Width of each logo * number of logos */
    padding: 1rem 0;
}

.brand-logo {
    flex: 0 0 200px;
    padding: 1rem;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo:hover {
    transform: translateY(-5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10)); /* Negative (width * number of unique logos) */
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .brand-logo {
        flex: 0 0 150px;
        padding: 0.8rem;
    }
    
    .brand-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Brand Details Section */
.brand-details {
    padding: 4rem 0;
    background: #f8f9fa;
    width: 100%;
    margin: 0 auto;
}

.brand-details .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.brand-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.brand-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.brand-details-grid {
    overflow: hidden;
    width: 100%;
}

.brand-detail-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.brand-detail-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
}

.brand-detail-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-detail-content {
    padding: 2rem;
    text-align: center;
}

.brand-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.brand-detail-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-brand {
    left: 0;
}

.next-brand {
    right: 0;
}

.brand-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Brands Section Styles */
.Brands {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.intro-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

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

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.brand-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.brand-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 2rem;
    position: relative;
}

.brand-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.brand-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa, white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.brand-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .intro-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

/* Brand Roadmap Section */
.brand-roadmap {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.brand-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    transform: skewY(-5deg);
    transform-origin: top left;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.roadmap-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

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

.roadmap-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--step-index) * 0.2s);
    position: relative;
    overflow: hidden;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.roadmap-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.roadmap-step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.roadmap-step:hover .step-icon i {
    transform: rotateY(-180deg);
    color: white;
}

.roadmap-step h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.roadmap-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .roadmap-steps {
        padding: 0 1rem;
    }

    .roadmap-steps::before {
        left: 20px;
    }

    .roadmap-step {
        width: calc(100% - 50px);
        margin: 1.5rem 0 1.5rem 50px !important;
    }

    .roadmap-step::before {
        left: -35px !important;
        right: auto !important;
    }

    .roadmap-step::after {
        left: -25px !important;
        right: auto !important;
        width: 25px;
    }

    .roadmap-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .brand-roadmap {
        padding: 3rem 1rem;
    }

    .roadmap-step {
        padding: 1.2rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .roadmap-title {
        font-size: 1.8rem;
    }
}

/* How We Work Page Styles */
.how-we-work-section {
    padding: 4rem 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

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

.process-step {
    background: white;
    padding: 2.5rem 2rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* Responsive adjustments for How We Work page */
@media screen and (max-width: 1024px) {
    .work-process {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .how-we-work-section {
        padding: 2rem 0;
    }
    
    .process-step {
        padding: 2rem 1.5rem 1.5rem;
        margin-top: 25px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .work-process {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
    
    .process-step {
        padding: 2rem 1.2rem 1.5rem;
        margin-top: 25px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .process-step p {
        font-size: 0.95rem;
    }
}

/* iPhone and modern mobile devices */
@media screen and (max-width: 430px) {
    .work-process {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.2rem 1.5rem;
        margin-top: 25px;
    }
    
    .step-icon {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .process-step p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: -22px;
    }
}

/* Larger phones like iPhone Pro Max */
@media screen and (min-width: 428px) and (max-width: 896px) {
    .work-process {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        padding: 2rem;
        gap: 3rem;
    }
    
    .process-step {
        padding: 2.5rem 2rem 2rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .process-step h3 {
        font-size: 1.4rem;
    }
    
    .process-step p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

.key-features {
    display: grid;
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    box-sizing: border-box;
}

.key-feature-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.key-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.key-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-content li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-content li:hover {
    background: #f0f2f5;
    transform: translateX(5px);
}

.feature-content li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .key-features {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 768px) {
    .key-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .key-feature-box {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .feature-content ul {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .key-features {
        gap: 1.8rem;
        padding: 1.5rem 1rem;
    }
    
    .key-feature-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.8rem 1.2rem;
    }
    
    .feature-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-content p,
    .feature-content li {
        font-size: 0.95rem;
    }
    
    .feature-content li {
        padding: 0.6rem 0.8rem;
    }
}

.office-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.office-details {
    text-align: center;
    margin-bottom: 3rem;
}

.office-details h3 {
    margin-bottom: 1.5rem;
}

.office-details p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.office-details strong {
    display: block;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Brands Slideshow Styles */
.brands-slideshow-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 60%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.05);
    touch-action: pan-y pinch-zoom;
    position: relative;
}

/* Add decorative elements */
.brands-slideshow-section::before,
.brands-slideshow-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.brands-slideshow-section::before {
    top: -100px;
    left: -100px;
}

.brands-slideshow-section::after {
    bottom: -100px;
    right: -100px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 1rem;
}

.header-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.header-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

.brands-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06),
                inset 0 0 0 1px rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    touch-action: pan-x;
    position: relative;
    z-index: 1;
}

.brand-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 1rem;
}

.brand-slide {
    min-width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: all 0.5s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.brand-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.brand-slide.active {
    transform: scale(1);
}

.brand-slide.active img {
    opacity: 1;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.slide-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev-brand {
    left: 20px;
}

.slide-nav.next-brand {
    right: 20px;
}

.brand-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

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

@media screen and (max-width: 768px) {
    .brand-slide img {
        height: 300px;
    }

    .slide-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.feature-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-slides {
    position: relative;
    width: 100%;
    height: 500px;
}

.brand-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.brand-slide.active {
    opacity: 1;
    visibility: visible;
}

.brand-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 2;
}

.brand-slide.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .brand-slides {
        height: 400px;
    }
    
    .slide-caption h3 {
        font-size: 1.4rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
}

.market-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.slide-caption {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 80%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(20px);
}

.brand-slide.active .slide-caption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 1rem auto;
}

@media screen and (max-width: 768px) {
    .slide-caption h3 {
        font-size: 1.4rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

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

    .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjusted max-width to better match video dimensions */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto;
    padding-top: 100%; /* Changed to square aspect ratio - adjust this value based on your video's actual dimensions */
}

.presentation-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the video */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed back to cover */
    background: transparent; /* Removed black background */
}

/* Add container padding for better spacing */
.video-section .container {
    padding: 0 1rem;
    max-width: 800px; /* Match container to video width */
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 2rem 0;
    }
    
    .video-container {
        border-radius: 15px;
        margin: 0 auto;
    }
}

.brand-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.view-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.view-products-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s ease;
}

.view-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.view-products-btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.view-products-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-products-btn:hover i {
    transform: scale(1.2);
}

/* Brand Actions Container */
.brand-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .view-products-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .view-products-btn i {
        font-size: 1rem;
    }
}

/* Update the brand stats section styles */
.brand-stats {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.brand-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    transform: skewY(-5deg);
    transform-origin: top left;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--stat-index) * 0.2s);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.stat-card:hover .stat-icon i {
    transform: rotateY(-180deg);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: countUp 2s ease forwards;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

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

/* Add this script to your brands.html */
<script>
    // Animate stats when in view
    const statsObserver = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.style.animationPlayState = 'running';
                
                // Animate numbers
                const numberElement = entry.target.querySelector('.stat-number');
                if (numberElement) {
                    const finalNumber = parseInt(numberElement.getAttribute('data-number'));
                    animateNumber(numberElement, finalNumber);
                }
            }
        });
    }, { threshold: 0.2 });

    document.querySelectorAll('.stat-card').forEach((card, index) => {
        card.style.setProperty('--stat-index', index);
        card.style.animationPlayState = 'paused';
        statsObserver.observe(card);
    });

    function animateNumber(element, final) {
        let current = 0;
        const duration = 2000; // 2 seconds
        const step = final / (duration / 16); // Update every 16ms (60fps)
        
        function update() {
            current += step;
            if (current < final) {
                element.textContent = Math.round(current);
                requestAnimationFrame(update);
            } else {
                element.textContent = final;
            }
        }
        
        update();
    }
</script>

/* Update slideshow styles for better mobile compatibility */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .slideshow-container {
        border-radius: 10px;
        margin: 1rem auto;
    }

    .slide-caption {
        padding: 0.8rem;
    }

    .slide-caption h3 {
        font-size: 1rem;
    }

    .slide-caption p {
        font-size: 0.8rem;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Updated slideshow styles */
.work-slideshows {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f8f9fa;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
}

/* Navigation buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover, .next-btn:hover {
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Dots navigation */
.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

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

/* Loading indicator */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .slideshow-container {
        border-radius: 10px;
        margin: 1rem auto;
    }

    .slide-caption {
        padding: 0.8rem;
    }

    .slide-caption h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .slide-caption p {
        font-size: 0.8rem;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Add these styles for the market display section */
.market-display-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

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

.section-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.features-list i {
    color: #3498db;
    font-size: 1.2rem;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .section-content h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-list {
        flex-direction: column;
        gap: 1rem;
    }

    .features-list li {
        font-size: 1rem;
    }
}

/* Update the slide caption styles for better readability */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slide-caption h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #3498db;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.slide-caption p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile adjustments for captions */
@media (max-width: 768px) {
    .slide-caption {
        padding: 1rem;
    }

    .slide-caption h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Hover effect for better interaction */
.slide:hover .slide-caption {
    transform: translateY(-5px);
}

/* Update the slideshow styles for better mobile responsiveness */
.work-slideshows {
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: 1rem auto;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Adjust aspect ratio for mobile */
}

/* Mobile-specific adjustments */
@media screen and (max-width: 428px) { /* iPhone Pro models */
    .slides {
        padding-bottom: 100%; /* Square aspect ratio for mobile */
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Change to contain to prevent cropping */
        object-position: center;
    }

    .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.8rem;
        background: rgba(0,0,0,0.7);
    }

    .slide-caption h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .slide-caption p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .dots-container {
        bottom: 5px;
    }

    .dot {
        width: 6px;
        height: 6px;
        margin: 0 4px;
    }
}

/* Reset slideshow styles */
.work-slideshows {
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: 1rem auto;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slides {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* iPhone Pro specific fixes */
@media screen and (max-width: 428px) {
    .market-display-section {
        padding: 2rem 0;
    }
    
    .slideshow-container {
        margin: 0.5rem auto;
        height: auto;
    }
    
    .slides {
        height: auto;
        padding-bottom: 0;
    }
    
    .slide {
        position: relative;
        height: auto;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 300px; /* Limit height on mobile */
        object-fit: cover;
    }
    
    .slide-caption {
        position: relative;
        padding: 1rem;
        background: rgba(0,0,0,0.8);
    }
    
    /* Navigation controls */
    .prev-btn, .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    /* Dots navigation */
    .dots-container {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 5;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .dot.active {
        background: white;
    }
}

/* Update slideshow styles to match Iconic UAE Landmarks format */
.market-display-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.slideshow-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.slideshow-description h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.slideshow-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slides {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Navigation controls */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Dots navigation */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

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

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

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .slideshow-description h2 {
        font-size: 2rem;
    }

    .slideshow-description p {
        font-size: 1rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }
}

/* Display Sections Styling */
.display-sections {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.display-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 1rem;
}

.display-section:last-child {
    margin-bottom: 0;
}

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

.display-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.display-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.gallery-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media screen and (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .display-header h2 {
        font-size: 2rem;
    }

    .display-header p {
        font-size: 1rem;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Enhanced Slideshow Styles */
.display-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px);
    transition: transform 0.5s ease;
}

.slideshow-container:hover {
    transform: perspective(1000px) translateY(-5px);
}

.slides {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9) translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: scale(0.9) translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.slide.active img {
    filter: brightness(1);
}

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

.slide.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced Navigation Controls */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Enhanced Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 15px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.dot.active::after {
    opacity: 1;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.progress {
    width: 0%;
    height: 100%;
    background: white;
    transition: width 5s linear;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .slides {
        height: 400px;
    }

    .slide-caption {
        padding: 1.5rem;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dots-container {
        bottom: 15px;
        padding: 8px 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}