/* Nebula Polystream PVT LTD - Clean Professional Light Theme */
:root {
    /* Light Professional Color Palette */
    --nebula-primary: #1d4ed8;
    /* Bright, clear blue - not harsh */
    --nebula-secondary: #60a5fa;
    /* Soft sky blue */
    --nebula-accent: #2563eb;
    /* Medium blue accent */
    --nebula-light: #f0f6ff;
    /* Very light blue-white background */
    --nebula-dark: #1e293b;
    /* Soft dark for text */

    /* Professional Color Scheme */
    --primary-color: #1d4ed8;
    --secondary-color: #60a5fa;
    --accent-color: #2563eb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;

    /* Light Gradients */
    --nebula-gradient-main: linear-gradient(135deg, #1d4ed8 0%, #60a5fa 100%);
    --nebula-gradient-soft: linear-gradient(135deg, #f0f6ff 0%, #e0eeff 100%);

    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing - Reduced */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

/* Clean Body & Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: white;
}

.container {
    max-width: var(--container-max);
}

/* Clean Image Carousel - No Overlays */
.clean-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.clean-carousel-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* No filters or overlays - pure image */
    display: block;
    position: relative;
}

/* Override body padding for carousel page */
body.carousel-page {
    padding-top: 0 !important;
}

.carousel-page .clean-carousel {
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100vw;
    min-width: 100%;
}

.carousel-page .navbar {
    position: absolute;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px);
    width: 100%;
}

.carousel-page .top-header {
    position: absolute;
    z-index: 1001;
    background: rgba(29, 78, 216, 0.95) !important;
    width: 100%;
}

/* Premium Carousel Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(29, 78, 216, 0.4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.2);
    opacity: 0.9;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--nebula-primary);
    border-color: var(--nebula-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.35);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
    filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(200deg);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Unique Carousel Transition Effects */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    transform: scale(0.95);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure images maintain full width during transitions */
.clean-carousel-img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.carousel-item.active .clean-carousel-img {
    transform: scale(1);
    position: relative;
}

.carousel-item:not(.active) .clean-carousel-img {
    transform: scale(1.1);
    position: absolute;
}

/* Fix carousel inner positioning */
.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ensure no gaps during transition */
.carousel-fade .carousel-item.carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item.carousel-item-prev.carousel-item-end {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
}

.carousel-fade .carousel-item.carousel-item-next.carousel-item-start .clean-carousel-img,
.carousel-fade .carousel-item.carousel-item-prev.carousel-item-end .clean-carousel-img {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* Carousel Indicators (Optional Premium Style) */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Carousel Controls */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
    }
}

/* Clean Innovation Section */
.innovation-section {
    background: var(--nebula-light);
    padding: 60px 0;
}

.innovation-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.innovation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background: var(--nebula-gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    background: var(--nebula-gradient-main);
    transform: scale(1.08);
}

.innovation-icon i {
    font-size: 2rem;
    color: var(--nebula-primary);
    transition: color 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    color: white;
}

.innovation-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.innovation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Simple About Section */
.about-section-simple {
    background: #f8fafc;
    padding: 80px 0;
}

.about-content .section-header {
    margin-bottom: 2rem;
}

.section-subtitle {
    display: block;
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    width: 100%;
}

.section-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    line-height: 1.25;
    margin-bottom: 0.8rem;
    width: 100%;
}

.section-description {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    width: 100%;
    margin-bottom: 0;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Simple Stats Row - Fully Responsive */
.stats-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.stat-item {
    text-align: center;
    flex: 1 1 auto;
    min-width: 100px;
    max-width: 160px;
    background: #f0f6ff;
    border: 1px solid #e0eeff;
    border-radius: 10px;
    padding: 0.8rem 0.6rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.3rem;
    line-height: 1;
    white-space: nowrap;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 576px) {
    .stats-row {
        gap: 0.6rem;
    }

    .stat-item {
        min-width: 80px;
        padding: 0.6rem 0.4rem;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.72rem;
    }
}

/* Simple Buttons */
.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-buttons .btn-primary {
    background: var(--nebula-primary);
    border: none;
    color: white;
}

.about-buttons .btn-primary:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
}

.about-buttons .btn-outline-primary {
    border: 2px solid var(--nebula-primary);
    color: var(--nebula-primary);
    background: transparent;
}

.about-buttons .btn-outline-primary:hover {
    background: var(--nebula-primary);
    color: white;
    transform: translateY(-2px);
}

/* Simple Image */
.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section-simple {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-row {
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .about-buttons {
        justify-content: center;
    }

    .about-buttons .btn {
        flex: 1;
        max-width: 200px;
    }
}

/* Enhanced Why Choose Section */
.why-choose-section-new {
    background: white;
    padding: 100px 0;
}

.why-choose-content {
    margin-bottom: 2rem;
}

.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--nebula-primary);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--nebula-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.8rem;
}

