/* VMware ESXi Dedicated Servers - Enhanced Professional Styles */
/* Primary Colors: #3797a3 (Teal) and #091139 (Dark Navy) */

:root {
    --primary-teal: #3797a3;
    --primary-navy: #091139;
    --teal-light: #4aabb8;
    --teal-dark: #2a7a84;
    --navy-light: #0f1d5c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --teal-bg-light: #f2f8f9;
    --medium-dark: #1a2849;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --card-shadow-hover: 0 12px 40px rgba(55, 151, 163, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

a:hover {
    color: white;
}

/*
==================================================================
ALTERNATING SECTION BACKGROUNDS - DARK & LIGHT
==================================================================
*/

.esxi-intro-section .container {
    max-width: 1800px;
}

/* ODD SECTIONS - MEDIUM DARK */
.esxi-intro-section, .management-comparison-section, .why-irexta-section {
    background: linear-gradient(180deg, var(--white) 0%, #e8f5f7 100%);
    color: black;
    position: relative;
    overflow: hidden;
}

.esxi-intro-section::before, .management-comparison-section::before, .why-irexta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(55, 151, 163, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 151, 163, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.esxi-intro-section *, .management-comparison-section *, .why-irexta-section * {
    position: relative;
    z-index: 1;
}

/* EVEN SECTIONS - LIGHT */
.vsphere-components-section, .enterprise-features-section, .faq-section {
    background-color: var(--white);
    background-image: 
        linear-gradient(to bottom, transparent 0%, rgba(55, 151, 163, 0.02) 100%);
}

/* Dark section heading override */
.esxi-intro-section .h2-heading-std, .management-comparison-section .h2-heading-std, .why-irexta-section .h2-heading-std {
    color: black;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.h3-heading-std {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

/* Dark section h3 override */
.esxi-intro-section .h3-heading-std,
.management-comparison-section .h3-heading-std,
.why-irexta-section .h3-heading-std {
    color: var(--primary-teal);
}

.p-text-std {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

/* Dark section paragraph override */
.esxi-intro-section .p-text-std, .management-comparison-section .p-text-std, .why-irexta-section .p-text-std {
    color: black;
}

.p-text-std-sm {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.w-600 {
    font-weight: 600;
}

/* Lists */
.irexta-list-style {
    list-style: none;
    padding-left: 0;
}

.irexta-list-style li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.irexta-list-style li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Dark section list override */
.esxi-intro-section .irexta-list-style li, .management-comparison-section .irexta-list-style li, .why-irexta-section .irexta-list-style li {
    color: black;
}

/* Cards */
.card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: var(--white);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.component-icon {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.component-icon i {
    color: var(--primary-teal);
    filter: drop-shadow(0 4px 6px rgba(55, 151, 163, 0.2));
}

/* Feature Boxes */
.irexta-feature-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.irexta-feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(55, 151, 163, 0.25);
    border-color: var(--primary-teal);
}

.irexta-feature-box i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(55, 151, 163, 0.3));
    transition: transform 0.4s ease;
}

.irexta-feature-box:hover i {
    transform: scale(1.1);
}

.irexta-feature-box h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.irexta-feature-box p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Comparison Table */
.irexta-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 2.5rem;
    background: var(--white);
}

.irexta-comparison-table thead {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
}

.irexta-comparison-table thead th {
    color: var(--white);
    font-weight: 600;
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-size: 1.0625rem;
    letter-spacing: 0.3px;
}

.irexta-comparison-table tbody tr {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.irexta-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.irexta-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(55, 151, 163, 0.03);
}

.irexta-comparison-table tbody tr:hover {
    background-color: rgba(55, 151, 163, 0.08);
    transform: scale(1.01);
}

.irexta-comparison-table tbody td {
    padding: 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.irexta-comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-navy);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(55, 151, 163, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--primary-teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(55, 151, 163, 0.4);
}

.btn-light {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--primary-navy);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* CTA Section */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.free-install-cta h2 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.free-install-cta .lead {
    color: rgba(255, 255, 255, 0.95);
}

/* Enterprise Features Section */
.enterprise-features-section i {
    color: var(--primary-teal);
    filter: drop-shadow(0 4px 8px rgba(55, 151, 163, 0.2));
}

.enterprise-features-section .text-primary {
    color: var(--primary-teal) !important;
}

.enterprise-features-section .col-md-4 {
    padding: 1.5rem;
}

.enterprise-features-section .h3-heading-std {
    margin-top: 1rem;
}

/* FAQ Accordion */
.accordion-item {
    border: 2px solid rgba(55, 151, 163, 0.15);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 25px rgba(55, 151, 163, 0.15);
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(55, 151, 163, 0.25);
    border-color: var(--primary-teal);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23091139'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Background Utilities */
.bg-light {
    background-color: var(--light-gray) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-teal) !important;
}

.text-white {
    color: var(--white) !important;
}

/* Spacing Utilities */
section {
    padding: 100px 0;
}

.py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Container */
.container, .container-2 {
    max-width: 1800px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-section .container .accordion {
    max-width: 1500px !important;
    margin: 0 auto;
}

/* Utility Classes */
.g-flex-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.display-6 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Additional Visual Enhancements */
.vsphere-components-section .card,
.enterprise-features-section .col-md-4 {
    margin-bottom: 2rem;
}

.esxi-intro-section img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(55, 151, 163, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .h2-heading-std {
        font-size: 2rem;
    }
    
    .h3-heading-std {
        font-size: 1.375rem;
    }
    
    .display-6 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container, .container-2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .irexta-feature-box {
        margin-bottom: 1.5rem;
    }
}

/* ==================================================================== */
/* ==================================================================== */
/* ============Microsoft Hyper-V Page Styles (Redesigned)============== */
/* ==================================================================== */
/* ==================================================================== */

/* --- Color & Font Variables --- */
:root {
    --primary-dark-blue: #0d1e38;
    --primary-mid-blue: #4b6da2;
    --primary-navy: #001f3f;
    --accent-teal: #3797a3;
    --highlight-red: #DB4437;
    --text-light: #ffffff;
    --text-dark: #343a40;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

/* --- General Section Styling --- */
.hv-section-padding {
    padding: 80px 0;
}

.hv-section-padding2 {
    padding: 0px 0 80px;
}

.hv-bg-light {
    background-color: var(--bg-light);
}

.hv-bg-dark {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-mid-blue) 100%);
    color: var(--text-light);
}

.hv-bg-teal {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #4aabb8 100%);
    color: var(--text-light);
}

.hv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.hv-section-subtitle {
    font-size: 1.15rem;
    color: white;
    max-width: 900px;
    margin-bottom: 1rem;
}

.hv-section-subtitle2 {
    font-size: 1.15rem;
    color: black;
    max-width: 900px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DB4437 0%, #a9f2fc 100%);
    border-radius: 2px;
    margin-bottom: 20px;
}

.hv-section-p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.hv-info-img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
}

/* --- Benefits Card Styling --- */
.hv-card {
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(75, 109, 162, 0.15);
    border-color: var(--accent-teal);
}

.hv-card-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(135deg, #e0f7fa, #f1f8ff);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s;
}

.hv-card:hover .hv-card-icon {
    color: var(--text-light);
    background: var(--accent-teal);
}

.hv-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.hv-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Licensing Table Styling --- */
.hv-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.hv-licensing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--text-light);
}

.hv-licensing-table th,
.hv-licensing-table td {
    padding: 20px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.hv-licensing-table thead th {
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.hv-licensing-table tbody tr:hover {
    background-color: #f1f8ff;
}

.hv-licensing-table td strong {
    color: var(--primary-dark-blue);
}

/* Highlight "UNLIMITED" using the red color */
.hv-licensing-table td:nth-child(3) strong {
    color: var(--highlight-red);
    font-weight: 700;
}

.hv-icon-yes {
    color: var(--accent-teal);
    font-size: 1.3rem;
}

.hv-icon-no {
    color: #ced4da;
    font-size: 1.3rem;
}

.hv-ideal-use-case td {
    background-color: #e3f2fd;
    font-style: italic;
    color: var(--primary-dark-blue);
}

/* --- Use Case Card Styling --- */
.hv-use-case-card {
    background: var(--text-light);
    border-left: 5px solid var(--highlight-red);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.hv-use-case-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(219, 68, 55, 0.15);
}

.hv-use-case-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.hv-use-case-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Management Tools Section --- */
.hv-tool-card {
    background-color: var(--bg-light);
    border-top: 4px solid var(--accent-teal);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hv-tool-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.hv-tool-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.hv-tool-card h4 i {
    margin-right: 12px;
    color: var(--accent-teal);
}

.hv-tool-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.hv-tool-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.hv-tool-list li strong {
    color: var(--primary-navy);
}

/* --- iRexta Advantage Section (on dark background) --- */
.hv-advantage-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.hv-advantage-list li {
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}

.hv-advantage-list li i {
    color: var(--accent-teal);
    margin-right: 15px;
    margin-top: 6px;
    font-size: 1.2rem;
}

.hv-advantage-list li strong {
    min-width: 300px;
}

/* --- FAQ Section --- */
.faq-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-section .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    background-color: var(--text-light);
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #f1faff;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233797a3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px;
    background-color: var(--text-light);
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- CTA Section --- */
.hv-cta-box {
    color: var(--text-light);
    padding: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-mid-blue) 100%);
    box-shadow: 0 15px 40px rgba(75, 109, 162, 0.3);
}

.hv-cta-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.hv-cta-text {
    font-size: 1.15rem;
    opacity: 0.9;
}

.hv-cta-button {
    background-color: var(--highlight-red);
    color: var(--text-light);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(219, 68, 55, 0.4);
}

.hv-cta-button:hover {
    background-color: #c53727;
    color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(219, 68, 55, 0.5);
}

/* --- Responsive adjustments for Table --- */
@media (max-width: 768px) {
    .hv-licensing-table thead {
        display: none;
    }

    .hv-licensing-table,
    .hv-licensing-table tbody,
    .hv-licensing-table tr,
    .hv-licensing-table td {
        display: block;
        width: 100%;
    }

    .hv-licensing-table tr {
        margin-bottom: 15px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .hv-licensing-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .hv-licensing-table tr td:last-child {
        border-bottom: none;
    }

    .hv-licensing-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 25px);
        padding-right: 10px;
        font-weight: bold;
        text-align: left;
        color: var(--primary-navy);
    }
}

/* ================================================================= */
/* ================================================================= */
/* ========================Web Applications========================= */
/* ================================================================= */
/* ================================================================= */

/* Typography */
#web-app-sol .section-title {
    font-weight: 700;
    color: #0d1e38;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

#web-app-sol .highlight-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

#web-app-sol .highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #29aaba 0%, #4b6da2 100%);
}

