/* ===================================
   NYXXIA Landing Page - Custom Styles
   Bootstrap 5.3.2 + Custom CSS
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #006fee;
    --primary-hover: #0056d6;
    --text-primary: #252e3d;
    --text-secondary: #2d2d2d;
    --text-muted: rgba(45, 45, 45, 0.8);
    --bg-gray: #f7f7f7;
    --bg-dark: #252e3d;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    overflow-x: hidden;
}

/* ===== Container Styles ===== */
.custom-container {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.header-container {
    max-width: 1370px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* ===== Header Styles ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: transparent;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.logo-wrapper svg {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-wrapper svg {
        height: 46px;
    }
}
.hero-section .text-lg {
    max-width: 549px;
}
/* Navigation Links */
.nav-link-custom {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    height: 48px;
    display: inline-flex;
    align-items: center;
    padding-left: 24px;
    padding-right: 4px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.btn-icon-wrapper {
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    margin-left: 24px;
    flex-shrink: 0;
}

.btn-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-link-custom:hover {
    color: var(--primary-hover);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #000;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* Mobile Menu */
.mobile-menu {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    margin: 0 15px;
}

.mobile-menu .menu-item a,
.mobile-menu .nav-link-custom {
    padding: 12px 24px;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    display: block;
    height: auto;
    justify-content: flex-start;
    transition: var(--transition);
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link-custom:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero-bg-wrapper {
    position: relative;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 120px;
        padding-bottom: 64px;
    }
}

@media (min-width: 992px) {
    .hero-content {
        padding-top: 150px;
        padding-bottom: 96px;
    }
}

/* Hero Flex Layout */
.hero-left-content {
    flex: 1 1 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-left-content {
        flex: 0 0 60.67%;
        max-width: 60.67%;
        padding-right: 0;
        padding-top: 0px;
    }
}

/* Partner Logos */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.partner-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    /* opacity: 0.6; */
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo-img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.hero-right-stats {
    flex: 1 1 auto;
    width: 100%;
    padding: 0;
    margin-top: auto;
}

@media (min-width: 992px) {
    .hero-right-stats {
        flex: 0 0 39.33%;
        max-width: 39.33%;
        padding: 0;
    }
}

.hero-section .text-lg {
    max-width: 549px;
}

/* ===== Stat Cards ===== */
.stat-card {
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.stat-card-gray {
    background-color: #ebebeb;
}

.stat-card-primary {
    background-color: var(--primary-color);
    color: var(--white);
    min-height: 140px;
}

@media (min-width: 768px) {
    .stat-card-primary {
        height: 161px;
    }
}

.stat-card-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 50px;
        height: 65px;
    }
}

.stat-text {
    font-size: 14px;
    line-height: 26px;
}

@media (min-width: 768px) {
    .stat-text {
        font-size: 16px;
        line-height: 30px;
    }
}

/* ===== Section Styles ===== */
.section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.section-bg-gray {
    background-color: var(--bg-gray);
}

/* ===== Badge ===== */
.badge-primary {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 24px;
    margin-bottom: 16px;
    display: block;
}

/* ===== Headings ===== */
.heading-1 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .heading-1 {
        font-size: 2.5rem;
        line-height: 56px;
    }
}

@media (min-width: 992px) {
    .heading-1 {
        font-size: 50px;
        line-height: 64px;
    }
}

.heading-2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .heading-2 {
        font-size: 44px;
        line-height: 52px;
    }
}

.heading-3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ===== Text ===== */
.text-lg {
    font-size: 16px;
    line-height: 28px;
}

@media (min-width: 768px) {
    .text-lg {
        font-size: 18px;
        line-height: 30px;
    }
}

.text-primary-color {
    color: var(--text-primary);
}

.text-muted-custom {
    color: var(--text-muted);
}

/* ===== Why Choose Section ===== */
.why-choose-image {
    width: 364px;
    flex-shrink: 0;
    height: auto;
}

.why-choose-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== Feature Cards ===== */
.feature-card {
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card-fixed {
    width: 316px;
    flex-shrink: 0;
}
.solution-card.background-transparent {
    border: 0!important;
    box-shadow: none!important;
}
@media (max-width: 767.98px) {
    .feature-card-fixed {
        width: 100%;
    }
    .solution-card.background-transparent {
        min-height: auto;
        box-shadow: none;
    }
}

.feature-card-primary {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-card-pattern {
    position: absolute;
    inset: 0;
    background-color: #0064ED;
    background-image: url('../img/bg3.png');
    background-size: 110%;
    background-position: right;
}

.feature-card-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.feature-icon-wrapper {
    background-color: rgba(0, 111, 238, 0.04);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper-light {
    background-color: rgba(255, 255, 255, 0.12);
}

.feature-card-primary .feature-icon-wrapper-light {
    background-color: #2979ef;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-card-primary .feature-icon,
.feature-card-dark .feature-icon {
    color: var(--white);
}

.background-transparent {
    background-color: transparent!important;
}
.feature-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
    margin-top: 5px;
}

.feature-card-primary .feature-title,
.feature-card-dark .feature-title {
    color: var(--white);
}

.feature-text {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
    margin: 0;
}

.feature-card-primary .feature-text,
.feature-card-dark .feature-text {
    color: var(--white);
}

/* ===== Utilities ===== */
.bg-gradient {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Solution Cards ===== */
.solution-card-wrapper {
    width: 400px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .solution-card-wrapper {
        width: calc(50% - 10px);
    }
}

@media (max-width: 767.98px) {
    .solution-card-wrapper {
        width: 100%;
    }
}

.solution-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 360px;
    min-height: 310px;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    border-color: #006fee;
}

.solution-card-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 64px 0 0;
}

.solution-card-image-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 12px;
    border-top: 1px solid #f4f4f5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-card-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 32px;
}

.solution-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}

.solution-card:hover .solution-card-tags {
    opacity: 1;
    visibility: visible;
    max-height: 50px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.solution-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 111, 238, 0.1);
    color: #006fee;
    font-size: 12px;
    line-height: 18px;
    border-radius: 4px;
    font-weight: 400;
}