.highlight-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Key Benefits List */
.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.benefit-item i {
    color: var(--nebula-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Visual Section */
.why-choose-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.achievement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    text-align: center;
    min-width: 100px;
}

.badge-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.badge-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover h5 {
    color: var(--nebula-accent);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-section-new {
        padding: 60px 0;
    }

    .content-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .highlight-text h4 {
        font-size: 1.2rem;
    }

    .main-image {
        height: 300px;
    }

    .achievement-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .features-grid {
        margin-top: 3rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .float-element.element-1 {
        right: -8%;
    }

    .float-element.element-2 {
        left: -12%;
    }

    .float-element.element-3 {
        right: -5%;
    }
}

@media (max-width: 992px) {
    .about-section-new {
        padding: 80px 0;
    }

    .about-visual-new {
        height: 450px;
        margin-top: 2rem;
    }

    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        flex-direction: row;
        text-align: left;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .float-element {
        display: none;
        /* Hide floating elements on tablet */
    }

    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }

    .about-content-new .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-content-new .section-header .section-description {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-story .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .story-highlights {
        margin-bottom: 2rem;
    }

    .highlight-row {
        gap: 0.8rem;
    }

    .highlight-item {
        padding: 1.2rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 0.85rem;
    }

    .expertise-areas {
        text-align: center;
    }

    .expertise-areas h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .expertise-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .expertise-content h5 {
        font-size: 0.9rem;
    }

    .expertise-content p {
        font-size: 0.8rem;
    }

    .about-visual-new {
        height: 350px;
        margin-top: 1.5rem;
    }

    .main-image-container {
        border-radius: 20px;
    }

    .about-actions {
        justify-content: center;
        margin-top: 2rem;
    }

    .about-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-section-new {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-story .lead {
        font-size: 1rem;
    }

    .highlight-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-number {
        font-size: 1.3rem;
    }

    .expertise-item {
        padding: 1rem;
    }

    .expertise-icon {
        width: 40px;
        height: 40px;
    }

    .about-visual-new {
        height: 300px;
    }

    .about-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-actions .btn {
        width: 100%;
        max-width: 250px;
    }

    .decoration-circle,
    .decoration-line {
        display: none;
        /* Hide decorations on mobile */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .highlight-item {
        padding: 0.8rem;
    }

    .expertise-item {
        padding: 0.8rem;
    }

    .about-visual-new {
        height: 250px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: block;
    width: 100%;
}

.section-subtitle {
    display: block;
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    width: 100%;
}

.section-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    line-height: 1.25;
    margin-bottom: 0.8rem;
    width: 100%;
}

.section-description {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: var(--nebula-primary);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .float-element {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }

    .float-element.element-1,
    .float-element.element-2,
    .float-element.element-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* Modern Body & Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--nebula-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
}

/* Top Header */
.top-header {
    background: #1d4ed8 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Futuristic Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 78, 216, 0.1);
    box-shadow: 0 2px 15px rgba(29, 78, 216, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--nebula-gradient-main);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-brand:hover::before {
    opacity: 0.2;
}

.navbar .nav-link {
    color: var(--nebula-primary) !important;
    font-weight: 500;
    position: relative;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--nebula-accent) !important;
    background: rgba(29, 78, 216, 0.07);
}

/* Dropdown */
.navbar .dropdown-menu {
    background: white;
    border: 1px solid rgba(29, 78, 216, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.12);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
    min-width: 260px;
}

.navbar .dropdown-item {
    color: var(--nebula-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin: 0.15rem 0.5rem;
    transition: all 0.25s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.navbar .dropdown-item::before {
    display: none;
}

.navbar .dropdown-item:hover {
    color: var(--nebula-accent);
    background: rgba(29, 78, 216, 0.07);
    transform: translateX(4px);
}

/* Mobile Menu */
.offcanvas {
    background: #1d4ed8;
    border: none;
    width: 100% !important;
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 0.3rem 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 255, 255, 0.7);
    transform: translateX(6px);
}

/* Clean Innovation Section */

/* Stats Section */
.stats-section {
    background: var(--nebula-gradient-main);
    position: relative;
    padding: 70px 0;
    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="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.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--nebula-accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Section Headers - Consolidated */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: block;
    width: 100%;
}

.section-subtitle {
    display: block;
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    width: 100%;
}

.section-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    line-height: 1.25;
    margin-bottom: 0.8rem;
    width: 100%;
}

.section-title span {
    color: var(--nebula-accent);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Simple Industries Section */
.industries-section {
    background: white;
    padding: 80px 0;
}

.industry-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.industry-icon i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-content {
    margin-bottom: 1.5rem;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-title {
    color: var(--nebula-accent);
}

.industry-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Industry Overlay - Simple Button */
.industry-overlay {
    margin-top: 1rem;
}

.industry-overlay .btn {
    background: var(--nebula-primary);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.industry-overlay .btn:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Industries */
@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }

    .industry-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-icon i {
        font-size: 1.5rem;
    }

    .industry-title {
        font-size: 1.2rem;
    }
}

/* Button Revolution */
.btn-primary {
    background: var(--nebula-gradient-main);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.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.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Clean Professional Footer */
.premium-footer {
    background: #1e3a8a;
    color: white;
    position: relative;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-title {
    color: white !important;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--nebula-secondary);
    border-radius: 2px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
}

.footer-links a:hover {
    color: white !important;
    transform: translateX(4px);
}

.social-title {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0;
    font-size: 0.88rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white !important;
}

.footer-content {
    padding: 60px 0 40px;
    position: relative;
}

.footer-section {
    height: 100%;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    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(--nebula-secondary);
    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;
    display: block;
}

.footer-links a:hover {
    color: var(--nebula-secondary);
    transform: translateX(5px);
}

/* 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: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.social-link img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.social-link:hover {
    background: transparent;
    transform: translateY(-3px);
    border-color: transparent;
}

.social-link:hover img {
    filter: brightness(1.15);
    transform: scale(1.08);
}

.social-link i {
    font-size: 1.1rem;
    display: inline-block;
    font-family: "bootstrap-icons" !important;
}

/* 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: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--nebula-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    min-width: 40px;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
    display: inline-block;
    font-family: "bootstrap-icons" !important;
}

.contact-content h6 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-content a:hover {
    color: white !important;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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(--nebula-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 50px 0 30px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .contact-item {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .innovation-card {
        padding: 2rem 1.5rem;
    }

    .stat-item {
        margin-bottom: 2rem;
    }

    .industry-card,
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Loading Animation */
.nebula-loading {
    position: relative;
    overflow: hidden;
}

.nebula-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: nebula-shimmer 2s infinite;
}

@keyframes nebula-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Revolutionary Hero Section Styles */
.hero-nebula {
    background: var(--nebula-gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--nebula-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-accent);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.float-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-card.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.float-card.card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.float-card i {
    font-size: 2rem;
    color: var(--nebula-accent);
    margin-bottom: 1rem;
}

.float-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

/* Innovation Section */
.innovation-section {
    background: var(--nebula-light);
    padding: 100px 0;
}

.innovation-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--nebula-gradient-main);
    transition: left 0.5s ease;
    z-index: -1;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    color: white;
}

.innovation-card:hover::before {
    left: 0;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: var(--nebula-gradient-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.innovation-icon i {
    font-size: 2.5rem;
    color: var(--nebula-primary);
    transition: color 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    color: white;
}

.innovation-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.innovation-card:hover h4 {
    color: white;
}

.innovation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.innovation-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* New About Section */
.about-section-new {
    background: white;
    padding: 120px 0;
}

.about-content-new .section-header {
    margin-bottom: 3rem;
}

.about-story .lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.story-highlights {
    margin-bottom: 3rem;
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--nebula-gradient-soft);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--text-secondary);
    font-weight: 600;
}

.expertise-areas h4 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--nebula-gradient-soft);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.1);
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--nebula-accent);
}