/* Gradient Backgrounds */
#web-app-sol .primary-gradient-bg {
    background: linear-gradient(135deg, #0d1e38 0%, #29aaba 100%);
    color: #ffffff;
}

#web-app-sol .bg-001f3ff7 {
    background: linear-gradient(135deg, #082645 0%, #0d1e38 100%);
}

/* Accent Colors */
#web-app-sol .accent-color {
    color: #29aaba;
}

#web-app-sol .text-teal {
    color: #29aaba;
}

/* Icons */
#web-app-sol .highlight-icon {
    color: #29aaba;
    font-size: 2rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

#web-app-sol .feature-card:hover .highlight-icon, #web-app-sol .use-case-card:hover .highlight-icon {
    transform: scale(1.05);
}

/* Layout */
#web-app-sol .section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    #web-app-sol .section-padding {
        padding: 50px 0;
    }

    #web-app-sol .section-title {
        font-size: 2rem;
    }
}

/* Feature Cards */
#web-app-sol .feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(13, 30, 56, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(41, 170, 186, 0.1);
}

#web-app-sol .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(41, 170, 186, 0.15);
    border-color: #29aaba;
}

#web-app-sol .feature-card h3 {
    color: #0d1e38;
    font-weight: 600;
    margin: 20px 0 15px;
}

/* Use Case Cards */
#web-app-sol .use-case-card {
    background: #fff;
    border-left: 5px solid #29aaba;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(13, 30, 56, 0.06);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

#web-app-sol .use-case-card:hover {
    box-shadow: 0 8px 30px rgba(41, 170, 186, 0.12);
    transform: translateX(5px);
    border-left-width: 8px;
}

#web-app-sol .use-case-card h5 {
    color: #0d1e38;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Server Recommendation Cards */
#web-app-sol .server-rec-card {
    border: 2px solid #e8f4f5;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: #ffffff;
    height: 100%;
}

#web-app-sol .server-rec-card:hover {
    border-color: #29aaba;
    box-shadow: 0 10px 30px rgba(41, 170, 186, 0.12);
    transform: translateY(-5px);
}

#web-app-sol .server-rec-card h3 {
    color: #0d1e38;
    font-weight: 700;
    margin-bottom: 15px;
}

#web-app-sol .server-rec-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #29aaba;
}

#web-app-sol .server-rec-card ul li {
    padding: 8px 0;
    color: #555;
}

