/* 
   Access Financial Services - New Header Styles
   All classes prefixed with 'new-' 
*/

:root {
    --new-access-red: #F42941;
    --new-access-navy: #051C2C;
    --new-white: #ffffff;
}

.new-header-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 15px;
    font-family: 'Poppins', sans-serif;
}

.new-header-container {
    max-width: 1280px;
    margin: 0 auto;
}

.new-header-main-box {
    background-color: var(--new-access-navy);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    padding-bottom: 8px;
    overflow: hidden;
}

/* --- TOP BAR (Navy) --- */
.new-header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    gap: 20px;
}

.new-header-logo img {
    height: 48px;
    display: block;
    transition: transform 0.3s ease;
}

.new-header-logo:hover img {
    transform: scale(1.05);
}

.new-header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.new-header-nav-link {
    color: var(--new-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.new-header-nav-link:hover {
    color: var(--new-access-red);
}

.new-header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-phone-icon-box {
    width: 32px;
    height: 32px;
    background-color: var(--new-access-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-white);
    flex-shrink: 0;
}

.new-phone-icon-box svg {
    width: 18px;
    height: 18px;
}

.new-header-phone span {
    color: var(--new-white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.2px;
}

/* --- BOTTOM BAR (Red) --- */
.new-header-bottom-bar {
    background-color: var(--new-access-red);
    margin: 0 20px;
    border-radius: 15px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.new-bottom-info-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.new-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--new-white);
}

.new-info-icon {
    width: 32px;
    height: 32px;
    background-color: var(--new-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-access-red);
    flex-shrink: 0;
}

.new-info-icon svg {
    width: 18px;
    height: 18px;
}

.new-info-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.new-info-item a {
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
}

.new-info-item a:hover {
    text-decoration: underline;
}

.new-bottom-action-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.new-header-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--new-white);
}

.new-header-socials a {
    color: inherit;
    transition: transform 0.2s ease;
}

.new-header-socials a:hover {
    transform: translateY(-2px);
}

.new-social-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.new-header-btn {
    background-color: var(--new-access-navy);
    color: var(--new-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.new-header-btn:hover {
    background-color: #0d3652;
}

/* --- MOBILE MENU (hamburger) --- */
.new-mobile-toggle {
    display: none;
    color: var(--new-white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    line-height: 0;
}

/* --- MOBILE SIDEBAR (translateX + opacity, no display none) --- */
.new-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.new-sidebar-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    max-width: 320px;
    height: 100%;
    background-color: var(--new-access-navy);
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

body.new-mobile-menu-open .new-sidebar-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.new-mobile-menu-open .new-sidebar-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    body.new-mobile-menu-open {
        overflow: hidden;
    }
}

.new-sidebar-inner {
    padding: 24px;
    padding-top: 60px;
}

.new-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--new-white);
    cursor: pointer;
    padding: 4px;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.new-sidebar-close:hover {
    opacity: 0.8;
}

.new-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.new-sidebar-link {
    color: var(--new-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.new-sidebar-link:hover {
    color: var(--new-access-red);
    padding-left: 8px;
}

.new-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.new-sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--new-white);
    font-size: 14px;
    line-height: 1.4;
}

.new-sidebar-info-item span,
.new-sidebar-info-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.new-sidebar-info-item a:hover {
    text-decoration: underline;
}

.new-sidebar-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--new-access-red);
}

