/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #0066CC;
    --primary-dark: #003366;
    --primary-light: #0099FF;
    --secondary-color: #2980b9;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-medium: #5d6d7e;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --bg-medium: #f8f9fa;
    --bg-dark: #e9ecef;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
}

/* Scroll Reveal Animation */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    animation: reveal 0.8s ease forwards;
}

/* Delay Classes for Animation */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav ul li a:hover {
    color: #3498db;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* Services Dropdown Menu */
.nav ul .dropdown-menu {
    display: block;
    width: 220px;
    max-width: 100%;
}

.nav ul .dropdown-menu li {
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.nav ul .dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-align: left;
    float: none;
    margin: 0;
}

/* Ensure no horizontal layout */
.dropdown-menu * {
    float: none !important;
    display: block !important;
    width: 100% !important;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    background-size: 400% 400%;
    color: #fff;
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    animation: gradientShift 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 100, 255, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    animation: backgroundShift 20s infinite alternate ease-in-out;
}

/* Enhanced Animated Particles Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(0, 210, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: particleFloat 15s infinite ease-in-out;
}

/* Animated Geometric Shapes */
.hero .geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: floatingShapes 20s infinite linear;
}

.hero .shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero .shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: -10s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero .shape:nth-child(4) {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 15%;
    animation-delay: -15s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,224C96,224,192,224,288,202.7C384,181,480,139,576,117.3C672,96,768,96,864,112C960,128,1056,160,1152,181.3C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    animation: shapeMove 15s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-feature i {
    font-size: 28px;
    color: #FFD700;
    animation: pulse 2s infinite;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.25rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4), 0 5px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.5), 0 10px 25px rgba(0, 102, 204, 0.4);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.secondary-button:hover::before {
    width: 100%;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3), 0 10px 25px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-color);
}

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

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-10px);
    }
    50% {
        transform: translateX(-10px) translateY(10px);
    }
    75% {
        transform: translateX(5px) translateY(5px);
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
    }
}

@keyframes shapeMove {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes floatingShapes {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) translateY(-20px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(0) translateY(-40px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-20px) translateY(-20px) rotate(270deg);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 25% 25%, 75% 75%, 50% 50%;
    }
    50% {
        background-position: 75% 75%, 25% 25%, 30% 70%;
    }
    100% {
        background-position: 50% 50%, 25% 25%, 70% 30%;
    }
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.section-header h2:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    border-radius: 2px;
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
    position: relative;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.service-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #3498db;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    background-color: transparent;
}

.learn-more:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Service Details */
.service-details {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Service Stats */
.service-stats {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.service-stats h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background-color: #fff;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.overview-text p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.company-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.company-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
}

.company-feature i {
    color: #3498db;
    font-size: 20px;
}

.overview-image .image-gallery {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-image .main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.overview-image .image-grid {
    position: absolute;
    bottom: -60px;
    right: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.overview-image .sub-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    display: block;
}

.overview-image .sub-image:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure overview content has enough space for the image grid */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .overview-image .image-grid {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, #003366 0%, #0066CC 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

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

/* Add floating particles effect */
.statistics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.18), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(3px 3px at 50px 120px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 180px 100px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 20px 150px, rgba(255, 255, 255, 0.16), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: floatingParticles 20s infinite linear;
    opacity: 0.8;
}

@keyframes floatingParticles {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-200px) translateY(-200px);
        opacity: 0.8;
    }
}

/* Enhanced stat item hover effect */
.stat-item:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

/* Number counter animation */
@keyframes counter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: counter 2s ease-out forwards;
}

.statistics-container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #fff, #3498db);
    animation: gradientShift 3s infinite;
}

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

/* Add animated icon background */
.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.stat-item:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    display: block;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    animation: counter 2s ease-out;
    position: relative;
    z-index: 2;
}

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

.stat-number span {
    font-size: 36px;
    font-weight: 700;
    margin-left: 8px;
}

.stat-title {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Enhance Section Header for Statistics */
.statistics .section-header h2 {
    color: #fff;
    font-size: clamp(2.8rem, 7vw, 4rem);
}

.statistics .section-header p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 800px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image content";
}

.service-detail-item {
    grid-template-areas: "content image";
}

.service-detail-content {
    grid-area: content;
}

.service-detail-image {
    grid-area: image;
}