/* Buttons */
#web-app-sol .btn-custom-primary {
    background: linear-gradient(135deg, #29aaba 0%, #1e8384 100%);
    color: #fff;
    border: 0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 170, 186, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#web-app-sol .btn-custom-primary:hover {
    background: linear-gradient(135deg, #1e8384 0%, #156668 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 170, 186, 0.4);
}

/* Contact Banner */
#web-app-sol .contact-banner {
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(13, 30, 56, 0.15);
}

@media (max-width: 768px) {
    #web-app-sol .contact-banner {
        padding: 40px 20px;
    }
}

#web-app-sol .contact-banner .btn-light {
    transition: all 0.3s ease;
}

#web-app-sol .contact-banner .btn-light:hover {
    background: #29aaba;
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Breadcrumbs */
#web-app-sol .custom-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#web-app-sol .custom-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

#web-app-sol .custom-breadcrumb-item a:hover {
    color: #29aaba;
}

#web-app-sol .custom-breadcrumb-item.active {
    color: #29aaba;
}

#web-app-sol .custom-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

#web-app-sol .custom-home-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: rgba(41, 170, 186, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all 0.3s ease;
}

#web-app-sol .custom-home-icon:hover {
    background: #29aaba;
}

/* Problem Icons */
#web-app-sol .fa-times-circle {
    color: #0d1e38;
}

#web-app-sol .fa-search-minus {
    color: #4b6da2;
}

#web-app-sol .fa-frown {
    color: #29aaba;
}

/* Success Icons */
#web-app-sol .text-success {
    color: #29aaba !important;
}

/* FAQ Accordion */

#web-app-sol .accordion{
    max-width: 1500px;
}

#web-app-sol .accordion-button {
    color: #0d1e38;
    font-weight: 600;
    background-color: #f8fcfd;
}

#web-app-sol .accordion-button:not(.collapsed) {
    background-color: #e8f4f5;
    color: #ffffff;
    box-shadow: none;
    border-bottom: 2px solid #29aaba;
}

#web-app-sol .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(41, 170, 186, 0.25);
    border-color: #29aaba;
}

#web-app-sol .accordion-button::after {
    filter: hue-rotate(160deg);
}

#web-app-sol .accordion-item {
    border: 1px solid rgba(41, 170, 186, 0.2);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

#web-app-sol .accordion-body {
    background: #ffffff;
}

/* Hero Section */
#web-app-sol .contact-bsdw {
    box-shadow: 0 20px 60px rgba(41, 170, 186, 0.2);
}

/* Advantages Section Icons */
#web-app-sol .fa-server.accent-color, #web-app-sol .fa-tachometer-alt.accent-color, #web-app-sol .fa-headset.accent-color {
    background: linear-gradient(135deg, #29aaba 0%, #4b6da2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Images */
#web-app-sol img.img-fluid {
    transition: transform 0.3s ease;
}

#web-app-sol img.img-fluid:hover {
    transform: scale(1.02);
}

/* Utility Classes */
#web-app-sol .text-secondary {
    color: #6c757d !important;
}

#web-app-sol .bg-light {
    background-color: #f8fcfd !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Links */
#web-app-sol .btn-primary {
    color: #f3f3f3;
    transition: color 0.3s ease;
}

#web-app-sol .btn-primary:hover {
    color: #fff;
}

#web-app-sol a {
    color: #29aaba;
    transition: color 0.3s ease;
}

#web-app-sol a:hover {
    color: #1e8384;
}

/* List Styling */
#web-app-sol .list-unstyled li {
    position: relative;
}

/* Horizontal Rules */
#web-app-sol hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(41, 170, 186, 0.3), transparent);
    margin: 0;
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#web-app-sol .feature-card, #web-app-sol .use-case-card, #web-app-sol .server-rec-card {
    animation: fadeInUp 0.6s ease-out;
}

.padding-0 {
    padding: 0 !important;
}

/* ================================================================= */
/* ================================================================= */
/* ========================Gaming Solutions========================= */
/* ================================================================= */
/* ================================================================= */

.gpu-name{
    font-size: 18px;
    font-weight: 600;
    color: #60af4c;
}.g-section-wrapper {
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.g-section-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.g-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
}

.g-section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.g-section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Rig Finder */
#g-rig-finder {
    background-color: #7c7d87;
    color: white;
}

#g-rig-finder .g-section-title {
    color: white;
}

.g-rig-finder-intro-p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fffff6;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto 50px auto;
}

.g-rig-finder-secondary-title {
    font-size: 2rem;
    font-weight: 600;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
}

.g-rig-finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.g-rig-finder-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #3797a3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g-rig-finder-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.g-rig-finder-item-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 15px;
}

.g-rig-finder-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.g-rig-finder-item-p strong {
    color: #02073e;
}

.g-rig-finder-item-solution {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-weight: 600;
}

.g-rig-finder-item-solution span {
    color: #DB4437;
    font-weight: 700;
}

/* Section: Spec Recommendations */
#g-spec-recommendations {
    background-color: #ffffff;
}

.g-spec-recommendations-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.g-spec-recommendations-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.g-spec-recommendations-table th,
.g-spec-recommendations-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.g-spec-recommendations-table th {
    background-color: #02073e;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.g-spec-recommendations-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.g-spec-recommendations-table tr:hover {
    background-color: #f1f1f1;
}

.g-spec-recommendations-table td {
    color: #333;
    font-size: 1rem;
}

.g-spec-recommendations-key-requirement {
    color: #DB4437;
    font-weight: 600;
}

/* Section: iRexta Advantage */
#g-irexta-advantage {
    background-color: #3797a3;
}

#g-irexta-advantage .g-section-title {
    color: white;
}

#g-irexta-advantage .g-section-subtitle {
    color: #e7e7e7;
}

.g-irexta-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.g-irexta-advantage-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.g-irexta-advantage-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3797a3;
    margin-bottom: 10px;
}

.g-irexta-advantage-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Global Network */
#g-global-network {
    background-color: #02073e;
}

.g-global-network-title {
    color: #ffffff;
}

.g-global-network-subtitle {
    color: #f1f1f1;
}

.g-global-network-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}

.g-global-network-list-item {
    color: #f1f1f1;
    font-size: 1.1rem;
    line-height: 1.7;
    background: #3797a3;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.g-global-network-list-item strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.g-global-network-title {
    color: #fff !important;
}

.g-global-network-subtitle {
    color: #fff !important;
}

.g-rig-finder-intro-p {
    color: #fff !important;
}

.g-ai-use-cases-title {
    color: #fff !important;
}

.g-ai-use-cases-subtitle {
    color: #fff !important;
}

/* Section: Server Addons */
#g-server-addons {
    background-color: #ffffff;
}

.g-server-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.g-server-addons-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    border-bottom: 5px solid #3797a3;
}

