/* Services Page Styles */
:root {
    --primary-dark: #1e3b5f;
    --warning-gold: #ffc107;
    --light-bg: #f8f9fa;
    --gradient-dark: linear-gradient(135deg, #1e3b5f2b 0%, #34495e 100%);
    --shadow-light: 0 4px 6px #1e3b5f2b;
    --shadow-medium: 0 8px 25px #1e3b5f2b;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --light-green: #02fad62b;
}
.bg-primary{background-color: #1e3b5f!important;color: #fff;}
.text-primary{color: #1e3b5f!important;}
.text-warning{color: #00ffda!important;}
.bg-warning{background-color: #00ffda!important;}
.light-green{background: #02fad62b;}
/* Hero Section Enhancements */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

/* Service Category Cards */
.service-category-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent,#1e3b5f2b, transparent);
    transition: left 0.5s ease;
}

.service-category-card:hover::before {
    left: 100%;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: #1e3b5f38;
}

.service-icon {
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-category-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Equipment Filter System */
.equipment-filters {
    margin-bottom: 3rem;
}

.equipment-filters .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0.25rem;
    position: relative;
    overflow: hidden;
}

.equipment-filters .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    /* background: #1e3b5f38; */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.equipment-filters .btn:hover::before,
.equipment-filters .btn.active::before {
    width: 100%;
    height: 100%;
}

.equipment-filters .btn.active {
    background: var(--primary-dark);
    border-color: var(--warning-gold);
    color: #fff!important;
    transform: scale(1.05);
}

/* Equipment Cards Enhanced */
.equipment-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.equipment-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent var(--warning-gold) transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-card:hover::after {
    opacity: 0.1;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: #1e3b5f14;
}

.equipment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e3b5f14;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

.equipment-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #1e3b5f38;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.equipment-card:hover .equipment-icon::before {
    width: 100%;
    height: 100%;
}

.equipment-card:hover .equipment-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Specification Navigation */
.specs-nav {
    margin-bottom: 3rem;
}

.spec-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.spec-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
    transition: left 0.6s ease;
}

.spec-nav-btn:hover::before,
.spec-nav-btn.active::before {
    left: 100%;
}

.spec-nav-btn:hover,
.spec-nav-btn.active {
    background: var(--light-green);
    transform: translateY(-2px);
    border-color: #fff;
}

.spec-nav-btn.active {
    /* box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); */
    border: 1px solid #fff!important;
}

/* Specification Cards */
.spec-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.spec-card:hover::before {
    transform: scale(1);
}

.spec-card:hover {
    background: rgb(255 255 255 / 0%);
    border-color: #ffffffb5;
    box-shadow: 0 10px 30px #00000003;

}

.spec-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.spec-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.spec-header {
    position: relative;
    z-index: 2;
}

.spec-details {
    position: relative;
    z-index: 2;
}

.spec-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.spec-item:hover {
    padding-left: 0.5rem;
    background: var(--light-green);
    border-radius: 4px;
}

.spec-item:last-child {
    border-bottom: none;
}

/* Workflow Timeline Enhanced */
.workflow-timeline {
    position: relative;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-dark) 0%, var(--primary-dark) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 992px) {
    .workflow-timeline::before {
        display: none;
    }
}

.workflow-step {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-light);
    z-index: 2;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 100%);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step.animate-step {
    opacity: 1;
    transform: translateY(0);
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #1e3b5f;
    color: #fff;
    box-shadow: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 3;
    border: 3px solid white;
}

.step-icon {
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.workflow-step:hover .step-icon {
    transform: scale(1.1);
    color: var(--warning-gold);
}

/* Pricing Cards Enhanced */
.pricing-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--warning-gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warning);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    z-index: 2;
}

.price-display {
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.price-currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--warning-gold);
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.pricing-features {
    position: relative;
    z-index: 2;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.pricing-features ul li:hover {
    padding-left: 0.5rem;
    color: var(--warning-gold);
}
/* Enhanced CTA Section Styles */
.cta-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Enhancements */
.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    opacity: 0.95;
}

.cta-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}



.feature-item {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Button Enhancements */
.btn-warning {
    background: var(--gradient-warning);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-warning:hover::before {
    width: 100%;
    height: 100%;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-warning {
    border: 2px solid var(--warning-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-warning);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-warning:hover::before {
    left: 0;
}

.btn-outline-warning:hover {
    color: var(--primary-dark);
    border-color: var(--warning-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

/* Scroll to Top Button Enhanced */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-warning);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    font-size: 1.2rem;
}

#scrollToTop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

#scrollToTop:hover::before {
    width: 100%;
    height: 100%;
}

#scrollToTop:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    border-top-color: var(--warning-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-in-view {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design Enhancements */
@media (max-width: 1200px) {
    .workflow-timeline::before {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
}