.solution-card-text {
    font-size: 14px;
    color: rgba(45, 45, 45, 0.8);
    line-height: 24px;
}

.solution-card-cta {
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    position: relative;
}

.solution-card-cta-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.8;
    transform: scaleY(-1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: normal;
}

.solution-card-cta-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(24deg, rgba(255, 255, 255, 0.4) 16.56%, rgb(255, 255, 255) 99.73%);
    border-radius: 8px;
}

.solution-card-cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.solution-card-cta-button:hover {
    opacity: 0.8;
    color: #000000;
}

/* ===== Promotional Banner ===== */
.promo-banner {
    background-color: var(--primary-color);
    padding: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .promo-banner {
        padding: 60px 40px;
    }
}

@media (max-width: 767.98px) {
    .promo-banner {
        padding: 40px 20px;
    }
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    width: 1240px;
    height: 588px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
}

.promo-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-banner-logo {
    display: none;
}

.promo-banner-content {
    position: relative;
    z-index: 10;
}

.promo-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0 4px 0 24px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    transition: all 0.3s ease;
}

.promo-banner-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.promo-banner-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.promo-stat-card {
    padding: 0 20px;
    text-align: center;
    width: 227px;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .promo-stat-card {
        width: auto;
        min-width: 150px;
    }
}

.promo-stat-number {
    font-size: 50px;
    font-weight: 400;
    color: var(--white);
    line-height: 50px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.promo-stat-text {
    font-size: 16px;
    color: var(--white);
    line-height: 30px;
}

/* ===== Professional Services Section ===== */
.services-left {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .services-left {
        width: 502px;
    }
}

.services-right {
    flex: 1;
    width: 100%;
}

.services-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
    flex-shrink: 0;
}

.service-number {
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary-color);
    text-align: center;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-divider {
    width: 1px;
    height: 277px;
    background-color: rgba(0, 0, 0, 0.12);
}

