 html {
     scroll-behavior: smooth;
     scroll-padding-top: 90px;
 }

/* ── Dropdown: fit content width ── */
.header-main .main-menu ul li .submenu {
    min-width: 0;
    width: max-content;
}

/* ── Compact Page Header Bar ── */
.page-header-compact {
    background-color: #f7f7fb;
    border-bottom: 1px solid #e8e8f0;
    padding: 0;
}

.page-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.page-header-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-header-accent {
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--theme);
    border-radius: 4px;
    flex-shrink: 0;
}

.page-header-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -0.3px;
}

.breadcrumb-compact {
   
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-compact li {
    font-size: 16px;
    font-weight: 500;
    color: #888;
}

.breadcrumb-compact li:last-child {
    color: var(--theme);
    font-weight: 600;
}

.breadcrumb-compact li a {
    color: #555;
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb-compact li a:hover {
    color: var(--theme);
}

.breadcrumb-compact li i.fa-chevron-right {
    font-size: 10px;
    color: #ccc;
}

.breadcrumb-compact li i.fa-home {
    font-size: 15px;
    margin-right: 3px;
}

@media (max-width: 575px) {
    .page-header-title h4 { font-size: 16px; }
    .breadcrumb-compact li { font-size: 12px; }
    .page-header-inner { height: 60px; }
}

 /* Scrollspy active navigation highlighting */
 .main-menu ul li.active>a {
     color: var(--theme) !important;
 }

 .main-menu ul li a {
     position: relative;
 }

 /* Certification Cards styling */
 .certification-card {
     border: 1px solid var(--border);
     background-color: var(--white);
     transition: all 0.3s ease-in-out;
 }

 .certification-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--box-shadow-2) !important;
     border-color: var(--theme) !important;
 }

 /* Tech Stack Tabs styling */
 .tech-tabs {
     justify-content: center;
     border-bottom: 2px solid var(--border);
     margin-bottom: 40px;
     gap: 10px;
 }

 .tech-tabs .nav-link {
     font-size: 16px;
     font-weight: 600;
     color: var(--header);
     border: none;
     padding: 12px 24px;
     position: relative;
     background: transparent;
     transition: all 0.3s ease;
 }

 .tech-tabs .nav-link.active {
     color: var(--theme);
     background: transparent;
 }

 .tech-tabs .nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 3px;
     background-color: var(--theme);
     transition: all 0.3s ease;
 }

 .tech-tabs .nav-link.active::after {
     width: 100%;
 }

 .tech-badge {
     background-color: var(--white);
     border: 1px solid var(--border);
     padding: 16px 20px;
     border-radius: 12px;
     transition: all 0.3s ease;
     box-shadow: var(--box-shadow);
 }

 .tech-badge:hover {
     transform: translateY(-5px);
     border-color: var(--theme);
     box-shadow: var(--box-shadow-2);
 }

 /* Process Timeline styling */
 .process-card-custom {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 30px;
     border-radius: 16px;
     position: relative;
     transition: all 0.3s ease-in-out;
     box-shadow: var(--box-shadow);
 }

 .process-card-custom:hover {
     transform: translateY(-5px);
     border-color: var(--theme);
     box-shadow: var(--box-shadow-2);
 }

 .process-card-custom .step-number {
     position: absolute;
     top: -5px;
     right: 20px;
     font-size: 48px;
     font-weight: 900;
     color: rgba(56, 75, 255, 0.08);
     line-height: 1;
 }

 .process-card-custom .icon-wrap {
     width: 60px;
     height: 60px;
     line-height: 60px;
     text-align: center;
     background-color: var(--bg);
     color: var(--theme);
     border-radius: 50%;
     font-size: 24px;
     margin-bottom: 20px;
     transition: all 0.3s ease;
 }

 .process-card-custom:hover .icon-wrap {
     background-color: var(--theme);
     color: var(--white);
 }

 /* Technologies Page Hero Section */
 .tech-hero-section {
     background-color: var(--white);
     overflow: hidden;
 }
 
 .tech-grid-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: 
         linear-gradient(to right, rgba(56, 75, 255, 0.03) 1px, transparent 1px),
         linear-gradient(to bottom, rgba(56, 75, 255, 0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     z-index: 0;
 }
 
 .tech-bubble {
     animation: floatBubble 6s ease-in-out infinite;
 }
 
 .tech-bubble:nth-child(2) { animation-delay: 1s; }
 .tech-bubble:nth-child(3) { animation-delay: 2s; }
 .tech-bubble:nth-child(4) { animation-delay: 3s; }
 .tech-bubble:nth-child(5) { animation-delay: 4s; }
 .tech-bubble:nth-child(6) { animation-delay: 5s; }
 
 @keyframes floatBubble {
     0% { transform: translateY(0); }
     50% { transform: translateY(-15px); }
     100% { transform: translateY(0); }
 }
 
 /* Tech Category Cards */
 .tech-card {
     transition: all 0.3s ease-in-out;
     border: 1px solid var(--border);
 }
 
 .tech-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--box-shadow-2) !important;
     border-color: var(--theme);
 }
 
 /* Comparison Cards */
 .comparison-card {
     transition: all 0.3s ease-in-out;
 }
 
 .comparison-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--box-shadow-2) !important;
 }
 
 .tech-list li {
     padding-bottom: 5px;
 }
 
 /* Architecture Diagram */
 .architecture-diagram-wrapper {
     padding: 40px;
     background: repeating-linear-gradient(
         45deg,
         rgba(56, 75, 255, 0.02),
         rgba(56, 75, 255, 0.02) 10px,
         transparent 10px,
         transparent 20px
     );
     border-radius: 20px;
     border: 1px dashed var(--border);
 }
 
 .arch-box {
     transition: all 0.3s ease;
 }
 
 .arch-box:hover {
     transform: scale(1.02);
     box-shadow: var(--box-shadow-2) !important;
 }
 
 .arch-arrow {
     font-size: 24px;
     margin: -5px 0;
     animation: arrowPulse 2s infinite;
 }
 
 @keyframes arrowPulse {
     0% { opacity: 0.5; transform: translateY(-3px); }
     50% { opacity: 1; transform: translateY(3px); }
     100% { opacity: 0.5; transform: translateY(-3px); }
 }
 
 /* Process Step Card */
 .process-step-card {
     transition: all 0.3s ease;
     border: 1px solid transparent;
 }
 
 .process-step-card:hover {
     background-color: var(--white) !important;
     border-color: var(--theme);
     box-shadow: var(--box-shadow);
     transform: translateY(-5px);
 }
 
 /* Industry Card */
 .industry-card {
     border: 1px solid var(--border);
     transition: all 0.3s ease;
 }
 
 .industry-card:hover {
     transform: translateY(-8px);
     border-color: var(--theme);
     box-shadow: var(--box-shadow-2) !important;
 }
 
 .industry-card:hover i {
     animation: bounceIcon 0.5s;
 }
 
 @keyframes bounceIcon {
     0%, 100% { transform: translateY(0); }
     50% { transform: translateY(-5px); }
 }
 
 /* Security Card */
 .security-card {
     transition: all 0.3s ease;
 }
 
 .security-card:hover {
     border-color: var(--theme) !important;
     transform: translateX(5px);
     box-shadow: var(--box-shadow-2) !important;
 }
 
 /* Accordion */
 .accordion-button:not(.collapsed) {
     background-color: var(--white);
     color: var(--theme);
     box-shadow: none;
 }
 
 .accordion-button:focus {
     box-shadow: none;
     border-color: rgba(0,0,0,.125);
 }
 /* ========================================
    2026 SaaS STYLE FAQ SECTION
    ======================================== */

