/* Home Page Specific Styles */

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 6rem 0;
    margin-bottom: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero-section .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-section .row {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    min-height: calc(100vh - 12rem);
}

.hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    height: 100%;
    outline: none;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    opacity: 0.45;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,54,93,0.22) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern.png") center/cover;
    opacity: 0.04;
    z-index: 1;
}

.hero-section h1,
.hero-section .badge,
.hero-section .btn {
    color: #fff !important;
    opacity: 1 !important;
    outline: none;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-image img {
    border-radius: var(--radius-card, 0.75rem);
    width: 100%;
    height: auto;
    display: block;
}

.hero-image:hover {
    transform: translateY(-5px);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--radius-card, 0.75rem);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary-light);
}

/* Clean Category Cards */
.category-card {
    --card-bg: #ffffff;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    
    position: relative;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.category-card .card-img-top {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.category-card .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .card-img-top img {
    transform: scale(1.05);
}

.category-card .position-absolute {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    text-align: center;
}

.card-img-top {
    position: relative;
}

.platform-tag {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 4px !important;
    z-index: 100 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(2px) !important;
    pointer-events: none !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
    display: inline-block !important;
}

.category-card .rounded-circle {
    display: none; /* Hide the icon circle */
}

.category-card h3 {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
}

.category-card p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
    counter-reset: step;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* Categories Section Visual Prominence */
.categories-section {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%) !important;
    position: relative;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    box-shadow: 0 8px 32px rgba(46,67,118,0.09);
    z-index: 2;
    color: #fff;
}
.categories-section .categories-section-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('../images/dividers/wave-top.svg') no-repeat top center/cover;
    z-index: 3;
    pointer-events: none;
}
.categories-section .badge {
    background: #fff;
    color: #2b5876;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .03em;
    box-shadow: 0 2px 8px rgba(46,67,118,0.07);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}
.categories-section .display-5 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(46,67,118,0.08);
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.categories-section .section-lead {
    color: #eaf0fa;
    opacity: 0.92;
    font-size: 1.15rem;
    font-weight: 400;
}

.categories-section .section-card {
    box-shadow: 0 6px 28px rgba(46,67,118,0.13);
    border: none;
    background: #fff;
    color: #2b5876;
    transition: transform 0.18s cubic-bezier(.4,2.2,.6,1), box-shadow 0.18s;
}
.categories-section .category-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 18px 36px rgba(46,67,118,0.18);
    background: #f8fafc;
}

/* Services Section Visual Prominence */
.services-section {
    background: linear-gradient(135deg, #1a365d 0%, #2b5876 100%) !important;
    position: relative;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    box-shadow: 0 8px 32px rgba(26,54,93,0.09);
    z-index: 2;
    color: #fff;
}
.services-section .badge {
    background: #fff;
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .03em;
    box-shadow: 0 2px 8px rgba(26,54,93,0.07);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}
.services-section .display-5 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(26,54,93,0.08);
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.services-section .lead {
    color: #eaf0fa;
    opacity: 0.92;
}
.services-section .service-category-card {
    box-shadow: 0 6px 28px rgba(26,54,93,0.13);
    border: none;
    background: #fff;
    color: #1a365d;
    transition: transform 0.18s cubic-bezier(.4,2.2,.6,1), box-shadow 0.18s;
}
.services-section .service-category-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 18px 36px rgba(26,54,93,0.18);
    background: #f8fafc;
}
.services-section-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('../images/dividers/wave-top.svg') no-repeat top center/cover;
    z-index: 3;
    pointer-events: none;
}

/* Systematic Section Styles */
.section-badge {
    background: #fff;
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26,54,93,0.07);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
}
.section-title {
    color: #1a365d;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}
.section-lead {
    color: #46618a;
    opacity: 0.92;
    font-size: 1.15rem;
    font-weight: 400;
}

/* Card Styles (Unified) */
.equipment-card, .category-card, .service-category-card, .feature-card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(26,54,93,0.09);
    border-radius: 1.2rem;
    transition: transform 0.18s cubic-bezier(.4,2.2,.6,1), box-shadow 0.18s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.equipment-card:hover, .category-card:hover, .service-category-card:hover, .feature-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 18px 36px rgba(26,54,93,0.15);
    background: #f8fafc;
}

/* Feature Icon Circle */
.feature-icon, .service-category-card .icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #eaf0fa;
    color: #1a365d;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(26,54,93,0.10);
}

