:root {
    --primary-color: #003E73;
    --secondary-color: #FF9F28;
    --tertiary-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --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;
}

/* Button Styles */
.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;
    }

    .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;
    }

    .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%;
}