:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg1MiwgMTUyLDIxOSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.service-detail-card {
    border: none;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    background: white;
    transform: translateY(0);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.15);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary), #0dd9fd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, #0dd9fd, var(--secondary));
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.service-detail-card .card-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-detail-card:hover .card-title {
    color: var(--secondary);
    transform: translateY(-5px);
}

.service-detail-card .card-text {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-detail-card:hover .card-text {
    color: #495057;
    transform: translateY(2px);
}

.service-detail-card .list-unstyled {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.service-detail-card .list-unstyled li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(236, 240, 241, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-card .list-unstyled li:hover {
    padding-left: 15px;
    color: var(--secondary);
    transform: translateX(5px);
}

.service-detail-card .list-unstyled li:last-child {
    border-bottom: none;
}

.service-detail-card .list-unstyled li i {
    color: #2ecc71;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.service-detail-card .list-unstyled li:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary);
}

.service-detail-card .btn {
    position: relative;
    z-index: 2;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-detail-card:hover .btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* Image enhancements */
.service-hero .img-fluid {
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-hero .img-fluid:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
}

.service-hero .display-1 {
    font-size: 8rem;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--secondary), #0dd9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero .display-1:hover {
    transform: scale(1.1) rotateY(360deg);
}

/* Enhanced Process Steps */
.process-step {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.step-icon {
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.process-step:hover .step-icon i {
    transform: scale(1.2) rotateY(360deg);
    color: #2980b9;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--secondary), #0dd9fd);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.process-step h4 {
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #0dd9fd);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.process-step:hover h4:after {
    width: 80px;
}

.process-step p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover p {
    color: #495057;
    transform: translateY(2px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .process-step {
        margin-bottom: 30px;
    }
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: var(--light);
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Enhanced Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    padding: 45px 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    background: white;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02), rgba(13, 217, 253, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--secondary);
    position: relative;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(13, 217, 253, 0.05));
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), #0dd9fd);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    animation: pulse 2s infinite;
}

.pricing-card h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pricing-card:hover h4 {
    color: var(--secondary);
    transform: translateY(-3px);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), #0dd9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pricing-card:hover .price {
    transform: scale(1.1);
}

.price-period {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 400;
}

.pricing-card p {
    color: #6c757d;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pricing-card:hover p {
    color: #495057;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(236, 240, 241, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li:hover {
    padding-left: 10px;
    color: var(--secondary);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #2ecc71;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.feature-list li:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary);
}

.pricing-card .btn {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card:hover .btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    background-color: white;
    border: none;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:not(.collapsed) {
    background-color: var(--secondary);
    color: white;
}

/* Hide default accordion checkmark */
.accordion-button::after {
    display: none !important;
}

/* Ensure only one checkmark is shown */
.accordion-button:not(.collapsed)::after {
    display: none !important;
}

.faq-body {
    padding: 20px;
    background-color: #f8f9fa;
}
.cta-section {
    padding: 80px 0;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

/* Enhanced Animation classes for What We Offer */
.service-detail-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-detail-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-detail-card:nth-child(1) { transition-delay: 0.1s; }
.service-detail-card:nth-child(2) { transition-delay: 0.2s; }
.service-detail-card:nth-child(3) { transition-delay: 0.3s; }
.service-detail-card:nth-child(4) { transition-delay: 0.4s; }
.service-detail-card:nth-child(5) { transition-delay: 0.5s; }
.service-detail-card:nth-child(6) { transition-delay: 0.6s; }

/* Floating animation for service cards */
@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.service-floating {
    animation: serviceFloat 4s ease-in-out infinite;
}

/* Glow animation for service cards */
@keyframes serviceGlow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
    }
    50% {
        box-shadow: 0 20px 45px rgba(52, 152, 219, 0.25);
    }
}

.service-glow {
    animation: serviceGlow 3s ease-in-out infinite;
}

/* Stagger animation for process steps */
.process-step {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

/* Stagger animation for pricing cards */
.pricing-card {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-card:nth-child(3) { transition-delay: 0.3s; }

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Glow animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
    }
    50% {
        box-shadow: 0 15px 40px rgba(52, 152, 219, 0.25);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Pulse animation for popular badge */
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
}