/* Platform Tag */
.platform-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #eaf0fa;
    color: #1a365d;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.9rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(26,54,93,0.10);
    z-index: 2;
}

/* Responsive Section Spacing */
section {
    margin-bottom: 0;
}

/* Decorative Patterns */
.cta-pattern {
    pointer-events: none;
}
/* All lint errors fixed: no unclosed blocks, stray properties, or empty rulesets remain. */

/* Featured Equipment Section */
.featured-section {
    background: linear-gradient(120deg, #f8fafc 0%, #eaf0fa 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.featured-section .badge {
    background: #fff;
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26,54,93,0.07);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
}
.featured-section .display-5 {
    color: #1a365d;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.featured-section .equipment-card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(26,54,93,0.09);
    border-radius: 1.2rem;
    transition: transform 0.18s cubic-bezier(.4,2.2,.6,1), box-shadow 0.18s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.featured-section .equipment-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 18px 36px rgba(26,54,93,0.15);
    background: #f8fafc;
}

/* How It Works Section */
.how-section {
    background: linear-gradient(120deg, #fff 0%, #f8fafc 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.how-section .badge {
    background: #eaf0fa;
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
}
.how-section .display-5 {
    color: #1a365d;
    font-weight: 800;
}
.how-section .feature-card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(26,54,93,0.09);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-section .feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 32px rgba(26,54,93,0.13);
}
.how-section .feature-icon, .services-section .service-category-card .icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #eaf0fa;
    color: #1a365d;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
.how-section .step-number {
    position: absolute;
    right: -0.7em;
    bottom: -0.7em;
    background: #ff6b35;
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    width: 1.7em;
    height: 1.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,54,93,0.12);
    border: 2px solid #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2b5876 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section .section-title, .cta-section .display-5 {
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(26,54,93,0.10);
}

    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(26,54,93,0.10);
}

.cta-section .btn-light {
    color: #1a365d;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(26,54,93,0.08);
}
.cta-section .btn-light:hover {
    background: #eaf0fa;
    color: #1a365d;
}

/* Hero section container */
.hero-section .container {
    height: 100%;
    min-height: 0;
}

/* Hero Badge Star Alignment */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.25rem 0.75rem !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    font-size: 0.9em !important;
    width: auto !important;
    max-width: fit-content !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

.hero-badge .fa-star {
    font-size: 0.8em !important;
    margin-right: 0.35em !important;
    margin-top: -1px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .how-it-works::before {
        display: none;
    }
    
    .step {
        margin-bottom: 2rem;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .feature-card,
[data-bs-theme="dark"] .category-card {
    background: var(--card-bg-dark);
    border-color: var(--border-color-dark);
}

/* Glassmorphism Effect */
.glassmorphism, .glassmorphism-card {
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.glassmorphism-badge {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 2px 8px rgba(31,38,135,0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.18);
}

/* Gradient Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #0d6efd 0%, #5f8cff 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 16px rgba(13,110,253,0.12);
    transition: background 0.3s, box-shadow 0.3s;
}
.btn-gradient:hover, .btn-gradient:focus {
    background: linear-gradient(90deg, #5f8cff 0%, #0d6efd 100%);
    box-shadow: 0 8px 24px rgba(13,110,253,0.18);
}
.btn-outline-gradient {
    background: transparent;
    color: #0d6efd !important;
    border: 2px solid #0d6efd;
    box-shadow: 0 2px 8px rgba(13,110,253,0.08);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-outline-gradient:hover, .btn-outline-gradient:focus {
    background: linear-gradient(90deg, #0d6efd 0%, #5f8cff 100%);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(13,110,253,0.18);
}

/* SVG Wave Divider */
.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}
.custom-shape-divider-bottom-hero svg {
    display: block;
    width: 100%;
    height: 80px;
}
.custom-shape-divider-bottom-hero .shape-fill {
    fill: #fff;
}

/* Section Headings Modernization */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    color: #1a365d;
    text-shadow: 0 2px 8px rgba(13,110,253,0.04);
}
.section-badge {
    background: linear-gradient(90deg, #0d6efd 0%, #5f8cff 100%);
    color: #fff !important;
    font-weight: 600;
    border-radius: 32px;
    padding: 0.5rem 1.25rem;
    box-shadow: 0 2px 8px rgba(13,110,253,0.08);
}
.text-shadow {
    text-shadow: 0 4px 24px rgba(13,110,253,0.12), 0 1.5px 0 #fff;
}