.service-detail-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.service-detail-content ul li {
    color: #7f8c8d;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3498db;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

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

/* Service Benefits */
.service-benefits {
    padding: 100px 0;
    background-color: #fff;
}



.learn-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: #2980b9;
    gap: 10px;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Industries */
.industries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.industry-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #3498db;
}

.industry-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.industry-icon i {
    font-size: 40px;
    color: #fff;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
}

.industry-card:hover h3 {
    color: #3498db;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.benefit-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.testimonials .section-header h2 {
    color: #fff;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Georgia', serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-avatar {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-avatar .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar .avatar {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-author p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: normal;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .primary-button {
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
}

.cta-content .primary-button:hover {
    background-color: #2980b9;
    color: #fff;
    border-color: #2980b9;
}

/* Service Details Styles */
.service-details {
    padding: 80px 0;
    background-color: #fff;
}

.service-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-main-content {
    flex: 1;
    min-width: 600px;
}

.service-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.service-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-overview,
.service-features,
.service-process,
.service-benefits,
.service-compatibility {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-overview h3,
.service-features h3,
.service-process h3,
.service-benefits h3,
.service-compatibility h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 24px;
}

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

.service-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.compatibility-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.compatibility-item i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 15px;
}

.sidebar-card {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.sidebar-card li i {
    color: #3498db;
    position: absolute;
    left: 0;
}

.sidebar-card .primary-button {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
}

.related-services li a {
    text-decoration: none;
    color: #34495e;
    transition: color 0.3s ease;
}

.related-services li a:hover {
    color: #3498db;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #3498db;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info li i {
    color: #3498db;
    margin-top: 5px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    flex: 1;
    font-size: 14px;
}

.newsletter-form button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image .image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    margin-top: 50px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f1f3f5;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #3498db;
}

