* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
 
}
body, section {
    margin: 0 !important;
    padding: 0 !important;
}

#home.hero {
    margin-bottom: 0 !important;
}

#services {
    margin-top: -5px;
}

/* Welcome Screen Styles */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 50%, #4dd0e1 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.page-hero {
    padding-top: 140px; /* header height ke barabar */
    padding-bottom: 60px;
    background: #f9fbfd;
}
#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.welcome-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.welcome-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
}

.welcome-content .greeting {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.welcome-content .tagline {
    font-size: 1.8rem;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.loading-animation {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.7s forwards;
}

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

.dot {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Main Website Styles */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-content.visible {
    opacity: 1;
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,188,212,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00bcd4;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #00bcd4;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    color: white;
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 50%, #4dd0e1 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #42a5f5 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #6a1b9a 0%, #8e24aa 50%, #ab47bc 100%);
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, #00695c 0%, #00897b 50%, #26a69a 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ff9001;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
   
}

.cta-button {
    background: white;
    color: #0097a7;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #f0f9ff;
}

.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,188,212,0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #4dd0e1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,188,212,0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.service-card p {
    color: #718096;
    line-height: 1.8;
    font-size: 0.95rem;
}

.products {
    background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
}

.product-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 6px solid #00bcd4;
}

.product-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,188,212,0.15);
}
a.product-card {
    text-decoration: none; /* underline remove */
    color: inherit; /* blue color remove */
    display: block; /* card jaisa behave kare */
}

    /* Ensure headings don't look like links */
    a.product-card h3 {
        color: #0b7285; /* ya jo aap ka theme color ho */
        text-decoration: none;
    }

    /* Paragraph color normal */
    a.product-card p {
        color: #fff;
    }
.product-card h3 {
    color: #0097a7;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-card p {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
}

.featured {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    border-left: 6px solid white;
    position: relative;
    overflow: hidden;
}

.featured::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
}

.featured h3 {
    color: white;
}

.featured p {
    color: rgba(255,255,255,0.95);
}

.contact-section {
    background: linear-gradient(135deg, #4b77b8 0%, #394a5c 100%);
    color: white;
    text-align: center;
    padding: 5rem 3rem;
}

.contact-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-button {
    background: white;
    color: #0097a7;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

footer {
    background: #1a202c;
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #00bcd4;
    font-style: italic;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00bcd4;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.content-section {
    padding: 80px 0;
    overflow: visible;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 30px;
}

.contact-info p {
    color: #cbd5e0;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .welcome-content h1 {
        font-size: 2rem;
    }

    .welcome-content .greeting {
        font-size: 1.5rem;
    }

    .welcome-content .tagline {
        font-size: 1.2rem;
    }

    .hero {
        height: 500px;
    }

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

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

    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.video-hero {
    position: relative;
    height: 70vh; /* 👈 banner chota */
    min-height: 520px; /* 👈 text ke liye safe */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* 👈 MUST be 0 */
}


.hero,
.slider-container,
.slide {
    background: transparent !important;
}

.slider-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
}
/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0b7285; /* DARK TEAL (logo matching) */
}
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

        .nav-links.active {
            display: flex;
        }
}

.video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 151, 167, 0.25); /* light blue */
    backdrop-filter: blur(3px); /* SOFT blur */
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
    pointer-events: none;
}
/* Content upar rahe */
.slider-container {
    position: relative;
    z-index: 2;
}
    /* WORKING BLUE BLUR OVERLAY */
    .video-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        /* BLUE TINT */
        background: rgba(0, 151, 167, 0.35);
        /* BLUR */
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 1;
        pointer-events: none;
    }