.expertise-item span {
    font-weight: 600;
    color: var(--nebula-primary);
}

.about-visual-new {
    position: relative;
    height: 600px;
}

.main-image-container {
    position: relative;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nebula-gradient-main);
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    animation: float 6s ease-in-out infinite;
}

.float-element.element-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    bottom: 40%;
    left: -15%;
    animation-delay: 2s;
}

.float-element.element-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

.element-content {
    text-align: center;
}

.element-content i {
    font-size: 2rem;
    color: var(--nebula-accent);
    margin-bottom: 1rem;
}

.element-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.5rem;
}

.element-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-card {
        padding: 2rem 1.5rem;
    }
}

.highlight-row {
    flex-direction: column;
    gap: 1rem;
}

.expertise-grid {
    grid-template-columns: 1fr;
}

.float-element {
    position: relative;
    margin-bottom: 1rem;
    animation: none;
}

.float-element.element-1,
.float-element.element-2,
.float-element.element-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

/* Revolutionary Services Section */
.services-section-new {
    background: var(--nebula-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.services-section-new .container {
    position: relative;
    z-index: 2;
}

.service-card-new {
    background: white;
    border-radius: 30px;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.08);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--nebula-gradient-main);
    transition: left 0.6s ease;
    z-index: -1;
}

.service-card-new:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
    color: white;
}

.service-card-new:hover::before {
    left: 0;
}

