.search-filter-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.search-filter-box input {
    width: 100%;
    padding: 15px 15px 15px 45px; 
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    outline: none;
}

.search-filter-box input:focus {
    border-color: #007bff;
}

.search-filter-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.quick-tags {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-tags span {
    background: #f1f1f1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.quick-tags span:hover {
    background: #007bff;
    color: white;
}   

.fs-search-section {
    padding: 60px 20px 50px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border-bottom: 1px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}

.fs-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 113, 197, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0, 113, 197, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.fs-search-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.fs-search-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.06),
        0 2px 4px -1px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(0, 113, 197, 0.08);
    border: 1px solid rgba(0, 113, 197, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fs-search-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 113, 197, 0.1), rgba(0, 113, 197, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.fs-search-card:hover {
    box-shadow: 
        0 12px 24px -4px rgba(0, 113, 197, 0.12),
        0 8px 16px -4px rgba(0, 113, 197, 0.08),
        0 0 0 1px rgba(0, 113, 197, 0.15);
    transform: translateY(-2px);
}

.fs-search-card:focus-within {
    border-color: #0071c5;
    box-shadow: 
        0 12px 28px -4px rgba(0, 113, 197, 0.18),
        0 8px 16px -4px rgba(0, 113, 197, 0.12),
        0 0 0 3px rgba(0, 113, 197, 0.12);
    transform: translateY(-3px);
}

.fs-search-card:focus-within::before {
    opacity: 1;
}

.fs-input-group {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}

.fs-search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.fs-search-card:focus-within .fs-search-icon-wrapper {
    color: #0071c5;
    transform: scale(1.08);
}

.fs-search-input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 500;
    color: #1e293b;
    background: transparent;
    padding-right: 24px;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.fs-search-input::placeholder {
    color: #cbd5e0;
    font-weight: 400;
}

.fs-search-input:focus {
    color: #0f172a;
}

.fs-quick-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 8px;
    flex-wrap: wrap;
}

.fs-filters-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    padding-right: 8px;
}

.fs-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.fs-search-tag {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border: 1.5px solid transparent;
    padding: 9px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.fs-search-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.fs-search-tag:hover::before {
    left: 100%;
}

.fs-search-tag:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #1e293b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 113, 197, 0.15);
}

.fs-search-tag:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.fs-search-tag[data-term*="100Gbps"],
.fs-search-tag[data-term*="NVMe"],
.fs-search-tag[data-term*="AMD EPYC"] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
}

.fs-search-tag[data-term*="100Gbps"]:hover,
.fs-search-tag[data-term*="NVMe"]:hover,
.fs-search-tag[data-term*="AMD EPYC"]:hover {
    background: linear-gradient(135deg, #0071c5 0%, #005a9e 100%);
    color: #ffffff;
    border-color: #0071c5;
    box-shadow: 0 6px 16px rgba(0, 113, 197, 0.25);
    transform: translateY(-3px);
}

.fs-search-tag[data-term*="Unmetered"] {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.2);
}

.fs-search-tag[data-term*="Unmetered"]:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: #10b981;
}

@media (max-width: 768px) {
    .fs-search-section {
        padding: 40px 16px 36px;
    }

    .fs-search-container {
        gap: 20px;
    }

    .fs-search-card {
        padding: 10px;
        border-radius: 12px;
    }

    .fs-input-group {
        gap: 4px;
    }

    .fs-search-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .fs-search-input {
        height: 48px;
        font-size: 16px;
        padding-right: 16px;
    }

    .fs-quick-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 4px 4px;
    }

    .fs-filters-label {
        font-size: 12px;
        padding-bottom: 4px;
        width: 100%;
    }

    .fs-chip-group {
        gap: 8px;
        width: 100%;
    }

    .fs-search-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fs-search-section {
        padding: 32px 12px 28px;
    }

    .fs-search-input {
        font-size: 15px;
    }

    .fs-search-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .fs-filters-label {
        font-size: 11px;
    }
}

.fs-search-tag:focus-visible {
    outline: 3px solid rgba(0, 113, 197, 0.4);
    outline-offset: 2px;
}

.fs-search-input:focus-visible {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .fs-search-card,
    .fs-search-icon-wrapper,
    .fs-search-tag,
    .fs-search-tag::before {
        transition: none;
    }
    
    .fs-search-card:hover,
    .fs-search-card:focus-within {
        transform: none;
    }
    
    .fs-search-tag:hover {
        transform: none;
    }
}

.fs-faq-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    border-top: 1px solid #e9ecef;
}

.fs-faq-container {
    max-width: 1600px; 
    margin: 0 auto;
    width: 100%;
}

.fs-faq-layout {
    display: flex;
    gap: 60px;
   align-items: center;
}

.fs-faq-image-wrapper {
    flex: 0 0 40%;
    position: relative;
}

.fs-faq-image-sticky {
    position: sticky;
    top: 100px;
}

