/* Services Page Premium Styles */


:root {
    --primary-color: #00BDCD;
    --secondary-color: #192A56;
    --blue-dark: #0D102D;
    --text-color: #64748B;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #00BDCD 0%, #008894 100%);
    --font-family: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}



/* Page Header / Hero */
/* Page Header / Hero */
.services-hero {
    padding: 160px 0 120px;
    background:
        linear-gradient(to right, rgba(9, 21, 56, 0.9) 0%, rgba(9, 21, 56, 0.6) 100%),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Vector line pattern overlay */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    /* Fallback pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='500' height='500' viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,250 C150,100 350,400 500,250' stroke='rgba(255,255,255,0.1)' fill='none' stroke-width='2'/%3E%3Cpath d='M0,200 C150,50 350,350 500,200' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='2'/%3E%3Cpath d='M0,300 C150,150 350,450 500,300' stroke='rgba(255,255,255,0.08)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    pointer-events: none;
    opacity: 0.6;
}

.services-hero h1 {
    font-size: clamp(50px, 10vw, 84px);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

/* The small dot from the screenshot */
.services-hero h1::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 189, 205, 0.2);
}

.services-hero .breadcrumb {
    font-size: 18px;
    font-weight: 500;
}

.services-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Service Cards Premium */
.service-card-v2 {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    z-index: -1;
    transition: var(--transition-smooth);
}

.service-card-v2:hover::before {
    height: 100%;
}

.service-icon-v2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 189, 205, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.service-card-v2:hover .service-icon-v2 {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card-v2 h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card-v2:hover h4,
.service-card-v2:hover p {
    color: var(--white);
}

.service-btn-v2 {
    width: 45px;
    height: 45px;
    background: #F0F4F9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.service-card-v2:hover .service-btn-v2 {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(-45deg);
}

/* Methodology Section Enhanced */
.method-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FF 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.method-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 189, 205, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.method-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.15;
    z-index: 0;
}

.method-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.method-title {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

/* Service Grid Premium V3 - Bootstrap-centric */
.subtitle-decoration {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle-decoration::before,
.subtitle-decoration::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--primary-color);
    opacity: 0.3;
}

.subtitle-decoration i {
    font-size: 10px;
    opacity: 0.5;
}

/* Base card styling for hover logic */
.service-card-v3 {
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.service-icon-v3 {
    width: 55px;
    height: 55px;
    background: #F4F7FF;
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.read-more-link {
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Unified Hover Effect - No translate */
.service-card-v3:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(0, 189, 205, 0.25) !important;
}

.service-card-v3:hover .service-icon-v3 {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
}

.service-card-v3:hover h4,
.service-card-v3:hover p,
.service-card-v3:hover .read-more-link {
    color: var(--white) !important;
}

.service-card-v3:hover .read-more-link i {
    transform: translateX(5px);
}


.method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.method-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(0, 189, 205, 0.2);
    line-height: 1;
}

.method-content h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* FAQ Section - Enhanced Functional Card Design */
.faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Removed Background Glow for cleaner UI */
.faq-glow {
    display: none;
}

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

/* Refined Card wrapper */
.faq-wrapper-inner {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Left components: Functional Tech Design */
.faq-image-side {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

/* Tech Grid Pattern Background */
.faq-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.faq-visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.faq-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Status Card */
.faq-status-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 220px;
}

.faq-status-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 189, 205, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.faq-status-info h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
}

.faq-status-info span {
    font-size: 12px;
    color: var(--success-color);
    font-weight: 600;
}

/* Smooth Accordion UI */
.faq-content-side {
    padding: 80px 60px;
}

.faq-tag {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-tag i {
    font-size: 6px;
    /* Dot separators */
}

.faq-h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.25;
    margin-bottom: 40px;
}

/* Modern Streamlined Accordion */
.faq-modern-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px !important;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-modern-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-modern-accordion .accordion-button {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--secondary-color);
    background: #f8fafc;
    box-shadow: none;
    border-radius: 12px !important;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-modern-accordion .accordion-button:hover {
    background: rgba(0, 189, 205, 0.03);
    /* Soft highlight on hover */
}

.faq-modern-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 189, 205, 0.05);
    /* Smooth active background */
    color: var(--primary-color);
}

.faq-modern-accordion .accordion-button::after {
    content: '\f067';
    /* Plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background-image: none;
    font-size: 14px;
    transition: transform 0.4s ease;
    color: var(--primary-color);
    width: auto;
    height: auto;
}

.faq-modern-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    /* Minus icon */
    transform: rotate(180deg);
}

.faq-modern-accordion .accordion-

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* CTA Section */
.cta-banner-v2 {
    background: var(--gradient-blue);
    padding: 80px 0;
    color: var(--white);
    border-radius: 30px;
    margin: -100px 0 100px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 189, 205, 0.3);
}

.btn-white-v2 {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-white-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Service Details Specific Styles
   ============================== */

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.service-category-list li {
    margin-bottom: 15px;
}

.service-category-list li:last-child {
    margin-bottom: 0;
}

.service-category-list a {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-category-list a i {
    font-size: 14px;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.service-category-list a:hover,
.service-category-list a.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 189, 205, 0.2);
}

.service-category-list a:hover i,
.service-category-list a.active i {
    opacity: 1;
    transform: translateX(5px);
}

.contact-widget {
    overflow: hidden;
    position: relative;
}

.contact-widget::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.benefit-box {
    transition: var(--transition-smooth);
}

.benefit-box:hover {
    border-color: var(--primary-color) !important;
    background: #f8fafc;
    transform: translateY(-5px);
}

.service-details-content .featured-img img {
    width: 100%;
    object-fit: cover;
}

.service-details-content h2 {
    letter-spacing: -1px;
}

.service-details-content p {
    line-height: 1.8;
}

/* Custom Accordion for Details Page */
.faq-mini .accordion-button {
    background: #f8fafc;
    border-radius: 12px !important;
    padding: 20px;
    box-shadow: none !important;
}

.faq-mini .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.faq-mini .accordion-item {
    border: none;
}

@media (max-width: 991px) {
    .service-sidebar {
        margin-bottom: 50px;
    }
}

/* Service Workflow Mini Steps */
.process-step-mini {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.process-step-mini:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.step-num-v2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.process-step-mini:hover .step-num-v2 {
    opacity: 1;
}

.why-choose-service {
    position: relative;
    overflow: hidden;
}

.why-choose-service::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}