.g-server-addons-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 15px;
}

.g-server-addons-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Tech Partners */
#g-tech-partners {
    background-color: #dbdbdb;
    padding: 60px 20px;
}

.g-tech-partners-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.g-tech-partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.g-tech-partners-logo-placeholder {
    font-style: italic;
    color: #999;
    border: 2px dashed #2c7e88;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
    width: 150px;
    height: 150px;
}

.g-tech-partners-logo-placeholder img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Section: FAQ */

#g-gaming-faq {
    background-color: #ffffff;
}

#g-gaming-faq .container {
    max-width: 1800px !important;
}

@media (min-width: 1400px) {
    #g-gaming-faq .container {
        max-width: 1800px;
    }
}

#g-gaming-faq .container .accordion {
    max-width: 1500px !important;
}

#g-gaming-faq .section-title {
    font-weight: 700;
    color: #0d1e38;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

#g-gaming-faq .highlight-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

#g-gaming-faq .highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #29aaba 0%, #4b6da2 100%);
}
/* General Styles for AI/ML Page */
.g-section-wrapper {
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.g-section-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.g-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
}

.g-section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.g-section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: AI Challenge */
#g-ai-challenge {
    background-color: #f9f9f9;
}

.g-ai-challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.g-ai-challenge-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid #DB4437;
}

.g-ai-challenge-item-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 15px;
}

.g-ai-challenge-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.g-ai-challenge-item-list {
    padding-left: 20px;
    margin-top: 15px;
}

.g-ai-challenge-item-list-item {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Section: AI Solution */
#g-ai-solution {
    background-color: #ffffff;
}

.g-ai-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.g-ai-solution-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g-ai-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.g-ai-solution-item-icon {
    font-size: 3rem;
    color: #3797a3;
    margin-bottom: 20px;
}

.g-ai-solution-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 10px;
}

.g-ai-solution-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: AI Config */
#g-ai-config {
    background-color: #f9f9f9;
}

.g-ai-config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.g-ai-config-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.g-ai-config-item-header {
    padding: 30px 35px;
    background-color: #02073e;
}

.g-ai-config-item-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.g-ai-config-item-body {
    padding: 30px 35px;
}

.g-ai-config-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.g-ai-config-item-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DB4437;
    margin-bottom: 15px;
}

.g-ai-config-item-list {
    list-style-type: none;
    padding-left: 0;
}

.g-ai-config-item-list-item {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.g-ai-config-item-list-item::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #3797a3;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Section: AI Use Cases */
#g-ai-use-cases {
    background-color: #02073e;
}

.g-ai-use-cases-title {
    color: #ffffff;
}

.g-ai-use-cases-subtitle {
    color: #f1f1f1;
}

.g-ai-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.g-ai-use-cases-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #3797a3;
}

.g-ai-use-cases-item-icon {
    font-size: 2.5rem;
    color: #3797a3;
    margin-bottom: 15px;
}

.g-ai-use-cases-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}
/* General Styles for Streaming Page */
.g-section-wrapper {
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.g-section-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.g-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
}

.g-section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.g-section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Stream Problem */
#g-stream-problem {
    background-color: #ffffff;
}

.g-stream-problem-title {
    color: #02073e;
}

.g-stream-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.g-stream-problem-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 35px;
    border: 1px solid #eee;
}

.g-stream-problem-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #37b5db;
    margin-bottom: 15px;
}

.g-stream-problem-item-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-top: 8px;
}

.g-stream-problem-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* Section: Stream Solution */
#g-stream-solution {
    background-color: #838c9d;
}

#g-stream-solution .g-stream-solution-title {
    color: #ffffff;
}

#g-stream-solution .g-section-subtitle {
    color: #ffffff;
}

.g-stream-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.g-stream-solution-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g-stream-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.g-stream-solution-item-icon {
    font-size: 3rem;
    color: #3797a3;
    margin-bottom: 20px;
}

.g-stream-solution-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 10px;
}

.g-stream-solution-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Stream Workloads */
#g-stream-workloads {
    background-color: #ffffff;
}

.g-stream-workloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.g-stream-workloads-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.g-stream-workloads-item-header {
    padding: 30px 35px;
    background-color: #02073e;
}

.g-stream-workloads-item-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.g-stream-workloads-item-body {
    padding: 30px 35px;
}

.g-stream-workloads-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.g-stream-workloads-item-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DB4437;
    margin-bottom: 10px;
    margin-top: 25px;
}

/* Section: Stream Use Cases */
#g-stream-use-cases {
    background-color: #02073e;
}

#g-stream-use-cases .g-stream-use-cases-title {
    color: #ffffff;
}

#g-stream-use-cases .g-stream-use-cases-subtitle {
    color: #f1f1f1;
}

.g-stream-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.g-stream-use-cases-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #3797a3;
}

.g-stream-use-cases-item-icon {
    font-size: 2.5rem;
    color: #3797a3;
    margin-bottom: 15px;
}

.g-stream-use-cases-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Section: Stream Software */
#g-stream-software {
    background-color: #f9f9f9;
}

.g-stream-software-category-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #02073e;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3797a3;
    text-align: left;
    display: inline-block;
}

.g-stream-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.g-stream-software-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.g-stream-software-logo-placeholder {
    padding: 5px;
    border: 2px dashed teal;
    display: flex;
    justify-content: center;
}

.g-stream-software-logo-placeholder img {
    max-height: 100px;
    width: auto;
    object-fit: cover;
}

.g-stream-software-item-p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* Section: Stream CTA */
#g-stream-cta {
    background-color: #02073e;
}

.g-stream-cta-container {
    text-align: center;
}

.g-stream-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.g-stream-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.g-stream-cta-button-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Basic button styles for example - use your site's button classes */
.g-stream-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.g-stream-cta-button-primary {
    background-color: #DB4437;
    color: #ffffff;
    border: 2px solid #DB4437;
}

.g-stream-cta-button-primary:hover {
    background-color: #c93427;
    border-color: #c93427;
}

.g-stream-cta-button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.g-stream-cta-button-secondary:hover {
    background-color: #ffffff;
    color: #02073e;
}
/* General Styles for Storage Page */
.g-section-wrapper {
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.g-section-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.g-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
}

.g-section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.g-section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Section: Storage Intro & Opportunity */
#g-storage-intro {
    background-color: #ffffff;
    text-align: center;
}

#g-storage-opportunity {
    background-color: #606060;
    text-align: center;
}

#g-storage-opportunity .g-section-title {
    color: #ffffff ;
}

#g-storage-opportunity .g-section-text {
    color: #ffffff;
}

