:root {
    --primary-color: #003E73;
    --secondary-color: #FF9F28;
    --tertiary-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #004a8a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    --shadow-light: 0 4px 15px rgba(0, 62, 115, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 62, 115, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 62, 115, 0.2);
}

/* ========================================== Global Styles ========================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}
.text-align{
    text-align: justify;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}


.btn {
    padding: 12px 12px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--tertiary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================== Clean Premium Carousel ========================================== */

.hero-premium {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease-in-out;
}

/* Premium Carousel Controls */
.premium-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 15;
    opacity: 0.7;
}

.premium-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    color: #fff;
}

.carousel-control-prev.premium-arrow {
    left: 30px;
}

.carousel-control-next.premium-arrow {
    right: 30px;
}

.premium-arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Carousel Indicators */
.premium-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}

.premium-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-indicators button.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

.premium-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Enhanced Carousel Fade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Smooth Image Scaling on Hover */
.carousel-item:hover .carousel-img {
    transform: scale(1.02);
}

/* ========================================== Stats Section ========================================== */

.stats-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 159, 40, 0.2);
    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: 2rem;
    color: var(--secondary-color);
}

.stat-item:hover .stat-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.stat-item:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ========================================== About Section ========================================== */

/* About Section - Premium Redesign */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.about-img-wrapper {
    position: relative;
    z-index: 2;
}

.about-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 62, 115, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 62, 115, 0.3);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 62, 115, 0.1) 0%, rgba(255, 159, 40, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-img-main:hover .img-overlay {
    opacity: 1;
}

.about-img-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
}

.experience-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 159, 40, 0.4);
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.experience-badge:hover::before {
    left: 100%;
}

.badge-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    padding-left: 2rem;
    position: relative;
    z-index: 2;
}

.about-text {
    margin: 2rem 0;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 62, 115, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 62, 115, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 159, 40, 0.4);
}

.feature-icon i {
    color: white;
    font-size: 1.4rem;
}

.feature-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.about-cta .btn:hover::before {
    left: 100%;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.3);
}

.about-cta .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 62, 115, 0.4);
    color: white;
}

.about-cta .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.1);
}

.about-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 62, 115, 0.3);
}

.about-cta .btn i {
    font-size: 1rem;
}

/* ========================================== Industries Section ========================================== */

.industries-section {
    padding: 6rem 0;
    background: white;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card:hover .industry-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

.industry-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.industry-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 1rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-overlay {
    transform: translateY(0);
}

/* ========================================== Services Section ========================================== */

.services-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 1.5rem 2.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-hover {
    transform: translateY(0);
}

/* ========================================== Why Choose Section ========================================== */

.why-choose-section {
    padding: 6rem 0;
    background: white;
}

.why-choose-features {
    margin-top: 2rem;
}

.why-choose-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-features .feature-item:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    transform: translateX(10px);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon i {
    color: white;
    font-size: 1.5rem;
}

.floating-card h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.floating-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================== CTA Section ========================================== */

.cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ========================================== Responsive Design ========================================== */

@media (max-width: 768px) {
    .premium-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev.premium-arrow {
        left: 20px;
    }

    .carousel-control-next.premium-arrow {
        right: 20px;
    }

    .premium-indicators {
        bottom: 20px;
        gap: 12px;
    }

    .premium-indicators button {
        width: 12px;
        height: 12px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-cta {
        flex-direction: column;
        margin-top: 2rem;
    }

    .about-cta .btn {
        width: 100%;
        min-width: auto;
    }

    .about-img-main img {
        height: 400px;
    }

    .about-features {
        margin: 2rem 0;
    }

    .feature-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .cta-buttons {
        margin-top: 2rem;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev.premium-arrow {
        left: 15px;
    }

    .carousel-control-next.premium-arrow {
        right: 15px;
    }

    .premium-indicators {
        bottom: 15px;
        gap: 10px;
    }

    .premium-indicators button {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-img-main img {
        height: 300px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .about-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Smooth Image Scaling on Hover */
.carousel-item:hover .carousel-img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-img {
        height: unset;
    }

    .carousel-control-prev.premium-arrow {
        left: 20px;
    }

    .carousel-control-next.premium-arrow {
        right: 20px;
    }

    .premium-indicators {
        bottom: 20px;
        gap: 12px;
    }

    .premium-indicators button {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .premium-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev.premium-arrow {
        left: 15px;
    }

    .carousel-control-next.premium-arrow {
        right: 15px;
    }

    .premium-indicators {
        bottom: 15px;
        gap: 10px;
    }

    .premium-indicators button {
        width: 10px;
        height: 10px;
    }
}

/* =================================================== */

.about-section {
    background: #fff;
}

.about-subtitle {
    font-size: 0.9rem;
    color: #0064B4;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
}

.about-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.highlight-icon {
    width: 10px;
    height: 10px;
    background: #F28705;
    border-radius: 50%;
    margin-top: 6px;
}

.about-img-wrapper img {
    border-radius: 10px;
}

/* =================================== */
.industries-section {
    background: #f8f9fc;
}

.about-section .section-subtitle {
    color: #0064B4;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.section-text {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.industry-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.industry-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.industry-icon img {
    width: 55px;
    margin-bottom: 15px;
}

.industry-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.industry-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ======================================= */
.services-section {
    background: #ffffff;
}

.industries-section .section-subtitle {
    color: #0064B4;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.section-text {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    text-align: left;
    transition: all .3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}

.service-icon img {
    width: 50px;
    margin-bottom: 15px;
}

.service-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================== Premium Footer ========================================== */

.premium-footer {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 159, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 40, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-color) 0%, #002a4f 100%);
    z-index: 1;
}

.footer-content {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    height: 100%;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Links */
.footer-social {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 159, 40, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Info */
.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.1rem;
}

.contact-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--secondary-color);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form form {
    gap: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    color: white;
    backdrop-filter: blur(10px);
    flex: 1;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 40, 0.25);
    color: white;
}

.newsletter-btn {
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 159, 40, 0.3);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .newsletter-wrapper {
        padding: 1.5rem;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ========================================== About Page Premium Styles ========================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    /* height: 70vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002a4f 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 159, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 40, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.hero-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.hero-stats .stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Company Story Section */
.company-story {
    padding: 6rem 0;
    background: var(--bg-light);
}

.story-content {
    padding-right: 2rem;
}

.story-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1.5rem;
}

.highlight-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-light);
    margin: 0;
}

.story-visual {
    position: relative;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-visual:hover .main-image img {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    /* position: absolute; */
    /* top: 30px; */
    /* right: -30px; */
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon i {
    color: white;
    font-size: 1.3rem;
}

.floating-card h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.floating-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gradient-secondary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    min-width: 150px;
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision Values - Premium Design */
.mission-vision {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #003E73 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.mission-vision .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.mission-vision .section-subtitle {
    color: var(--secondary-color);
}

.mission-vision .section-title {
    color: white;
}

.mission-vision .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.mvv-container {
    position: relative;
    z-index: 2;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0;
    height: 500px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 159, 40, 0.3);
}

.mvv-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.mvv-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.mvv-card:hover .mvv-pattern {
    transform: translateX(100%);
}

.mvv-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.mission-card .mvv-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.vision-card .mvv-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.values-card .mvv-icon {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    box-shadow: 0 10px 30px rgba(254, 202, 87, 0.3);
}

.mvv-icon i {
    font-size: 2.2rem;
    color: white;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.mvv-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.mvv-highlight {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 159, 40, 0.2);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    margin-top: auto;
}

.mvv-highlight span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.values-list {
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-bottom: none;
}

.value-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 159, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.value-icon i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.value-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Core Expertise Section */
.core-expertise {
    padding: 6rem 0;
    background: var(--bg-light);
}

.expertise-grid .expertise-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    margin-bottom: 2rem;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-card:hover .card-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Industries & Standards - Premium Design */
.industries-standards {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.industries-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.industries-showcase {
    position: relative;
    z-index: 2;
}

.industry-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.industry-item:hover {
    transform: translateX(15px);
}

.industry-visual {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    position: relative;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.industry-item:hover .industry-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 159, 40, 0.3);
}

.industry-icon i {
    color: white;
    font-size: 1.8rem;
}

.industry-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.industry-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);
    transition: left 0.6s ease;
}

.industry-item:hover .industry-line::after {
    left: 100%;
}

.industry-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.industry-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.industry-stats {
    display: inline-block;
}

.industry-stats span {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Standards Section */
.standards-showcase {
    position: relative;
    z-index: 2;
}

.standards-grid {
    display: grid;
    gap: 1.5rem;
}

.standard-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.standard-card:hover::before {
    transform: scaleX(1);
}

.standard-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 62, 115, 0.15);
}

.standard-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.standard-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.standard-card:hover .standard-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    transform: scale(1.1);
}

.standard-icon i {
    color: white;
    font-size: 1.1rem;
}

.standard-header h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.standard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 62, 115, 0.2);
    transition: all 0.3s ease;
}