.new-sidebar-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.new-sidebar-socials a {
    color: var(--new-white);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.new-sidebar-socials a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.new-sidebar-socials .new-social-icon {
    width: 24px;
    height: 24px;
}

.new-sidebar-cta {
    display: block;
    text-align: center;
    background-color: var(--new-access-red);
    color: var(--new-white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.new-sidebar-cta:hover {
    background-color: #d91f35;
    color: var(--new-white);
}

@media (max-width: 1024px) {
    .new-header-nav, .new-bottom-info-group, .new-header-socials {
        display: none;
    }
    
    .new-mobile-toggle {
        display: block;
    }
    
    .new-header-top-bar {
        padding: 12px 20px;
    }
    
    .new-header-phone {
        display: none;
    }
    
    .new-header-bottom-bar {
        padding: 8px 15px;
        justify-content: center;
    }
    
    .new-header-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}



/* Stats */
/* Stats Section Styles */
.new-stats-section {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.new-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.new-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.new-stat-number {
    color: #F42941; /* access-red */
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1;
}

.new-stat-info {
    display: flex;
    flex-direction: column;
    color: #334155; /* slate-700 */
    line-height: 1.25;
}

.new-stat-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.new-stat-sublabel {
    font-size: 12px;
    white-space: nowrap;
}

.new-stat-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.new-stat-text-black {
    color: #0f172a; /* slate-900 */
    font-size: 20px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .new-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 640px) {
    .new-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .new-stat-item {
        flex-direction: column;
        gap: 8px;
    }
    .new-stat-number {
        font-size: 40px;
    }
}


/* Info Section */
/* Financial Freedom Info Section */
.new-info-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 1024px) {
    .new-info-section {
        min-height: 700px;
        padding-top: 130px;
    }
}

.new-info-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.new-info-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-info-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
    .new-info-overlay {
        background: linear-gradient(to right, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
    }
}

.new-info-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .new-info-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.new-info-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    text-align: center;
}

@media (min-width: 1024px) {
    .new-info-content {
        grid-column: 8 / span 5;
        text-align: left;
    }
}

.new-info-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .new-info-title {
        font-size: 30px;
        margin-left: 0;
    }
}

.new-info-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .new-info-text {
        margin-left: 0;
        font-size: 11px;
    }
}

.new-info-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    background-color: #F42941;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.new-info-btn:hover {
    transform: translateY(-2px);
}

/* Services Section */
/* Our Services Section */
.new-services-section {
    background-color: #F8F9FB;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.new-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-services-subtitle {
    font-size: 18px;
    color: #475569; /* slate-600 */
    margin-bottom: 8px;
    font-weight: 500;
}

.new-services-title {
    font-size: 48px;
    font-weight: 700;
    color: #051C2C; /* access-navy */
    margin: 0;
}

/* Grid Layout – Bootstrap row + col-12 col-md-4 (3 columns, responsive) */
.new-services-grid {
    margin-bottom: 0;
}

.new-services-grid .col-md-4 {
    display: flex;
}

.new-service-card-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.new-service-card-wrapper:hover .new-service-card {
    transform: scale(1.01);
}

.new-service-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: transform 0.5s ease;
    cursor: pointer;
    flex: 1;
}

.new-service-card-svg {
    width: 100%;
    height: auto;
    display: block;
    flex: 0 0 auto;
    aspect-ratio: 385 / 379;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
}

.new-service-card-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: #ffffff;
    pointer-events: none;
}

@media (min-width: 640px) {
    .new-service-card-content {
        padding: 36px;
    }
}

.new-service-card-content .new-service-card-btn {
    pointer-events: auto;
}

.new-service-nb {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .new-service-nb { font-size: 14px; }
}

.new-service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .new-service-card-title { font-size: 24px; }
}

.new-service-card-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    flex: 1 1 auto;
    max-width: 90%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

@media (min-width: 640px) {
    .new-service-card-desc { font-size: 14px; }
}

.new-service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: #F42941;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .new-service-card-btn { font-size: 12px; }
}

.new-service-card-wrapper:hover .new-service-card-btn {
    background-color: #d91f35;
}

/* WCU Section */
/* Why Choose Us Section */
.new-wcu-section {
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.new-wcu-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.new-wcu-subtitle {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.new-wcu-title {
    font-size: 48px;
    font-weight: 700;
    color: #051C2C;
    line-height: 1.1;
    margin: 0;
}

.new-wcu-red-text { color: #F42941; }

.new-wcu-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 10px;
}

/* Dark Box Design */
.new-wcu-dark-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.new-wcu-bg { position: absolute; inset: 0; z-index: 0; }

.new-wcu-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(180deg);
}

.new-wcu-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Grid Content */
.new-wcu-grid-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px;
}

.new-wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
    position: relative;
}