/* Section: Storage Dilemma (Problem) */
#g-storage-dilemma {
    background-color: #ffffff;
}

.g-storage-dilemma-title {
    color: #36abbb;
}

.g-storage-dilemma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.g-storage-dilemma-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 35px;
    border-left: 5px solid #DB4437;
}

.g-storage-dilemma-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 15px;
}

.g-storage-dilemma-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* Section: Storage Solution */
#g-storage-solution {
    background-color: #f9f9f9;
}

.g-storage-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.g-storage-solution-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.g-storage-solution-item-icon {
    font-size: 3rem;
    color: #3797a3;
    margin-bottom: 20px;
}

.g-storage-solution-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #02073e;
    margin-bottom: 10px;
}

.g-storage-solution-item-p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Section: Storage Toolkit (Software) */
#g-storage-toolkit {
    background-color: #ffffff;
}

.g-storage-toolkit-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #02073e;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.g-storage-toolkit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.g-storage-toolkit-item {
    background: #f9f9f9;
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-style: italic;
    height: 100px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-storage-toolkit-item img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section: Storage Configs */
#g-storage-configs {
    background-color: #f9f9f9;
}

.g-storage-configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.g-storage-configs-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.g-storage-configs-item-header {
    padding: 30px 35px;
    background-color: #02073e;
}

.g-storage-configs-item-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.g-storage-configs-item-body {
    padding: 30px 35px;
}

.g-storage-configs-item-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DB4437;
    margin-bottom: 15px;
}

.g-storage-configs-item-list {
    list-style-type: none;
    padding-left: 0;
}

.g-storage-configs-item-list-item {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.g-storage-configs-item-list-item strong {
    color: #02073e;
    width: 80px;
    display: inline-block;
}

/* Section: Storage Products */
#g-storage-products {
    background-color: #ffffff;
}

.g-storage-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.g-storage-products-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 5px solid #3797a3;
}

.g-storage-products-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0e444b;
    margin-bottom: 10px;
}

/* Section: Storage CTA */
#g-storage-cta {
    background-color: #02073e;
}

.g-storage-cta-container {
    text-align: center;
}

.g-storage-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.g-storage-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.g-storage-cta-button-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.g-storage-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.g-storage-cta-button-primary {
    background-color: #DB4437;
    color: #ffffff;
    border: 2px solid #DB4437;
}

.g-storage-cta-button-primary:hover {
    background-color: #c93427;
    border-color: #c93427;
    color: white;
}

.g-storage-cta-button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.g-storage-cta-button-secondary:hover {
    background-color: #ffffff;
    color: #02073e;
}

/* Section: Storage FAQ */
#g-storage-faq {
    background-color: #f9f9f9;
}

.g-storage-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.g-storage-faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.g-storage-faq-question {
    padding: 25px 30px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #02073e;
    margin: 0;
}

.g-storage-faq-answer {
    padding: 0 30px 30px 30px;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */

.db-section-wrapper {
    padding: 80px 20px;
}

.db-section-wrapper:nth-child(even) {
    background-color: #ffffff;
}

.db-section-wrapper:nth-child(odd) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.db-section-container {
    max-width: 1800px;
    margin: 0 auto;
}

.db-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #02073e;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.db-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3797a3, #DB4437);
    border-radius: 2px;
}

.db-section-subtitle {
    font-size: 1.3rem;
    color: #3797a3;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.db-section-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

/* Intro Section */
#db-intro {
    background: #5b5e7e;
    color: white;
}

.db-intro-title {
    color: white;
}

.db-intro-title::after {
    background: none;
}

.db-intro-text {
    text-align: center;
    color: #e9ecef;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Problem Section */
.db-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-problem-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(2, 7, 62, 0.1);
    border-left: 4px solid #DB4437;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.db-problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 7, 62, 0.15);
}

.db-problem-item-title {
    font-size: 1.4rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Solution Section */
#db-solution {
    background: linear-gradient(135deg, #3797a3 0%, #2a7a83 100%);
}

#db-solution .db-solution-title,
#db-solution .db-solution-subtitle {
    color: white;
}

#db-solution .db-solution-title::after {
    background: white;
}

.db-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-solution-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.db-solution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.db-solution-item-icon {
    font-size: 3rem;
    color: #DB4437;
    margin-bottom: 20px;
}

.db-solution-item-title {
    font-size: 1.3rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 700;
}

.db-solution-item-p {
    color: #495057;
}

/* Security Section */
.db-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-security-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.db-security-item:hover {
    border-color: #3797a3;
    box-shadow: 0 10px 30px rgba(55, 151, 163, 0.15);
}

.db-security-item-icon {
    font-size: 3.5rem;
    color: #3797a3;
    margin-bottom: 20px;
}

.db-security-item-title {
    font-size: 1.4rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Config Section */
.db-config-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.db-config-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(2, 7, 62, 0.08);
    transition: transform 0.3s ease;
}

.db-config-item:hover {
    transform: translateX(10px);
}

.db-config-item-header {
    background: linear-gradient(135deg, #02073e, #1a2847);
    padding: 25px 35px;
}

.db-config-item-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.db-config-item-body {
    padding: 30px 35px;
}

.db-config-item-p strong {
    color: #3797a3;
    font-weight: 700;
}

/* Platforms Section */
.db-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.db-platforms-item {
    background: white;
    padding: 0px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.db-platforms-item:hover {
    border-color: #DB4437;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(219, 68, 55, 0.15);
}

.db-platforms-item-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100px;
    width: auto;
}

.db-platforms-item-logo img {
    max-width: 100%;
    height: max-content;
    min-height: 120px;
    object-fit: contain;
}

/* Use Cases Section */
.db-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-use-cases-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(2, 7, 62, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3797a3;
}

.db-use-cases-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 7, 62, 0.15);
    border-top-color: #DB4437;
}

.db-use-cases-item-icon {
    font-size: 2.5rem;
    color: #3797a3;
    margin-bottom: 20px;
}

.db-use-cases-item-title {
    font-size: 1.3rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 700;
}

/* CTA Section */
#db-cta {
    background: #02073e;
    text-align: center;
}

.db-cta-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.db-cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.db-cta-button-wrap {
    margin-top: 40px;
}

.db-cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.db-cta-button-primary {
    background: white;
    color: #DB4437;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.db-cta-button-primary:hover {
    background: #3797a3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .db-section-wrapper {
        padding: 50px 15px;
    }

    .db-section-title {
        font-size: 2rem;
    }

    .db-section-subtitle {
        font-size: 1.1rem;
    }

    .db-problem-grid,
    .db-solution-grid,
    .db-security-grid,
    .db-use-cases-grid {
        grid-template-columns: 1fr;
    }

    .db-cta-title {
        font-size: 2rem;
    }
}