.tag.featured {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
    color: white;
    border-color: var(--secondary-color);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Why Choose About */
.why-choose-about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.advantages-grid .advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-bottom: 2rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleY(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.advantage-number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.advantage-content {
    padding-top: 1rem;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: white;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Team Leadership */
.team-leadership {
    padding: 6rem 0;
    background: white;
}

.leadership-stats {
    margin-top: 3rem;
}

.stat-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-10px);
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-card .stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 20px;
    background: var(--gradient-primary);
    color: white !important;
    /* position: relative; */
    /* overflow: hidden; */
    border-radius: 20px;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.about-cta .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.about-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-cta .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: unset;
        padding: 20px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 1.5rem;
    }

    .story-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .floating-elements {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-cta .cta-buttons {
        margin-top: 2rem;
        justify-content: center;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-cta .cta-title {
        font-size: 2rem;
    }

    .mvv-card,
    .expertise-card,
    .advantage-card {
        padding: 2rem;
    }
}

/* Enhanced Mobile Responsive Design - Updated for Bootstrap 5 */
@media (max-width: 991.98px) {

    /* Header adjustments */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand img {
        max-height: 50px;
    }

    /* Hero section mobile */
    .hero-premium {
        height: unset;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 1.5rem;
        margin: 0 auto;
        max-width: 200px;
    }

    /* Remove custom grid conflicts */
    .expertise-grid,
    .advantages-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {

    /* Typography mobile */
    .section-title {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Stats section mobile */
    .stats-section .row {
        text-align: center;
    }

    .stat-item {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    /* About section mobile */
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-img-overlay {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }

    .experience-badge {
        position: static !important;
        display: inline-block;
        margin: 1rem auto;
    }

    .floating-elements {
        display: none !important;
    }

    /* Button groups mobile - Bootstrap 5 compatible */
    .about-cta {
        margin-top: 2rem;
    }

    .about-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .cta-buttons {
        margin-top: 2rem;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    /* Industries and services mobile */
    .industry-card,
    .service-card,
    .expertise-card,
    .advantage-card {
        margin-bottom: 1.5rem;
    }

    /* Why choose section mobile */
    .why-choose-features .feature-item {
        text-align: center;
        flex-direction: column;
    }

    .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Newsletter mobile */
    .newsletter-form form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Footer mobile */
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 1rem;
    }

    /* Carousel mobile */
    .premium-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev.premium-arrow {
        left: 20px;
    }

    .carousel-control-next.premium-arrow {
        right: 20px;
    }

    .premium-indicators {
        bottom: 20px;
        gap: 12px;
    }

    .premium-indicators button {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {

    /* Typography extra small mobile */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .section-description {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem !important;
    }

    /* Hero stats extra small */
    .hero-stats .stat-item {
        padding: 1rem;
    }

    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }

    /* Content spacing */
    .section-header {
        margin-bottom: 2rem;
    }

    .story-highlights,
    .about-features,
    .why-choose-features {
        margin-top: 1.5rem;
    }

    .highlight-item,
    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon,
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Button adjustments - Bootstrap 5 compatible */
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .about-cta .btn,
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        color: white;
    }

    /* Newsletter extra small */
    .newsletter-wrapper {
        padding: 1.5rem;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    /* Card adjustments */
    .mvv-card,
    .expertise-card,
    .advantage-card,
    .industry-card,
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Carousel extra small */
    .premium-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev.premium-arrow {
        left: 15px;
    }

    .carousel-control-next.premium-arrow {
        right: 15px;
    }

    .premium-indicators {
        bottom: 15px;
        gap: 10px;
    }

    .premium-indicators button {
        width: 10px;
        height: 10px;
    }

    /* About page specific mobile */
    .about-hero {
        height: unset;
    }

    /* Mission Vision Values Mobile */
    .mission-vision {
        padding: 4rem 0;
    }

    .mvv-card {
        height: auto;
        margin-bottom: 2rem;
    }

    .mvv-content {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .mvv-icon i {
        font-size: 1.8rem;
    }

    .mvv-title {
        font-size: 1.4rem;
    }

    .mvv-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Industries Standards Mobile */
    .industries-standards {
        padding: 4rem 0;
    }

    .industry-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .industry-visual {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .industry-line {
        width: 2px;
        height: 30px;
        margin: 1rem 0;
    }

    .industry-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .standard-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .standard-tags {
        justify-content: center;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .mvv-card,
    .expertise-card,
    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -5px;
        right: 15px;
    }

    .advantage-content {
        padding-top: 0.5rem;
    }
}

/* Bootstrap 5 responsive utilities fixes */
@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row>* {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Ensure buttons work properly on mobile */
    .btn {
        min-height: 44px;
        /* Touch target size */
        touch-action: manipulation;
    }

    .btn:active {
        transform: scale(0.98);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .card:hover {
        transform: none;
    }

    .industry-card:hover,
    .service-card:hover,
    .expertise-card:hover,
    .advantage-card:hover {
        transform: none;
    }
}

/* Ensure proper spacing on all mobile devices */
.section-padding {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 1.5rem 0;
    }
}

/* ========================================== Oil & Gas Page Premium Styles ========================================== */

/* Oil & Gas Hero Section */
.oil-gas-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002a4f 100%);
}

.oil-gas-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="oil-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,159,40,0.1)"/><circle cx="10" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="10" r="1.5" fill="rgba(255,159,40,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23oil-pattern)"/></svg>');
    z-index: 1;
}

.oil-gas-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 159, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 40, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.oil-gas-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.oil-gas-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.oil-gas-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.oil-gas-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.oil-gas-hero .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.oil-gas-hero .breadcrumb-item.active {
    color: var(--secondary-color);
}

.oil-gas-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.oil-gas-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.oil-gas-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.oil-gas-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.oil-gas-hero .hero-cta .btn-primary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
}

.oil-gas-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 159, 40, 0.4);
    color: white;
}

.oil-gas-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.oil-gas-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-card-og {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.service-card-og::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-og:hover::before {
    transform: scaleX(1);
}

.service-card-og:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 159, 40, 0.3);
}

.service-icon-og {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-og i {
    font-size: 2rem;
    color: white;
}

.service-card-og:hover .service-icon-og {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-card-og h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-og p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-og {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-og li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-features-og li:last-child {
    border-bottom: none;
}

.service-features-og li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Detailed Services Section */
.detailed-services {
    padding: 6rem 0;
    background: white;
}

.service-detail {
    margin-bottom: 5rem;
    position: relative;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.detail-content {
    padding: 2rem 0;
}

.detail-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.detail-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-detail:hover .detail-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.detail-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.detail-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-features {
    margin-top: 2rem;
}

.feature-item-og {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-og:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.feature-item-og i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-og span {
    color: var(--text-dark);
    font-weight: 500;
}

.detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail:hover .detail-image img {
    transform: scale(1.05);
}

/* Standards Section */
.standards-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.standard-item-og {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.standard-item-og:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 159, 40, 0.3);
}

.standard-icon-og {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-og i {
    font-size: 2rem;
    color: white;
}

.standard-item-og:hover .standard-icon-og {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

.standard-item-og h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-og p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Project Portfolio Section */
.project-portfolio {
    padding: 6rem 0;
    background: white;
}

.project-card-og {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.project-card-og:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 159, 40, 0.3);
}

.project-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    position: relative;
}

.project-header h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Oil & Gas Section */
.why-choose-og {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-content {
    padding-right: 2rem;
}

.why-features {
    margin-top: 2rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-og:hover .why-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Oil & Gas CTA Section */
.cta-og {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-og::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-light:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 159, 40, 0.4);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Oil & Gas Page Responsive Design */
@media (max-width: 768px) {
    .oil-gas-hero {
        height: 60vh;
        padding: 2rem 0;
    }

    .oil-gas-hero .hero-title {
        font-size: 2.5rem;
    }

    .oil-gas-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .oil-gas-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .oil-gas-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .image-overlay {
        position: static;
        margin-top: 1rem;
        background: white;
        border: 1px solid rgba(0, 62, 115, 0.1);
    }

    .project-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .detail-content {
        padding: 1rem 0;
    }

    .detail-content h3 {
        font-size: 1.6rem;
    }

    .service-detail {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .oil-gas-hero .hero-title {
        font-size: 2rem;
    }

    .oil-gas-hero .hero-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .service-card-og,
    .standard-item-og,
    .project-card-og {
        padding: 1.5rem;
    }

    .detail-icon {
        width: 70px;
        height: 70px;
    }

    .detail-icon i {
        font-size: 2rem;
    }

    .detail-content h3 {
        font-size: 1.4rem;
    }

    .why-image img {
        height: 300px;
    }

    .image-overlay {
        padding: 1rem;
    }

    .overlay-content h4 {
        font-size: 1.1rem;
    }

    .project-stats .stat-number {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations for Oil & Gas page */
@media (hover: none) and (pointer: coarse) {

    .service-card-og:hover,
    .standard-item-og:hover,
    .project-card-og:hover,
    .why-feature:hover,
    .feature-item-og:hover {
        transform: none;
    }

    .service-card-og:active,
    .standard-item-og:active,
    .project-card-og:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================== Petrochemical & Fertilizer Page Premium Styles ========================================== */

/* Petrochemical Hero Section */
.petrochem-hero {
    /* position: relative; */
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d72 100%);
}

.petrochem-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chem-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="rgba(255,159,40,0.1)"/><circle cx="5" cy="35" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="35" cy="5" r="2" fill="rgba(255,159,40,0.08)"/><path d="M10,10 L30,30 M30,10 L10,30" stroke="rgba(255,159,40,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23chem-pattern)"/></svg>');
    z-index: 1;
}

.petrochem-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(255, 159, 40, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 159, 40, 0.12) 0%, transparent 50%);
    z-index: 2;
}

.petrochem-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.petrochem-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.petrochem-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.petrochem-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.petrochem-hero .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.petrochem-hero .breadcrumb-item.active {
    color: var(--secondary-color);
}

.petrochem-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.petrochem-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.petrochem-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.petrochem-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.petrochem-hero .hero-cta .btn-primary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
}

.petrochem-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 159, 40, 0.4);
    color: white;
}

.petrochem-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.petrochem-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Petrochemical Services Overview Section */
.service-card-pc {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.service-card-pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-pc:hover::before {
    transform: scaleX(1);
}

.service-card-pc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(40, 167, 69, 0.3);
}

.service-icon-pc {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d72 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-pc i {
    font-size: 2rem;
    color: white;
}

.service-card-pc:hover .service-icon-pc {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-pc h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-pc p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-pc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-pc li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-features-pc li:last-child {
    border-bottom: none;
}

.service-features-pc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Petrochemical Detail Features */
.feature-item-pc {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
    padding: 1rem;
    background: #fefefe;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-pc:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.feature-item-pc i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-pc span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Petrochemical Standards Section */
.standard-item-pc {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.standard-item-pc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(40, 167, 69, 0.3);
}

.standard-icon-pc {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d72 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-pc i {
    font-size: 2rem;
    color: white;
}

.standard-item-pc:hover .standard-icon-pc {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scale(1.1);
}

.standard-item-pc h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-pc p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Petrochemical Project Portfolio Section */
.project-card-pc {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.project-card-pc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(40, 167, 69, 0.3);
}

.project-card-pc .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d72 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.project-card-pc .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-card-pc .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-pc .project-content {
    padding: 2rem;
}

.project-card-pc .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-card-pc .project-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.project-card-pc .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-pc .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-pc .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Petrochemical Section */
.why-choose-pc {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-pc .why-content {
    padding-right: 2rem;
}

.why-choose-pc .why-features {
    margin-top: 2rem;
}

.why-choose-pc .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-choose-pc .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-pc .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-pc .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-pc .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-pc .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-pc .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-pc:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-pc .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-pc .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-pc .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Petrochemical CTA Section */
.cta-pc {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d72 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pc-cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pc-cta-dots)"/></svg>');
}

.cta-pc .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pc .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-pc .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-pc .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-pc .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-pc .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-pc .cta-buttons .btn-light:hover {
    background: #28a745;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.cta-pc .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-pc .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Petrochemical Page Responsive Design */
@media (max-width: 768px) {
    .petrochem-hero {
        /* height: 60vh; */
        padding: 2rem 0;
    }

    .petrochem-hero .hero-title {
        font-size: 2.5rem;
    }

    .petrochem-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .petrochem-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .petrochem-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-pc .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-pc .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-pc .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-pc .image-overlay {
        position: static;
        margin-top: 1rem;
        background: white;
        border: 1px solid rgba(0, 62, 115, 0.1);
    }

    .project-card-pc .project-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-pc .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-pc .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .petrochem-hero .hero-title {
        font-size: 2rem;
    }

    .petrochem-hero .hero-subtitle {
        font-size: 1rem;
    }

    .cta-pc .cta-title {
        font-size: 2rem;
    }

    .service-card-pc,
    .standard-item-pc,
    .project-card-pc {
        padding: 1.5rem;
    }

    .why-choose-pc .why-image img {
        height: 300px;
    }

    .why-choose-pc .image-overlay {
        padding: 1rem;
    }

    .why-choose-pc .overlay-content h4 {
        font-size: 1.1rem;
    }

    .project-card-pc .project-stats .stat-number {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations for Petrochemical page */
@media (hover: none) and (pointer: coarse) {

    .service-card-pc:hover,
    .standard-item-pc:hover,
    .project-card-pc:hover,
    .why-choose-pc .why-feature:hover,
    .feature-item-pc:hover {
        transform: none;
    }

    .service-card-pc:active,
    .standard-item-pc:active,
    .project-card-pc:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================== Power & Energy Infrastructure Page Premium Styles ========================================== */

/* Power & Energy Hero Section */
.power-hero {
    /* position: relative; */
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

.power-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="power-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 L35,25 L15,25 Z" fill="rgba(255,193,7,0.1)"/><circle cx="25" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><path d="M10,15 L40,15 M10,35 L40,35" stroke="rgba(255,193,7,0.08)" stroke-width="1"/><circle cx="10" cy="25" r="1.5" fill="rgba(255,193,7,0.1)"/><circle cx="40" cy="25" r="1.5" fill="rgba(255,193,7,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23power-pattern)"/></svg>');
    z-index: 1;
}

.power-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.12) 0%, transparent 50%);
    z-index: 2;
}

.power-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.power-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.power-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.power-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.power-hero .breadcrumb-item a:hover {
    color: #ffc107;
}

.power-hero .breadcrumb-item.active {
    color: #ffc107;
}

.power-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.power-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.power-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.power-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.power-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
}

.power-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    color: var(--primary-color);
}

.power-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.power-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Power & Energy Services Overview Section */
.service-card-pw {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.service-card-pw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-pw:hover::before {
    transform: scaleX(1);
}

.service-card-pw:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 193, 7, 0.3);
}

.service-icon-pw {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-pw i {
    font-size: 2rem;
    color: white;
}

.service-card-pw:hover .service-icon-pw {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-pw:hover .service-icon-pw i {
    color: var(--primary-color);
}

.service-card-pw h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-pw p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-pw {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-pw li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-features-pw li:last-child {
    border-bottom: none;
}

.service-features-pw li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Power & Energy Detail Features */
.feature-item-pw {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-pw:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.feature-item-pw i {
    color: #ffc107;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-pw span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Power & Energy Standards Section */
.standard-item-pw {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.standard-item-pw:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 193, 7, 0.3);
}

.standard-icon-pw {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-pw i {
    font-size: 2rem;
    color: white;
}

.standard-item-pw:hover .standard-icon-pw {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    transform: scale(1.1);
}

.standard-item-pw:hover .standard-icon-pw i {
    color: var(--primary-color);
}

.standard-item-pw h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-pw p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Power & Energy Project Portfolio Section */
.project-card-pw {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.project-card-pw:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 193, 7, 0.3);
}

.project-card-pw .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.project-card-pw .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-card-pw .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-pw .project-content {
    padding: 2rem;
}

.project-card-pw .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-card-pw .project-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.project-card-pw .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-pw .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-pw .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Power & Energy Section */
.why-choose-pw {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-pw .why-content {
    padding-right: 2rem;
}

.why-choose-pw .why-features {
    margin-top: 2rem;
}

.why-choose-pw .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-choose-pw .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-pw .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-pw .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-pw .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-pw .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-pw .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-pw:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-pw .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-pw .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-pw .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Power & Energy CTA Section */
.cta-pw {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pw-cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pw-cta-dots)"/></svg>');
}

.cta-pw .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pw .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-pw .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-pw .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-pw .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-pw .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-pw .cta-buttons .btn-light:hover {
    background: #ffc107;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.cta-pw .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-pw .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Power & Energy Page Responsive Design */
@media (max-width: 768px) {
    .power-hero {
        /* height: ; */
        padding: 2rem 0;
    }

    .power-hero .hero-title {
        font-size: 2.5rem;
    }

    .power-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .power-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .power-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-pw .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-pw .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-pw .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-pw .image-overlay {
        position: static;
        margin-top: 1rem;
        background: white;
        border: 1px solid rgba(0, 62, 115, 0.1);
    }

    .project-card-pw .project-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-pw .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-pw .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .power-hero .hero-title {
        font-size: 2rem;
    }

    .power-hero .hero-subtitle {
        font-size: 1rem;
    }

    .cta-pw .cta-title {
        font-size: 2rem;
    }

    .service-card-pw,
    .standard-item-pw,
    .project-card-pw {
        padding: 1.5rem;
    }

    .why-choose-pw .why-image img {
        height: 300px;
    }

    .why-choose-pw .image-overlay {
        padding: 1rem;
    }

    .why-choose-pw .overlay-content h4 {
        font-size: 1.1rem;
    }

    .project-card-pw .project-stats .stat-number {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations for Power & Energy page */
@media (hover: none) and (pointer: coarse) {

    .service-card-pw:hover,
    .standard-item-pw:hover,
    .project-card-pw:hover,
    .why-choose-pw .why-feature:hover,
    .feature-item-pw:hover {
        transform: none;
    }

    .service-card-pw:active,
    .standard-item-pw:active,
    .project-card-pw:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================== Water & Waste Management Page Premium Styles ========================================== */

/* Water & Waste Management Hero Section */
.water-hero {
    /* position: relative; */
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006064 100%);
}

.water-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="water-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="15" r="4" fill="rgba(0,188,212,0.1)"/><circle cx="15" cy="35" r="2.5" fill="rgba(255,255,255,0.05)"/><circle cx="45" cy="35" r="3" fill="rgba(0,188,212,0.08)"/><path d="M20,45 Q25,40 30,45 Q35,50 40,45" stroke="rgba(0,188,212,0.1)" stroke-width="2" fill="none"/><circle cx="10" cy="20" r="1.5" fill="rgba(0,188,212,0.1)"/><circle cx="50" cy="20" r="1.5" fill="rgba(0,188,212,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water-pattern)"/></svg>');
    z-index: 1;
}

.water-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(0, 188, 212, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.water-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.water-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.water-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.water-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.water-hero .breadcrumb-item a:hover {
    color: #00bcd4;
}

.water-hero .breadcrumb-item.active {
    color: #00bcd4;
}

.water-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.water-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.water-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.water-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.water-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    border: none;
    color: white;
}

.water-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
    color: white;
}

.water-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.water-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Water & Waste Management Services Overview Section */
.service-card-ww {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.service-card-ww::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-ww:hover::before {
    transform: scaleX(1);
}

.service-card-ww:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 188, 212, 0.3);
}

.service-icon-ww {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006064 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-ww i {
    font-size: 2rem;
    color: white;
}

.service-card-ww:hover .service-icon-ww {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-ww h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-ww p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-ww {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-ww li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-features-ww li:last-child {
    border-bottom: none;
}

.service-features-ww li::before {
    content: '💧';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Water & Waste Management Detail Features */
.feature-item-ww {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-ww:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.feature-item-ww i {
    color: #00bcd4;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-ww span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Water & Waste Management Standards Section */
.standard-item-ww {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.standard-item-ww:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 188, 212, 0.3);
}

.standard-icon-ww {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006064 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-ww i {
    font-size: 2rem;
    color: white;
}

.standard-item-ww:hover .standard-icon-ww {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    transform: scale(1.1);
}

.standard-item-ww h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-ww p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Water & Waste Management Project Portfolio Section */
.project-card-ww {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.project-card-ww:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 188, 212, 0.3);
}

.project-card-ww .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006064 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.project-card-ww .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-card-ww .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00bcd4;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-ww .project-content {
    padding: 2rem;
}

.project-card-ww .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-card-ww .project-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.project-card-ww .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-ww .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-ww .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Water & Waste Management Section */
.why-choose-ww {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-ww .why-content {
    padding-right: 2rem;
}

.why-choose-ww .why-features {
    margin-top: 2rem;
}

.why-choose-ww .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-choose-ww .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-ww .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-ww .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-ww .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-ww .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-ww .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-ww:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-ww .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-ww .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-ww .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Water & Waste Management CTA Section */
.cta-ww {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006064 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-ww::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ww-cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ww-cta-dots)"/></svg>');
}

.cta-ww .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-ww .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-ww .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-ww .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-ww .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-ww .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-ww .cta-buttons .btn-light:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

.cta-ww .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-ww .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Water & Waste Management Page Responsive Design */
@media (max-width: 768px) {
    .water-hero {
        /* height: 60vh; */
        padding: 2rem 0;
    }

    .water-hero .hero-title {
        font-size: 2.5rem;
    }

    .water-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .water-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .water-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-ww .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-ww .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-ww .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-ww .image-overlay {
        position: static;
        margin-top: 1rem;
        background: white;
        border: 1px solid rgba(0, 62, 115, 0.1);
    }

    .project-card-ww .project-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-ww .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-ww .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .water-hero .hero-title {
        font-size: 2rem;
    }

    .water-hero .hero-subtitle {
        font-size: 1rem;
    }

    .cta-ww .cta-title {
        font-size: 2rem;
    }

    .service-card-ww,
    .standard-item-ww,
    .project-card-ww {
        padding: 1.5rem;
    }

    .why-choose-ww .why-image img {
        height: 300px;
    }

    .why-choose-ww .image-overlay {
        padding: 1rem;
    }

    .why-choose-ww .overlay-content h4 {
        font-size: 1.1rem;
    }

    .project-card-ww .project-stats .stat-number {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations for Water & Waste Management page */
@media (hover: none) and (pointer: coarse) {

    .service-card-ww:hover,
    .standard-item-ww:hover,
    .project-card-ww:hover,
    .why-choose-ww .why-feature:hover,
    .feature-item-ww:hover {
        transform: none;
    }

    .service-card-ww:active,
    .standard-item-ww:active,
    .project-card-ww:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================== Transportation & Pipeline Systems Page Premium Styles ========================================== */

/* Transportation & Pipeline Systems Hero Section */
.transport-hero {
    /* position: relative; */
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a148c 100%);
}

.transport-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="transport-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><rect x="10" y="30" width="30" height="4" fill="rgba(156,39,176,0.1)"/><rect x="50" y="30" width="30" height="4" fill="rgba(156,39,176,0.1)"/><circle cx="25" cy="15" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="65" cy="15" r="3" fill="rgba(255,255,255,0.05)"/><path d="M15,45 L35,45 M55,45 L75,45" stroke="rgba(156,39,176,0.08)" stroke-width="2"/><circle cx="20" cy="55" r="2" fill="rgba(156,39,176,0.1)"/><circle cx="70" cy="55" r="2" fill="rgba(156,39,176,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23transport-pattern)"/></svg>');
    z-index: 1;
}

.transport-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(156, 39, 176, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(156, 39, 176, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.transport-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.transport-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.transport-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.transport-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.transport-hero .breadcrumb-item a:hover {
    color: #9c27b0;
}

.transport-hero .breadcrumb-item.active {
    color: #9c27b0;
}

.transport-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.transport-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.transport-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.transport-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.transport-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #9c27b0 0%, #8e24aa 100%);
    border: none;
    color: white;
}

.transport-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
    color: white;
}

.transport-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.transport-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Transportation & Pipeline Services Overview Section */
.service-card-tp {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.service-card-tp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #9c27b0 0%, #8e24aa 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-tp:hover::before {
    transform: scaleX(1);
}

.service-card-tp:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(156, 39, 176, 0.3);
}

.service-icon-tp {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a148c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-tp i {
    font-size: 2rem;
    color: white;
}

.service-card-tp:hover .service-icon-tp {
    background: linear-gradient(135deg, #9c27b0 0%, #8e24aa 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-tp h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-tp p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-tp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-tp li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.service-features-tp li:last-child {
    border-bottom: none;
}

.service-features-tp li::before {
    content: '🚛';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Transportation & Pipeline Detail Features */
.feature-item-tp {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-tp:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.feature-item-tp i {
    color: #9c27b0;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-tp span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Transportation & Pipeline Standards Section */
.standard-item-tp {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.standard-item-tp:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(156, 39, 176, 0.3);
}

.standard-icon-tp {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a148c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-tp i {
    font-size: 2rem;
    color: white;
}

.standard-item-tp:hover .standard-icon-tp {
    background: linear-gradient(135deg, #9c27b0 0%, #8e24aa 100%);
    transform: scale(1.1);
}

.standard-item-tp h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-tp p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Transportation & Pipeline Project Portfolio Section */
.project-card-tp {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.project-card-tp:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(156, 39, 176, 0.3);
}

.project-card-tp .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a148c 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.project-card-tp .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-card-tp .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #9c27b0;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-tp .project-content {
    padding: 2rem;
}

.project-card-tp .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-card-tp .project-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.project-card-tp .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-tp .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-tp .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Transportation & Pipeline Section */
.why-choose-tp {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-tp .why-content {
    padding-right: 2rem;
}

.why-choose-tp .why-features {
    margin-top: 2rem;
}

.why-choose-tp .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.why-choose-tp .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-tp .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c27b0 0%, #8e24aa 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-tp .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-tp .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-tp .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-tp .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-tp:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-tp .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-tp .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-tp .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Transportation & Pipeline CTA Section */
.cta-tp {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a148c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-tp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tp-cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23tp-cta-dots)"/></svg>');
}

.cta-tp .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-tp .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-tp .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-tp .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-tp .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-tp .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-tp .cta-buttons .btn-light:hover {
    background: #9c27b0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
}

.cta-tp .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-tp .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Transportation & Pipeline Page Responsive Design */
@media (max-width: 768px) {
    .transport-hero {
        /* height: 60vh; */
        padding: 2rem 0;
    }

    .transport-hero .hero-title {
        font-size: 2.5rem;
    }

    .transport-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .transport-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .transport-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-tp .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-tp .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-tp .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-tp .image-overlay {
        position: static;
        margin-top: 1rem;
        background: white;
        border: 1px solid rgba(0, 62, 115, 0.1);
    }

    .project-card-tp .project-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-tp .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-tp .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .transport-hero .hero-title {
        font-size: 2rem;
    }

    .transport-hero .hero-subtitle {
        font-size: 1rem;
    }

    .cta-tp .cta-title {
        font-size: 2rem;
    }

    .service-card-tp,
    .standard-item-tp,
    .project-card-tp {
        padding: 1.5rem;
    }

    .why-choose-tp .why-image img {
        height: 300px;
    }

    .why-choose-tp .image-overlay {
        padding: 1rem;
    }

    .why-choose-tp .overlay-content h4 {
        font-size: 1.1rem;
    }

    .project-card-tp .project-stats .stat-number {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations for Transportation & Pipeline page */
@media (hover: none) and (pointer: coarse) {

    .service-card-tp:hover,
    .standard-item-tp:hover,
    .project-card-tp:hover,
    .why-choose-tp .why-feature:hover,
    .feature-item-tp:hover {
        transform: none;
    }

    .service-card-tp:active,
    .standard-item-tp:active,
    .project-card-tp:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================== Industrial & Institutional Infrastructure Page Styles ========================================== */

/* Industrial & Institutional Hero Section */
.industrial-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
}

.industrial-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="industrial-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23industrial-pattern)"/></svg>');
}

.industrial-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.3);
    z-index: 2;
}

.industrial-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.industrial-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.industrial-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.industrial-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.industrial-hero .breadcrumb-item a:hover {
    color: #dc143c;
}

.industrial-hero .breadcrumb-item.active {
    color: #dc143c;
}

.industrial-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.industrial-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.industrial-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.industrial-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industrial-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    border: none;
    color: white;
}

.industrial-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    color: white;
}

.industrial-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.industrial-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Industrial & Institutional Services Overview Section */
.service-card-ii {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-ii::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-ii:hover::before {
    transform: scaleX(1);
}

.service-card-ii:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-ii {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-ii i {
    font-size: 2rem;
    color: white;
}

.service-card-ii:hover .service-icon-ii {
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-ii h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-ii p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-ii {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-ii li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-ii li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #dc143c;
    font-weight: bold;
}

/* Industrial & Institutional Detail Features */
.feature-item-ii {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-ii:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-ii i {
    color: #dc143c;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-ii span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Industrial & Institutional Standards Section */
.standard-item-ii {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.standard-item-ii:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.standard-icon-ii {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-ii i {
    font-size: 2rem;
    color: white;
}

.standard-item-ii:hover .standard-icon-ii {
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    transform: scale(1.1);
}

.standard-item-ii h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-ii p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Industrial & Institutional Project Portfolio Section */
.project-card-ii {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-ii:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-ii .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-ii .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-ii .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 20, 60, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-ii .project-content {
    padding: 2rem;
}

.project-card-ii .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-ii .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-ii .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-ii .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc143c;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-ii .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Industrial & Institutional Section */
.why-choose-ii {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-ii .why-content {
    padding-right: 2rem;
}

.why-choose-ii .why-features {
    margin-top: 2rem;
}

.why-choose-ii .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-ii .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-ii .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-ii .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-ii .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-ii .why-image {
    position: relative;
}

.why-choose-ii .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-ii .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-ii .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-ii .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Industrial & Institutional CTA Section */
.cta-ii {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-ii::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
}

.cta-ii .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-ii .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-ii .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-ii .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-ii .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-ii .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-ii .cta-buttons .btn-light:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-3px);
}

.cta-ii .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-ii .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Industrial & Institutional */
@media (max-width: 768px) {
    .industrial-hero .hero-title {
        font-size: 2.5rem;
    }

    .industrial-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .industrial-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .industrial-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-ii .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-ii .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-ii .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-ii .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-ii .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-ii .cta-title {
        font-size: 2rem;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-ii:hover,
    .standard-item-ii:hover,
    .project-card-ii:hover,
    .why-choose-ii .why-feature:hover,
    .feature-item-ii:hover {
        transform: none;
    }
}

/* ========================================== Engineering Design Services Page Styles ========================================== */

/* Engineering Design Hero Section */
.design-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0891b2 100%);
}

.design-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="design-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><rect width="30" height="30" fill="none"/><path d="M15 5 L25 15 L15 25 L5 15 Z" fill="rgba(255,255,255,0.05)" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23design-pattern)"/></svg>');
}

.design-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 145, 178, 0.3);
    z-index: 2;
}

.design-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.design-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.design-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.design-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.design-hero .breadcrumb-item a:hover {
    color: #06b6d4;
}

.design-hero .breadcrumb-item.active {
    color: #06b6d4;
}

.design-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.design-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.design-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.design-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.design-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border: none;
    color: white;
}

.design-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    color: white;
}

.design-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.design-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Engineering Design Services Overview Section */
.service-card-ed {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-ed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-ed:hover::before {
    transform: scaleX(1);
}

.service-card-ed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-ed {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-ed i {
    font-size: 2rem;
    color: white;
}

.service-card-ed:hover .service-icon-ed {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-ed h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-ed p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-ed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-ed li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-ed li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* Engineering Design Detail Features */
.feature-item-ed {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-ed:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-ed i {
    color: #06b6d4;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-ed span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Software & Tools Section */
.software-tools {
    padding: 6rem 0;
    background: var(--bg-light);
}

.tool-item-ed {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.tool-item-ed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.tool-icon-ed {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.tool-icon-ed i {
    font-size: 2rem;
    color: white;
}

.tool-item-ed:hover .tool-icon-ed {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    transform: scale(1.1);
}

.tool-item-ed h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tool-item-ed p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Design Process Section */
.design-process {
    padding: 6rem 0;
    background: white;
}

.process-step-ed {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-step-ed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-ed:hover::before {
    transform: scaleX(1);
}

.process-step-ed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.process-step-ed .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step-ed:hover .step-number {
    transform: scale(1.1);
}

.process-step-ed .step-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step-ed .step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Engineering Design Project Portfolio Section */
.project-card-ed {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-ed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-ed .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0891b2 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-ed .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-ed .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(6, 182, 212, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-ed .project-content {
    padding: 2rem;
}

.project-card-ed .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-ed .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-ed .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-ed .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #06b6d4;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-ed .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Engineering Design Section */
.why-choose-ed {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-ed .why-content {
    padding-right: 2rem;
}

.why-choose-ed .why-features {
    margin-top: 2rem;
}

.why-choose-ed .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-ed .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-ed .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-ed .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-ed .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-ed .why-image {
    position: relative;
}

.why-choose-ed .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-ed .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-ed .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-ed .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Engineering Design CTA Section */
.cta-ed {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0891b2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-ed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-design-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-design-dots)"/></svg>');
}

.cta-ed .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-ed .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-ed .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-ed .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-ed .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-ed .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-ed .cta-buttons .btn-light:hover {
    background: #06b6d4;
    color: white;
    transform: translateY(-3px);
}

.cta-ed .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-ed .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Engineering Design */
@media (max-width: 768px) {
    .design-hero .hero-title {
        font-size: 2.5rem;
    }

    .design-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .design-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .design-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-ed .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-ed .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-ed .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-ed .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-ed .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .process-step-ed .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-ed .cta-title {
        font-size: 2rem;
    }

    .process-step-ed {
        padding: 1.5rem;
    }

    .tool-item-ed {
        padding: 1.5rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-ed:hover,
    .tool-item-ed:hover,
    .process-step-ed:hover,
    .project-card-ed:hover,
    .why-choose-ed .why-feature:hover,
    .feature-item-ed:hover {
        transform: none;
    }
}

/* ========================================== Project Management Consultancy Page Styles ========================================== */

/* Project Management Consultancy Hero Section */
.pmc-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
}

.pmc-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pmc-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><rect width="25" height="25" fill="none"/><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="12.5" cy="12.5" r="8" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pmc-pattern)"/></svg>');
}

.pmc-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 150, 105, 0.3);
    z-index: 2;
}

.pmc-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.pmc-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.pmc-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.pmc-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pmc-hero .breadcrumb-item a:hover {
    color: #10b981;
}

.pmc-hero .breadcrumb-item.active {
    color: #10b981;
}

.pmc-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.pmc-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.pmc-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pmc-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pmc-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
}

.pmc-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.pmc-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.pmc-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Project Management Consultancy Services Overview Section */
.service-card-pmc {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-pmc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-pmc:hover::before {
    transform: scaleX(1);
}

.service-card-pmc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-pmc {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-pmc i {
    font-size: 2rem;
    color: white;
}

.service-card-pmc:hover .service-icon-pmc {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-pmc h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-pmc p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-pmc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-pmc li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-pmc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Project Management Consultancy Detail Features */
.feature-item-pmc {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-pmc:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-pmc i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-pmc span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Methodologies Section */
.methodologies {
    padding: 6rem 0;
    background: var(--bg-light);
}

.methodology-item-pmc {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.methodology-item-pmc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.methodology-icon-pmc {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.methodology-icon-pmc i {
    font-size: 2rem;
    color: white;
}

.methodology-item-pmc:hover .methodology-icon-pmc {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scale(1.1);
}

.methodology-item-pmc h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.methodology-item-pmc p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Project Lifecycle Section */
.project-lifecycle {
    padding: 6rem 0;
    background: var(--primary-color);
}

.lifecycle-step-pmc {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lifecycle-step-pmc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lifecycle-step-pmc:hover::before {
    transform: scaleX(1);
}

.lifecycle-step-pmc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.lifecycle-step-pmc .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.lifecycle-step-pmc:hover .step-number {
    transform: scale(1.1);
}

.lifecycle-step-pmc .step-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.lifecycle-step-pmc .step-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Project Management Consultancy Project Portfolio Section */
.project-card-pmc {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-pmc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-pmc .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-pmc .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-pmc .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-pmc .project-content {
    padding: 2rem;
}

.project-card-pmc .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-pmc .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-pmc .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-pmc .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-pmc .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Project Management Consultancy Section */
.why-choose-pmc {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-pmc .why-content {
    padding-right: 2rem;
}

.why-choose-pmc .why-features {
    margin-top: 2rem;
}

.why-choose-pmc .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-pmc .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-pmc .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-pmc .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-pmc .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-pmc .why-image {
    position: relative;
}

.why-choose-pmc .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-pmc .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-pmc .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-pmc .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Project Management Consultancy CTA Section */
.cta-pmc {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pmc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pmc-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pmc-dots)"/></svg>');
}

.cta-pmc .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-pmc .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-pmc .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-pmc .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-pmc .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-pmc .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-pmc .cta-buttons .btn-light:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
}

.cta-pmc .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-pmc .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Project Management Consultancy */
@media (max-width: 768px) {
    .pmc-hero .hero-title {
        font-size: 2.5rem;
    }

    .pmc-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .pmc-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .pmc-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-pmc .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-pmc .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-pmc .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-pmc .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-pmc .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .lifecycle-step-pmc .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .lifecycle-step-pmc {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-pmc .cta-title {
        font-size: 2rem;
    }

    .methodology-item-pmc {
        padding: 1.5rem;
    }

    .lifecycle-step-pmc .step-content h5 {
        font-size: 1rem;
    }

    .lifecycle-step-pmc .step-content p {
        font-size: 0.85rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-pmc:hover,
    .methodology-item-pmc:hover,
    .lifecycle-step-pmc:hover,
    .project-card-pmc:hover,
    .why-choose-pmc .why-feature:hover,
    .feature-item-pmc:hover {
        transform: none;
    }
}

/* ========================================== Soil Investigation & Geotechnical Engineering Page Styles ========================================== */

/* Geotechnical Engineering Hero Section */
.geo-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b4513 100%);
}

.geo-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geo-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><path d="M0 10 L10 0 L20 10 L10 20 Z" fill="rgba(255,255,255,0.03)" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23geo-pattern)"/></svg>');
}

.geo-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.3);
    z-index: 2;
}

.geo-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.geo-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.geo-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.geo-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.geo-hero .breadcrumb-item a:hover {
    color: #d2691e;
}

.geo-hero .breadcrumb-item.active {
    color: #d2691e;
}

.geo-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.geo-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.geo-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.geo-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.geo-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    border: none;
    color: white;
}

.geo-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
    color: white;
}

.geo-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.geo-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Geotechnical Services Overview Section */
.service-card-geo {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-geo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-geo:hover::before {
    transform: scaleX(1);
}

.service-card-geo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-geo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-geo i {
    font-size: 2rem;
    color: white;
}

.service-card-geo:hover .service-icon-geo {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-geo h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-geo p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-geo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-geo li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-geo li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d2691e;
    font-weight: bold;
}

/* Geotechnical Detail Features */
.feature-item-geo {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-geo:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-geo i {
    color: #d2691e;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-geo span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Testing & Analysis Section */
.testing-analysis {
    padding: 6rem 0;
    background: var(--bg-light);
}

.test-item-geo {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.test-item-geo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.test-icon-geo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.test-icon-geo i {
    font-size: 2rem;
    color: white;
}

.test-item-geo:hover .test-icon-geo {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    transform: scale(1.1);
}

.test-item-geo h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.test-item-geo p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Geotechnical Standards Section */
.standard-item-geo {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.standard-item-geo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.standard-icon-geo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.standard-icon-geo i {
    font-size: 2rem;
    color: white;
}

.standard-item-geo:hover .standard-icon-geo {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    transform: scale(1.1);
}

.standard-item-geo h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.standard-item-geo p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Geotechnical Project Portfolio Section */
.project-card-geo {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-geo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-geo .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b4513 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-geo .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-geo .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(210, 105, 30, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-geo .project-content {
    padding: 2rem;
}

.project-card-geo .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-geo .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-geo .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-geo .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d2691e;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-geo .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Geotechnical Section */
.why-choose-geo {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-geo .why-content {
    padding-right: 2rem;
}

.why-choose-geo .why-features {
    margin-top: 2rem;
}

.why-choose-geo .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-geo .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-geo .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-geo .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-geo .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-geo .why-image {
    position: relative;
}

.why-choose-geo .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-geo .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-geo .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-geo .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Geotechnical CTA Section */
.cta-geo {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b4513 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-geo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-geo-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-geo-dots)"/></svg>');
}

.cta-geo .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-geo .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-geo .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-geo .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-geo .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-geo .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-geo .cta-buttons .btn-light:hover {
    background: #d2691e;
    color: white;
    transform: translateY(-3px);
}

.cta-geo .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-geo .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Geotechnical */
@media (max-width: 768px) {
    .geo-hero .hero-title {
        font-size: 2.5rem;
    }

    .geo-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .geo-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .geo-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-geo .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-geo .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-geo .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-geo .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-geo .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-geo .cta-title {
        font-size: 2rem;
    }

    .test-item-geo {
        padding: 1.5rem;
    }

    .standard-item-geo {
        padding: 1.5rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-geo:hover,
    .test-item-geo:hover,
    .standard-item-geo:hover,
    .project-card-geo:hover,
    .why-choose-geo .why-feature:hover,
    .feature-item-geo:hover {
        transform: none;
    }
}

/* ========================================== Architectural & Infrastructure Planning Page Styles ========================================== */

/* Architectural & Infrastructure Planning Hero Section */
.arch-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
}

.arch-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="arch-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="none"/><rect x="5" y="5" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><rect x="15" y="15" width="10" height="10" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23arch-pattern)"/></svg>');
}

.arch-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.3);
    z-index: 2;
}

.arch-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.arch-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.arch-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.arch-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.arch-hero .breadcrumb-item a:hover {
    color: #a855f7;
}

.arch-hero .breadcrumb-item.active {
    color: #a855f7;
}

.arch-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.arch-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.arch-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.arch-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arch-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border: none;
    color: white;
}

.arch-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    color: white;
}

.arch-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.arch-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Architectural Services Overview Section */
.service-card-arch {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-arch:hover::before {
    transform: scaleX(1);
}

.service-card-arch:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-arch {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-arch i {
    font-size: 2rem;
    color: white;
}

.service-card-arch:hover .service-icon-arch {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-arch h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-arch p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-arch {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-arch li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-arch li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

/* Architectural Detail Features */
.feature-item-arch {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-arch:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-arch i {
    color: #a855f7;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-arch span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Design Process Section */
.design-process {
    padding: 6rem 0;
    background: var(--primary-color);
}

.process-step-arch {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-step-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-arch:hover::before {
    transform: scaleX(1);
}

.process-step-arch:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.process-step-arch .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step-arch:hover .step-number {
    transform: scale(1.1);
}

.process-step-arch .step-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step-arch .step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Specializations Section */
.specializations {
    padding: 6rem 0;
    background: white;
}

.specialization-item-arch {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.specialization-item-arch:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.spec-icon-arch {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.spec-icon-arch i {
    font-size: 2rem;
    color: white;
}

.specialization-item-arch:hover .spec-icon-arch {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    transform: scale(1.1);
}

.specialization-item-arch h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialization-item-arch p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Architectural Project Portfolio Section */
.project-card-arch {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-arch:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-arch .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-arch .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-arch .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(168, 85, 247, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-arch .project-content {
    padding: 2rem;
}

.project-card-arch .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-arch .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-arch .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-arch .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a855f7;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-arch .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Architectural Section */
.why-choose-arch {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-arch .why-content {
    padding-right: 2rem;
}

.why-choose-arch .why-features {
    margin-top: 2rem;
}

.why-choose-arch .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-arch .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-arch .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-arch .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-arch .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-arch .why-image {
    position: relative;
}

.why-choose-arch .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-arch .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-arch .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-arch .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Architectural CTA Section */
.cta-arch {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-arch-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-arch-dots)"/></svg>');
}

.cta-arch .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-arch .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-arch .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-arch .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-arch .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-arch .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-arch .cta-buttons .btn-light:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-3px);
}

.cta-arch .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-arch .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Architectural */
@media (max-width: 768px) {
    .arch-hero .hero-title {
        font-size: 2.5rem;
    }

    .arch-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .arch-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .arch-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-arch .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-arch .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-arch .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-arch .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-arch .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-arch .cta-title {
        font-size: 2rem;
    }

    .process-step-arch {
        padding: 1.5rem;
    }

    .specialization-item-arch {
        padding: 1.5rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-arch:hover,
    .process-step-arch:hover,
    .specialization-item-arch:hover,
    .project-card-arch:hover,
    .why-choose-arch .why-feature:hover,
    .feature-item-arch:hover {
        transform: none;
    }
}

/* Responsive Design for Architectural */
@media (max-width: 768px) {
    .arch-hero .hero-title {
        font-size: 2.5rem;
    }

    .arch-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-arch .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-arch .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-arch .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-arch .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-arch .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .process-step-arch .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-arch .cta-title {
        font-size: 2rem;
    }

    .process-step-arch {
        padding: 1.5rem;
    }

    .specialization-item-arch {
        padding: 1.5rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-arch:hover,
    .process-step-arch:hover,
    .specialization-item-arch:hover,
    .project-card-arch:hover,
    .why-choose-arch .why-feature:hover,
    .feature-item-arch:hover {
        transform: none;
    }
}

/* ========================================== Automation & Digitization Smart Plant Services Page Styles ========================================== */

/* Automation & Digitization Hero Section */
.auto-hero {
    position: relative;
    /* height: 70vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
}

.auto-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="auto-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><rect width="50" height="50" fill="none"/><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="25" cy="25" r="20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23auto-pattern)"/></svg>');
}

.auto-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.3);
    z-index: 2;
}

.auto-hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.auto-hero .hero-breadcrumb {
    margin-bottom: 2rem;
}

.auto-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
}

.auto-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auto-hero .breadcrumb-item a:hover {
    color: #38bdf8;
}

.auto-hero .breadcrumb-item.active {
    color: #38bdf8;
}

.auto-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.auto-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.auto-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.auto-hero .hero-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auto-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    border: none;
    color: white;
}

.auto-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    color: white;
}

.auto-hero .hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.auto-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Automation Services Overview Section */
.service-card-auto {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-auto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-auto:hover::before {
    transform: scaleX(1);
}

.service-card-auto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-auto {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-auto i {
    font-size: 2rem;
    color: white;
}

.service-card-auto:hover .service-icon-auto {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-auto h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-auto p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-auto {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-auto li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features-auto li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

/* Automation Detail Features */
.feature-item-auto {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-auto:hover {
    background: white;
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.feature-item-auto i {
    color: #38bdf8;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item-auto span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Technologies Section */
.technologies {
    padding: 6rem 0;
    background: var(--primary-color);
}

.tech-item-auto {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item-auto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.tech-icon-auto {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.tech-icon-auto i {
    font-size: 2rem;
    color: white;
}

.tech-item-auto:hover .tech-icon-auto {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: scale(1.1);
}

.tech-item-auto h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-item-auto p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Implementation Process Section */
.implementation-process {
    padding: 6rem 0;
    background: white;
}

.process-step-auto {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-step-auto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-auto:hover::before {
    transform: scaleX(1);
}

.process-step-auto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.process-step-auto .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step-auto:hover .step-number {
    transform: scale(1.1);
}

.process-step-auto .step-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step-auto .step-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Automation Project Portfolio Section */
.project-card-auto {
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.project-card-auto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card-auto .project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.project-card-auto .project-header h4 {
    color: white !important;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.project-card-auto .project-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(56, 189, 248, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card-auto .project-content {
    padding: 2rem;
}

.project-card-auto .project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card-auto .project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.project-card-auto .project-stats .stat {
    text-align: center;
    flex: 1;
}

.project-card-auto .project-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38bdf8;
    display: block;
    margin-bottom: 0.3rem;
}

.project-card-auto .project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Automation Section */
.why-choose-auto {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-auto .why-content {
    padding-right: 2rem;
}

.why-choose-auto .why-features {
    margin-top: 2rem;
}

.why-choose-auto .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-auto .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-auto .feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-auto .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-auto .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-auto .why-image {
    position: relative;
}

.why-choose-auto .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-choose-auto .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.why-choose-auto .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-auto .overlay-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Automation CTA Section */
.cta-auto {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-auto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-auto-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-auto-dots)"/></svg>');
}

.cta-auto .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-auto .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-auto .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-auto .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-auto .cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-auto .cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-auto .cta-buttons .btn-light:hover {
    background: #38bdf8;
    color: white;
    transform: translateY(-3px);
}

.cta-auto .cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-auto .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Automation */
@media (max-width: 768px) {
    .auto-hero .hero-title {
        font-size: 2.5rem;
    }

    .auto-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .auto-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .auto-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-auto .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-choose-auto .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .why-choose-auto .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-auto .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-auto .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .process-step-auto .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .process-step-auto {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-auto .cta-title {
        font-size: 2rem;
    }

    .tech-item-auto {
        padding: 1.5rem;
    }

    .process-step-auto .step-content h5 {
        font-size: 1rem;
    }

    .process-step-auto .step-content p {
        font-size: 0.85rem;
    }
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .service-card-auto:hover,
    .tech-item-auto:hover,
    .process-step-auto:hover,
    .project-card-auto:hover,
    .why-choose-auto .why-feature:hover,
    .feature-item-auto:hover {
        transform: none;
    }
}

/* ========================================== Field Engineering & Site Services Page Styles ========================================== */

/* Field Engineering Color Variables */
:root {
    --field-primary: #ff8c00;
    --field-secondary: #ffa500;
    --field-accent: #ffb347;
    --field-dark: #cc7000;
    --field-light: #ffe4b5;
    --field-gradient: linear-gradient(135deg, var(--field-primary) 0%, var(--field-secondary) 100%);
    --field-gradient-light: linear-gradient(135deg, var(--field-accent) 0%, var(--field-light) 100%);
}

/* Ensure proper text contrast for field engineering sections */
.field-hero .section-subtitle,
.services-overview .section-subtitle,
.detailed-services .section-subtitle,
.service-capabilities .section-subtitle,
.field-process .section-subtitle,
.project-portfolio .section-subtitle,
.why-choose-field .section-subtitle {
    color: var(--field-primary) !important;
    font-weight: 700;
}

.field-hero .section-title,
.services-overview .section-title,
.detailed-services .section-title,
.field-process .section-title,
.project-portfolio .section-title,
.why-choose-field .section-title {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Field Hero Section */
.field-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--field-primary) 100%);
    overflow: hidden;
}

.field-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero/field-engineering-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.field-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--field-gradient);
    z-index: 2;
}

.field-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 62, 115, 0.3);
    z-index: 3;
}

.field-hero .container {
    position: relative;
    z-index: 4;
}

.field-hero .hero-content {
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.field-hero .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 2rem;
    justify-content: center;
}

.field-hero .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.field-hero .hero-breadcrumb .breadcrumb-item.active {
    color: var(--field-accent);
}

.field-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.field-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.field-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Cards - Field */
.service-card-field {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Ensure proper text visibility in service cards */
.service-card-field h3 {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.service-card-field p {
    color: var(--text-dark) !important;
}

.service-features-field li {
    color: var(--text-dark) !important;
}

.service-card-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--field-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-field:hover::before {
    transform: scaleX(1);
}

.service-card-field:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-field {
    width: 80px;
    height: 80px;
    background: var(--field-gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-field i {
    font-size: 2rem;
    color: var(--field-primary);
}

.service-card-field:hover .service-icon-field {
    background: var(--field-gradient);
    transform: scale(1.1);
}

.service-card-field:hover .service-icon-field i {
    color: white;
}

.service-card-field h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-field p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-field {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-field li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-features-field li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--field-primary);
    font-weight: bold;
}

/* Detailed Services */
.detailed-services {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Services Overview for Field Engineering */
.services-overview {
    padding: 6rem 0;
    background: white;
}

/* Field Engineering Section Headers */
.services-overview .section-subtitle,
.detailed-services .section-subtitle,
.service-capabilities .section-subtitle,
.field-process .section-subtitle,
.project-portfolio .section-subtitle,
.why-choose-field .section-subtitle {
    color: var(--field-primary);
}

.services-overview .section-title,
.detailed-services .section-title,
.service-capabilities .section-title,
.field-process .section-title,
.project-portfolio .section-title,
.why-choose-field .section-title {
    color: var(--primary-color);
}

.services-overview .section-description,
.detailed-services .section-description,
.service-capabilities .section-description,
.field-process .section-description,
.project-portfolio .section-description,
.why-choose-field .section-description {
    color: var(--text-light);
}

.service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.detail-content {
    padding: 2rem 0;
}

.detail-icon {
    width: 100px;
    height: 100px;
    background: var(--field-gradient-light);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.detail-icon i {
    font-size: 2.5rem;
    color: var(--field-primary);
}

.detail-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.detail-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.detail-features {
    display: grid;
    gap: 1rem;
}

.feature-item-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item-field:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
}

.feature-item-field i {
    color: var(--field-primary);
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-item-field span {
    color: var(--text-dark);
    font-weight: 500;
}

.detail-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-image:hover img {
    transform: scale(1.05);
}

/* Service Capabilities */
.service-capabilities {
    padding: 6rem 0;
    background: var(--primary-color);
}

.capability-item-field {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
    height: 100%;
}

.capability-item-field:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--field-primary);
}

.capability-icon-field {
    width: 80px;
    height: 80px;
    background: var(--field-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.capability-icon-field i {
    font-size: 2rem;
    color: var(--field-primary);
}

.capability-item-field:hover .capability-icon-field {
    background: var(--field-gradient);
    transform: scale(1.1);
}

.capability-item-field:hover .capability-icon-field i {
    color: white;
}

.capability-item-field h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
}

.capability-item-field p {
    color: var(--text-dark) !important;
    line-height: 1.6;
    margin: 0;
}

/* Field Process */
.field-process {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-step-field {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--field-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-field:hover::before {
    transform: scaleX(1);
}

.process-step-field:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--field-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step-field:hover .step-number {
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-dark) !important;
    line-height: 1.6;
    margin: 0;
}

/* Project Portfolio */
.project-portfolio {
    padding: 6rem 0;
    background: white;
}

.project-card-field {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-card-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--field-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card-field:hover::before {
    transform: scaleX(1);
}

.project-card-field:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.project-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tertiary-color) !important;
    margin: 0;
    flex: 1;
}

.project-type {
    background: var(--field-gradient-light);
    color: var(--field-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.project-content p {
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--field-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Field */
.why-choose-field {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-content {
    padding: 2rem 0;
}

.why-features {
    margin-top: 3rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--field-primary);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--field-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-dark) !important;
    margin: 0;
    line-height: 1.6;
}

.why-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--field-gradient);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.why-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

/* CTA Field */
.cta-field {
    padding: 6rem 0;
    background: var(--field-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/patterns/field-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--field-primary);
    border: none;
}

.cta-buttons .btn-light:hover {
    background: var(--field-light);
    color: var(--field-dark);
}

.cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Responsive Design for Field Engineering */
@media (max-width: 768px) {
    .field-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .field-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .field-hero .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card-field,
    .capability-item-field,
    .process-step-field,
    .project-card-field {
        margin-bottom: 2rem;
    }

    .detail-content,
    .why-content {
        padding: 1rem 0;
        text-align: center;
    }

    .detail-features {
        margin-top: 2rem;
    }

    .feature-item-field {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .project-header {
        flex-direction: column;
        gap: 1rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-wrapper {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .cta-buttons {
        margin-top: 2rem;
    }

    .why-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .field-hero .hero-title {
        font-size: 2rem;
    }

    .field-hero .hero-subtitle {
        font-size: 1rem;
    }

    .service-card-field,
    .capability-item-field,
    .process-step-field,
    .project-card-field,
    .why-feature {
        padding: 1.5rem;
    }

    .detail-icon,
    .capability-icon-field {
        width: 60px;
        height: 60px;
    }

    .detail-icon i,
    .capability-icon-field i {
        font-size: 1.5rem;
    }

    .step-number,
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {

    .service-card-field:hover,
    .capability-item-field:hover,
    .process-step-field:hover,
    .project-card-field:hover,
    .why-feature:hover {
        transform: none;
    }

    .service-card-field:active,
    .capability-item-field:active,
    .process-step-field:active,
    .project-card-field:active {
        transform: scale(0.98);
    }
}

/* ========================================== Contact Page Premium Styles ========================================== */

/* Contact Color Variables */
:root {
    --contact-primary: #003E73;
    --contact-secondary: #FF9F28;
    --contact-accent: #0056b3;
    --contact-light: #f8f9fa;
    --contact-gradient: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-accent) 100%);
    --contact-gradient-light: linear-gradient(135deg, var(--contact-secondary) 0%, #ffb347 100%);
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    /* min-height: 80vh; */
    padding: 20px;
    display: flex;
    align-items: center;
    background: var(--contact-gradient);
    overflow: hidden;
    color: white;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 159, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 40, 0.15) 0%, transparent 50%),
        url('../images/banner/1.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-accent) 50%, var(--contact-primary) 100%);
    z-index: 2;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-accent) 50%, var(--contact-primary) 100%);
    }

    50% {
        background: linear-gradient(135deg, var(--contact-accent) 0%, var(--contact-primary) 50%, var(--contact-accent) 100%);
    }
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 62, 115, 0.2);
    z-index: 3;
}

.contact-hero .container {
    position: relative;
    z-index: 4;
}

.contact-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 2rem;
    justify-content: center;
}

.contact-hero .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-hero .hero-breadcrumb .breadcrumb-item.active {
    color: var(--contact-secondary);
}

.contact-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-stats .stat-item:hover::before {
    left: 100%;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--contact-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stats .stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, var(--contact-secondary), var(--contact-primary), var(--contact-secondary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stats .stat-item:hover .stat-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-stats .stat-icon i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 159, 40, 0.4);
}

.hero-stats .stat-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
}

.hero-stats .stat-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 0;
    background: white;
}

.contact-method-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 62, 115, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--contact-gradient-light);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 159, 40, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover::after {
    opacity: 1;
}

.contact-method-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 62, 115, 0.2);
    border-color: var(--contact-secondary);
}

.method-icon {
    width: 90px;
    height: 90px;
    background: var(--contact-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--contact-gradient-light);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.method-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    background: var(--contact-gradient-light);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 159, 40, 0.3);
}

.contact-method-card:hover .method-icon::before {
    opacity: 1;
}

.contact-method-card:hover .method-icon i {
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contact-primary);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 10px;
    /* background: rgba(0, 62, 115, 0.05); */
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.08);
}

.contact-item:hover {
    background: rgba(0, 62, 115, 0.1);
    transform: translateX(3px);
}

.contact-item i {
    /* color: var(--contact-secondary); */
    font-size: 1.2rem;
    margin-top: 2px;
    /* min-width: 24px; */
    /* flex-shrink: 0; */
}

/* .contact-item div {
    flex: 1;
    min-width: 0;
} */

.contact-item strong {
    color: var(--contact-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-item a {
    color: var(--contact-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--contact-secondary);
}

.method-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.method-cta .btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 62, 115, 0.15);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--contact-gradient-light);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 62, 115, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.form-header {
    margin-bottom: 3rem;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--contact-primary);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 18px 25px 18px 55px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    position: relative;
}

.contact-form .form-control:focus {
    border-color: var(--contact-secondary);
    box-shadow: 0 0 0 0.25rem rgba(255, 159, 40, 0.15), 0 8px 25px rgba(255, 159, 40, 0.1);
    background: white;
    transform: translateY(-2px);
}

.contact-form .form-control:hover {
    border-color: var(--contact-primary);
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.1);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.form-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--contact-secondary);
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 12px;
}

.form-group.focused .form-icon {
    color: var(--contact-primary);
    transform: translateY(-50%) scale(1.05);
}

.form-group:hover .form-icon {
    color: var(--contact-primary);
    transform: translateY(-50%) scale(1.02);
}

.contact-form .form-control {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 18px 25px 18px 55px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    position: relative;
    width: 100%;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 18px;
    padding-left: 55px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}

.contact-form select.form-control {
    cursor: pointer;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.form-check {
    background: rgba(0, 62, 115, 0.05);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-check:hover {
    background: rgba(0, 62, 115, 0.1);
}

.form-check-input:checked {
    background-color: var(--contact-secondary);
    border-color: var(--contact-secondary);
}

.form-check-label {
    font-weight: 500;
    color: var(--contact-primary);
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    min-width: 200px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.submit-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Office Info Wrapper */
.office-info-wrapper {
    position: sticky;
    top: 2rem;
}

.office-info-card {
    background: white;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 62, 115, 0.15);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.office-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--contact-gradient-light);
}

.office-info-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 159, 40, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid rgba(0, 62, 115, 0.1);
}

.office-icon {
    width: 65px;
    height: 65px;
    background: var(--contact-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon i {
    font-size: 1.6rem;
    color: white;
}

.office-title {
    flex: 1;
}

.office-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--contact-primary);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.office-title p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.office-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.8rem;
    background: rgba(0, 62, 115, 0.05);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 159, 40, 0.1), transparent);
    transition: left 0.6s;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    background: rgba(0, 62, 115, 0.1);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--contact-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.detail-icon i {
    font-size: 1.1rem;
    color: white;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--contact-primary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.detail-content p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-content a {
    color: var(--contact-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.detail-content a:hover {
    color: var(--contact-secondary);
}

.office-social {
    border-top: 2px solid rgba(0, 62, 115, 0.1);
    padding-top: 2rem;
    margin-top: 2.5rem;
}

.office-social h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--contact-primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--contact-gradient-light);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 159, 40, 0.3);
    border-color: var(--contact-secondary);
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--contact-secondary);
    color: white;
    transform: translateY(-3px);
}

/* Office Map Section */
.office-map {
    padding: 6rem 0;
    background: white;
}

.map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 62, 115, 0.2);
    border: 3px solid rgba(255, 159, 40, 0.2);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 100px rgba(0, 62, 115, 0.25);
    border-color: rgba(255, 159, 40, 0.4);
}

.map-container {
    position: relative;
    height: 500px;
}

.map-container iframe {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: saturate(1.2) contrast(1.1);
}

.map-info {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
    max-width: 380px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 159, 40, 0.2);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(0, 62, 115, 0.1);
}

.info-header i {
    font-size: 1.6rem;
    color: var(--contact-secondary);
}

.info-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--contact-primary);
    margin: 0;
    line-height: 1.2;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.transport-option:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.1);
}

.transport-option i {
    font-size: 1.3rem;
    color: var(--contact-secondary);
    margin-top: 2px;
    min-width: 24px;
    flex-shrink: 0;
}

.transport-option div {
    flex: 1;
    min-width: 0;
}

.transport-option strong {
    color: var(--contact-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.transport-option p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.accordion-item {
    background: white;
    border: 1px solid rgba(0, 62, 115, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 62, 115, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
}

.accordion-button {
    background: white;
    border: none;
    padding: 2rem 2.5rem;
    font-weight: 700;
    color: var(--contact-primary);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 159, 40, 0.1), transparent);
    transition: left 0.6s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: var(--contact-gradient);
    color: white;
    box-shadow: none;
    transform: scale(1.02);
}

.accordion-button:not(.collapsed)::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 159, 40, 0.25);
    z-index: 2;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003E73'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem 2.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    background: rgba(0, 62, 115, 0.02);
    border-top: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
}

.accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--contact-gradient-light);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-stats .stat-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.2rem;
    }

    .hero-stats .stat-icon {
        width: 60px;
        height: 60px;
    }

    .contact-method-card,
    .contact-form-wrapper,
    .office-info-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .method-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .office-info-wrapper {
        position: static;
        margin-top: 2rem;
    }

    .map-info {
        position: static;
        margin-top: 2rem;
    }

    /* Office Location Hub Responsive */
    .office-location-hub {
        padding: 4rem 0;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-info {
        order: 2;
        padding: 1rem 0;
    }

    .location-map {
        order: 1;
        height: 400px;
    }

    .office-details-grid {
        gap: 1rem;
        margin: 2rem 0;
    }

    .detail-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .detail-card:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: center;
    }

    .transport-options {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .transport-grid {
        gap: 1rem;
    }

    .transport-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .transport-item i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .map-container {
        border-radius: 15px;
        border-width: 2px;
    }

    .map-overlay {
        top: 15px;
        left: 15px;
    }

    .map-marker {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .map-marker i {
        font-size: 1.2rem;
    }

    .info-card {
        max-width: none;
        padding: 1.8rem;
    }

    .transport-option {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }

    .detail-item {
        padding: 1.5rem;
        gap: 1.2rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-item {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .office-header {
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        flex-direction: row;
        align-items: center;
    }

    .office-icon {
        width: 55px;
        height: 55px;
    }

    .office-icon i {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }

    .contact-method-card,
    .contact-form-wrapper,
    .office-info-card,
    .info-card {
        padding: 1.5rem;
    }

    .method-icon,
    .office-icon {
        width: 70px;
        height: 70px;
    }

    .method-icon i,
    .office-icon i {
        font-size: 1.8rem;
    }

    .contact-form .form-control {
        padding: 15px 20px 15px 50px;
        font-size: 0.95rem;
    }

    .form-icon {
        left: 18px;
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .detail-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .detail-icon i {
        font-size: 1rem;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .transport-option {
        padding: 1rem;
        gap: 0.8rem;
    }

    .transport-option i {
        font-size: 1.2rem;
    }

    .hero-stats .stat-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .hero-stats .stat-icon {
        width: 50px;
        height: 50px;
    }

    .hero-stats .stat-icon i {
        font-size: 1.4rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {

    .contact-method-card:hover,
    .office-info-card:hover,
    .detail-item:hover,
    .contact-item:hover {
        transform: none;
    }

    .contact-method-card:active,
    .office-info-card:active {
        transform: scale(0.98);
    }
}

/* Premium Contact Page Enhancements */
/* Stagger animation for multiple elements */
.contact-methods .contact-method-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-methods .contact-method-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-methods .contact-method-card:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-stats .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-stats .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-stats .stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Floating particles effect */
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 159, 40, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 159, 40, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 20s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes floatParticles {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-100px);
    }
}

/* Premium form submit button */
.form-submit .btn-primary {
    background: var(--contact-gradient-light);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 159, 40, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.form-submit .btn-primary:hover::before {
    left: 100%;
}

.form-submit .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 159, 40, 0.4);
    color: white;
}

/* Enhanced social links */
.social-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--contact-gradient-light);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 159, 40, 0.3);
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: white;
}

/* Premium loading animation for form */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.form-submit .btn-primary:disabled {
    animation: pulse 1.5s ease-in-out infinite;
    cursor: not-allowed;
}

/* ========================================================= Premium Dynamic Sections ================================================== */

/* Hero Carousel Enhancements */
.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.client-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
}

.client-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.client-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
}

.client-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.client-card:hover .client-overlay {
    opacity: 1;
}

.client-overlay h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-overlay p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: white;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #2c3e50;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .client-card {
        height: 120px;
    }

    .client-logo img {
        max-height: 60px;
    }

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }
}

/* Premium Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Premium Hover Effects */
.premium-hover {
    position: relative;
    overflow: hidden;
}

.premium-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.premium-hover:hover::before {
    left: 100%;
}

/* Enhanced Button Styles */
.btn-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

/* Clean About Us Page Styles - Override */
section.about-hero-clean {
    background-color: #1e3a8a !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    padding: 40px 0 80px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

section.about-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.about-hero-clean .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero-clean .breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.about-hero-clean .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.about-hero-clean .breadcrumb-item.active {
    color: #3b82f6;
}

.about-hero-clean .hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero-clean .hero-subtitle-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    section.about-hero-clean {
        padding: 30px 0 60px !important;
    }
    
    .about-hero-clean .hero-title-clean {
        font-size: 2.2rem;
    }
}
/* Clean Oil & Gas Page Styles */

/* Hero Section */
.oil-gas-hero-clean {
    background-color: #1e3a8a !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    padding: 40px 0 80px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.oil-gas-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="oil-gas-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23oil-gas-dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.oil-gas-hero-clean .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.oil-gas-hero-clean .breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.oil-gas-hero-clean .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.oil-gas-hero-clean .breadcrumb-item.active {
    color: #3b82f6;
}

.oil-gas-hero-clean .hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.oil-gas-hero-clean .hero-subtitle-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta-clean {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-clean .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Services Overview */
.services-overview-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.service-card-oil-gas {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.service-card-oil-gas:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.service-icon-oil-gas {
    width: 70px;
    height: 70px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-oil-gas:hover .service-icon-oil-gas {
    background: #1e40af;
    transform: scale(1.05);
}

.service-icon-oil-gas i {
    font-size: 2rem;
    color: white;
}

.service-title-oil-gas {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-text-oil-gas {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-oil-gas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-oil-gas li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.service-features-oil-gas li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Detailed Services */
.detailed-services-clean {
    padding: 80px 0;
    background: white;
}

.detailed-services-clean .row:not(:last-child) {
    margin-bottom: 5rem;
}

.detail-content-clean {
    padding: 2rem 0;
}

.detail-icon-clean {
    width: 70px;
    height: 70px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.detail-icon-clean i {
    font-size: 2rem;
    color: white;
}

.detail-title-clean {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.detail-description-clean {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.detail-features-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-features-clean li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.detail-features-clean li::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.detail-image-clean {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.detail-image-clean img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-image-clean:hover img {
    transform: scale(1.05);
}

/* Standards Section */
.standards-section-clean {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
    position: relative;
}

.standards-section-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="standards-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23standards-dots)"/></svg>');
    opacity: 0.5;
}

.standards-section-clean .container {
    position: relative;
    z-index: 2;
}

.standard-card-clean {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.standard-card-clean:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standard-icon-clean {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.standard-card-clean:hover .standard-icon-clean {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.standard-icon-clean i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.standard-title-clean {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.standard-text-clean {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Portfolio */
.project-portfolio-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.project-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.project-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.project-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-title-clean {
    color: #1e3a8a;
    font-weight: 600;
    margin: 0;
    flex: 1;
    font-size: 1.2rem;
}

.project-type-clean {
    background: #3b82f6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.project-description-clean {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats-clean {
    display: flex;
    gap: 2rem;
}

.stat-clean {
    text-align: center;
}

.stat-number-clean {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.stat-label-clean {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us */
.why-choose-oil-gas-clean {
    padding: 80px 0;
    background: white;
}

.why-features-clean {
    margin-top: 2rem;
}

.why-feature-clean {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature-clean:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transform: translateX(5px);
}

.feature-icon-clean {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-clean:hover .feature-icon-clean {
    background: #1e40af;
    transform: scale(1.05);
}

.feature-icon-clean i {
    font-size: 1.2rem;
}

.feature-title-clean {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text-clean {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.why-image-clean {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.why-image-clean img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-image-clean:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .oil-gas-hero-clean {
        padding: 30px 0 60px !important;
    }
    
    .oil-gas-hero-clean .hero-title-clean {
        font-size: 2.2rem;
    }
    
    .hero-cta-clean {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-clean .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-overview-clean,
    .detailed-services-clean,
    .standards-section-clean,
    .project-portfolio-clean,
    .why-choose-oil-gas-clean {
        padding: 60px 0;
    }
    
    .detailed-services-clean .row:not(:last-child) {
        margin-bottom: 3rem;
    }
    
    .detail-image-clean img,
    .why-image-clean img {
        height: 300px;
    }
    
    .project-stats-clean {
        gap: 1rem;
    }
    
    .why-feature-clean {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-clean {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .oil-gas-hero-clean .hero-title-clean {
        font-size: 1.8rem;
    }
    
    .detail-title-clean {
        font-size: 1.6rem;
    }
    
    .service-card-oil-gas,
    .project-card-clean,
    .standard-card-clean {
        padding: 1.5rem;
    }
}
/* Clean Petrochemical & Fertilizer Page Styles */

/* Hero Section */
.petrochem-hero-clean {
    background-color: #1e3a8a !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    padding: 40px 0 80px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.petrochem-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="petrochem-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23petrochem-dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.petrochem-hero-clean .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.petrochem-hero-clean .breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.petrochem-hero-clean .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.petrochem-hero-clean .breadcrumb-item.active {
    color: #3b82f6;
}

.petrochem-hero-clean .hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.petrochem-hero-clean .hero-subtitle-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta-clean {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-clean .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Services Overview */
.services-overview-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.service-card-petrochem {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.service-card-petrochem:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.service-icon-petrochem {
    width: 70px;
    height: 70px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-petrochem:hover .service-icon-petrochem {
    background: #1e40af;
    transform: scale(1.05);
}

.service-icon-petrochem i {
    font-size: 2rem;
    color: white;
}

.service-title-petrochem {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-text-petrochem {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-petrochem {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-petrochem li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.service-features-petrochem li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Why Choose Us */
.why-choose-petrochem-clean {
    padding: 80px 0;
    background: white;
}

.why-features-clean {
    margin-top: 2rem;
}

.why-feature-clean {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature-clean:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transform: translateX(5px);
}

.feature-icon-clean {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-clean:hover .feature-icon-clean {
    background: #1e40af;
    transform: scale(1.05);
}

.feature-icon-clean i {
    font-size: 1.2rem;
}

.feature-title-clean {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text-clean {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.why-image-clean {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.why-image-clean img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-image-clean:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .petrochem-hero-clean {
        padding: 30px 0 60px !important;
    }
    
    .petrochem-hero-clean .hero-title-clean {
        font-size: 2.2rem;
    }
    
    .hero-cta-clean {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-clean .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-overview-clean,
    .detailed-services-clean,
    .standards-section-clean,
    .project-portfolio-clean,
    .why-choose-petrochem-clean {
        padding: 60px 0;
    }
    
    .detailed-services-clean .row:not(:last-child) {
        margin-bottom: 3rem;
    }
    
    .detail-image-clean img,
    .why-image-clean img {
        height: 300px;
    }
    
    .project-stats-clean {
        gap: 1rem;
    }
    
    .why-feature-clean {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-clean {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .petrochem-hero-clean .hero-title-clean {
        font-size: 1.8rem;
    }
    
    .detail-title-clean {
        font-size: 1.6rem;
    }
    
    .service-card-petrochem,
    .project-card-clean,
    .standard-card-clean {
        padding: 1.5rem;
    }
}

/* ========================================== Power & Energy Infrastructure Page ========================================== */

/* Hero Section Power & Energy */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Services Overview Power & Energy */
.services-overview {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

/* Detailed Services Power & Energy */
.detailed-services {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
    position: relative;
}

.service-detail:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.detail-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.detail-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-image:hover img {
    transform: scale(1.05);
}

/* Standards Section Power & Energy */
.standards-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.standards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

/* Project Portfolio Power & Energy */
.project-portfolio {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

/* CTA Section Power & Energy */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons .btn {
    min-width: 160px;
}

/* Service Cards Power & Energy */
.service-card-pw {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card-pw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-pw:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card-pw:hover::before {
    transform: scaleX(1);
}

.service-icon-pw {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card-pw:hover .service-icon-pw {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-card-pw h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-pw p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-pw {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-pw li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features-pw li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Detail Features Power & Energy */
.feature-item-pw {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.feature-item-pw:hover {
    background: rgba(0, 62, 115, 0.05);
    transform: translateX(5px);
}

.feature-item-pw i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item-pw span {
    color: #495057;
    font-weight: 500;
}

/* Standard Items Power & Energy */
.standard-item-pw {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.standard-item-pw:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standard-icon-pw {
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.standard-item-pw h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.standard-item-pw p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Cards Power & Energy */
.project-card-pw {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-card-pw:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.project-type {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Power & Energy Section */
.why-choose-pw {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-pw .why-content {
    padding-right: 2rem;
}

.why-choose-pw .why-features {
    margin-top: 2rem;
}

.why-choose-pw .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.why-choose-pw .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-pw .feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-pw .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-pw .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.why-choose-pw .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-pw .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-pw:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-pw .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.why-choose-pw .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-choose-pw .overlay-content p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Power & Energy */
@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-overview,
    .detailed-services,
    .standards-section,
    .project-portfolio,
    .cta-section {
        padding: 4rem 0;
    }
    
    .why-choose-pw .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .why-choose-pw .why-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-pw .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .why-choose-pw .image-overlay {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .services-overview,
    .detailed-services,
    .standards-section,
    .project-portfolio,
    .cta-section {
        padding: 3rem 0;
    }
    
    .service-detail {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .detail-image img {
        height: 300px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-card-pw,
    .standard-item-pw,
    .project-card-pw {
        margin-bottom: 2rem;
    }
    
    .project-stats {
        gap: 1rem;
    }
    
    .why-choose-pw .why-image img {
        height: 300px;
    }
    
    .why-choose-pw .image-overlay {
        padding: 1rem;
    }
    
    .why-choose-pw .overlay-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .service-card-pw,
    .standard-item-pw,
    .project-card-pw {
        padding: 1.5rem;
    }
    
    .service-card-pw h3 {
        font-size: 1.2rem;
    }
    
    .detail-content h3 {
        font-size: 1.5rem;
    }
    
    .service-card-pw:hover,
    .standard-item-pw:hover,
    .project-card-pw:hover,
    .why-choose-pw .why-feature:hover,
    .feature-item-pw:hover {
        transform: none;
    }
}
/* ========================================== Water & Waste Management Page ========================================== */

/* Service Cards Water & Waste Management */
.service-card-ww {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card-ww::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-ww:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card-ww:hover::before {
    transform: scaleX(1);
}

.service-icon-ww {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card-ww:hover .service-icon-ww {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-card-ww h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-ww p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-ww {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-ww li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features-ww li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Detail Features Water & Waste Management */
.feature-item-ww {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.feature-item-ww:hover {
    background: rgba(0, 62, 115, 0.05);
    transform: translateX(5px);
}

.feature-item-ww i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item-ww span {
    color: #495057;
    font-weight: 500;
}

/* Standard Items Water & Waste Management */
.standard-item-ww {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.standard-item-ww:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standard-icon-ww {
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.standard-item-ww h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.standard-item-ww p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Cards Water & Waste Management */
.project-card-ww {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-card-ww:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.project-type {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Water & Waste Management Section */
.why-choose-ww {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-ww .why-content {
    padding-right: 2rem;
}

.why-choose-ww .why-features {
    margin-top: 2rem;
}

.why-choose-ww .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.why-choose-ww .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-ww .feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-ww .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-ww .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.why-choose-ww .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-ww .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-ww:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-ww .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.why-choose-ww .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-choose-ww .overlay-content p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Water & Waste Management */
@media (max-width: 992px) {
    .why-choose-ww .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .why-choose-ww .why-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-ww .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .why-choose-ww .image-overlay {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .service-card-ww,
    .standard-item-ww,
    .project-card-ww {
        margin-bottom: 2rem;
    }
    
    .project-stats {
        gap: 1rem;
    }
    
    .why-choose-ww .why-image img {
        height: 300px;
    }
    
    .why-choose-ww .image-overlay {
        padding: 1rem;
    }
    
    .why-choose-ww .overlay-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .service-card-ww,
    .standard-item-ww,
    .project-card-ww {
        padding: 1.5rem;
    }
    
    .service-card-ww h3 {
        font-size: 1.2rem;
    }
    
    .service-card-ww:hover,
    .standard-item-ww:hover,
    .project-card-ww:hover,
    .why-choose-ww .why-feature:hover,
    .feature-item-ww:hover {
        transform: none;
    }
}
/* ========================================== Transportation & Pipeline Systems Page ========================================== */

/* Service Cards Transportation & Pipeline */
.service-card-tp {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card-tp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-tp:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card-tp:hover::before {
    transform: scaleX(1);
}

.service-icon-tp {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card-tp:hover .service-icon-tp {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-card-tp h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-tp p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-tp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-tp li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features-tp li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Detail Features Transportation & Pipeline */
.feature-item-tp {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.feature-item-tp:hover {
    background: rgba(0, 62, 115, 0.05);
    transform: translateX(5px);
}

.feature-item-tp i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item-tp span {
    color: #495057;
    font-weight: 500;
}

/* Standard Items Transportation & Pipeline */
.standard-item-tp {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.standard-item-tp:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standard-icon-tp {
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.standard-item-tp h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.standard-item-tp p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Cards Transportation & Pipeline */
.project-card-tp {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-card-tp:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.project-type {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Transportation & Pipeline Section */
.why-choose-tp {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-tp .why-content {
    padding-right: 2rem;
}

.why-choose-tp .why-features {
    margin-top: 2rem;
}

.why-choose-tp .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.why-choose-tp .why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.why-choose-tp .feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-tp .feature-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-tp .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.why-choose-tp .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.why-choose-tp .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-tp:hover .why-image img {
    transform: scale(1.05);
}

.why-choose-tp .image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.why-choose-tp .overlay-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-choose-tp .overlay-content p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Transportation & Pipeline */
@media (max-width: 992px) {
    .why-choose-tp .why-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .why-choose-tp .why-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-tp .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .why-choose-tp .image-overlay {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .service-card-tp,
    .standard-item-tp,
    .project-card-tp {
        margin-bottom: 2rem;
    }
    
    .project-stats {
        gap: 1rem;
    }
    
    .why-choose-tp .why-image img {
        height: 300px;
    }
    
    .why-choose-tp .image-overlay {
        padding: 1rem;
    }
    
    .why-choose-tp .overlay-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .service-card-tp,
    .standard-item-tp,
    .project-card-tp {
        padding: 1.5rem;
    }
    
    .service-card-tp h3 {
        font-size: 1.2rem;
    }
    
    .service-card-tp:hover,
    .standard-item-tp:hover,
    .project-card-tp:hover,
    .why-choose-tp .why-feature:hover,
    .feature-item-tp:hover {
        transform: none;
    }
}

/* ===== INDUSTRIAL & INSTITUTIONAL INFRASTRUCTURE PAGE STYLES ===== */

/* Hero Section */
.industrial-institutional-hero {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.industrial-institutional-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.industrial-institutional-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.industrial-institutional-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.industrial-institutional-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.industrial-institutional-hero .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
}

.industrial-institutional-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.industrial-institutional-hero .breadcrumb-item.active {
    color: white;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,64,175,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.services-overview .service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.services-overview .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.services-overview .service-card:hover::before {
    transform: scaleX(1);
}

.services-overview .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.services-overview .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.services-overview .service-card h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.services-overview .service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-overview .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-overview .service-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.services-overview .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nebula-secondary);
    font-weight: bold;
}

/* Detailed Services Section */
.detailed-services {
    padding: 80px 0;
    background: #ffffff;
}

.detailed-services .service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
    position: relative;
}

.detailed-services .service-detail:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 2px;
}

.detailed-services .detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.detailed-services .detail-content h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.detailed-services .detail-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.detailed-services .detail-features {
    display: grid;
    gap: 1rem;
}

.detailed-services .feature-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detailed-services .feature-item:hover {
    background: rgba(30, 64, 175, 0.05);
    transform: translateX(5px);
}

.detailed-services .feature-item i {
    color: var(--nebula-secondary);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.detailed-services .feature-item span {
    color: #495057;
    font-weight: 500;
}

.detailed-services .detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.detailed-services .detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detailed-services .detail-image:hover img {
    transform: scale(1.05);
}

/* Standards Section */
.standards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.standards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.standards-section .standard-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.standards-section .standard-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standards-section .standard-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-secondary);
}

.standards-section .standard-item h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.standards-section .standard-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Portfolio Section */
.project-portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-portfolio .project-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-portfolio .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
}

.project-portfolio .project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-portfolio .project-header h4 {
    color: var(--nebula-primary);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.project-portfolio .project-type {
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.project-portfolio .project-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-portfolio .project-stats {
    display: flex;
    gap: 2rem;
}

.project-portfolio .stat {
    text-align: center;
}

.project-portfolio .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
}

.project-portfolio .stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-section .why-features {
    margin-top: 2rem;
}

.why-choose-section .why-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-choose-section .why-feature:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
    transform: translateX(10px);
}

.why-choose-section .feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-section .feature-content h5 {
    color: var(--nebula-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-section .feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.why-choose-section .why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.why-choose-section .why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-section .why-image:hover img {
    transform: scale(1.05);
}

.why-choose-section .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 64, 175, 0.9));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.why-choose-section .why-image:hover .image-overlay {
    transform: translateY(0);
}

.why-choose-section .overlay-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-choose-section .overlay-content p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industrial-institutional-hero {
        padding: 100px 0 60px;
    }
    
    .industrial-institutional-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .industrial-institutional-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview,
    .detailed-services,
    .standards-section,
    .project-portfolio,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .detailed-services .service-detail {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .detailed-services .detail-image img,
    .why-choose-section .why-image img {
        height: 300px;
    }
    
    .project-portfolio .project-stats {
        gap: 1rem;
    }
    
    .why-choose-section .why-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-section .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .industrial-institutional-hero .hero-title {
        font-size: 2rem;
    }
    
    .services-overview .service-card,
    .standards-section .standard-item,
    .project-portfolio .project-card {
        padding: 1.5rem;
    }
    
    .detailed-services .detail-content h3 {
        font-size: 1.5rem;
    }
    
    .services-overview .service-card h3 {
        font-size: 1.2rem;
    }
}
/* ===== PROJECT MANAGEMENT CONSULTANCY PAGE STYLES ===== */

/* Hero Section with Split Layout */
.pmc-hero-section {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.pmc-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-content-side {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.hero-content-side .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
}

.hero-content-side .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-content-side .breadcrumb-item.active {
    color: white;
}

.hero-content-side .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-side .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats-row .stat-item {
    text-align: center;
}

.hero-stats-row .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-secondary);
    line-height: 1;
}

.hero-stats-row .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-side {
    position: relative;
    padding: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.floating-card h5 {
    color: var(--nebula-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item.large-card {
    grid-row: span 2;
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-item .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-item .service-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-item .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nebula-secondary);
    font-weight: bold;
}

.service-link {
    color: var(--nebula-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--nebula-secondary);
    transform: translateX(5px);
}

/* Detailed Services with Tabs */
.detailed-services-tabs {
    padding: 80px 0;
    background: white;
}

.services-tabs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.services-nav {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.services-nav .nav-link {
    background: none;
    border: 2px solid var(--nebula-primary);
    color: var(--nebula-primary);
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-nav .nav-link:hover,
.services-nav .nav-link.active {
    background: var(--nebula-primary);
    color: white;
    border-color: var(--nebula-primary);
}

.services-tab-content {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 20px;
    padding: 3rem;
}

.tab-content-wrapper .tab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.tab-content-wrapper h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.tab-content-wrapper p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
}

.feature-item i {
    color: var(--nebula-secondary);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item span {
    color: #495057;
    font-weight: 500;
}

.tab-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

/* Methodologies Carousel */
.methodologies-carousel {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    color: white;
}

.methodologies-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.methodology-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.methodology-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-secondary);
}

.methodology-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.methodology-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Lifecycle Timeline */
.project-lifecycle-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
    transform: scale(1.1);
}

.step-content h5 {
    color: var(--nebula-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Success Stories Cards */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
}

.story-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.story-type {
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-header h4 {
    color: var(--nebula-primary);
    font-weight: 600;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.story-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Section with Background */
.why-choose-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.why-choose-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-secondary);
}

.why-feature-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.why-feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cta-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pmc-hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-content-side {
        padding: 3rem 1.5rem;
    }
    
    .hero-content-side .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        height: 50vh;
    }
    
    .floating-card {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }
    
    .hero-stats-row {
        justify-content: center;
        gap: 1rem;
    }
    
    .services-masonry {
        grid-template-columns: 1fr;
    }
    
    .service-item.large-card {
        grid-row: span 1;
    }
    
    .services-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .services-nav .nav-link {
        margin: 0.25rem 0;
        width: 200px;
        text-align: center;
    }
    
    .services-tab-content {
        padding: 2rem 1rem;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured {
        grid-row: span 1;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .story-metrics,
    .hero-stats-row {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content-side .hero-title {
        font-size: 2rem;
    }
    
    .service-item,
    .story-card,
    .methodology-card,
    .why-feature-item {
        padding: 1.5rem;
    }
    
    .tab-content-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== SOIL INVESTIGATION & GEOTECHNICAL ENGINEERING PAGE STYLES ===== */

/* Fullscreen Hero with Video Background Effect */
.geo-fullscreen-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    z-index: 1;
}

.hero-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.6;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content-center .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content-center .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-content-center .breadcrumb-item.active {
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-main-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-secondary);
}

.feature-box h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.hero-cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Accordion Services Section */
.services-accordion-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-accordion-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.service-accordion-item {
    background: white;
    border: none;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
    overflow: hidden;
}

.service-accordion-item .accordion-button {
    background: white;
    border: none;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: none;
    border-radius: 16px;
}

.service-accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--nebula-primary);
}

.service-accordion-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.accordion-content {
    flex: 1;
}

.accordion-content h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.accordion-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.service-accordion-item .accordion-body {
    padding: 0 2rem 2rem;
}

.service-details h4 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.service-details p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #495057;
    font-weight: 500;
}

.service-features-list li i {
    color: var(--nebula-secondary);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Testing Capabilities Grid */
.testing-capabilities-grid {
    padding: 80px 0;
    background: white;
}

.testing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.testing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.testing-card:hover::before {
    transform: scaleX(1);
}

.testing-card.primary-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: scale(1.05);
}

.testing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.testing-card:hover .testing-icon {
    transform: scale(1.1) rotate(5deg);
}

.testing-card h4 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testing-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(30, 64, 175, 0.1);
    color: var(--nebula-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Standards Slider */
.standards-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.standards-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.standards-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.standard-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.standard-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-secondary);
}

.standard-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.standard-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Showcase with Filters */
.project-showcase-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--nebula-primary);
    color: var(--nebula-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--nebula-primary);
    color: white;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
}

.project-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-showcase-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 64, 175, 0.95));
    padding: 2rem;
    color: white;
    transform: translateY(50%);
    transition: transform 0.4s ease;
}

.project-showcase-card:hover .project-overlay {
    transform: translateY(0);
}

.project-category {
    background: rgba(59, 130, 246, 0.3);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.project-info h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-metrics {
    display: flex;
    gap: 1rem;
}

.project-metrics .metric {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose with Parallax */
.why-choose-parallax {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.why-stat-item {
    text-align: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-stat-item:hover .stat-circle {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.why-stat-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.cta-section-inline h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-buttons-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .geo-fullscreen-hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-feature-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .services-accordion-section,
    .testing-capabilities-grid,
    .standards-slider-section,
    .project-showcase-section,
    .why-choose-parallax {
        padding: 60px 0;
    }
    
    .service-accordion-item .accordion-button {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .accordion-content h3 {
        font-size: 1.2rem;
    }
    
    .testing-grid {
        grid-template-columns: 1fr;
    }
    
    .testing-card.primary-card {
        transform: none;
    }
    
    .standards-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .project-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .why-stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons-inline {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-content-center {
        padding: 1rem;
    }
    
    .service-accordion-item .accordion-button,
    .service-accordion-item .accordion-body {
        padding: 1rem;
    }
    
    .testing-card,
    .standard-card {
        padding: 1.5rem;
    }
    
    .standards-slider {
        grid-template-columns: 1fr;
    }
    
    .project-overlay {
        padding: 1.5rem;
    }
    
    .why-choose-parallax {
        padding: 60px 0;
    }
}

/* ===== AUTOMATION & SMART PLANT SERVICES PAGE STYLES ===== */

/* Modular Dashboard Hero */
.auto-dashboard-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dashboard-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    z-index: 1;
}

.floating-tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.tech-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-1 { top: 20%; left: 10%; animation-delay: 0s; }
.tech-2 { top: 60%; left: 15%; animation-delay: 1s; }
.tech-3 { top: 30%; right: 20%; animation-delay: 2s; }
.tech-4 { top: 70%; right: 10%; animation-delay: 3s; }
.tech-5 { top: 45%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,0 L20,20 L40,20 M0,20 L20,20 M20,20 L20,40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    z-index: 3;
}

.hero-dashboard-content {
    position: relative;
    z-index: 4;
    color: white;
}

.hero-dashboard-content .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dashboard-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-dashboard-content .breadcrumb-item.active {
    color: white;
}

.hero-dashboard-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-primary {
    display: block;
    color: white;
}

.title-secondary {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.title-highlight {
    display: block;
    color: var(--nebula-secondary);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-dashboard-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero-dashboard-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-dashboard-panel {
    position: relative;
    z-index: 4;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.dashboard-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-card .card-header h3 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.card-metrics {
    display: flex;
    gap: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nebula-secondary);
    font-size: 1.2rem;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-mini-cards {
    display: flex;
    gap: 1rem;
}

.mini-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.mini-card i {
    font-size: 1.2rem;
    color: var(--nebula-secondary);
}

/* Interactive Service Modules */
.service-modules-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-module {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.service-module:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.service-module.primary-module {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: var(--nebula-primary);
    transform: scale(1.02);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.module-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc3545;
}

.status-dot.active {
    background: #10b981;
}

.module-content {
    padding: 2rem;
}

.module-content h3 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.module-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-chip {
    background: rgba(30, 64, 175, 0.1);
    color: var(--nebula-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.module-footer {
    padding: 1.5rem 2rem;
    background: rgba(248, 250, 252, 0.5);
    border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Detailed Service Panels */
.service-panels-section {
    padding: 0;
}

.service-panel {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.panel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.panel-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.service-panel.reverse .panel-overlay {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(30, 64, 175, 0.9) 100%);
}

.panel-content {
    position: relative;
    z-index: 2;
    color: white;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.panel-badge i {
    font-size: 1.2rem;
    color: var(--nebula-secondary);
}

.panel-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.panel-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.panel-features {
    display: grid;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.feature-row i {
    color: var(--nebula-secondary);
    font-size: 1.1rem;
}

.feature-row span {
    font-weight: 500;
    opacity: 0.9;
}

/* Technology Stack Grid */
.tech-stack-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tech-stack-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-stack-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.tech-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--nebula-secondary);
    transition: all 0.3s ease;
}

.tech-stack-card:hover .tech-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.tech-stack-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-stack-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.brand-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Implementation Process Flow */
.process-flow-section {
    padding: 80px 0;
    background: white;
}

.process-flow-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
    font-size: 1.5rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon {
    background: var(--nebula-primary);
    color: white;
    transform: scale(1.1);
}

.process-step-card h5 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.process-step-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Project Showcase Cards */
.project-showcase-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.showcase-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.showcase-card.featured-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: var(--nebula-primary);
    transform: scale(1.02);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-type-badge {
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Interactive Section */
.why-choose-interactive {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.interactive-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.interactive-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.interactive-features {
    margin-top: 2rem;
}

.interactive-feature {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.interactive-feature:hover {
    background: rgba(255, 255, 255, 0.15);
}

.feature-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-trigger h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.feature-details {
    padding: 0 1.5rem 1.5rem;
}

.feature-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.interactive-dashboard {
    position: relative;
    z-index: 2;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.widget-header h4 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.widget-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.status-dot.success {
    background: #10b981;
}

.widget-content {
    text-align: center;
}

.success-chart {
    margin-bottom: 1.5rem;
}

.chart-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.chart-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.widget-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
}

/* Final CTA Dashboard */
.final-cta-dashboard {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--nebula-secondary) 0%, var(--nebula-accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta-dashboard-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.dashboard-pattern {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dashboard-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dashboard-dots)"/></svg>');
}

.cta-dashboard-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cta-dashboard-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.2;
}

.cta-dashboard-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-dashboard-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-cta-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dashboard-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .auto-dashboard-hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-dashboard-title {
        font-size: 2.5rem;
    }
    
    .hero-dashboard-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-dashboard-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .card-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-mini-cards {
        flex-direction: column;
    }
    
    .service-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .service-module.primary-module {
        transform: none;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .process-flow-line {
        display: none;
    }
    
    .showcase-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card.featured-card {
        transform: none;
    }
    
    .project-metrics {
        gap: 1rem;
    }
    
    .widget-stats {
        gap: 1rem;
    }
    
    .cta-dashboard-buttons {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-dashboard-title {
        font-size: 2rem;
    }
    
    .hero-dashboard-content {
        padding: 1rem;
    }
    
    .panel-content h3 {
        font-size: 2rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-dashboard-title {
        font-size: 1.8rem;
    }
    
    .cta-dashboard-wrapper {
        padding: 2rem;
    }
}

/* ========================================== Field Engineering Split-Screen Layout Styles ========================================== */

/* Split-Screen Hero Section */
.field-split-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.split-hero-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.split-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    position: relative;
}

.construction-site-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.site-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.site-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 62, 115, 0.7) 0%, rgba(0, 62, 115, 0.5) 100%);
}

.site-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.site-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-marker.marker-1 {
    top: 30%;
    left: 20%;
}

.site-marker.marker-2 {
    top: 60%;
    right: 25%;
}

.site-marker.marker-3 {
    bottom: 40%;
    left: 40%;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 159, 40, 0.3);
}

.marker-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.site-stats-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content-panel {
    padding: 3rem;
    color: white;
    max-width: 600px;
}

.hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    justify-content: flex-start;
}

.hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
}

.split-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--secondary-color);
    display: block;
}

.split-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.split-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.field-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Construction Phase Tabs */
.construction-phases-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.phases-tabs-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.phases-nav {
    display: flex;
    background: var(--bg-light);
    border-radius: 20px 20px 0 0;
}

.phase-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.phase-tab.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 -5px 15px rgba(0, 62, 115, 0.1);
}

.tab-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phase-tab.active .tab-icon {
    background: var(--primary-color);
    color: white;
}

.tab-icon i {
    font-size: 1.5rem;
}

.phases-content {
    padding: 3rem;
}

.phase-panel {
    display: none;
}

.phase-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phase-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.phase-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.phase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.phase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-dashboard,
.commissioning-dashboard,
.support-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 62, 115, 0.1);
    min-width: 300px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.dashboard-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-indicator.live {
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #17a2b8;
    animation: pulse 2s infinite;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-box {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Breakdown Panels */
.service-breakdown-section {
    padding: 0;
    background: white;
}

.service-breakdown-panel {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-breakdown-panel.reverse {
    background: var(--bg-light);
}

.panel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.panel-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 62, 115, 0.8) 0%, rgba(0, 62, 115, 0.6) 100%);
}

.service-breakdown-panel .container {
    position: relative;
    z-index: 2;
}

.panel-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.panel-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.panel-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.panel-features {
    display: grid;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-row i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-row span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Field Capabilities Matrix */
.field-capabilities-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

.field-capabilities-section .section-subtitle {
    color: var(--secondary-color);
}

.field-capabilities-section .section-title,
.field-capabilities-section .section-description {
    color: white;
}

.capabilities-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.capability-category:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.capability-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.capability-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.capability-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.capability-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.capability-features .feature-tag {
    background: rgba(255, 159, 40, 0.2);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Field Process Timeline */
.field-process-timeline {
    padding: 6rem 0;
    background: white;
}

.process-timeline-wrapper {
    position: relative;
    margin-top: 3rem;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-phase {
    text-align: center;
    position: relative;
}

.phase-marker {
    position: relative;
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.marker-dot {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-medium);
}

.phase-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.phase-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.phase-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.phase-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.phase-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.phase-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.phase-duration {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Project Success Stories */
.project-success-stories {
    padding: 6rem 0;
    background: var(--bg-light);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.success-story-card.featured {
    grid-column: span 2;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.story-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.story-metrics .metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.story-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Interactive Section */
.why-choose-field-interactive {
    padding: 6rem 0;
    background: white;
}

.why-choose-content {
    padding-right: 2rem;
}

.control-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 62, 115, 0.1);
    margin-top: 2rem;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
}

.control-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.control-metrics {
    display: grid;
    gap: 1.5rem;
}

.control-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-item:hover {
    transform: translateX(5px);
}

.control-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.control-bar {
    height: 8px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.control-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.control-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.why-choose-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card .feature-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Final CTA Section */
.field-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.field-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.field-cta-section .cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-light:hover {
    background: var(--secondary-color);
    color: white;
}

.cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Responsive Design for Field Engineering */
@media (max-width: 1200px) {
    .success-story-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .split-hero-container {
        flex-direction: column;
    }
    
    .split-left,
    .split-right {
        flex: none;
    }
    
    .split-left {
        height: 50vh;
    }
    
    .construction-site-visual {
        height: 50vh;
    }
    
    .hero-content-panel {
        padding: 2rem;
    }
    
    .phases-nav {
        flex-direction: column;
    }
    
    .phase-tab {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .phases-content {
        padding: 2rem;
    }
    
    .capabilities-matrix {
        grid-template-columns: 1fr;
    }
    
    .timeline-phases {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        display: none;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .site-stats-overlay {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
    }
    
    .hero-content-panel {
        padding: 1.5rem;
    }
    
    .split-hero-cta {
        flex-direction: column;
    }
    
    .field-btn {
        width: 100%;
        justify-content: center;
    }
    
    .panel-content {
        padding: 2rem;
    }
    
    .capability-category {
        padding: 2rem 1.5rem;
    }
    
    .capability-stats {
        grid-template-columns: 1fr;
    }
    
    .phase-content {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-metrics {
        grid-template-columns: 1fr;
    }
    
    .control-panel {
        padding: 1.5rem;
    }
    
    .field-cta-section .cta-wrapper {
        padding: 2rem;
    }
}

/* Animation and Interaction Enhancements */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .phase-tab:hover,
    .capability-category:hover,
    .success-story-card:hover,
    .feature-card:hover,
    .phase-content:hover {
        transform: none;
    }
    
    .phase-tab:active,
    .capability-category:active,
    .success-story-card:active,
    .feature-card:active {
        transform: scale(0.98);
    }
}
/* ========================================== Our Clients Page - Hero Content Overlay ========================================== */

/* Hero Content Overlay for Our Clients */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 62, 115, 0.7);
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-content-overlay .hero-content {
    color: white;
}

.hero-content-overlay .hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    justify-content: flex-start;
}

.hero-content-overlay .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-content-overlay .hero-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
}

.hero-content-overlay .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-overlay .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero-content-overlay .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-content-overlay .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-content-overlay .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-content-overlay .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-content-overlay .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-content-overlay .stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.hero-content-overlay .stat-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive for Hero Content Overlay */
@media (max-width: 768px) {
    .hero-content-overlay .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content-overlay .stat-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content-overlay .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content-overlay .hero-subtitle {
        font-size: 1rem;
    }
}
/* ========================================== Our Clients Page - Unique Client Wall Layout ========================================== */

/* Client Wall Hero Section */
.client-wall-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.client-wall-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.wall-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

.client-wall-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 62, 115, 0.1);
}

.client-wall-right {
    flex: 1;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wall-content {
    max-width: 500px;
    color: var(--text-dark);
}

.wall-breadcrumb .breadcrumb {
    background: rgba(0, 62, 115, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.wall-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.wall-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
}

.wall-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.wall-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.wall-line {
    display: block;
}

.wall-highlight {
    color: var(--secondary-color);
    display: block;
}

.wall-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.wall-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.metric-box {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 62, 115, 0.2);
    min-width: 100px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wall-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Client Mosaic */
.client-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 500px;
    width: 100%;
}

.mosaic-tile {
    aspect-ratio: 1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    cursor: pointer;
}

.mosaic-tile:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.mosaic-tile:hover img {
    filter: grayscale(0%);
}

.mosaic-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
}

.mosaic-placeholder i {
    font-size: 2rem;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-tile:hover .mosaic-overlay {
    opacity: 1;
}

/* Client Portfolio Gallery */
.client-portfolio-gallery {
    padding: 6rem 0;
    background: white;
}

.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 62, 115, 0.1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.2);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.portfolio-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    filter: grayscale(0%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 62, 115, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

.overlay-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.portfolio-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    gap: 1rem;
}

.portfolio-placeholder i {
    font-size: 3rem;
}

.empty-portfolio,
.error-portfolio {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    margin-top: 3rem;
}

.empty-icon,
.error-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.empty-icon i,
.error-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Industry Distribution */
.industry-distribution {
    padding: 6rem 0;
    background: var(--bg-light);
}

.distribution-chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.chart-container {
    display: flex;
    justify-content: center;
}

.pie-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0deg 144deg,
        var(--secondary-color) 144deg 252deg,
        #28a745 252deg 324deg,
        #6c757d 324deg 360deg
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-chart::before {
    content: '';
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.chart-legend {
    display: grid;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.15);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.color-1 { background: var(--primary-color); }
.color-2 { background: var(--secondary-color); }
.color-3 { background: #28a745; }
.color-4 { background: #6c757d; }

.legend-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legend-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legend-percentage {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Client Success Stories */
.client-success-stories {
    padding: 6rem 0;
    background: white;
}

.success-stories-slider {
    position: relative;
    margin-top: 3rem;
}

.story-slide {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.story-slide.active {
    display: block;
}

.story-content {
    padding: 2rem 0;
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote i {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.story-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.story-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.story-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    min-width: 120px;
}

.story-metrics .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.story-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.2);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.story-nav {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-nav:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.story-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(0, 62, 115, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 6rem 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 62, 115, 0.1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-stats .stat {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Join Network CTA */
.join-network-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a8a 100%);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-contact {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wall-container {
        flex-direction: column;
    }
    
    .client-wall-left,
    .client-wall-right {
        flex: none;
    }
    
    .client-wall-left {
        min-height: 60vh;
        border-right: none;
        border-bottom: 1px solid rgba(0, 62, 115, 0.1);
    }
    
    .client-wall-right {
        min-height: 40vh;
    }
    
    .distribution-chart {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .wall-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-box {
        width: 100%;
    }
    
    .client-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-metrics .metric {
        width: 100%;
    }
    
    .cta-content-wrapper {
        padding: 2rem;
    }
    
    .cta-actions {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .client-wall-left {
        padding: 2rem;
    }
    
    .client-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wall-title {
        font-size: 2.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .story-image img {
        height: 300px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .mosaic-tile:hover,
    .portfolio-card:hover,
    .benefit-card:hover {
        transform: none;
    }
    
    .mosaic-tile:active,
    .portfolio-card:active,
    .benefit-card:active {
        transform: scale(0.98);
    }
}

/* ========================================== Contact Us Page - Interactive Contact Hub Layout ========================================== */

/* Contact Hub Hero Section - Premium Enhanced */
.contact-hub-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.contact-hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.contact-hub-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 159, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(255, 159, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hub-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 2;
}

.hub-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,159,40,0.2)"/><circle cx="10" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="10" r="1" fill="rgba(255,159,40,0.15)"/><path d="M5,5 L35,35 M35,5 L5,35" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-contact-pattern)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.hub-background::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hub-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

.hub-particles::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 40, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 159, 40, 0.2);
    animation: float 12s ease-in-out infinite;
}

.hub-particles::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20%;
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite reverse;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    animation: float 15s infinite linear;
    box-shadow: 0 0 15px rgba(255, 159, 40, 0.4);
    opacity: 0.8;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-dots)"/></svg>');
    opacity: 0.6;
    z-index: 3;
}

.hub-overlay::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(255, 159, 40, 0.15), rgba(255, 159, 40, 0.05));
    border-radius: 30px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite reverse;
    box-shadow: var(--shadow-light);
}

.hub-overlay::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hub-content {
    position: relative;
    z-index: 5;
    color: var(--tertiary-color);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hub-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 2rem;
    justify-content: center;
}

.hub-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hub-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
}

.hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hub-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--secondary-color);
    display: block;
}

.hub-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hub-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    color: var(--tertiary-color);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    color: var(--tertiary-color);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.call-btn:hover .action-icon { background: #28a745; }
.whatsapp-btn:hover .action-icon { background: #25d366; }
.email-btn:hover .action-icon { background: #dc3545; }
.form-btn:hover .action-icon { background: #6f42c1; }

.action-content {
    text-align: left;
}

.action-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.action-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.hub-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 62, 115, 0.1);
    box-shadow: 0 5px 20px rgba(0, 62, 115, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Communication Channels Grid */
.communication-channels {
    padding: 6rem 0;
    background: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.channel-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 62, 115, 0.1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.channel-card:hover::before {
    transform: scaleX(1);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.2);
}

.instant-channel { border-left: 4px solid #28a745; }
.detailed-channel { border-left: 4px solid var(--primary-color); }
.meeting-channel { border-left: 4px solid var(--secondary-color); }

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.instant-channel .channel-icon { background: #28a745; }
.detailed-channel .channel-icon { background: var(--primary-color); }
.meeting-channel .channel-icon { background: var(--secondary-color); }

.channel-badge {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.channel-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.channel-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.channel-options {
    display: grid;
    gap: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(0, 62, 115, 0.05);
    transform: translateX(5px);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.option-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.option-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.option-link:hover {
    color: var(--primary-color);
}

/* Interactive Contact Form */
.interactive-contact-form {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.1);
}

.form-sidebar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a8a 100%);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.form-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.sidebar-content {
    position: relative;
    z-index: 2;
}

.sidebar-header {
    margin-bottom: 3rem;
}

.sidebar-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar-header p {
    opacity: 0.9;
    line-height: 1.6;
}

.sidebar-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.sidebar-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-main {
    padding: 3rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--text-light);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
    transform: translateY(-2px);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group.focused .form-icon,
.form-group input:focus + .form-icon,
.form-group select:focus + .form-icon,
.form-group textarea:focus + .form-icon {
    color: var(--primary-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-item label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.05);
}

.checkbox-item input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
}

.checkbox-item label i {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + label i {
    color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.form-check label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.form-check label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check label a:hover {
    text-decoration: underline;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.step-navigation .btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 38px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group.focused .form-icon {
    color: var(--primary-color);
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.checkbox-item input[type="checkbox"]:checked + label {
    background: rgba(0, 62, 115, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.checkbox-item label i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.form-check label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.form-check a {
    color: var(--primary-color);
    text-decoration: none;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.step-navigation .btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Office Location Hub - Enhanced */
.office-location-hub {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.office-location-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="office-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,62,115,0.05)"/><rect x="5" y="5" width="20" height="1" fill="rgba(255,159,40,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23office-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.location-info {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.office-details-grid {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-card:hover {
    background: white;
    box-shadow: var(--shadow-heavy);
    transform: translateY(-8px) scale(1.02);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.detail-card:hover .detail-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-heavy);
}

.detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.transport-options {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 62, 115, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.transport-options::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 159, 40, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.location-map {
    position: relative;
    height: 600px;
}

.map-container {
    position: relative;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 62, 115, 0.25);
    border: 3px solid white;
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 62, 115, 0.3);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 62, 115, 0.1) 0%, transparent 50%, rgba(255, 159, 40, 0.1) 100%);
    z-index: 5;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
}

.map-marker {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.4);
    border: 3px solid white;
    backdrop-filter: blur(15px);
    animation: mapPulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.map-marker::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: left 0.6s ease;
}

.map-marker:hover::before {
    left: 100%;
}

@keyframes mapPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 62, 115, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(0, 62, 115, 0.5);
    }
}

.map-marker i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.transport-options h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.transport-options h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.transport-grid {
    display: grid;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 62, 115, 0.05) 100%);
    border: 1px solid rgba(0, 62, 115, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transport-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.transport-item:hover::before {
    opacity: 0.05;
}

.transport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
    border-color: var(--primary-color);
}

.transport-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.transport-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.3);
}

.transport-item div {
    position: relative;
    z-index: 2;
}

.transport-item strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.transport-item:hover strong {
    color: var(--secondary-color);
}

.transport-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.transport-item:hover p {
    color: var(--text-dark);
}

.location-map {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 62, 115, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 62, 115, 0.05) 50%, transparent 51%);
    pointer-events: none;
    z-index: 5;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-marker {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.3);
}

/* Support & FAQ */
.support-faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.support-info {
    padding: 2rem 0;
}

.support-features {
    margin: 3rem 0;
}

.support-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.support-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 62, 115, 0.15);
}

.support-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-feature .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.support-feature .feature-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.feature-availability {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.emergency-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.emergency-header h4 {
    margin: 0;
    font-weight: 700;
}

.emergency-contact p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #dc3545;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: #dc3545;
}

.faq-section {
    padding: 2rem 0;
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-accordion {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 62, 115, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .support-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hub-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .hub-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-steps::before {
        display: none;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .office-details-grid {
        gap: 1rem;
    }
    
    .transport-grid {
        gap: 0.5rem;
    }
    
    .location-map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hub-content {
        padding: 1rem;
    }
    
    .form-sidebar,
    .form-main {
        padding: 2rem;
    }
    
    .quick-action-btn {
        padding: 1rem;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .channel-card {
        padding: 2rem;
    }
    
    .detail-card {
        padding: 1rem;
    }
    
    .support-feature {
        padding: 1rem;
    }
}

/* ========================================== Contact Page Enhancements ========================================== */

/* Enhanced animations for contact page */
.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form field focus animations */
.form-group.focused {
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.2);
}

/* Enhanced button hover effects */
.quick-action-btn {
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quick-action-btn:hover::before {
    left: 100%;
}

/* Channel card enhanced animations */
.channel-card {
    position: relative;
    overflow: hidden;
}

.channel-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent rgba(0, 62, 115, 0.1) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-card:hover::after {
    opacity: 1;
}

/* Form step progress animation */
.step.completed .step-number::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Enhanced FAQ accordion */
.faq-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.02);
}

/* Map container enhancements */
.map-container {
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 62, 115, 0.1) 50%, transparent 51%);
    pointer-events: none;
    z-index: 5;
}

/* Loading states for form */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Success message animations */
.alert {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
    .quick-action-btn:active {
        transform: scale(0.98);
    }
    
    .channel-card:active {
        transform: scale(0.98);
    }
    
    .detail-card:active {
        transform: translateX(5px) scale(0.98);
    }
}

/* Print styles for contact information */
@media print {
    .contact-hub-hero,
    .communication-channels,
    .interactive-contact-form,
    .support-faq {
        display: none;
    }
    
    .office-location-hub {
        page-break-inside: avoid;
    }
    
    .detail-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .channel-card,
    .detail-card,
    .support-feature,
    .faq-item {
        border: 2px solid var(--primary-color);
    }
    
    .quick-action-btn {
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .hub-badge,
    .quick-action-btn::before,
    .channel-card::after,
    .step.completed .step-number::after {
        animation: none;
    }
    
    .form-step.active {
        animation: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
    }
}

/* Theme-based styling for contact forms */
@media (prefers-color-scheme: dark) {
    .form-container {
        background: white;
        color: var(--text-dark);
    }
    
    .form-main {
        background: white;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: white;
        border-color: #e9ecef;
        color: var(--text-dark);
    }
    
    .detail-card,
    .support-feature,
    .faq-item {
        background: white;
        color: var(--text-dark);
    }
}

/* ========================================== Revolutionary Vendor Partnership Dashboard ========================================== */

.vendor-partnership-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.dashboard-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vendor-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,159,40,0.1)"/><rect x="5" y="5" width="10" height="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23vendor-pattern)"/></svg>');
    opacity: 0.3;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.float-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-element.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

.container {
    position: relative;
    z-index: 2;
}

/* Partnership Hero Section */
.partnership-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 159, 40, 0.2), rgba(0, 62, 115, 0.2));
    border: 1px solid rgba(255, 159, 40, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.partnership-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.metric-data {
    position: relative;
    z-index: 2;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Registration Interface */
.registration-interface {
    padding: 4rem 0 8rem;
}

.interface-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Benefits Panel */
.benefits-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.panel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.panel-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 62, 115, 0.05), rgba(255, 159, 40, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.partnership-testimonial {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content i {
    font-size: 2rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Registration Panel */
.registration-panel {
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.registration-panel .panel-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.registration-panel .panel-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--secondary-color);
}

.registration-panel .panel-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.registration-panel .panel-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Success Dashboard */
.success-dashboard {
    padding: 4rem 3rem;
    text-align: center;
}

.success-animation {
    max-width: 400px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    animation: successPulse 2s infinite;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-dashboard h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-dashboard p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-new-registration {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-new-registration:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 62, 115, 0.3);
    color: white;
}

/* Vendor Form Styling */
.vendor-form {
    padding: 3rem;
}

.form-section {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.form-section.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.section-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-info p {
    color: var(--text-light);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.form-group.focused .form-icon {
    color: var(--secondary-color);
}

/* Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upload-card {
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.upload-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 62, 115, 0.1);
}

.upload-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.upload-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.upload-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.upload-zone {
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upload-zone input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-zone:hover {
    background: #f8fafc;
}

.upload-zone.drag-over {
    background: #e0f2fe;
    border-color: var(--secondary-color);
}

.upload-zone.file-selected {
    background: #f0fdf4;
    border-color: #10b981;
}

.upload-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upload-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.upload-content small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border-top: 2px solid #f1f5f9;
    background: #f8fafc;
}

.btn-prev,
.btn-next,
.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-prev {
    background: #e2e8f0;
    color: var(--text-dark);
}

.btn-prev:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.btn-next,
.btn-submit {
    background: var(--gradient-primary);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 62, 115, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active::after,
.progress-step.completed::after {
    background: var(--primary-color);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-icon,
.progress-step.completed .step-icon {
    background: var(--gradient-primary);
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--primary-color);
}

.progress-step:hover {
    background: #f8fafc;
}

/* Alert Styling */
.alert {
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.alert i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .interface-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .partnership-hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .benefits-panel,
    .vendor-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .upload-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-indicator {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-step {
        flex: 1;
        min-width: 80px;
    }
    
    .progress-step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .partnership-metrics {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================== Vendor Partnership Dashboard ========================================== */

/* Revolutionary Vendor Partnership Dashboard */
.vendor-partnership-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.dashboard-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vendor-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,62,115,0.08)"/><rect x="10" y="10" width="20" height="1" fill="rgba(255,159,40,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23vendor-pattern)"/></svg>');
    opacity: 0.7;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 62, 115, 0.1) 0%, rgba(255, 159, 40, 0.1) 100%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.float-element.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Partnership Hero Section */
.partnership-hero {
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.3);
    animation: pulse 2s infinite;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Partnership Metrics */
.partnership-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.1);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 62, 115, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(10deg);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Registration Interface */
.registration-interface {
    position: relative;
    z-index: 2;
    padding: 0 0 6rem;
}

.interface-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Benefits Panel */
.benefits-panel {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 62, 115, 0.15);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.benefits-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.panel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.panel-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 62, 115, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Partnership Testimonial */
.partnership-testimonial {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Registration Panel */
.registration-panel {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 62, 115, 0.15);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

/* Success Dashboard */
.success-dashboard {
    text-align: center;
    padding: 4rem 2rem;
}

.success-animation {
    animation: successBounce 0.8s ease-out;
}

@keyframes successBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 50px rgba(0, 62, 115, 0.3);
}

.success-dashboard h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-dashboard p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-new-registration {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.3);
}

.btn-new-registration:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.4);
    color: white;
}

/* Vendor Form Sections */
.vendor-form {
    position: relative;
}

.form-section {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.form-section.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 62, 115, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-info p {
    color: var(--text-light);
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.form-group.focused .form-icon {
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item {
    position: relative;
}

.service-item input[type="checkbox"] {
    display: none;
}

.service-item label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 62, 115, 0.05);
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.service-item label i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-item input[type="checkbox"]:checked + label {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.2);
}

.service-item input[type="checkbox"]:checked + label i {
    color: white;
}

/* Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upload-card {
    background: rgba(0, 62, 115, 0.03);
    border: 2px dashed rgba(0, 62, 115, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.upload-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.upload-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.upload-zone {
    position: relative;
    padding: 2rem;
    border: 2px dashed rgba(0, 62, 115, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.05);
}

.upload-zone input[type="file"] {
    display: none;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.upload-content p {
    margin: 0;
    color: var(--text-dark);
}

.upload-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.upload-content small {
    color: var(--text-light);
}

.upload-zone.file-selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 62, 115, 0.1);
}

.btn-prev,
.btn-next,
.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-prev {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
}

.btn-prev:hover {
    background: rgba(0, 62, 115, 0.2);
    transform: translateX(-5px);
}

.btn-next,
.btn-submit {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 62, 115, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 62, 115, 0.1);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 62, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-icon {
    background: #28a745;
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--primary-color);
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 500px;
    text-align: left;
}

.privacy-check input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    padding: 0;
}

.privacy-check label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.privacy-check a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-check a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert i {
    font-size: 1.2rem;
}

/* Responsive Design for Vendor Registration */
@media (max-width: 768px) {
    .vendor-partnership-dashboard {
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .interface-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .benefits-panel,
    .registration-panel {
        padding: 2rem;
        border-radius: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .progress-indicator {
        gap: 1rem;
    }

    .progress-step span {
        font-size: 0.8rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .partnership-hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .partnership-metrics {
        grid-template-columns: 1fr;
    }

    .benefits-panel,
    .registration-panel {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Color Variable */
:root {
    --success-color: #28a745;
}

/* ========================================== Vendor Registration Dashboard ========================================== */

/* Revolutionary Vendor Partnership Dashboard */
.vendor-partnership-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.dashboard-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vendor-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/><rect x="2" y="2" width="16" height="1" fill="rgba(255,159,40,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23vendor-pattern)"/></svg>');
    opacity: 0.7;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.float-element.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.float-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.container {
    position: relative;
    z-index: 2;
}

/* Partnership Hero Section */
.partnership-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.partnership-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Registration Interface */
.registration-interface {
    margin-top: 2rem;
}

.interface-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Benefits Panel */
.benefits-panel {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 62, 115, 0.1);
    position: sticky;
    top: 2rem;
}

.panel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.panel-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.panel-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 62, 115, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.priority-card .benefit-icon {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.payment-card .benefit-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.growth-card .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.support-card .benefit-icon {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.partnership-testimonial {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Registration Panel */
.registration-panel {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 62, 115, 0.1);
}

/* Success Dashboard */
.success-dashboard {
    text-align: center;
    padding: 3rem 2rem;
}

.success-animation {
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.success-dashboard h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-dashboard p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-new-registration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-new-registration:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

/* Form Sections */
.form-section {
    display: none;
    animation: slideIn 0.4s ease-out;
}

.form-section.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 62, 115, 0.1);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.section-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.section-info p {
    color: var(--text-light);
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group.full-width .form-icon {
    top: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item {
    position: relative;
}

.service-item input[type="checkbox"] {
    display: none;
}

.service-item label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 62, 115, 0.05);
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-item input[type="checkbox"]:checked + label {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.service-item label i {
    font-size: 1.2rem;
}

/* Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upload-card {
    border: 2px dashed rgba(0, 62, 115, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.02);
}

.upload-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.upload-header i {
    font-size: 1.5rem;
}

.upload-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.upload-zone {
    position: relative;
    cursor: pointer;
}

.upload-zone input[type="file"] {
    display: none;
}

.upload-content {
    padding: 2rem 1rem;
}

.upload-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.upload-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.upload-content small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.upload-zone.drag-over {
    border-color: var(--secondary-color);
    background: rgba(255, 159, 40, 0.1);
}

.upload-zone.file-selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 62, 115, 0.1);
}

.btn-prev,
.btn-next,
.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
}

.btn-prev:hover {
    background: rgba(0, 62, 115, 0.2);
    transform: translateX(-3px);
}

.btn-next,
.btn-submit {
    background: var(--gradient-primary);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-medium);
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 62, 115, 0.1);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.progress-step.active {
    background: rgba(0, 62, 115, 0.1);
}

.progress-step.completed {
    background: rgba(40, 167, 69, 0.1);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 62, 115, 0.2);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.progress-step.active .step-icon {
    background: var(--gradient-primary);
    color: white;
}

.progress-step.completed .step-icon {
    background: #28a745;
    color: white;
}

.progress-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--primary-color);
}

/* Responsive Design for Vendor Registration */
@media (max-width: 768px) {
    .vendor-partnership-dashboard {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .interface-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-panel {
        position: static;
        order: 2;
    }

    .registration-panel {
        order: 1;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .progress-indicator {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .progress-step {
        padding: 0.5rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .progress-step span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .partnership-metrics {
        grid-template-columns: 1fr;
    }

    .benefits-panel,
    .registration-panel {
        padding: 1.5rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================== Contact Dashboard Layout ========================================== */

/* Revolutionary Split-Screen Contact Dashboard */
/* SCOPED TO CONTACT PAGE ONLY - NO HEADER CONFLICTS */
.contact-dashboard-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.contact-dashboard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dashboard-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,62,115,0.08)"/><rect x="10" y="10" width="20" height="1" fill="rgba(255,159,40,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dashboard-pattern)"/></svg>');
    opacity: 0.7;
    z-index: 1;
}

.contact-dashboard-hero .dashboard-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Left Panel - Contact Hub */
.contact-hub-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hub-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 159, 40, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.hub-header {
    margin-bottom: 3rem;
}

.hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hub-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-accent {
    background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.emergency-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.instant-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.professional-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.meeting-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
}

.method-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-dot.scheduled {
    background: var(--secondary-color);
}

.method-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.method-card p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.method-action:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateX(5px);
}

/* Hub Metrics */
.hub-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
}

.metric-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Right Panel - Form Dashboard */
.form-dashboard-panel {
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-dashboard-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 62, 115, 0.1);
    padding: 0;
/* SCOPED: Contact Dashboard Navigation - NO HEADER CONFLICTS */
.contact-dashboard-hero .dashboard-nav {
    display: flex;
    background: white;
    border-radius: 0;
}

.contact-dashboard-hero .dashboard-nav .nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
}

.contact-dashboard-hero .dashboard-nav .nav-item:hover {
    background: rgba(0, 62, 115, 0.05);
    color: var(--primary-color);
}

.contact-dashboard-hero .dashboard-nav .nav-item.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.contact-dashboard-hero .dashboard-nav .nav-item i {
    font-size: 1.1rem;
}

/* SCOPED: Contact Dashboard Content - Ensure Visibility */
.contact-dashboard-hero .dashboard-content {
    display: none;
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.contact-dashboard-hero .dashboard-content.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Animation removed - was causing form to disappear */
}

/* fadeIn animation removed - it was hiding the form after page load */

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* SCOPED: Contact Form Sections - NO HEADER CONFLICTS */
.contact-dashboard-hero .form-sections {
    max-width: 600px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
}

.contact-dashboard-hero .form-section {
    margin-bottom: 2.5rem;
    display: block !important;
    visibility: visible !important;
}

.contact-dashboard-hero .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 62, 115, 0.1);
}

.contact-dashboard-hero .section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contact-dashboard-hero .section-title h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-dashboard-hero .section-title p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* SCOPED: Contact Form Grid - NO CONFLICTS */
.contact-dashboard-hero .form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    visibility: visible !important;
}

.contact-dashboard-hero .form-group {
    position: relative;
    display: block !important;
    visibility: visible !important;
    margin-bottom: 1.5rem;
}

.contact-dashboard-hero .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-dashboard-hero .form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-dashboard-hero .form-group input,
.contact-dashboard-hero .form-group select,
.contact-dashboard-hero .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-dashboard-hero .form-group input:focus,
.contact-dashboard-hero .form-group select:focus,
.contact-dashboard-hero .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 62, 115, 0.1);
}

.contact-dashboard-hero .form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.contact-dashboard-hero .form-group.full-width .form-icon {
    top: 3rem;
}

/* SCOPED: Contact Services Grid */
.contact-dashboard-hero .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-item {
    position: relative;
}

.service-item input[type="checkbox"] {
    display: none;
}

.service-item label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.service-item label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.05);
}

.service-item input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
}

.service-item label i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* SCOPED: Contact Form Actions - Enhanced */
.contact-dashboard-hero .form-actions {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid rgba(0, 62, 115, 0.1);
}

.contact-dashboard-hero .privacy-check {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
}

.contact-dashboard-hero .privacy-check input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-dashboard-hero .privacy-check label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
    max-width: 500px;
}

.contact-dashboard-hero .privacy-check a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-dashboard-hero .privacy-check a:hover {
    text-decoration: underline;
}

.contact-dashboard-hero .submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-dashboard-hero .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-dashboard-hero .submit-btn:hover::before {
    left: 100%;
}

.contact-dashboard-hero .submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.5);
}

.contact-dashboard-hero .submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-dashboard-hero .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-dashboard-hero .submit-btn i {
    font-size: 1.3rem;
}

/* SCOPED: Location Dashboard - Enhanced */
.contact-dashboard-hero /* SCOPED: Location Dashboard - Enhanced */
.contact-dashboard-hero .location-dashboard {
    max-width: 900px;
    margin: 0 auto;
}

.contact-dashboard-hero .location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-dashboard-hero .location-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-dashboard-hero .location-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-dashboard-hero .location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-dashboard-hero .location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-dashboard-hero .location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-dashboard-hero .location-card:hover::before {
    transform: scaleY(1);
}

.contact-dashboard-hero .location-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
}

.contact-dashboard-hero .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-dashboard-hero .location-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb347 100%);
}

.contact-dashboard-hero .card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-dashboard-hero .card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-dashboard-hero .card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-dashboard-hero .card-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* SCOPED: Interactive Map - Enhanced */
.contact-dashboard-hero .interactive-map {
    margin-bottom: 3rem;
}

.contact-dashboard-hero .map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-dashboard-hero .map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--text-light);
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 62, 115, 0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-marker {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 62, 115, 0.3);
}

/* Transport Dashboard */
.transport-dashboard h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.transport-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 62, 115, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.transport-card:hover {
    background: rgba(0, 62, 115, 0.1);
    transform: translateY(-2px);
}

.transport-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.transport-info h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.transport-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Support Dashboard */
.support-dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 2rem;
}

.support-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.support-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    background: white;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 62, 115, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.support-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.support-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.emergency-btn {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}

.availability {
    background: rgba(0, 62, 115, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* FAQ Dashboard */
.faq-dashboard h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-card {
    background: white;
    border: 2px solid rgba(0, 62, 115, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: rgba(0, 62, 115, 0.02);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 62, 115, 0.05);
}

.faq-question h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-hub-panel {
        padding: 2rem 1rem;
        min-height: 60vh;
    }

    .hub-title {
        font-size: 2rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hub-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .dashboard-nav {
        flex-direction: column;
    }

    .nav-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 62, 115, 0.1);
        border-right: none;
    }

    .nav-item.active {
        border-bottom-color: var(--primary-color);
    }

    .dashboard-content {
        padding: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hub-panel {
        padding: 1.5rem 1rem;
    }

    .hub-title {
        font-size: 1.8rem;
    }

    .method-card {
        padding: 1rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .location-header h2,
    .support-header h2 {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}


/* ========================================== Premium Index Page Sections ========================================== */

/* Innovation Section - Premium */
.innovation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="innovation-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23innovation-dots)"/></svg>');
    opacity: 0.5;
}

.innovation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.innovation-icon i {
    font-size: 2.5rem;
    color: white;
}

.innovation-card:hover .innovation-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.innovation-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.innovation-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section - Premium Redesign */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #fbbf24);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 159, 40, 0.2);
    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: 2rem;
    color: var(--secondary-color);
}

.stat-box:hover .stat-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.stat-box:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Clients Section - Premium */
.clients-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="clients-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23clients-dots)"/></svg>');
    opacity: 0.5;
}

.clients-grid {
    position: relative;
    z-index: 2;
}

.client-logo-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px solid transparent;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-box:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Section Simple - Enhanced */
.about-section-simple {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.about-section-simple .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.about-section-simple .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section-simple .about-image:hover img {
    transform: scale(1.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    font-weight: 600;
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Services Section Clean - Enhanced */
.services-section-clean {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-card-clean {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-clean:hover::before {
    transform: scaleX(1);
}

.service-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-icon-clean {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-clean i {
    font-size: 2.5rem;
    color: white;
}

.service-card-clean:hover .service-icon-clean {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.service-content-clean {
    flex: 1;
}

.service-title-clean {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description-clean {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-clean {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-clean li {
    padding: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features-clean li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.service-action-clean {
    margin-top: auto;
}

/* Why Choose Section New - Enhanced */
.why-choose-section-new {
    padding: 5rem 0;
    background: white;
}

.why-choose-content {
    padding-right: 2rem;
}

.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.benefit-item span {
    color: var(--primary-color);
    font-weight: 600;
}

.why-choose-visual {
    position: relative;
}

.why-choose-visual .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.achievement-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.badge-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.badge-content p {
    color: white;
    font-weight: 600;
    margin: 0;
}

.features-grid {
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section New - Enhanced */
.cta-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-content-new {
    padding-right: 2rem;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-description-new {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.cta-feature span {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-actions-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    border: 2px solid transparent;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon i {
    font-size: 1.8rem;
    color: white;
}

.action-card:hover .action-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.action-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.action-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Responsive Design for Index Page */
@media (max-width: 768px) {
    .innovation-section,
    .stats-section,
    .clients-section,
    .services-section-clean,
    .why-choose-section-new,
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .innovation-card,
    .stat-box,
    .service-card-clean {
        padding: 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-section-simple .about-image img,
    .why-choose-visual .main-image {
        height: 350px;
    }
    
    .achievement-badge {
        bottom: 20px;
        right: 20px;
        padding: 1.5rem;
    }
    
    .badge-content h3 {
        font-size: 2rem;
    }
    
    .why-choose-content,
    .cta-content-new {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-title-new {
        font-size: 2rem;
    }
    
    .action-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .innovation-icon,
    .service-icon-clean {
        width: 60px;
        height: 60px;
    }
    
    .innovation-icon i,
    .service-icon-clean i {
        font-size: 2rem;
    }
    
    .innovation-card h4,
    .service-title-clean {
        font-size: 1.2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
}

    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ========================================== Index Page Premium Sections ========================================== */

/* Innovation Section - Premium */
.innovation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.innovation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.innovation-icon i {
    font-size: 2rem;
    color: white;
}

.innovation-card:hover .innovation-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.innovation-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.innovation-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section - Premium Redesign */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 159, 40, 0.2);
    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: 2rem;
    color: var(--secondary-color);
}

.stat-box:hover .stat-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.stat-box:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

/* Clients Section - Premium */
.clients-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="client-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,62,115,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23client-dots)"/></svg>');
    opacity: 0.5;
}

.clients-grid {
    position: relative;
    z-index: 2;
}

.client-logo-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,62,115,0.05);
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-box:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Section Clean - Enhanced */
.services-section-clean {
    padding: 5rem 0;
    background: white;
}

.service-card-clean {
    background: white;
    border: 2px solid rgba(0,62,115,0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-clean:hover::before {
    transform: scaleX(1);
}

.service-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-icon-clean {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-clean i {
    font-size: 2.2rem;
    color: white;
}

.service-card-clean:hover .service-icon-clean {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.service-title-clean {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description-clean {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-clean {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-clean li {
    padding: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features-clean li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.service-action-clean {
    margin-top: auto;
}

/* Why Choose Section New */
.why-choose-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-choose-content {
    padding-right: 2rem;
}

.content-highlight {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.benefit-item span {
    color: var(--primary-color);
    font-weight: 600;
}

.why-choose-visual {
    position: relative;
}

.why-choose-visual .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.achievement-badge h3 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.achievement-badge p {
    color: #6c757d;
    margin: 0;
    font-weight: 600;
}

.features-grid {
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section New */
.cta-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
    opacity: 0.3;
}

.cta-content-new {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description-new {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.cta-feature span {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-actions-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.action-card .action-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.action-card .action-icon i {
    font-size: 1.8rem;
    color: white;
}

.action-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.action-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Index Page */
@media (max-width: 768px) {
    .innovation-section,
    .stats-section,
    .clients-section,
    .services-section-clean,
    .why-choose-section-new,
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .innovation-card,
    .stat-box,
    .service-card-clean {
        padding: 1.5rem;
    }
    
    .innovation-icon,
    .stat-icon,
    .service-icon-clean {
        width: 60px;
        height: 60px;
    }
    
    .innovation-icon i,
    .stat-icon i,
    .service-icon-clean i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .client-logo-box {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .client-logo {
        max-height: 60px;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .why-choose-visual .main-image {
        height: 350px;
    }
    
    .achievement-badge {
        bottom: 20px;
        left: 20px;
        padding: 1.5rem;
    }
    
    .achievement-badge h3 {
        font-size: 2rem;
    }
    
    .cta-title-new {
        font-size: 2rem;
    }
    
    .cta-description-new {
        font-size: 1rem;
    }
    
    .innovation-card h4,
    .service-title-clean {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .innovation-section,
    .stats-section,
    .clients-section,
    .services-section-clean,
    .why-choose-section-new,
    .cta-section-new {
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title-new {
        font-size: 1.8rem;
    }
    
    .why-choose-visual .main-image {
        height: 300px;
    }
}
