/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 08 2025 | 04:50:43 */
.custom-button-container {
    text-align: left;
    margin-top: 25px;
}

.custom-rounded-button {
    display: inline-block;
    padding: 16px 36px !important;
    background-color: #1a465e !important;
    border: 3px solid white !important;
    border-radius: 25px !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-rounded-button:hover {
    background-color: #163847 !important;
    border-color: #163847 !important;
    color: white !important;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.28);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }
}

.custom-rounded-button::before {
    content: "\f061" !important;
    font-family: 'Font Awesome 5 Free' !important;
    position: absolute;
    right: 18px;
    top: 50% !important;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-weight: 900;
}

.custom-rounded-button:hover::before {
    opacity: 1;
    transform: translate(8px, -50%) scale(1.05);
}

.custom-dividing-line {
    border-top: 2px solid #e7e7e7;
    margin: 30px 0;
}

.custom-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px;
    gap: 20px;
}

.custom-text-container {
    width: 50%;
    padding: 20px;
    text-align: left;
}

.custom-image-container {
    width: 50%;
    padding: 20px;
    text-align: center;
    overflow: visible;
    position: relative;
    perspective: 1200px;
}

.custom-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 13px;
    overflow: hidden;
}

.custom-image-container img {
    border-radius: 13px !important;
    box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1), filter 0.6s ease;
}

.custom-image-container:hover img {
    transform: scale(1.08);
    filter: brightness(0.25);
}

.custom-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 70, 94, 0.98) 0%, rgba(26, 70, 94, 0.95) 100%);
    border-radius: 13px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.320, 1), backdrop-filter 0.7s ease;
    z-index: 10;
    overflow: hidden;
    backdrop-filter: blur(0px);
    box-shadow: inset 0 0 0 rgba(233, 77, 101, 0);
}

.custom-image-container:hover .custom-back {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 40px rgba(233, 77, 101, 0.15), 0 8px 32px rgba(233, 77, 101, 0.2);
    animation: elegantPulse 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes elegantPulse {
    0% {
        transform: scale(0.95) translateY(10px);
        opacity: 0;
        box-shadow: inset 0 0 0 rgba(233, 77, 101, 0), 0 0 0 rgba(233, 77, 101, 0);
    }
    50% {
        box-shadow: inset 0 0 50px rgba(233, 77, 101, 0.2), 0 12px 48px rgba(233, 77, 101, 0.25);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        box-shadow: inset 0 0 40px rgba(233, 77, 101, 0.15), 0 8px 32px rgba(233, 77, 101, 0.2);
    }
}

.results-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 8px;
}

.results-content::-webkit-scrollbar {
    width: 6px;
}

.results-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.results-content::-webkit-scrollbar-thumb {
    background: rgba(233, 77, 101, 0.5);
    border-radius: 10px;
}

.results-content::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 77, 101, 0.7);
}

.results-header {
    text-align: left;
    margin-bottom: 8px;
    border-bottom: 2px solid rgba(233, 77, 101, 0.3);
    padding-bottom: 12px;
    flex-shrink: 0;
}

.results-header h4 {
    color: #e94d65;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
}

.results-header i {
    font-size: 18px;
    margin-right: 8px;
    color: #e94d65;
}

.result-item {
    background: linear-gradient(135deg, rgba(233, 77, 101, 0.1) 0%, rgba(233, 77, 101, 0.05) 100%);
    border: 1px solid rgba(233, 77, 101, 0.25);
    border-left: 4px solid #e94d65;
    padding: 16px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInResult 0.6s cubic-bezier(0.23, 1, 0.320, 1) forwards;
    backdrop-filter: blur(10px);
}

.result-item:nth-child(2) {
    animation-delay: 0.08s;
}
.result-item:nth-child(3) {
    animation-delay: 0.16s;
}
.result-item:nth-child(4) {
    animation-delay: 0.24s;
}

@keyframes slideInResult {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e94d65 0%, #d63d55 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(233, 77, 101, 0.3);
}

.result-text {
    flex: 1;
    text-align: left;
}

.result-metric {
    font-weight: 700;
    font-size: 18px;
    color: #e94d65;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.result-description {
line-height: 1.3;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 500;
}

/* --- ADJUSTED STYLES FOR VISUAL CONSISTENCY --- */
.result-item.metric-empty .result-text {
    /* This helps vertically center the single line of text if it's short */
    display: flex;
    align-items: center;
}

.result-item.metric-empty .result-description {
line-height: 1.3;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 500;
}
/* --- END OF ADJUSTED STYLES --- */

.custom-non-flipping-container {
    text-align: center;
    background-color: #1a465e !important;
    border: 3px solid white !important;
    border-radius: 13px !important;
    color: #e94d65 !important;
    font-size: 15px !important;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.custom-section-container h3 {
    color: #1a465e !important;
    margin-top: 0;
}

.custom-plus-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e94d65 0%, #d63d55 100%);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(233, 77, 101, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.custom-plus-icon-container i {
    color: white !important;
    font-size: 28px;
    transition: transform 0.4s ease;
}

.custom-image-container:hover .custom-plus-icon-container {
    transform: translate(-50%, -50%) scale(0) rotateZ(90deg);
    opacity: 0;
}

.custom-image-container:hover .custom-plus-icon-container i {
    transform: rotateZ(-90deg);
}

@media (max-width: 768px) {
    .custom-section-container {
        flex-direction: column;
        align-items: left;
        margin: 0px !important;
    }
    .custom-text-container,
    .custom-image-container {
        width: 100%;
        text-align: left;
        padding: 10px !important;
    }
    .custom-text-container p {
        margin-top: 16px;
    }
    .custom-image-container {
        order: 1;
        width: 90vw; /* This might be better as 100% or managed by the container */
        overflow: visible;
    }
    .custom-image-wrapper {
        height: 300px;
    }
    .custom-section-container .custom-text-container {
        order: 2;
    }
    .custom-section-container .custom-button-container {
        order: 3;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .custom-section-container h3 {
        font-size: 20px !important;
        padding: 0px !important;
    }
    .custom-rounded-button {
        padding: 12px 26px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    .custom-rounded-button::before {
        right: 16px;
        top: 52% !important;
        transform: translateY(-50%);
    }
    .custom-back {
        padding: 24px 20px;
    }
    .results-content {
        gap: 12px;
        max-height: 280px;
    }
    .result-item {
        padding: 12px 14px;
        gap: 12px;
    }
    .result-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .result-metric {
        font-size: 16px;
    }
    /* Apply mobile styles to the metric-less description as well */
    .result-item.metric-empty .result-description {
        font-size: 16px;
    }
}