/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */

.eds-section-wrapper {
    padding: 80px 20px;
}

.eds-section-container {
    max-width: 1600px;
    margin: 0 auto;
}

.eds-section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.eds-section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.eds-section-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Intro Section - Gradient Hero */
#eds-email-intro {
    background: #f3f3f3;
    color: #02073e;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#eds-email-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.eds-email-intro-container {
    position: relative;
    z-index: 1;
}

.eds-email-intro-title {
    font-size: 3rem;
}

.eds-email-intro-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #666;
}

/* Problem Section - Split Design */
#eds-email-problem {
    background: #eaecff;
}

.eds-email-problem-title {
    text-align: center;
    color: #02073e;
}

.eds-email-problem-subtitle {
    text-align: center;
    color: #666;
}

.eds-email-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.eds-email-problem-item {
    padding: 50px 40px;
    transition: transform 0.3s ease;
}

.eds-email-problem-item:first-child {
    background: #02073e;
    color: white;
}

.eds-email-problem-item:last-child {
    background: #3797a3;
    color: white;
}

.eds-email-problem-item:hover {
    transform: scale(1.02);
}

.eds-email-problem-item-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255,255,255,0.3);
}

/* Solution Section - Card Grid */
#eds-email-solution {
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.eds-email-solution-title {
    text-align: center;
    color: #02073e;
}

.eds-email-solution-subtitle {
    text-align: center;
    color: #666;
}

.eds-email-solution-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eds-email-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eds-email-solution-item .list-unstyled {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.eds-email-solution-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(2,7,62,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #3797a3;
}

.eds-email-solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(55,151,163,0.3);
    border-top-color: #dc3545;
}

.eds-email-solution-item-icon {
    font-size: 3rem;
    color: #3797a3;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.eds-email-solution-item:hover .eds-email-solution-item-icon {
    transform: scale(1.1);
    color: #dc3545;
}

.eds-email-solution-item-title {
    font-size: 1.3rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 700;
}

.eds-email-solution-item-p {
    color: #666;
}

/* Guide Section - Timeline Style */
#eds-email-guide {
    background: #02073e;
    color: white;
    position: relative;
}

#eds-email-guide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ceffdf;
    opacity: 0.3;
}

.eds-email-guide-container {
    position: relative;
    z-index: 1;
}

.eds-email-guide-title {
    text-align: center;
}

.eds-email-guide-subtitle {
    text-align: center;
}

.eds-email-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.eds-email-guide-item {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #3797a3;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.eds-email-guide-item:hover {
    background: rgba(55,151,163,0.1);
    border-left-color: #41b77b;
    transform: translateX(10px);
}

.eds-email-guide-item-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #7bd2dd;
}

.eds-email-guide-item:hover .eds-email-guide-item-title {
    color: #41b77b;
}

/* Software Section - Modern Grid */
#eds-email-software {
    background: #f2f7ff;
}

.eds-email-software-title {
    text-align: center;
    color: #02073e;
}

.eds-email-software-subtitle {
    text-align: center;
    color: #666;
}

.eds-email-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.eds-email-software-item {
    background: linear-gradient(135deg, #02073e 0%, #3797a3 100%);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 200px;
}

/* Image styling to make sure logos fit nicely */
.eds-email-software-item img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1); 
}

.eds-email-software-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(55,151,163,0.4);
}

/* Use Cases Section - Icon Cards */
#eds-email-use-cases {
    background: linear-gradient(to right, #f8f9fa 0%, white 50%, #f8f9fa 100%);
}

.eds-email-use-cases-title {
    text-align: center;
    color: #02073e;
}

.eds-email-use-cases-subtitle {
    text-align: center;
    color: #666;
}

.eds-email-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.eds-email-use-cases-item {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.eds-email-use-cases-item:hover {
    border-color: #3797a3;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(55,151,163,0.2);
}

.eds-email-use-cases-item-icon {
    font-size: 3.5rem;
    color: #3797a3;
    margin-bottom: 25px;
    display: block;
}

.eds-email-use-cases-item-title {
    font-size: 1.5rem;
    color: #02073e;
    margin-bottom: 15px;
}

/* Configs Section - Comparison Cards */
#eds-email-configs {
    background: #e9e9e9;
    color: #000000;
}

.eds-email-configs-title {
    text-align: center;
}

.eds-email-configs-subtitle {
    text-align: center;
}

.eds-email-configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.eds-email-configs-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.eds-email-configs-item:hover {
    transform: scale(1.03);
}

.eds-email-configs-item-header {
    background: linear-gradient(135deg, #3797a3 0%, #02073e 100%);
    padding: 30px;
    text-align: center;
}

.eds-email-configs-item-title {
    font-size: 1.8rem;
    color: white;
}

.eds-email-configs-item-body {
    padding: 35px;
    color: #333;
}

.eds-email-configs-item-p {
    margin-bottom: 25px;
    color: #666;
}

.eds-email-configs-item-subtitle {
    font-size: 1.1rem;
    color: #02073e;
    margin-bottom: 15px;
    font-weight: 600;
}

.eds-email-configs-item-list {
    list-style: none;
    padding: 0;
}

.eds-email-configs-item-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.eds-email-configs-item-list li:last-child {
    border-bottom: none;
}

.eds-email-configs-item-list strong {
    color: #3797a3;
    margin-right: 10px;
}

/* CTA Section - Bold Call to Action */
#eds-email-cta {
    background: linear-gradient(135deg, #ad5f66 0%, #02073e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#eds-email-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.eds-email-cta-container {
    position: relative;
    z-index: 1;
}

.eds-email-cta-title {
    font-size: 3rem;
    margin-bottom: 25px;
}

.eds-email-cta-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.eds-email-cta-button-wrap {
    margin-top: 40px;
}

.eds-email-cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eds-email-cta-button-primary {
    background: white;
    color: #02073e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.eds-email-cta-button-primary:hover {
    background: #3797a3;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(55,151,163,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .eds-section-title {
        font-size: 2rem;
    }

    .eds-email-intro-title,
    .eds-email-cta-title {
        font-size: 2rem;
    }

    .eds-email-problem-grid,
    .eds-email-configs-grid {
        grid-template-columns: 1fr;
    }

    .eds-email-solution-grid,
    .eds-email-solution-grid2,
    .eds-email-use-cases-grid,
    .eds-email-guide-grid {
        grid-template-columns: 1fr;
    }

    .eds-section-wrapper {
        padding: 50px 15px;
    }
}

/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */

.bcds-section-wrapper {
    padding: 80px 20px;
}

.bcds-section-container {
    max-width: 1600px;
    margin: 0 auto;
}