.saas-faq-section {
    position: relative;
    background-color: #f4f6fb; /* Light mode base */
    padding: 120px 0 100px;
    overflow: hidden;
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
}

/* Background & Blur Effects */
.faq-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.faq-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(26, 111, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26, 111, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.faq-gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: saasFloat 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,111,255,0.15) 0%, rgba(13,66,217,0) 70%);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, rgba(76,29,149,0) 70%);
    animation-delay: -5s;
}

@keyframes saasFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Left Content */
.faq-left-content {
    padding-right: 20px;
}

.faq-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 111, 255, 0.1);
    border: 1px solid rgba(26, 111, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #1a6fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.faq-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.faq-main-title span {
    background: linear-gradient(135deg, #1a6fff 0%, #0044cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.faq-description {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 90%;
}

/* Contact CTA Card */
.faq-cta-card {
    background: #ffffff;
    border: 1px solid #edf0f8;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-cta-card:hover {
    background: #ffffff;
    border-color: #c9d6ff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 111, 255, 0.08);
}

.faq-cta-card .cta-icon {
    width: 50px;
    height: 50px;
    background: #e8f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a6fff;
    margin-bottom: 20px;
    border: none;
}

.faq-cta-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.faq-cta-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 0;
}

.saas-btn {
    background: #1a6fff;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.saas-btn:hover {
    background: #0044cc;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(26, 111, 255, 0.3);
}

/* Accordion Design */
.saas-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.saas-accordion-item {
    background: #ffffff;
    border: 1px solid #edf0f8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.saas-accordion-item:hover {
    border-color: #c9d6ff;
    background: #ffffff;
}

.saas-accordion-item:has(.saas-accordion-btn:not(.collapsed)) {
    background: #ffffff;
    border-color: #1a6fff;
    box-shadow: 0 10px 30px rgba(26, 111, 255, 0.1);
}

.saas-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    color: #1a1a2e;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.saas-accordion-btn:not(.collapsed) {
    color: #1a6fff;
}

.saas-plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f4f6fb;
    border-radius: 50%;
    color: #1a1a2e;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 15px;
}

.saas-accordion-btn:not(.collapsed) .saas-plus-icon {
    transform: rotate(45deg);
    background: #1a6fff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 111, 255, 0.3);
}

.saas-accordion-body {
    padding: 0 24px 24px;
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

/* Statistics Card Below FAQ */
.saas-stats-card {
    background: #ffffff;
    border: 1px solid #edf0f8;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.saas-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a6fff, #0044cc, #1a6fff);
}

.saas-stat-item {
    position: relative;
}

.saas-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #edf0f8;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-text {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .faq-main-title { font-size: 38px; }
    .saas-stat-item:nth-child(2)::after { display: none; }
    .saas-stat-item:not(:last-child)::after { height: 40px; }
}

@media (max-width: 767px) {
    .faq-main-title { font-size: 32px; }
    .stat-number { font-size: 32px; }
    .saas-accordion-btn { font-size: 15px; padding: 20px; }
    .saas-accordion-body { font-size: 14px; padding: 0 20px 20px; }
    .saas-stats-card { padding: 30px 20px; }
    .saas-stat-item::after { display: none !important; }
}