.fs-faq-main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.fs-faq-content-wrapper {
    flex: 1;
}

.fs-faq-header {
    text-align: left;
    margin-bottom: 30px;
}

.fs-faq-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.fs-faq-header p { color: #666; font-size: 18px; }

.fs-faq-scrollable-content {
    position: relative;
    max-height: 700px; 
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

.fs-faq-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, rgba(248,249,250,0) 0%, rgba(248,249,250,1) 90%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.fs-faq-scrollable-content.expanded {
    max-height: 5000px; 
}

.fs-faq-scrollable-content.expanded .fs-faq-gradient-overlay {
    opacity: 0;
    pointer-events: none;
}

.fs-see-more-container {
    text-align: center;
    margin-top: 20px;
}

.fs-faq-see-more-btn {
    background-color: transparent;
    color: #0071c5;
    border: 2px solid #0071c5;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.fs-faq-see-more-btn:hover {
    background-color: #0071c5;
    color: #fff;
}

.fs-faq-category { margin-bottom: 30px; }
.fs-category-title {
    font-size: 20px;
    font-weight: 600;
    color: #007466ed;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    display: flex; align-items: center; gap: 10px;
}

.fs-faq-item {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-faq-question {
    width: 100%; background: none; border: none; padding: 20px; text-align: left;
    font-size: 16px; font-weight: 600; color: #2d3748; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.fs-faq-question:hover { color: #fff!important;box-shadow: inset 2000px 0 0 0 #000000;border-radius: 0px;}

.fs-faq-icon {
    font-size: 14px; color: #0071c5; transition: transform 0.3s ease; margin-left: 15px;
}

.fs-faq-item.active .fs-faq-icon { transform: rotate(45deg); }
.fs-faq-item.active .fs-faq-question { color: #0071c5; background-color: #f8fcff; }

.fs-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.fs-answer-content { padding: 20px 20px 25px 20px; font-size: 15px; line-height: 1.6; color: #555; background-color: #f8fcff; }

@media (max-width: 992px) {
    .fs-faq-layout { flex-direction: column; }
    .fs-faq-image-wrapper { width: 100%; margin-bottom: 30px; }

    .fs-faq-scrollable-content { max-height: 500px; } 
}

    #ds-guide-exact-v2 {
       
        background-color:#c3c3c394;
        padding: 60px 20px;
        color: #18274e;
        line-height: 1.6;
        box-sizing: border-box;
    }

    #ds-guide-exact-v2 * {
        box-sizing: border-box;
    }


    #ds-guide-exact-v2 .ds-container {
        max-width: 1600px;
        margin: 0 auto;
    }

 
    #ds-guide-exact-v2 .ds-header {
        text-align: center;
        margin-bottom: 50px;
    }

    #ds-guide-exact-v2 h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 20px 0;
        color: #18274e;
        letter-spacing: -0.5px;
    }

    #ds-guide-exact-v2 .ds-intro-label {
        display: inline-block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #21559b;
        font-weight: 700;
        margin-bottom: 10px;
        border-bottom: 2px solid #21559b;
    }

    #ds-guide-exact-v2 .ds-intro-text {
        font-size: 1.15rem;
        max-width: 700px;
        margin: 0 auto;
        color: #18274e;
    }

    #ds-guide-exact-v2 .ds-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 8px 24px rgba(24, 39, 78, 0.08);
        border-left: 6px solid #21559b;
    }

    #ds-guide-exact-v2 h2 {
        font-size: 1.8rem!important;
        margin: 0 0 15px 0;
        color: #18274e;
    }

    #ds-guide-exact-v2 .ds-section-desc {
        font-size: 1.05rem;
        margin-bottom: 30px;
        color: #555;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }


    #ds-guide-exact-v2 .ds-options-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