.bcds-section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bcds-section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.bcds-section-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Intro Section */
#bcds-blockchain-intro {
    background: linear-gradient(135deg, #d9d9d9 0%, #d3d3d3 100%);
    color: #02073e;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#bcds-blockchain-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(55, 151, 163, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

.bcds-blockchain-intro-container {
    position: relative;
    z-index: 1;
}

.bcds-blockchain-intro-title {
    color: #02073e;
}

.bcds-blockchain-intro-text {
    max-width: 1200px;
    margin: 0 auto;
    color: #666;
}

.bcds-blockchain-intro-text strong {
    color: #3797a3;
    font-weight: 600;
}

/* Problem Section */
#bcds-blockchain-problem {
    background: white;
}

.bcds-blockchain-problem-title {
    color: #02073e;
    text-align: center;
}

.bcds-blockchain-problem-subtitle {
    text-align: center;
    color: #555;
}

.bcds-blockchain-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bcds-blockchain-problem-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bcds-blockchain-problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.bcds-blockchain-problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
}

.bcds-blockchain-problem-item-title {
    color: #02073e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bcds-blockchain-problem-item-p {
    color: #555;
    position: relative;
    z-index: 1;
}

/* Solution Section */
#bcds-blockchain-solution {
    background: linear-gradient(135deg, #3797a3 0%, #2c7880 100%);
    color: white;
}

.bcds-blockchain-solution-title {
    color: white;
    text-align: center;
}

.bcds-blockchain-solution-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.bcds-blockchain-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bcds-blockchain-solution-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.bcds-blockchain-solution-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bcds-blockchain-solution-item-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.bcds-blockchain-solution-item-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bcds-blockchain-solution-item-p {
    color: rgba(255, 255, 255, 0.95);
}

/* Config Section */
#bcds-blockchain-config {
    background: #ffffff;
    color: #02073e;
}

.bcds-blockchain-config-title {
    color: #02073e;
    text-align: center;
}

.bcds-blockchain-config-subtitle {
    text-align: center;
    color: #02073e;
}

.bcds-blockchain-config-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.bcds-blockchain-config-item {
    background: linear-gradient(135deg, rgba(55, 151, 163, 0.1) 0%, rgba(55, 151, 163, 0.05) 100%);
    border: 2px solid #3797a3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bcds-blockchain-config-item:hover {
    transform: translateX(10px);
    border-color: #dc3545;
    box-shadow: 0 10px 40px rgba(55, 151, 163, 0.3);
}

.bcds-blockchain-config-item-header {
    background: linear-gradient(135deg, #3797a3 0%, #2c7880 100%);
    padding: 25px 30px;
    border-bottom: 2px solid #ffffff;
}

.bcds-blockchain-config-item-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bcds-blockchain-config-item-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.bcds-blockchain-config-item-body {
    padding: 30px;
    background: #02073e;
}

.bcds-blockchain-config-item-p {
    color: rgba(255, 255, 255, 0.95);
}

.bcds-blockchain-config-item-p strong {
    color: #3797a3;
}

/* Use Cases Section */
#bcds-blockchain-use-cases {
    background: white;
}

.bcds-blockchain-use-cases-title {
    color: #02073e;
    text-align: center;
}

.bcds-blockchain-use-cases-subtitle {
    text-align: center;
    color: #555;
}

.bcds-blockchain-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bcds-blockchain-use-cases-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bcds-blockchain-use-cases-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(55, 151, 163, 0.1), transparent);
    transition: left 0.5s ease;
}

.bcds-blockchain-use-cases-item:hover::before {
    left: 100%;
}

.bcds-blockchain-use-cases-item:hover {
    border-color: #3797a3;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(55, 151, 163, 0.2);
}

.bcds-blockchain-use-cases-item-icon {
    font-size: 3.5rem;
    color: #3797a3;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.bcds-blockchain-use-cases-item-title {
    color: #02073e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bcds-blockchain-use-cases-item-p {
    color: #555;
    position: relative;
    z-index: 1;
}

/* Software Section */
#bcds-blockchain-software {
    background: linear-gradient(135deg, #02073e 0%, #041454 100%);
    color: white;
}

.bcds-blockchain-software-title {
    color: white;
    text-align: center;
}

.bcds-blockchain-software-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.bcds-blockchain-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.bcds-blockchain-software-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 20px;
    border-radius: 12px;
    border: 2px solid rgba(55, 151, 163, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.bcds-blockchain-software-item:hover {
    background: rgba(55, 151, 163, 0.1);
    border-color: #3797a3;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(55, 151, 163, 0.3);
}

.bcds-blockchain-software-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.bcds-blockchain-software-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* CTA Section */
#bcds-blockchain-cta {
    background: linear-gradient(135deg, #3797a3 0%, #2c7880 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#bcds-blockchain-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bcds-blockchain-cta-container {
    position: relative;
    z-index: 1;
}

.bcds-blockchain-cta-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.bcds-blockchain-cta-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.95);
}

.bcds-blockchain-cta-button-wrap {
    margin-top: 30px;
}

.bcds-blockchain-cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcds-blockchain-cta-button-primary {
    background: #dc3545;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.bcds-blockchain-cta-button-primary:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .bcds-section-title {
        font-size: 2rem;
    }

    .bcds-blockchain-cta-title {
        font-size: 2rem;
    }

    .bcds-blockchain-problem-grid,
    .bcds-blockchain-solution-grid,
    .bcds-blockchain-use-cases-grid {
        grid-template-columns: 1fr;
    }
}

#web-app-sol .litespeed-boxes {
    color: #29aaba;
    font-size: 2rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Game Types Page */

.g-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.g-game-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.g-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}
.g-game-img-wrapper {
    height: 180px;
    background-color: #2c3e50; /* Fallback color */
    position: relative;
    overflow: hidden;
}
.g-game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.g-game-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.g-game-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #001f3f;
}
.g-game-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.g-game-link {
    color: #007bff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item .icon {
    font-size: 20px;
}

#trust-section .container {
    max-width: 1320px;
}

.stat-item .icon {
    font-size: 3rem;
    color: #29aaba;
    margin-bottom: 15px;
}

/* Use Cases Grid Section */
.g-stream-use-cases-container {
    text-align: center;
}

.g-stream-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.g-stream-use-cases-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(55, 151, 163, 0.3); /* Teal border opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none; /* Remove underline from anchor */
    transition: all 0.3s ease;
    height: 100%;
}

.g-stream-use-cases-item:hover {
    background: rgba(55, 151, 163, 0.1);
    border-color: #3797a3; /* Full Teal */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.g-stream-use-cases-item-icon {
    font-size: 3rem;
    color: #3797a3; /* Primary Teal */
    margin-bottom: 20px;
}