.faq-answer {
    padding: 0 20px;
    display: none;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    margin: 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Locations Page */
.locations-overview {
    padding: 100px 0;
    background-color: #fff;
}

.locations-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-stat {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.location-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.location-stat .stat-label {
    font-size: 16px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.europe-locations,
.americas-locations {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.europe-locations {
    background-color: #fff;
}

.continent-title {
    font-size: 32px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.section-header h2:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    border-radius: 2px;
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
    position: relative;
}

/* Ensure all location cards have consistent height */
.location-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.location-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-header i {
    font-size: 24px;
}

.location-header h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.location-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ensure location info items are properly spaced */
.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    min-width: calc(50% - 10px);
    flex-shrink: 0;
}

.info-item i {
    color: #3498db;
    font-size: 16px;
}

/* Ensure address and contact information are properly formatted */
.location-address {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    flex-shrink: 0;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.location-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    margin: 0;
}

.location-contact i {
    color: #3498db;
}

.expansion {
    padding: 100px 0;
    background-color: #fff;
}

.expansion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expansion-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.expansion-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.expansion-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.expansion-text li {
    margin-bottom: 10px;
    color: #7f8c8d;
    line-height: 1.8;
}

.location-map {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.map-placeholder {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #fff;
}

.mv-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

.mv-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mv-item li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-item li strong {
    color: #3498db;
    margin-right: 10px;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 0 auto;
    max-width: 100%;
}

.contact-form-section,
.contact-info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: #3498db;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Warehouse Services Page */
.warehouse-features {
    padding: 100px 0;
    background-color: #fff;
}

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

.feature-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #fff;
}

.feature-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

.warehouse-types {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.types-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.type-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.type-image {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.type-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.type-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.type-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-item li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.type-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.inventory-management {
    padding: 100px 0;
    background-color: #fff;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.management-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.management-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.management-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.management-text li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.management-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: #3498db;
    border-radius: 50%;
}

.management-text li strong {
    color: #2c3e50;
}

.management-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.benefit-item i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 25px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Logistics Services Page */
.logistics-overview {
    padding: 100px 0;
    background-color: #fff;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.logistics-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.logistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.logistics-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #fff;
}

.logistics-card i {
    font-size: 24px;
    color: #fff;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

.logistics-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.logistics-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.logistics-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logistics-item i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.logistics-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.logistics-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Transportation Modes */
.transportation-modes {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.modes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mode-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.mode-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.mode-header i {
    font-size: 36px;
    color: #3498db;
}

.mode-header h3 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.mode-details {
    display: grid;
    gap: 30px;
}

.mode-features, .mode-benefits {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.mode-features h4, .mode-benefits h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.mode-features ul, .mode-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mode-features li, .mode-benefits li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.mode-features li::before, .mode-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Supply Chain Visibility */
.supply-chain {
    padding: 100px 0;
    background-color: #fff;
}

.supply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.supply-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.supply-text p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.supply-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.supply-text ul li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.supply-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.supply-image .image-placeholder {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Customs & Compliance */
.customs-compliance {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.compliance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.compliance-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.compliance-item i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.compliance-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.compliance-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

/* Value-Added Services Page */
.vas-overview {
    padding: 100px 0;
    background-color: #fff;
}

.vas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vas-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.vas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
    background-color: #fff;
}

.vas-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #fff;
}

.vas-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.vas-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.vas-details {
    padding: 100px 0;
    background-color: #fff;
}

.vas-item {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.vas-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.vas-item.reverse {
    grid-template-areas: "image text";
}

.vas-item.reverse .vas-text {
    grid-area: text;
}

.vas-item.reverse .vas-image {
    grid-area: image;
}

.vas-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.vas-text {
    flex: 1;
}

.vas-text p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vas-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vas-text li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.vas-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.vas-image {
    flex: 1;
}

.vas-image .image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}

/* Quality Control Services */
.quality-control {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.qc-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.qc-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.qc-item i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 25px;
}

.qc-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.qc-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Returns Management */
.returns-management {
    padding: 100px 0;
    background-color: #fff;
}

.rm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rm-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.rm-text p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.rm-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-text li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.rm-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.rm-text strong {
    color: #2c3e50;
}

.rm-image {
    padding: 20px;
}

.rm-image .image-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Responsive Design */
/* Main Responsive Design for all pages */
@media (max-width: 768px) {
    /* General Layout Adjustments */
    .management-content,
    .service-detail-item,
    .service-detail-item.reverse,
    .industry-solution-item,
    .industry-solution-item.reverse,
    .vas-item,
    .rm-content,
    .expansion-content,
    .story-content,
    .overview-content,
    .contact-content,
    .supply-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Grid Layouts */
    .features-grid,
    .types-content,
    .benefits-grid,
    .modes-content,
    .compliance-content,
    .logistics-grid,
    .vas-grid,
    .services-grid,
    .industries-grid,
    .locations-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Header Responsive */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
        align-items: flex-start;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .nav ul li {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #f9f9f9;
        padding: 10px 0 10px 20px;
    }
    
    /* Hero Section */
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Services Overview */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Company Overview */
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Locations Page */
    .locations-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-stat .stat-number {
        font-size: 36px;
    }
    
    /* About Us Page */
    .mv-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .achievements-timeline::before {
        left: 15px;
        margin-left: 0;
    }
    
    .timeline-item {
        padding: 20px 0 20px 50px;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .timeline-year {
        left: -10px;
        font-size: 16px;
        width: 70px;
    }
    
    /* Value-Added Services */
    .vas-item {
        margin-bottom: 60px;
    }
    
    .vas-item.reverse {
        grid-template-areas: "text" "image";
    }
    
    /* Mission & Vision */
    .mv-item li {
        justify-content: flex-start;
        padding-left: 20px;
    }
}

.social-media {
    margin-bottom: 40px;
}

.social-media h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.emergency-contact {
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    width: 100%;
}

.emergency-contact h4 {
    font-size: 18px;
    color: #856404;
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-contact p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.emergency-phone {
    font-size: 24px;
    font-weight: 700;
    color: #d68910;
    margin-top: 10px;
}



/* Responsive Design */
/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Our Team */
.our-team {
    padding: 100px 0;
    background-color: #fff;
}

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

.team-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.team-image {
    margin-bottom: 25px;
}

.team-image .image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .team-image .image-placeholder {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-card p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
}

/* Our Achievements */
.achievements {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

/* Timeline line */
.achievements-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3498db;
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: 20px;
}

.timeline-item {
    padding: 20px 0 20px 60px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

/* Timeline year dot */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 4px solid #3498db;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    left: 20px;
    margin-left: -12px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #3498db;
    background-color: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80px;
    text-align: center;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

.nav.active {
    display: block;
}


@media (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-card,
    .industry-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}