#ds-guide-exact-v2 .ds-option {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

    #ds-guide-exact-v2 .ds-highlight {
        display: block;
        font-weight: 700;
        font-size: 1.1rem;
        color: #21559b;
        margin-bottom: 10px;
    }

    #ds-guide-exact-v2 .ds-rec-box {
        margin-top: auto;
        padding-top: 15px;
        font-weight: 600;
        color: #198754;
        font-size: 0.95rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        #ds-guide-exact-v2 h1 {
            font-size: 2rem;
        }

        #ds-guide-exact-v2 .ds-options-wrapper {
            grid-template-columns: 1fr;
        }
        
        #ds-guide-exact-v2 .ds-card {
            padding: 25px;
        }
    }
    /* ================faq================== */


      /* Scoped CSS for Server Finder FAQ Section */
        #sfinder-faq {
            background-color: #0f172a; /* Slate 900 */
            color: #cbd5e1; /* Slate 300 */
            padding: 4rem 1.5rem;
            line-height: 1.5;
        }

        #sfinder-faq * {
            box-sizing: border-box;
        }
         .fs-question-btn{
            border-radius:0;}
        .fs-question-btn:hover {
            border-radius:0;
    box-shadow: inset 600px 0 0 0 #006b5e;
    color: white !important;
}
        #sfinder-faq .fs-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        /* Header Styles */
        #sfinder-faq .fs-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        #sfinder-faq h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 1rem 0;
            letter-spacing: -0.025em;
        }

        #sfinder-faq .fs-subtitle {
            font-size: 1.125rem;
            color: #94a3b8; /* Slate 400 */
            max-width: 42rem;
            margin: 0 auto;
        }

        /* Grid Layout */
        #sfinder-faq .fs-grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile default */
            gap: 2rem;
            align-items: start;
        }

        @media (min-width: 768px) {
            #sfinder-faq .fs-grid {
                grid-template-columns: repeat(2, 1fr); /* Side by side on desktop */
            }
        }

        #sfinder-faq .fs-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Category Header */
        #sfinder-faq .fs-category-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            border-bottom: 1px solid #334155;
            padding-bottom: 0.5rem;
        }

        #sfinder-faq .fs-category-icon {
            padding: 0.5rem;
            border-radius: 0.5rem;
            margin-right: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }

        #sfinder-faq .fs-category-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        /* Category Theme Colors */
        #sfinder-faq .theme-blue { background-color: rgba(30, 58, 138, 0.3); color: #60a5fa; }
        #sfinder-faq .theme-green { background-color: rgba(20, 83, 45, 0.3); color: #4ade80; }
        #sfinder-faq .theme-purple { background-color: rgba(88, 28, 135, 0.3); color: #c084fc; }
        #sfinder-faq .theme-orange { background-color: rgba(124, 45, 18, 0.3); color: #fb923c; }
        
        /* Hover Text Colors */
        #sfinder-faq .text-hover-blue:hover { color: #60a5fa; }
        #sfinder-faq .text-hover-green:hover { color: #4ade80; }
        #sfinder-faq .text-hover-purple:hover { color: #c084fc; }
        #sfinder-faq .text-hover-orange:hover { color: #fb923c; }

        /* Accordion Item */
        #sfinder-faq .fs-faq-item {
            background-color: #1e293b; /* Slate 800 */
            border: 1px solid #334155; /* Slate 700 */
            border-radius: 0.5rem;
            overflow: hidden;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        #sfinder-faq .fs-faq-item.active {
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* Blue ring */
        }

        #sfinder-faq .fs-question-btn {
            width: 100%;
            padding: 1rem 1.5rem;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 500;
            outline: none;
        }

        #sfinder-faq .fs-question-text {
            padding-right: 1rem;
            transition: color 0.2s;
        }

        #sfinder-faq .fs-toggle-icon {
            color: #64748b; /* Slate 500 */
            transition: transform 0.3s ease;
            font-size: 0.875rem;
        }

        #sfinder-faq .fs-faq-item.active .fs-toggle-icon {
            transform: rotate(180deg);
        }

        /* Answer Section */
        #sfinder-faq .fs-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            background-color: rgba(30, 41, 59, 0.5);
        }

        #sfinder-faq .fs-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
            padding-top: 0.5rem;
                color: #43474c;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ==================use-cases==================== */


        /* Scoped styles for the Dedicated Server Use Cases section */
#sf-usecase {
    background-color: #f9f9f9;
    padding: 60px 20px;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Reset basic box model for elements inside the section */
#sf-usecase * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container for width control - UPDATED to 1600px */
#sf-usecase .sf-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Header Styling */
#sf-usecase .sf-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

#sf-usecase .sf-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

#sf-usecase .sf-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Grid Layout */
#sf-usecase .sf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
}

/* Card Styling */
#sf-usecase .sf-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px; /* Slightly increased padding for larger width */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#sf-usecase .sf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #008374; /* UPDATED: Hover border matches theme */
}

/* Icon Styling */
#sf-usecase .sf-icon {
    font-size: 2.5rem;
    color: #008374; /* UPDATED: Brand Color */
    margin-bottom: 20px;
}

/* Card Title */
#sf-usecase .sf-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* Card Description */
#sf-usecase .sf-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the meta section to the bottom */
}

/* Meta Data Box (Key Advantage / Best For) */
#sf-usecase .sf-meta {
    background-color: #f4f6f8;
    padding: 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #444;
    border-left: 4px solid #008374; /* UPDATED: Brand Color */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#sf-usecase .sf-meta strong {
    color: #222;
    font-weight: 700;
}

/* --- Responsive Breakpoints --- */

/* Laptop/Tablet Devices (max-width: 1200px) */
@media (max-width: 1200px) {
    #sf-usecase .sf-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 25px;
    }
}

/* Tablet/Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    #sf-usecase .sf-grid {
        grid-template-columns: 1fr; /* 1 column */
    }

    #sf-usecase {
        padding: 40px 20px;
    }

    #sf-usecase .sf-header h2 {
        font-size: 1.75rem;
    }

    #sf-usecase .sf-card {
        padding: 25px;
    }
}