.g-stream-use-cases-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Button Styles within the Card */
.g-stream-use-cases-item button {
    margin-top: auto; /* Pushes button to bottom if titles vary in height */
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Fix for invalid HTML (button inside anchor) so the link works */
    pointer-events: none; 
}

.g-stream-use-cases-item:hover button {
    background: #DB4437; /* Highlight Red on hover */
    border-color: #DB4437;
    color: white;
}

/* Update existing item to stack content vertically */
.db-platforms-item {
    flex-direction: column !important; /* Forces logo on top, button on bottom */
    padding: 30px 20px !important;     /* Increases padding for better spacing */
    gap: 20px;                         /* Adds space between logo and button */
    min-height: 200px;                 /* Ensures uniform height for all cards */
}

/* Style for the new View Plans button */
.db-platform-btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #02073e;                 /* Navy Text */
    background-color: transparent;
    border: 2px solid #3797a3;      /* Teal Border */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover effect for the button */
.db-platform-btn:hover, 
.db-platforms-item:hover .db-platform-btn {
    background-color: #3797a3;      /* Teal Background */
    color: #ffffff;                 /* White Text */
    box-shadow: 0 4px 15px rgba(55, 151, 163, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .db-platforms-item {
        min-height: auto;
        padding: 25px !important;
    }
}

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word;
    display: inline-block !important;
    width: max-content;
}

/* Database Sections */
.db-section-wrapper {
    padding: 80px 20px;
}

.db-section-container {
    max-width: 1800px;
    margin: 0 auto;
}

.db-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.db-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--highlight-red));
    border-radius: 2px;
}

.db-section-subtitle {
    font-size: 1.3rem;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.db-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Problem Section */
#db-problem {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2847 100%);
    color: white;
}

.db-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-problem-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(2, 7, 62, 0.1);
    border-left: 4px solid var(--highlight-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.db-problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 7, 62, 0.15);
}

.db-problem-item-title {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.db-problem-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.db-problem-item:nth-child(1) i {
    color: var(--highlight-red);
}

.db-problem-item:nth-child(2) i {
    color: #ffc107;
}

.db-problem-item:nth-child(3) i {
    color: var(--primary-teal);
}

/* Solution Section */
#db-solution {
    background: white;
}

.db-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-solution-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-teal);
}

.db-solution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(55, 151, 163, 0.2);
}

.db-solution-item-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.db-solution-item-title {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Database Engines Section */
#db-engines {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2847 100%);
    color: white;
}

.db-engines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.db-engine-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.db-engine-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.db-engine-card i {
    font-size: 4rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.db-engine-card h5 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.db-engine-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scaling Section */
#db-scaling {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.db-scaling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.db-scaling-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(2, 7, 62, 0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid var(--primary-teal);
}

.db-scaling-item:hover {
    transform: translateX(10px);
}

.db-scaling-item i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.db-scaling-item h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Comparison Table */
#db-comparison {
    background: white;
}

.table-responsive {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead {
    background: linear-gradient(135deg, var(--primary-navy), #1a2847);
    color: white;
}

.table thead th {
    padding: 20px;
    font-weight: 600;
    border: none;
}

.table thead th:last-child {
    background: var(--primary-teal);
}

.table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.table tbody tr:hover {
    background-color: rgba(55, 151, 163, 0.05);
}

.table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-navy);
}

.table tbody td:last-child {
    font-weight: 700;
    color: var(--primary-teal);
}

/* FAQ Section - Keep as is */
.accordion-item {
    border: 2px solid rgba(55, 151, 163, 0.15);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 25px rgba(55, 151, 163, 0.15);
}

.accordion-button {
    background-color: white;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2a7a84 100%);
    color: white;
    box-shadow: none;
}

.accordion-body {
    padding: 2rem;
    background-color: white;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Buttons */
.btn-danger {
    background: linear-gradient(135deg, var(--highlight-red) 0%, #c53727 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(219, 68, 55, 0.4);
}

@media (max-width: 768px) {
    .db-section-title {
        font-size: 2rem;
    }

    .db-problem-grid,
    .db-solution-grid,
    .db-scaling-grid {
        grid-template-columns: 1fr;
    }

    .db-section-wrapper {
        padding: 50px 15px;
    }
}

/* Update btn-outline-primary to Deep Navy Gradient */
.btn-outline-primary {
    /* Mixes your specific #02073e with the lighter navy variable */
    background: linear-gradient(135deg, #02073e 0%, var(--navy-light) 100%) !important;
    
    border: none !important;
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
    
    /* Dark Blue Shadow matching the button */
    box-shadow: 0 4px 15px rgba(2, 7, 62, 0.4); 
    
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

/* Hover Effect */
.btn-outline-primary:hover {
    /* Reverses the gradient direction for a subtle lighting change */
    background: linear-gradient(135deg, var(--navy-light) 0%, #02073e 100%) !important;
    
    transform: translateY(-3px);
    
    /* Deeper shadow on hover */
    box-shadow: 0 8px 25px rgba(2, 7, 62, 0.5);
    
    color: var(--white) !important;
}

/* Focus state */
.btn-outline-primary:focus {
    box-shadow: 0 8px 25px rgba(2, 7, 62, 0.5);
    outline: none;
}

.email-sw-img {
    max-width: 180px;
    height: auto;
    background: aliceblue;
    padding: 15px;
    border-radius: 15px;
}

/* Problem Section - Split Design */
#eds-email-problem {
    background: #e8ecf5; /* Light purple-gray background */
}

.eds-email-problem-title {
    text-align: center;
    color: #02073e;
}

.eds-email-problem-subtitle {
    text-align: center;
    color: #666;
}

.eds-email-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 0; /* No gap between items */
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.eds-email-problem-item {
    padding: 60px 50px;
    transition: transform 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.eds-email-problem-item:first-child {
    background: #02073e; /* Deep navy */
    color: white;
}

.eds-email-problem-item:last-child {
    background: #3797a3; /* Teal */
    color: white;
}

.eds-email-problem-item:hover {
    transform: scale(1.01);
}

.eds-email-problem-item-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    font-weight: 700;
}

/* Badge Styles */
.eds-email-problem-item .badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 8px;
}

/* Button Styles */
.eds-email-problem-item .btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
}

.eds-email-problem-item .btn-outline-light:hover {
    background: white;
    color: #3797a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .eds-email-problem-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .eds-email-problem-item {
        padding: 50px 40px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .eds-email-problem-item {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .eds-email-problem-item-title {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
    
    .eds-email-problem-grid {
        border-radius: 15px;
        margin-top: 30px;
    }
}