/* Text upar rahe */
.slider-container {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {

    .hero,
    .video-hero {
        padding-top: 80px; /* header height */
        height: 55vh;
        min-height: 420px;
    }

    .hero-content {
        padding-top: 20px;
    }
}
/* ============================================
   CMMS PAGE SPECIFIC STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

    .breadcrumb ol {
        list-style: none;
        display: flex;
        gap: 10px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }

    .breadcrumb li {
        font-size: 0.9rem;
    }

        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #6c757d;
        }

    .breadcrumb a {
        color: #0097a7;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb .active {
        color: #6c757d;
    }

/* CMMS Page Hero - Specific class to avoid conflicts */
.cmms-hero {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    padding: 80px 0 60px;
}

    .cmms-hero .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }

    .cmms-hero .hero-text h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 700;
        color: white;
    }

    .cmms-hero .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 30px;
        opacity: 0.95;
    }

    .cmms-hero .hero-stats {
        display: flex;
        gap: 40px;
        margin: 30px 0;
    }

    .cmms-hero .stat {
        text-align: center;
    }

        .cmms-hero .stat strong {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
        }

        .cmms-hero .stat span {
            display: block;
            font-size: 0.9rem;
            opacity: 0.9;
        }

    .cmms-hero .hero-cta {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }

    .cmms-hero .trust-badge {
        margin-top: 25px;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .cmms-hero .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

/* Button styles - using more specific selectors */
.cmms-page .btn,
.content-section .btn,
.cta-box .btn,
.final-cta .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.cmms-page .btn-primary,
.content-section .btn-primary,
.cta-box .btn-primary,
.final-cta .btn-primary {
    background: white;
    color: #0097a7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .cmms-page .btn-primary:hover,
    .content-section .btn-primary:hover,
    .cta-box .btn-primary:hover,
    .final-cta .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

.cmms-page .btn-outline,
.content-section .btn-outline,
.cta-box .btn-outline,
.final-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .cmms-page .btn-outline:hover,
    .content-section .btn-outline:hover,
    .cta-box .btn-outline:hover,
    .final-cta .btn-outline:hover {
        background: white;
        color: #0097a7;
    }

.cmms-page .btn-lg,
.content-section .btn-lg,
.cta-box .btn-lg,
.final-cta .btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cmms-page .btn-secondary,
.content-section .btn-secondary {
    background: #0097a7;
    color: white;
}

    .cmms-page .btn-secondary:hover,
    .content-section .btn-secondary:hover {
        background: #00bcd4;
    }

.cmms-page .btn-white,
.final-cta .btn-white {
    background: white;
    color: #0097a7;
}

/* Table of Contents */
.table-of-contents {
    background: #fff3cd;
    padding: 30px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

    .table-of-contents details {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }

    .table-of-contents summary {
        cursor: pointer;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .table-of-contents ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        list-style: none;
        padding-left: 0;
    }

    .table-of-contents a {
        color: #0097a7;
        text-decoration: none;
        font-weight: 500;
    }

        .table-of-contents a:hover {
            text-decoration: underline;
        }

/* Content Sections */
.content-section {
    padding: 80px 0;
}

    .content-section.bg-light {
        background: #f8f9fa;
    }

.section-intro {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #0097a7;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2d3748;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 0;
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

    .info-box.highlight {
        background: #fff3cd;
        border-left-color: #ffc107;
    }

    .info-box h3 {
        margin-top: 0;
        color: #1976d2;
    }

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.timeline-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #0097a7;
}

    .timeline-item strong {
        display: block;
        color: #0097a7;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

/* Grid Layouts */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #00bcd4;
}

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

    .feature-card .icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .feature-card h4 {
        color: #2d3748;
        margin: 15px 0 10px;
    }

/* Detailed Features */
.features-detailed {
    margin: 50px 0;
}

.feature-detailed {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #0097a7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-detailed h3 {
    margin-top: 20px;
    font-size: 1.6rem;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

    .check-list li {
        padding: 8px 0;
        padding-left: 30px;
        position: relative;
        color: #4a5568;
    }

        .check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00bcd4;
            font-weight: 700;
            font-size: 1.2rem;
        }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

    .benefit-card.featured {
        background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
        color: white;
    }

        .benefit-card.featured h3,
        .benefit-card.featured p {
            color: white;
        }

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.metric {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

.benefit-card.featured .metric {
    background: rgba(255,255,255,0.2);
}

/* ROI Calculator */
.roi-calculator {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 50px 0;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

    .roi-table th,
    .roi-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .roi-table th {
        background: #f8f9fa;
        font-weight: 600;
        color: #2d3748;
    }

    .roi-table .total-row {
        background: #e3f2fd;
        font-weight: 600;
    }

.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 20px 0;
}

/* Workflow Steps */
.workflow-steps {
    margin: 50px 0;
}

.workflow-step {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 100px;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 40px;
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-example {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 3px solid #0097a7;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.industry-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,188,212,0.2);
    }

.industry-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.industry-stats {
    background: #e3f2fd;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        text-align: left;
        border: 1px solid #dee2e6;
    }

    .comparison-table thead th {
        background: #0097a7;
        color: white;
        font-weight: 600;
    }

    .comparison-table tbody tr:nth-child(even) {
        background: #f8f9fa;
    }

    .comparison-table tbody tr:hover {
        background: #e3f2fd;
    }

.comparison-summary {
    margin: 50px 0;
}

.solution-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    .solution-card h4 {
        color: #0097a7;
        margin-bottom: 15px;
    }

/* Implementation Timeline */
.implementation-timeline {
    margin: 50px 0;
}

.timeline-phase {
    background: white;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.phase-header {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phase-number {
    background: white;
    color: #0097a7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.phase-header h3 {
    color: white;
    margin: 0;
}

.phase-content {
    padding: 30px;
}

.phase-tip {
    background: #fff3cd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 3px solid #ffc107;
}

.implementation-tips {
    margin: 50px 0;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    .tip-card.success {
        border-left: 4px solid #28a745;
    }

    .tip-card.warning {
        border-left: 4px solid #dc3545;
    }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

    .pricing-card.featured {
        border: 3px solid #0097a7;
        transform: scale(1.05);
    }

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.plan-header {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
}

    .plan-header h3 {
        margin: 0 0 5px;
        color: #2d3748;
        font-size: 1.8rem;
    }

.plan-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.plan-price {
    text-align: center;
    padding: 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0097a7;
}

.period {
    color: #6c757d;
    font-size: 1rem;
}

.plan-billing {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.plan-features {
    padding: 0 30px 30px;
}

    .plan-features h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #2d3748;
    }

    .plan-features ul {
        list-style: none;
        padding-left: 0;
    }

    .plan-features li {
        padding: 8px 0;
        color: #4a5568;
    }

.plan-cta {
    padding: 0 30px 20px;
}

    .plan-cta .btn {
        width: 100%;
    }

.plan-note {
    text-align: center;
    padding-bottom: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.pricing-faq {
    margin: 50px 0;
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    .faq-item h4 {
        color: #0097a7;
        margin-bottom: 10px;
    }

/* Case Studies */
.case-studies {
    margin: 50px 0;
}

.case-study {
    background: white;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 6px solid #0097a7;
}

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

.case-logo img {
    max-height: 60px;
    width: auto;
}

.case-info h3 {
    margin: 0 0 5px;
    color: #2d3748;
}

.case-industry {
    color: #6c757d;
    font-size: 0.95rem;
}

.case-challenge,
.case-solution,
.case-results {
    margin: 25px 0;
}

    .case-challenge h4,
    .case-solution h4,
    .case-results h4 {
        color: #0097a7;
        margin-bottom: 15px;
    }

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

.result-stat {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

    .result-stat strong {
        display: block;
        font-size: 2.5rem;
        color: #0097a7;
        margin-bottom: 5px;
    }

    .result-stat span {
        display: block;
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .result-stat small {
        display: block;
        color: #6c757d;
        font-size: 0.85rem;
    }

.case-quote {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid #0097a7;
}

    .case-quote blockquote {
        margin: 0 0 10px;
        font-style: italic;
        color: #4a5568;
        font-size: 1.05rem;
    }

    .case-quote cite {
        color: #0097a7;
        font-weight: 600;
        font-style: normal;
    }

/* FAQ Section */
.faq-list {
    margin: 50px 0;
}

.faq-item-detailed {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0097a7;
}

    .faq-item-detailed h3 {
        color: #2d3748;
        margin: 0 0 15px;
    }

.faq-cta {
    text-align: center;
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

/* CTA Boxes */
.cta-box {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 12px;
    margin: 50px 0;
}

    .cta-box h3 {
        color: white;
        margin: 0 0 15px;
    }

    .cta-box p {
        color: white;
        margin-bottom: 25px;
        font-size: 1.1rem;
    }

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #0097a7 0%, #00bcd4 100%);
    color: white;
    text-align: center;
    padding: 80px 3rem;
}

    .final-cta h2 {
        color: white;
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .final-cta > p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: white;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.cta-note {
    font-size: 0.95rem;
    margin: 20px 0 40px;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.trust-item {
    text-align: center;
}

    .trust-item strong {
        display: block;
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .trust-item span {
        font-size: 0.95rem;
        opacity: 0.9;
    }

/* Related Resources */
.related-resources {
    background: #f8f9fa;
    padding: 80px 3rem;
}

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

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

    .resource-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #2d3748;
    }

    .resource-card a {
        color: #0097a7;
        text-decoration: none;
        font-weight: 600;
    }

        .resource-card a:hover {
            text-decoration: underline;
        }

/* Responsive Design */
@media (max-width: 1200px) {
    .cmms-hero .hero-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .breadcrumb ol {
        padding: 0 1.5rem;
    }

    .cmms-hero .hero-text h1 {
        font-size: 2rem;
    }

    .cmms-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cmms-hero .hero-cta {
        flex-direction: column;
    }

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

    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        padding-left: 30px;
    }

    .step-number {
        position: static;
        margin-bottom: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .comparison-table-container {
        overflow-x: scroll;
    }
}

/* HEADER FIX */
.main-content {
    padding-top: 110px;
}

/* DROPDOWN BASE */
.has-dropdown {
    position: relative;
}
    .has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 14px; /* hover bridge */
        background: transparent;
    }
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ================= DESKTOP ================= */
@media (min-width: 769px) {

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 280px;
        background: #fff;
        border-radius: 14px;
        padding: 12px 0;
        box-shadow: 0 25px 60px rgba(0,0,0,0.18);
        display: none;
        z-index: 3000;
        animation: dropdownFade 0.25s ease;
    }

    .has-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ITEMS */
.dropdown-menu li {
    list-style: none;
}

    .dropdown-menu li a {
        display: block;
        padding: 14px 26px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #2d3748;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .dropdown-menu li:not(:last-child) a {
        border-bottom: 1px solid #f1f5f9;
    }

    .dropdown-menu li a:hover {
        background: linear-gradient(90deg, #e0f7fa, #ffffff);
        color: #0097a7;
        padding-left: 34px;
    }

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 1.5rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

        .nav-links.active {
            display: flex;
        }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f9fbfd;
        width: 100%;
        top: 100%;
        margin-top: 10px;
        display: none;
        padding: 8px 0;
    }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-menu li a {
            padding: 12px 20px;
        }
}

/* ANIMATION */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translate(-50%, 8px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