.service-header {
    padding: 2.5rem 2.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-new {
    width: 90px;
    height: 90px;
    background: var(--nebula-gradient-soft);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.service-card-new:hover .service-icon-new {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.service-card-new:hover .service-icon-new::before {
    left: 0;
}

.service-icon-new i {
    font-size: 3rem;
    color: var(--nebula-primary);
    transition: all 0.4s ease;
}

.service-card-new:hover .service-icon-new i {
    color: white;
    transform: scale(1.1);
}

.service-badge {
    background: var(--nebula-gradient-main);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.service-content-new {
    padding: 0 2.5rem 1.5rem;
}

.service-title-new {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
    line-height: 1.3;
}

.service-card-new:hover .service-title-new {
    color: white;
}

.service-description-new {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.service-card-new:hover .service-description-new {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

.service-card-new:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--nebula-accent);
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.service-card-new:hover .service-features i {
    color: rgba(255, 255, 255, 0.9);
}

.service-action {
    padding: 0 2.5rem 2.5rem;
}

.service-action .btn {
    width: 100%;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.service-card-new:hover .service-action .btn {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Services CTA */
.services-cta {
    background: white;
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nebula-gradient-soft);
    opacity: 0.5;
    z-index: -1;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-card-new {
        margin-bottom: 2rem;
    }

    .service-header {
        padding: 2rem 2rem 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .service-content-new {
        padding: 0 2rem 1.5rem;
        text-align: center;
    }

    .service-action {
        padding: 0 2rem 2rem;
    }

    .services-cta {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .services-cta h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Enhancements */
.service-card-new {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-new:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-new:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card-new:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card-new:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card-new:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card-new:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Glow Effect */
.service-card-new:hover {
    box-shadow:
        0 20px 50px rgba(29, 78, 216, 0.12),
        0 0 0 1px rgba(29, 78, 216, 0.1);
}

/* Service Badge Variations */
.service-badge:nth-of-type(1) {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.service-badge:nth-of-type(2) {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.service-badge:nth-of-type(3) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-badge:nth-of-type(4) {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-badge:nth-of-type(5) {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.service-badge:nth-of-type(6) {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Clean CTA Section */
.cta-section-new {
    background: var(--nebula-primary);
    padding: 80px 0;
    position: relative;
}

.cta-content-new {
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--nebula-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-title-new {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: var(--nebula-secondary);
    font-size: 1.1rem;
}

.cta-actions-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    background: var(--nebula-accent);
}

.action-icon i {
    font-size: 1.5rem;
    color: white;
}

.action-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.action-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.action-card .btn {
    width: 100%;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-action .btn-primary {
    background: white;
    color: var(--nebula-primary);
    border: none;
}

.primary-action .btn-primary:hover {
    background: var(--nebula-secondary);
    color: white;
    transform: translateY(-2px);
}

.secondary-action .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.secondary-action .btn-outline-primary:hover {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-2px);
}

/* Responsive CTA Design */
@media (max-width: 768px) {
    .cta-section-new {
        padding: 60px 0;
    }

    .cta-title-new {
        font-size: 2.2rem;
    }

    .cta-description-new {
        font-size: 1.1rem;
    }

    .cta-actions-new {
        margin-top: 3rem;
    }

    .action-card {
        padding: 1.5rem;
        text-align: center;
    }

    .cta-features {
        margin-bottom: 2rem;
    }
}

/* Simple Services Section */
.services-section-clean {
    background: #f8fafc;
    padding: 80px 0;
}

/* Service Card Clean Styles */
.service-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    cursor: pointer;
}

.service-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.service-icon-clean {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.service-icon-clean i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean i {
    color: white;
}

.service-content-clean {
    margin-bottom: 1.5rem;
}

.service-title-clean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-title-clean {
    color: var(--nebula-accent);
}

.service-description-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features-clean {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-clean li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features-clean i {
    color: var(--nebula-secondary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-action-clean .btn {
    width: 100%;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--nebula-primary);
    border: none;
    color: white;
}

.service-action-clean .btn:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-section-clean {
        padding: 60px 0;
    }

    .service-card-clean {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-icon-clean {
        width: 50px;
        height: 50px;
    }

    .service-icon-clean i {
        font-size: 1.5rem;
    }

    .service-title-clean {
        font-size: 1.2rem;
    }
}

.action-card {
    padding: 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

.cta-features {
    margin-bottom: 2rem;
}


/* Clean About Us Page Styles */

/* Hero Section */
section.about-hero-clean {
    background-color: #1d4ed8 !important;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
    padding: 120px 0 80px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

section.about-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--nebula-secondary);
}

.hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Overview */
.company-overview-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title-clean {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.8rem;
    line-height: 1.25;
    width: 100%;
}

.overview-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item-clean {
    text-align: center;
}

.stat-number-clean {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-secondary);
    margin-bottom: 0.5rem;
}

.stat-label-clean {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

.overview-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

/* Mission Vision Values */
.mvv-section-clean {
    padding: 80px 0;
    background: white;
}

.section-header-clean {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.section-description-clean {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    width: 100%;
}

.mvv-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.mvv-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.mvv-icon-clean {
    width: 80px;
    height: 80px;
    background: var(--nebula-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.mvv-card-clean:hover .mvv-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.mvv-icon-clean i {
    font-size: 2rem;
    color: white;
}

.mvv-title-clean {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.mvv-text-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.values-list-clean {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item-clean {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.value-item-clean i {
    color: var(--nebula-secondary);
    font-size: 1.1rem;
}

/* Core Services */
.core-services-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.service-card-about {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.service-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.service-icon-about {
    width: 70px;
    height: 70px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-about:hover .service-icon-about {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.service-icon-about i {
    font-size: 2rem;
    color: white;
}

.service-title-about {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.service-list-about {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-about li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list-about li::before {
    content: '•';
    color: var(--nebula-secondary);
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Industries */
.industries-clean {
    padding: 80px 0;
    background: white;
}

.industry-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.industry-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.industry-icon-clean {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.industry-card-clean:hover .industry-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.industry-icon-clean i {
    font-size: 1.5rem;
    color: white;
}

.industry-title-clean {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.industry-text-clean {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.advantage-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.advantage-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.advantage-icon-clean {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card-clean:hover .advantage-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.advantage-icon-clean i {
    font-size: 1.5rem;
    color: white;
}

.advantage-title-clean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.advantage-text-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-clean {
        padding: 100px 0 60px;
    }

    .hero-title-clean {
        font-size: 2.2rem;
    }

    .section-title-clean {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: var(--nebula-primary);
        margin-bottom: 0.8rem;
        line-height: 1.25;
        width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .company-overview-clean,
    .mvv-section-clean,
    .core-services-clean,
    .industries-clean,
    .why-choose-clean {
        padding: 60px 0;
    }

    .mvv-card-clean,
    .service-card-about,
    .industry-card-clean,
    .advantage-card-clean {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-clean {
        font-size: 1.8rem;
    }

    .section-title-clean {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: var(--nebula-primary);
        margin-bottom: 0.8rem;
        line-height: 1.25;
        width: 100%;
    }

    .mvv-card-clean,
    .service-card-about,
    .advantage-card-clean {
        padding: 2rem 1.5rem;
    }
}


/* ============================================
   GLOBAL FIXES - Padding, Buttons, Responsiveness
   ============================================ */

/* Normalize button sizes - prevent oversized buttons */
.btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Prevent hero CTA buttons from being too large */
.hero-cta .btn,
.hero-cta-clean .btn,
.hero-cta-animated .btn,
.hero-cta-section .btn,
.hero-dashboard-cta .btn,
.hero-cta-buttons .btn,
.hero-buttons .btn,
.cta-buttons .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    min-width: auto;
}

/* Fix hero sections - consistent padding */
.design-hero,
.oil-gas-hero-clean,
.petrochem-hero-clean,
.geo-fullscreen-hero,
.pmc-hero-section,
.arch-animated-hero,
.auto-dashboard-hero,
.hero-section {
    padding-top: 0px;
    /* account for fixed header + top bar */
    min-height: 60vh;
}

/* Fix hero content padding */
.hero-content-clean,
.hero-content-wrapper,
.hero-animated-content,
.hero-dashboard-content {
    padding: 2rem 0;
}

/* Normalize section padding */
section {
    padding: 60px 0;
}

.services-overview,
.services-overview-clean,
.detailed-services,
.detailed-services-clean,
.why-choose-section,
.why-choose-oil-gas-clean,
.why-choose-petrochem-clean,
.why-choose-parallax,
.why-choose-interactive,
.project-portfolio,
.project-portfolio-clean,
.success-stories,
.testing-capabilities-grid,
.project-showcase-section,
.service-modules-section,
.tech-stack-section,
.process-flow-section,
.project-showcase-cards,
.services-grid-section,
.detailed-services-tabs,
.project-lifecycle-timeline,
.services-accordion-section,
.standards-slider-section,
.portfolio-isotope-section,
.specializations-carousel,
.interactive-process-section,
.services-hexagon-section,
.service-panels-section,
.detailed-services-overlay,
.methodologies-carousel,
.software-tools {
    padding: 60px 0;
}

.standards-section,
.standards-section-clean {
    padding: 60px 0;
}

/* Fix oversized service cards */
.service-card-og,
.service-card-ed,
.service-card-oil-gas,
.service-card-petrochem,
.service-card-pw,
.service-card-ww,
.service-card-tp {
    padding: 2rem 1.5rem;
    border-radius: 14px;
}

/* Fix oversized detail icons */
.detail-icon,
.detail-icon-clean,
.service-icon-og,
.service-icon-ed,
.service-icon-oil-gas,
.service-icon-petrochem,
.service-icon-pw,
.service-icon-ww,
.service-icon-tp {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    border-radius: 14px;
}

/* Fix detail images */
.detail-image img,
.detail-image-clean img {
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.12);
}

/* Fix why-feature padding */
.why-feature {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
}

/* Fix project cards */
.project-card-og,
.project-card-clean,
.project-card-pw,
.project-card-ww,
.project-card-tp,
.project-card {
    padding: 1.5rem;
    border-radius: 14px;
}

/* Fix standard items */
.standard-item-og,
.standard-card-clean,
.standard-item-pw,
.standard-item-ww,
.standard-item-tp,
.standard-item {
    padding: 1.5rem 1.2rem;
    border-radius: 14px;
}

/* Fix CTA wrapper padding */
.cta-wrapper {
    padding: 2.5rem 2rem;
}

/* Fix hero stats */
.hero-stats-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.hero-stats-row .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 100px;
}

/* Fix floating card in PMC hero */
.floating-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.15);
    max-width: 280px;
    margin-top: 1.5rem;
}

/* Fix hero image */
.hero-image-wrapper img {
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.15);
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Light breadcrumb variant (for light backgrounds) */
.breadcrumb-light .breadcrumb-item a {
    color: var(--nebula-primary);
}

.breadcrumb-light .breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-secondary);
}

/* Fix section description max-width */
.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive fixes */
@media (max-width: 991px) {

    .design-hero,
    .oil-gas-hero-clean,
    .petrochem-hero-clean,
    .geo-fullscreen-hero,
    .pmc-hero-section,
    .arch-animated-hero,
    .auto-dashboard-hero,
    .hero-section {
        padding-top: 0px;
        min-height: auto;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 0.65rem 1.4rem;
        font-size: 0.95rem;
    }

    .hero-cta .btn,
    .hero-cta-clean .btn,
    .hero-cta-animated .btn,
    .hero-cta-section .btn,
    .hero-dashboard-cta .btn,
    .hero-cta-buttons .btn,
    .hero-buttons .btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card-og,
    .service-card-ed,
    .service-card-oil-gas,
    .service-card-petrochem,
    .service-card-pw,
    .service-card-ww,
    .service-card-tp {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats-row {
        gap: 1rem;
    }

    .hero-stats-row .stat-item {
        padding: 0.8rem 1rem;
        min-width: 80px;
    }

    .cta-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-cta,
    .hero-cta-clean,
    .hero-cta-animated,
    .hero-cta-section,
    .hero-dashboard-cta,
    .hero-cta-buttons,
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .hero-cta .btn,
    .hero-cta-clean .btn,
    .hero-cta-animated .btn,
    .hero-cta-section .btn,
    .hero-dashboard-cta .btn,
    .hero-cta-buttons .btn,
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
}


/* ============================================
   SECTION HEADER STACKING FIX
   Ensures subtitle, title, description are
   always stacked vertically, never inline
   ============================================ */
.section-header,
.section-header-clean,
.text-center.mb-5,
.text-center.mb-4 {
    display: block;
}

.section-subtitle,
.section-subtitle-clean,
.sec-label,
.auto-label,
.field-label,
.arch-label {
    display: block !important;
    width: 100%;
}

.section-title,
.section-title-clean,
.sec-title,
.auto-title,
.field-title,
.arch-title {
    display: block !important;
    width: 100%;
}

.section-description,
.section-description-clean,
.sec-desc,
.auto-desc,
.field-desc {
    display: block !important;
    width: 100%;
}

/* Fix for pages using inline section headers */
.section-header .section-subtitle+.section-title,
.section-header .section-title+.section-description {
    margin-top: 0.5rem;
}

/* Footer icon fix - ensure Bootstrap Icons load correctly */
.footer-section i,
.contact-icon i,
.social-link i,
.footer-links i {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    display: inline-block;
}

/* Footer contact overflow fix */
.footer-contact .contact-item {
    overflow: hidden;
}

.contact-content {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.contact-content p,
.contact-content a {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Footer social links flex fix */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* Chatbot icon fix */
.premium-chat-bot i,
.chat-widget-btn i,
.comm-icon i,
.quick-action-btn i {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    display: inline-block;
}


/* ============================================
   CRITICAL FIX: Section Header Stacking
   Ensures subtitle → title → description
   are always on separate lines
   ============================================ */

/* Force block display on ALL section header elements */
.section-header .section-subtitle,
.section-header-clean .section-subtitle,
.text-center .section-subtitle,
.text-center>.section-subtitle,
div>.section-subtitle,
.section-subtitle {
    display: block !important;
    width: 100%;
    margin-bottom: 0.6rem;
}

.section-header .section-title,
.section-header-clean .section-title,
.text-center .section-title,
.text-center>.section-title,
div>.section-title,
.section-title {
    display: block !important;
    width: 100%;
    margin-bottom: 1rem;
}

.section-header .section-description,
.section-header-clean .section-description,
.text-center .section-description,
.text-center>.section-description,
div>.section-description,
.section-description {
    display: block !important;
    width: 100%;
}

/* Fix for pages using section-header-clean */
.section-header-clean {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-clean {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.8rem;
    line-height: 1.25;
    width: 100%;
}

.section-description-clean {
    display: block !important;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   HERO BREADCRUMB - Universal Standard Style
   Used across all pages for consistent look
   ============================================ */
.page-hero-section {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    padding: 130px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M40 0L0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23g)"/></svg>');
}

.page-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-hero-section .breadcrumb-item a:hover {
    color: white;
}

.page-hero-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.page-hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.page-hero-section p.lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media(max-width:768px) {
    .page-hero-section {
        padding: 110px 0 50px;
    }

    .page-hero-section h1 {
        font-size: 1.9rem;
    }
}

/* ============================================
   INDUSTRIAL PAGE - Softer Theme Fix
   ============================================ */
.industrial-institutional-hero {
    background: linear-gradient(135deg, #1e4d7b 0%, #2d7dd2 60%, #1a6b5a 100%) !important;
}

/* ============================================
   CONTACT PAGE - Hero with breadcrumb
   ============================================ */
.contact-page-hero {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    padding: 30px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M40 0L0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23g)"/></svg>');
}

.contact-page-hero .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-page-hero .hero-title-clean {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.contact-page-hero .hero-subtitle-clean {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-hero .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.contact-page-hero .breadcrumb-item a:hover {
    color: white !important;
}

.contact-page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.contact-page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 0px 0 50px;
    }

    .contact-page-hero .hero-title-clean {
        font-size: 2rem;
    }
}

/* ============================================
   OUR CLIENTS PAGE - Hero fix
   ============================================ */
.clients-hero {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    padding: 30px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
}

.clients-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M40 0L0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23g)"/></svg>');
}

.clients-hero .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.clients-hero .hero-title-clean {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.clients-hero .hero-subtitle-clean {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.clients-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    justify-content: center;
    display: inline-flex !important;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.clients-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.clients-hero .breadcrumb-item a:hover {
    color: white !important;
}

.clients-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.clients-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Stats row */
.clients-hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.clients-stat-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    min-width: 100px;
}

.clients-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.clients-stat-lbl {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.clients-hero .hero-cta-clean {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .clients-hero {
        padding: 0px 0 50px;
    }

    .clients-hero .hero-title-clean {
        font-size: 2rem;
    }

    .clients-hero-stats {
        gap: 0.75rem;
    }

    .clients-stat-item {
        min-width: 80px;
        padding: 0.6rem 1rem;
    }

    .clients-stat-num {
        font-size: 1.4rem;
    }
}

/* ============================================
   PMC PAGE - Hero breadcrumb fix
   ============================================ */
.pmc-hero-section {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    padding: 0px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.pmc-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M40 0L0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23g)"/></svg>');
}

.pmc-hero-section .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pmc-hero-section .hero-title-clean {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pmc-hero-section .hero-subtitle-clean {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pmc-hero-section .hero-cta-clean {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* PMC Hero Stats */
.pmc-hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pmc-stat-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    min-width: 110px;
}

.pmc-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.pmc-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.pmc-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.pmc-hero-section .breadcrumb-item a:hover {
    color: white;
}

.pmc-hero-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.pmc-hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:991px) {
    .pmc-hero-section {
        padding: 110px 0 50px;
    }

    .pmc-hero-section .hero-title-clean {
        font-size: 2rem;
    }
}

@media(max-width:576px) {
    .pmc-hero-section .hero-title-clean {
        font-size: 1.7rem;
    }

    .pmc-hero-stats {
        gap: 0.75rem;
    }

    .pmc-stat-item {
        min-width: 90px;
        padding: 0.6rem 1rem;
    }
}

/* ============================================
   AUTOMATION PAGE - Simple breadcrumb
   ============================================ */
.auto-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

/* ============================================
   VENDOR REGISTRATION - Clean Hero + Form
   ============================================ */
.vendor-hero-section {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    padding: 30px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
}

.vendor-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="vg" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M40 0L0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23vg)"/></svg>');
}

.vendor-hero-section .hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vendor-hero-section .hero-title-clean {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.vendor-hero-section .hero-subtitle-clean {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.vendor-hero-section .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vendor-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.vendor-hero-section .breadcrumb-item a:hover {
    color: white !important;
}

.vendor-hero-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.vendor-hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

.vendor-hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vendor-stat-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    min-width: 110px;
}

.vendor-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.vendor-stat-lbl {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Form Section */
.vendor-form-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

/* Step Progress */
.vendor-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.vendor-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.vp-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.vendor-progress-step span {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vendor-progress-step.active .vp-step-icon {
    background: var(--nebula-primary);
    border-color: var(--nebula-primary);
    color: white;
}

.vendor-progress-step.active span {
    color: var(--nebula-primary);
}

.vendor-progress-step.completed .vp-step-icon {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.vendor-progress-step.completed span {
    color: #22c55e;
}

.vendor-progress-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
    margin-bottom: 1.2rem;
    min-width: 40px;
    transition: background 0.3s ease;
}

.vendor-progress-line.completed {
    background: #22c55e;
}

/* Form Card */
.vendor-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
    border: 1px solid #e2e8f0;
}

/* Step header */
.vf-step {
    display: none;
}

.vf-step.active {
    display: block;
}

.vf-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.vf-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.vf-step-icon i {
    color: white !important;
}

.vf-step-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin: 0 0 0.2rem;
}

.vf-step-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Upload zones */
.vf-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    position: relative;
}

.vf-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.vf-upload-zone:hover,
.vf-upload-zone.drag-over {
    border-color: var(--nebula-primary);
    background: #f0f6ff;
}

.vf-upload-content i {
    font-size: 2rem;
    color: var(--nebula-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.vf-upload-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.vf-upload-content span {
    color: var(--nebula-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Nav buttons */
.vf-nav {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .vendor-hero-section {
        padding: 0px 0 50px;
    }

    .vendor-hero-section .hero-title-clean {
        font-size: 2rem;
    }

    .vendor-form-card {
        padding: 1.5rem;
    }

    .vendor-progress-line {
        min-width: 20px;
    }
}

@media (max-width: 480px) {
    .vendor-progress {
        gap: 0;
    }

    .vendor-progress-step span {
        display: none;
    }

    .vendor-progress-line {
        min-width: 10px;
        flex: 1;
    }

    .vp-step-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .vendor-form-card {
        padding: 1rem;
    }

    .vendor-hero-stats {
        gap: 0.6rem;
    }

    .vendor-stat-item {
        min-width: 80px;
        padding: 0.6rem 0.8rem;
    }

    .vendor-stat-num {
        font-size: 1.4rem;
    }
}

/* ============================================
   CONTACT PAGE - Remove orange from CSS vars
   ============================================ */
.contact-us-custom-override {
    --primary: var(--nebula-primary);
    --secondary: var(--nebula-secondary);
}

/* Override contact page orange colors */
.contact-badge {
    background: var(--nebula-primary) !important;
}

.method-box::before {
    background: var(--nebula-primary) !important;
}

.method-box:hover .method-icon {
    background: var(--nebula-accent) !important;
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3) !important;
}

.method-box a {
    color: var(--nebula-accent) !important;
}

.contact-form-wrapper::before {
    background: linear-gradient(90deg, var(--nebula-primary), var(--nebula-accent), var(--nebula-primary)) !important;
}

.submit-button {
    background: var(--nebula-primary) !important;
}

.submit-button:hover {
    background: var(--nebula-accent) !important;
}

/* ============================================
   OUR CLIENTS - Remove orange from CSS
   ============================================ */
.percentage-bar {
    background: linear-gradient(90deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%) !important;
}

.excellence-card::before {
    background: linear-gradient(90deg, var(--nebula-primary) 0%, var(--nebula-secondary) 100%) !important;
}

.excellence-card:hover .excellence-icon {
    background: var(--nebula-accent) !important;
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3) !important;
}

.excellence-card:hover .excellence-number {
    color: rgba(29, 78, 216, 0.08) !important;
}

.sector-icon {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%) !important;
}

.cta-section {
    background: linear-gradient(135deg, var(--nebula-primary) 0%, var(--nebula-accent) 100%) !important;
}


/* ============================================
   FINAL COMPREHENSIVE FIXES
   ============================================ */

/* 1. Force all section headers to stack vertically */
.section-header,
.section-header-clean,
.text-center {
    display: block;
}

.section-subtitle,
.section-title,
.section-description,
.section-title-clean,
.section-description-clean {
    display: block !important;
    width: 100%;
}

/* 2. Stats row - fully responsive, no overflow */
.stats-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
    align-items: stretch !important;
}

.stats-row .stat-item {
    flex: 1 1 auto !important;
    min-width: 80px !important;
    max-width: 150px !important;
    background: #f0f6ff !important;
    border: 1px solid #dbeafe !important;
    border-radius: 10px !important;
    padding: 0.75rem 0.5rem !important;
    text-align: center !important;
}

.stats-row .stat-item h3 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: var(--nebula-primary) !important;
    margin-bottom: 0.2rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.stats-row .stat-item p {
    font-size: 0.75rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    white-space: normal !important;
}

@media (max-width: 480px) {
    .stats-row .stat-item {
        min-width: 70px !important;
        padding: 0.6rem 0.4rem !important;
    }

    .stats-row .stat-item h3 {
        font-size: 1.3rem !important;
    }

    .stats-row .stat-item p {
        font-size: 0.7rem !important;
    }
}

/* 3. Bootstrap Icons - ensure they render */
[class^="bi-"]::before,
[class*=" bi-"]::before {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}

/* 4. Footer - ensure all text is visible */
.premium-footer,
.premium-footer * {
    color: inherit;
}

.premium-footer .footer-description,
.premium-footer .footer-links a,
.premium-footer .social-title,
.premium-footer .copyright p,
.premium-footer .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.premium-footer .footer-title {
    color: white !important;
}

.premium-footer .contact-content h6 {
    color: white !important;
}

.premium-footer .contact-content p,
.premium-footer .contact-content a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.premium-footer .contact-content a:hover {
    color: white !important;
}

/* 5. Breadcrumb - universal fix for all hero sections */
.oil-gas-hero-clean .breadcrumb,
.petrochem-hero-clean .breadcrumb,
.geo-fullscreen-hero .breadcrumb,
.arch-hero .breadcrumb,
.auto-hero .breadcrumb,
.field-hero .breadcrumb,
.page-hero-section .breadcrumb,
.pmc-hero-section .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 1rem !important;
    /* justify-content: flex-start !important; */
}

.oil-gas-hero-clean .breadcrumb-item a,
.petrochem-hero-clean .breadcrumb-item a,
.geo-fullscreen-hero .breadcrumb-item a,
.arch-hero .breadcrumb-item a,
.auto-hero .breadcrumb-item a,
.field-hero .breadcrumb-item a,
.page-hero-section .breadcrumb-item a,
.pmc-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.oil-gas-hero-clean .breadcrumb-item a:hover,
.petrochem-hero-clean .breadcrumb-item a:hover,
.geo-fullscreen-hero .breadcrumb-item a:hover,
.arch-hero .breadcrumb-item a:hover,
.auto-hero .breadcrumb-item a:hover,
.field-hero .breadcrumb-item a:hover,
.page-hero-section .breadcrumb-item a:hover,
.pmc-hero-section .breadcrumb-item a:hover {
    color: white !important;
}

.oil-gas-hero-clean .breadcrumb-item.active,
.petrochem-hero-clean .breadcrumb-item.active,
.geo-fullscreen-hero .breadcrumb-item.active,
.arch-hero .breadcrumb-item.active,
.auto-hero .breadcrumb-item.active,
.field-hero .breadcrumb-item.active,
.page-hero-section .breadcrumb-item.active,
.pmc-hero-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.oil-gas-hero-clean .breadcrumb-item+.breadcrumb-item::before,
.petrochem-hero-clean .breadcrumb-item+.breadcrumb-item::before,
.geo-fullscreen-hero .breadcrumb-item+.breadcrumb-item::before,
.arch-hero .breadcrumb-item+.breadcrumb-item::before,
.auto-hero .breadcrumb-item+.breadcrumb-item::before,
.field-hero .breadcrumb-item+.breadcrumb-item::before,
.page-hero-section .breadcrumb-item+.breadcrumb-item::before,
.pmc-hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}


/* ============================================
   INDUSTRY PAGES - Centered Hero CSS
   Matches engineering-design-services.php style
   ============================================ */

/* Shared hero base - all industry pages */
.power-hero-clean,
.water-hero-clean,
.transport-hero-clean,
.industrial-hero-clean {
    position: relative;
    padding: 30px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 60vh;
}

/* Unique gradient per page - eye-friendly, related to industry */
.power-hero-clean {
    background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
}

.water-hero-clean {
    background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%);
}

.transport-hero-clean {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.industrial-hero-clean {
    background: linear-gradient(135deg, #1e3a5f 0%, #374151 60%, #1d4ed8 100%);
}

/* Background pattern overlay */
.power-hero-clean .hero-bg-pattern,
.water-hero-clean .hero-bg-pattern,
.transport-hero-clean .hero-bg-pattern,
.industrial-hero-clean .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
    z-index: 1;
}

/* Centered content wrapper */
.hero-content-center-clean {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Breadcrumb - pill style matching design-hero */
.hero-breadcrumb-clean {
    margin-bottom: 2rem;
}

.hero-breadcrumb-clean .breadcrumb {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    border-radius: 50px !important;
    padding: 0.6rem 1.5rem !important;
    justify-content: center !important;
    display: inline-flex !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.hero-breadcrumb-clean .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.hero-breadcrumb-clean .breadcrumb-item a:hover {
    color: white !important;
}

.hero-breadcrumb-clean .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-breadcrumb-clean .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Hero title */
.hero-title-center {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

/* Hero subtitle */
.hero-subtitle-center {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* CTA buttons */
.hero-cta-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-center .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {

    .power-hero-clean,
    .water-hero-clean,
    .transport-hero-clean,
    .industrial-hero-clean {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .hero-title-center {
        font-size: 1.8rem;
    }

    .hero-subtitle-center {
        font-size: 1rem;
    }

    .hero-cta-center {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-center .btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-title-center {
        font-size: 1.6rem;
    }
}

/* ============================================
   SECTION HEADERS - Center fix for all pages
   Ensures subtitle → title → description
   are centered and stacked vertically
   ============================================ */

/* Force text-center sections to stack properly */
.text-center .section-subtitle,
.section-header.text-center .section-subtitle,
.section-header-clean.text-center .section-subtitle {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
}

.text-center .section-title,
.section-header.text-center .section-title,
.section-header-clean.text-center .section-title {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 0.8rem !important;
}

.text-center .section-description,
.section-header.text-center .section-description,
.section-header-clean.text-center .section-description {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Also fix section-title-clean and section-description-clean */
.text-center .section-title-clean,
.section-header-clean .section-title-clean {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
}

.text-center .section-description-clean,
.section-header-clean .section-description-clean {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ============================================
   POWER-ENERGY PAGE - Section fixes
   ============================================ */

/* Standards section - dark background, white text */
.standards-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
    padding: 5rem 0 !important;
}

.standards-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.standards-section .section-title {
    color: white !important;
}

.standards-section .section-description {
    color: rgba(255, 255, 255, 0.85) !important;
}

.standard-item-pw {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 1.5rem !important;
    text-align: center !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.standard-item-pw:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-4px) !important;
}

.standard-icon-pw {
    width: 56px !important;
    height: 56px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.4rem !important;
    color: white !important;
}

.standard-icon-pw i {
    color: white !important;
    font-size: 1.3rem !important;
}

.standard-item-pw h4 {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
}

.standard-item-pw p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Same fix for water, transport, industrial standard items */
.standard-item-ww,
.standard-item-tp {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 1.5rem !important;
    text-align: center !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.standard-item-ww h4,
.standard-item-tp h4 {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
}

.standard-item-ww p,
.standard-item-tp p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.standard-icon-ww,
.standard-icon-tp {
    width: 56px !important;
    height: 56px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
}

.standard-icon-ww i,
.standard-icon-tp i {
    color: white !important;
    font-size: 1.3rem !important;
}

/* ============================================
   GLOBAL SECTION HEADER FIX - FINAL
   Overrides any flex/grid layout on section-header
   ============================================ */
.section-header,
.section-header.text-center,
div.section-header {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 2.5rem !important;
    flex-direction: unset !important;
    align-items: unset !important;
    gap: unset !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.section-header .section-subtitle,
.section-header .section-title,
.section-header .section-description {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.section-header .section-description {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Why Choose section - ensure proper layout */
.why-choose-pw .section-header,
.why-choose-ww .section-header,
.why-choose-tp .section-header {
    text-align: left !important;
}

.why-choose-pw .section-header .section-subtitle,
.why-choose-pw .section-header .section-title,
.why-choose-pw .section-header .section-description,
.why-choose-ww .section-header .section-subtitle,
.why-choose-ww .section-header .section-title,
.why-choose-ww .section-header .section-description,
.why-choose-tp .section-header .section-subtitle,
.why-choose-tp .section-header .section-title,
.why-choose-tp .section-header .section-description {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* CTA section button fix */
.cta-section .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--nebula-primary);
}