.new-wcu-divider {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.new-wcu-item-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-wcu-item-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

/* Helper Class for Desktop Spacing */
.new-wcu-pl { padding-left: 0; }


/* Responsive */
@media (max-width: 1024px) {
    .new-wcu-header { grid-template-columns: 1fr; text-align: center; }
    .new-wcu-title { font-size: 32px; }
    .new-wcu-grid-content { padding: 40px; }
    .new-wcu-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .new-wcu-divider { display: none; }
    .new-wcu-item-text { margin: 0 auto; }
}

/* /testimonials */
/* Testimonials & Trusted Section */
.new-testimonial-section {
    position: relative;
    background-color: #F8F9FB;
    padding: 120px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.new-testimonial-map {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.new-testimonial-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
}

.new-testimonial-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Left Column: Cards --- */
.new-testimonial-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 520px;
}

.new-trusted-card {
    position: relative;
    background-color: #051C2C; /* Navy */
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.new-trusted-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: rotate(180deg);
}

.new-trusted-content { position: relative; z-index: 10; }

.new-avatar-group { display: flex; align-items: center; margin-bottom: 30px; }

.new-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #F42941;
    overflow: hidden;
    margin-right: -16px;
    background: #000;
}

.new-avatar img { width: 100%; height: 100%; object-fit: cover; }
.shift-down { transform: translateY(8px); }

.new-trusted-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Testimonial Card */
.new-testimonial-main-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.new-stars-row { display: flex; gap: 8px; margin-bottom: 30px; }

.new-star-circle {
    width: 32px;
    height: 32px;
    background-color: #F42941;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    padding-bottom: 2px;
    box-shadow: 0 5px 15px rgba(244, 41, 65, 0.3);
}

.new-testimonial-slide { display: none; }
.new-testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }

.new-testimonial-quote {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 100px;
}

.new-testimonial-author { display: flex; align-items: center; gap: 16px; }

.new-author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.new-author-name { font-size: 18px; font-weight: 700; color: #051C2C; margin: 0; }
.new-author-role { font-size: 13px; color: #64748b; margin: 0; }

/* --- Right Column: Branding & Controls --- */
.new-copy-label {
    color: #475569;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.new-copy-main-title {
    font-size: 56px;
    font-weight: 700;
    color: #051C2C;
    line-height: 1.1;
    margin: 0 0 40px 0;
}

.new-text-red { color: #F42941; }

.new-carousel-controls { display: flex; gap: 16px; }

.new-control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #000000;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.new-control-btn:hover { background: #000; color: #fff; }
.new-control-btn:active { transform: scale(0.95); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1024px) {
    .new-testimonial-grid { grid-template-columns: 1fr; gap: 60px; }
    .new-testimonial-cards-stack { max-width: 100%; order: 2; }
    .new-testimonial-copy { order: 1; text-align: center; }
    .new-carousel-controls { justify-content: center; }
    .new-copy-main-title { font-size: 36px; }
    .hidden-mobile { display: none; }
}




/* INfo */
/* Practical Gadgets Section */
.new-gadgets-section {
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.new-gadgets-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.new-gadgets-subtitle {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.new-gadgets-title {
    font-size: 48px;
    font-weight: 700;
    color: #051C2C;
    line-height: 1.1;
    margin: 0;
}

.new-text-red { color: #F42941; }

.new-gadgets-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 10px;
}

/* Gadget Cards Grid */
.new-gadgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.new-gadget-card {
    position: relative;
    background-color: #F42941; /* access-red */
    border-radius: 40px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(244, 41, 65, 0.2);
    transition: transform 0.4s ease;
}

.new-gadget-card:hover { transform: translateY(-8px); }

.new-gadget-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.new-gadget-card-content {
    position: relative;
    z-index: 10;
    padding: 50px 50px 0 50px;
    flex-grow: 1;
}

.new-gadget-card-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.new-gadget-card-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.new-gadget-btn {
    display: inline-block;
    background-color: #051C2C; /* access-navy */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-gadget-btn:hover { background-color: #0d3652; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Image Box */
.new-gadget-img-box {
    position: relative;
    z-index: 10;
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.new-gadget-main-img {
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.new-gadget-card:hover .new-gadget-main-img { transform: scale(1.05); }

/* Responsive */
@media (max-width: 1024px) {
    .new-gadgets-header { grid-template-columns: 1fr; text-align: center; }
    .new-gadgets-title { font-size: 32px; line-height: 1.2; }
    .new-gadgets-desc { margin: 0 auto; }
    .new-gadgets-grid { grid-template-columns: 1fr; }
    .new-gadget-card { min-height: 400px; }
    .new-gadget-card-content { padding: 30px 30px 0 30px; }
}

@media (max-width: 640px) {
    .new-gadget-card-title { font-size: 24px; }
    .new-gadget-card-subtitle { font-size: 16px; }
    .new-gadget-main-img { max-height: 200px; }
}