.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--text-primary);
    margin-bottom: 0;
}

.service-description {
    font-size: 14px;
    line-height: 24px;
    color: rgba(45, 45, 45, 0.8);
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    height: 231px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .services-numbers {
        display: none;
    }
}

/* ===== Industries Section ===== */
.industry-card {
    background-color: var(--white);
    width: 236px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0.482px 1.06px -0.417px rgba(16, 49, 77, 0.04),
                0px 1.831px 4.028px -0.833px rgba(16, 49, 77, 0.05),
                0px 8px 17.6px -1.25px rgba(16, 49, 77, 0.11);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background-color: #006fee;
}

.industry-card svg {
    transition: all 0.3s ease;
}

.industry-card:hover svg path {
    stroke: var(--white);
}

.industry-card:hover svg path.fill-white {
    fill: var(--white);
}

.industry-card .industry-name {
    transition: color 0.3s ease;
}

.industry-card:hover .industry-name {
    color: var(--white);
}

@media (max-width: 767.98px) {
    .industry-card {
        width: calc(50% - 10px);
        min-width: 150px;
    }
}

.industry-icon {
    width: 42.667px;
    height: 42.667px;
    flex-shrink: 0;
}

.industry-name {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.industry-card-cta {
    background-color: var(--primary-color);
    height: 110px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.industry-card-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/bg4.png');
    background-size: cover;
    background-position: center;
}

.industry-cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.industry-cta-button:hover {
    opacity: 0.9;
    color: var(--white);
}

/* ===== Testimonial Section ===== */
.testimonial-card {
    background-color: var(--white);
    padding: 20px 40px 40px 40px;
    border-radius: 10px;
    box-shadow: 0px 0.482px 1.06px -0.417px rgba(16, 49, 77, 0.04),
                0px 1.831px 4.028px -0.833px rgba(16, 49, 77, 0.05),
                0px 8px 17.6px -1.25px rgba(16, 49, 77, 0.11);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-quote {
    width: 18px;
    height: 13px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 24px;
    line-height: 32px;
    color: var(--text-primary);
    margin-bottom: 0;
    max-width: 829px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-name {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
}

.testimonial-author-position {
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 20px;
        gap: 24px;
    }
    
    .testimonial-text {
        font-size: 18px;
        line-height: 28px;
    }
}

/* ===== Recruitment Services Section ===== */
.recruitment-card {
    height: 280px;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recruitment-card-white {
    background-color: var(--white);
}

.recruitment-card-primary {
    background-color: var(--primary-color);
}

.recruitment-card-dark {
    background-color: var(--text-primary);
}

.recruitment-card-image {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.recruitment-card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.recruitment-card-pattern {
    position: relative;
    overflow: hidden;
}

.recruitment-card-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/image_bg.png');
    pointer-events: none;
    z-index: 0;
}

.recruitment-card-pattern > * {
    position: relative;
    z-index: 1;
}

.recruitment-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recruitment-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recruitment-icon-blue {
    background-color: rgba(0, 111, 238, 0.04);
}

.recruitment-icon-primary-light {
    background-color: #2979ef;
}

.recruitment-icon-dark-light {
    background-color: rgba(255, 255, 255, 0.12);
}

.recruitment-card-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.recruitment-card-text {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .recruitment-card {
        width: 100% !important;
        flex-shrink: 1 !important;
    }
}

@media (max-width: 767.98px) {
    .recruitment-card {
        height: auto;
        min-height: 240px;
    }
}

/* ===== Strategic Technology Partners Section ===== */
.partner-card {
    background-color: var(--white);
    width: 400px;
    height: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0.482px 1.06px -0.417px rgba(16, 49, 77, 0.04),
                0px 1.831px 4.028px -0.833px rgba(16, 49, 77, 0.05),
                0px 8px 17.6px -1.25px rgba(16, 49, 77, 0.11);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .partner-card {
        width: 100%;
        height: auto;
        min-height: 220px;
    }
}

.partner-logo {
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-name {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.partner-description {
    font-size: 14px;
    line-height: 24px;
    color: rgba(45, 45, 45, 0.8);
    margin-bottom: 0;
}

/* ===== Blog Posts Section ===== */
.blog-badge {
    flex-shrink: 0;
}

.blog-header-content {
    width: 820px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .blog-header-content {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .blog-header-wrapper {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 0px;
    }
    
    .blog-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.blog-card {
    max-width: 400px;
    width: 100%;
    height: 360px;
    min-height: 310px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: #006fee;
}

@media (max-width: 991.98px) {
    .blog-card {
        width: 100%;
        height: auto;
    }
}

.blog-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid #f4f4f5;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.blog-card-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}

.blog-card:hover .blog-card-tags {
    opacity: 1;
    visibility: visible;
    max-height: 50px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 111, 238, 0.1);
    color: #006fee;
    font-size: 12px;
    line-height: 18px;
    border-radius: 4px;
    font-weight: 400;
}

.blog-card-meta {
    font-size: 14px;
    line-height: 24px;
    color: rgba(45, 45, 45, 0.8);
    margin-bottom: 0;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-color);
}

.blog-card-link:hover svg path {
    stroke: var(--primary-color);
}

.blog-card-link svg {
    flex-shrink: 0;
}

.blog-card-link svg path {
    transition: stroke 0.3s ease;
}

.blog-discover-link {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    transition: opacity 0.3s ease;
}

.blog-discover-link:hover {
    opacity: 0.8;
    color: var(--primary-color);
}

.blog-discover-link svg {
    flex-shrink: 0;
}

/* ===== CTA Banner Section ===== */
.cta-banner {
    background-color: #3c4451;
    padding: 80px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .cta-banner {
        padding: 40px 20px;
        gap: 32px;
    }
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-banner-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/conbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-badge {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 0;
}

.cta-banner-title {
    font-size: 44px;
    line-height: 52px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .cta-banner-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.cta-banner-description {
    font-size: 18px;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .cta-banner-description {
        font-size: 16px;
        line-height: 28px;
    }
}

.cta-banner .btn-primary-custom {
    position: relative;
    z-index: 1;
}

.cta-banner-footer {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    background-color: #000000;
    padding: 64px 80px 44px 80px;
}

@media (max-width: 991.98px) {
    .footer {
        padding: 48px 40px 32px 40px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 20px 24px 20px;
    }
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.footer-logo {
    width: 174px;
    height: 46px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-columns {
    display: flex;
    gap: 48px;
}

@media (max-width: 991.98px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 767.98px) {
    .footer-columns {
        flex-direction: column;
        gap: 24px;
    }
}

.footer-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 240px;
}

@media (max-width: 991.98px) {
    .footer-column {
        flex: 0 0 calc(50% - 16px);
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .footer-column {
        flex: 1;
        height: auto;
    }
}

.footer-column-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-links a {
    font-size: 16px;
    line-height: 24px;
    color: #c6c6c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
    color: #c6c6c6;
}

@media (max-width: 991.98px) {
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.footer-divider {
    color: #c6c6c6;
}

@media (max-width: 991.98px) {
    .footer-divider {
        display: none;
    }
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
}

@media (max-width: 767.98px) {
    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-bottom-right a {
    font-size: 14px;
    line-height: 20px;
    color: #c6c6c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--white);
}

.footer-made-by {
    display: flex;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
}

.footer-made-by span {
    color: #c6c6c6;
}

.footer-made-by a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-made-by a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 48px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-link-small {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-link-small:hover {
    color: var(--white);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .btn-primary-custom {
        width: 100%;
        justify-content: space-between;
    }
    
    .solution-card {
        height: auto;
        min-height: 280px;
    }
    .hero-right-stats {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        width: 100% !important;
        max-width: none !important;
    }
    
    .feature-card {
        min-height: auto;
    }
    
    .solution-card {
        height: auto;
    }
    
    .promo-stat-number {
        font-size: 40px;
    }
}

