
:root {
    --primary-dark: #0f1235;
    --primary-light: #1c2156;
    --accent-blue: #4e54c8;
    --accent-purple: #6c63ff;
    --text-gold: #f5a623;
    --bg-light: #f8f9fa;
    --Text-Dark_Primary: #1D2149;
    --Pill-Bg: rgba(62, 72, 158, 0.3);
    --Text-Gray: #C3C2C2;
    --Text-Dark_Secondary: #2E1650;
    --accent-indigo: #3E489E;
    --text-primary: #223D78;
}

body {
    font-family: "Alexandria", sans-serif !important;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.notimoney-hero-pill {
    background-color: #FFFFFF17;
    border-radius: 50px;
    border: 1px solid #757AA7;
}

.notimoney-hero-pill img {
    margin-right: 5px;
}

.bg-dark-blue {
    background-color: var(--primary-dark);
}

.text-justify {
    text-align: justify;
}

.radius-15 {
    border-radius: 15px;
}

.radius-20 {
    border-radius: 20px;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
}

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

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    background: #fff;
    height: 95px;
    border-radius: 26px;
    padding: 16px 24px;
    width: 100%;
    max-width: 90%;
}

.navbar-brand {
    color: white !important;
    font-weight: 900;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--Text-Dark_Primary) !important;
    font-weight: 500;
    margin: 13px 32px;
    font-size: 16px;
    padding: 12px 16px !important;
    border-radius: 50px;
}

.navbar a.nav-login {
    display: flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: var(--Border_Radius-Radius26, 26px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: var(--Text-Dark_Primary);
    color: #fff;
}

.nav-link.active, .nav-link:hover {
    color: white !important;
    background: var(--accent-indigo);
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34, 34, 34, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* For navbar */
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    max-width: 95%;
    margin: 18px auto;
}

.hero-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, #2a2f6e 0%, transparent 40%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    position: relative;
    max-width: 90%;
    margin-top: 160px;
}

.hero-content a.login-link, .hero-content a.login-link:hover, .hero-content a#index-youtube-video, .hero-content a#index-youtube-video:hover {
    border-radius: var(--Border_Radius-Radius26, 26px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    color: var(--Text-Dark_Primary);
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
    font-weight: 500;
}

.hero-content a#index-youtube-video, .hero-content a#index-youtube-video:hover {
    background-color: var(--accent-indigo);    
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-scroll-down-whatsapp {
    position: relative;
    z-index: 2;
    height: 100px;
    margin-top: 30px;
}

.hero-scroll-down-whatsapp a.scroll-down {
    background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/hero_down_arrow.png') no-repeat center center;
    width: 53px;
    height: 73px;
    display: inline-block;
    margin-right: 45%;
}

.hero-scroll-down-whatsapp a.whatsapp {
    background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/whatsapp_float_btn.png') no-repeat center center;
    background-size: 145px 145px;
    width: 80px;
    height: 80px;
    /* display: inline-block; */
    float: left;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 700;
    font-size: 36px;
}

.hero-title-description {
    font-weight: 500;
    font-size: 18px;
}

.dashboard-mockup {
    /* padding: 20px; */
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup img {
    float: left;
    width: 100%;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Logos */
.logo-section {
    padding: 40px 0;
    background: white;
}

.logo-section .container {
    margin-right: 0;
    padding-right: 0;
    position: relative;
}

.logo-section .container p {
    text-align: right;
}

.logo-section-heading {
    color: var(--Text-Dark_Primary) !important;
    font-weight: 700 !important;
    font-size: 30px;
    margin-bottom: 48px;
    margin-top: 25px;
}

.logo-section h1.title-pill, .body-content h1.title-pill, .mid-benefits h2.title-pill, .pricing-section span.title-pill, .reviews-section h2.title-pill {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    width: fit-content;
    max-width: 120px;
    height: 32px;
    background: var(--Pill-Bg);
    border: 0.5px solid var(--accent-indigo);
    border-radius: 8px;
    flex: none;
    order: 0;
    flex-grow: 0;
    color: var(--Text-Dark_Primary);
    font-weight: 500;
    font-size: 12px;
}

a.more-partners {
    /* Buttons */
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 6px;
    margin: 0 auto;
    width: 148px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    flex: none;
    order: 0;
    flex-grow: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--Text-Dark_Primary);
    text-decoration: none;
    background: #F2F2F2 url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/arrow-right-double.png') no-repeat 10px center;
    background-size: 19px 19px;
    padding-left: 18px;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-item {
    opacity: 0.7;
    transition: 0.3s;
    max-width: 120px;
    float: right;
    align-self: center;
    object-fit: contain;
    max-height: 70px;
    max-width: 110px;
}

.logo-item:hover {
    opacity: 1;
}

.body-content-container {
    padding-left: 0;
    padding-right: 0;
    margin-top: 50px;
}

.body-content-description {
    font-weight: 500;
    font-size: 16px;
    color: var(--Text-Dark_Primary) !important;
    margin-top: 32px;
}

/* Feature Cards */
.feature-card-dark {
    background-color: var(--primary-light);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card-dark.featured-first {
    padding: 43px 31px 70px 31px;
}

.feature-more-btn, .feature-more-btn:hover, .mid-benefits a.btn.more-notifications, .mid-benefits a.btn.more-notifications:hover, a.more-pricing, a.more-pricing:hover {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: var(--Text-Dark_Primary);
    color: #fff;
    font-size: 16px;
}

.feature-card-dark.feature-benefits {
    padding-bottom: 0 !important;
}

.featured-second-content {
    padding-top: 150px;
}

.mid-benefits h2.title-pill, .pricing-section span.title-pill {
    margin: 90px auto 12px auto;
}

.mid-benefits h1 {
    color: var(--Text-Dark_Primary) !important;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.mid-benefits p.description {
    color: var(--Text-Dark_Primary);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    max-width: 580px;
    margin: 12px auto;
}

/* Community Support Cards */
.community-support-cards {
    margin-bottom: 40px;
}

.community-card {
    padding: 24px 16px;
}

.community-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.community-icon svg {
    width: 64px;
    height: 64px;
}

.community-title {
    color: var(--Text-Dark_Primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
    line-height: 30px; 
}

.community-description {
    color: var(--Text-Dark_Primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/* Services Grid */
.service-box {
    background-color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 24px;
    text-align: right;
    color: white;
    height: 278px;
    position: relative;
}

.service-box {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box:hover {
    transform: translateY(-5px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box svg {
    float: right;
    margin-left: 80%;
}

.service-box h4 {
    color: #FCFCFC;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 20px 0 12px 0;
    float: right;
    width: 100%;
}

.service-box p {
    color: var(--Text-Gray) !important;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 75%;
    float: right;
}

.service-box a.btn, .service-box a.btn:hover {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    width: 90%;
    color: var(--primary-dark);
    position: absolute;
    bottom: 24px;
    right: 5%;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.service-box.expanded {
    height: 556px;
    transition: height 0.4s ease-in-out;
    position: relative;
}

.service-box.expanded::after {
    content: '';
    position: absolute;
    top: 278px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.service-box.expanded a.btn {
    position: absolute;
    bottom: 24px;
    right: 5%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.service-box-preview {
    position: absolute;
    top: 278px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 2;
    display: block;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease-in-out, padding 0.4s ease-in-out;
}

.service-box.expanded .service-box-preview {
    padding: 20px;
    max-height: 320px;
}

.service-box-preview h5 {
    color: var(--Text-Dark_Primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.2s;
}

.service-box.expanded .service-box-preview h5 {
    opacity: 1;
    transform: translateY(0);
    display: none;
}

.service-box-preview img {
    width: 100%;
    height: auto;
    max-height: 0;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    /* object-fit: cover; */
    display: block;
    transition: max-height 0.05s ease-in-out 0.05s, opacity 0.05s ease-in-out 0.05s, transform 0.05s ease-in-out 0.05s;
}

.service-box.expanded .service-box-preview img {
    max-height: 250px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pricing-section p {
    color: var(--Text-Dark_Secondary);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 12px;
}

.pricing-section h2 {
    margin-top: 18px;
    color: var(--Text-Dark_Primary) !important;
}

.monthly-yearly-switch {
    display: flex;
    width: 208px;
    padding: 6px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    background: #DADDF1;
    box-shadow: 0 0 0 2px rgba(62, 72, 158, 0.30);
    margin: 12px auto 32px auto;
}

.monthly-yearly-switch span {
    float: right;
    width: 50%;
    text-align: center;
    height: 36px;
    line-height: 36px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.monthly-yearly-switch span:hover {
    background: rgba(62, 72, 158, 0.1);
}

.monthly-yearly-switch-container {
    position: relative;
}

.monthly-yearly-switch-container img {
    position: absolute;
    top: -10px;
    left: 34%;
    height: 60px;
    width: 105px;
}

.monthly-yearly-switch span.selected {
    background: var(--Text-Dark_Primary);
    color: #fff;
}

/* Mobile Plan Selector */
.mobile-plan-selector {
    margin-top: 20px;
}

.mobile-plan-btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.mobile-plan-btn.active {
    background: var(--Text-Dark_Primary);
    color: #fff;
    border-color: var(--Text-Dark_Primary);
}

.mobile-plan-btn:hover:not(.active) {
    background: var(--Pill-Bg);
    border-color: var(--Text-Dark_Primary);
}

/* Plan Icon Styling */
.plan-icon {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 28px;
    right: 32px;
}

.plan-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-card.featured .plan-icon svg {
    fill: white;
}

.pricing-card:not(.featured) .plan-icon svg {
    fill: #1F0433;
}

/* Feature Items Styling */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-inline-start: 10px;
    flex-shrink: 0;
}

.feature-check.regular {
    background-color: var(--Text-Dark_Primary);
}

.feature-check.featured {
    background-color: white;
}

.feature-check i {
    color: white;
    font-size: 12px;
}

.feature-text {
    flex: 1;
    line-height: 1.4;
    padding-right: 10px;
    font-weight: 500;
    font-size: 12px;
}

.feature-check.regular svg {
    width: 10px;
    height: 10px;
}

.feature-check.regular svg path {
    color: #fff;
}

.feature-check.featured svg {
    width: 10px;
    height: 10px;
}

.feature-check.featured svg path {
    color: var(--accent-indigo);
}

.pricing-card .badge {
    position: absolute;
    top: 37px;
    left: 40px;
    padding: 6px 8px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: var(--accent-indigo);
    box-shadow: 0 -4px 4px 0 rgba(62, 72, 158, 0.30) inset;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

/* Pricing */
.pricing-card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 20px 16px;
}

.pricing-card .plan-top-section {
    display: flex;
    height: 272px;
    padding: 8px 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    align-self: stretch;
    border-radius: 21px;
    background: #F2F2F2;
}

.pricing-card.featured .plan-top-section {
    background: rgba(242, 242, 242, 0.10);
}

.pricing-card a.subscribe-btn, .pricing-card a.subscribe-btn:hover {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 26px;
    border: 3px solid rgba(255, 255, 255, 0.20);
    background: var(--Text-Dark_Primary);
    height: 44px;
    color: #fff;
    text-decoration: none;
}

.pricing-card.featured a.subscribe-btn, .pricing-card.featured a.subscribe-btn:hover {
    border-radius: var(--Border_Radius-Radius26, 26px);
    border: 3px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    color: var(--Text-Dark_Primary);    
}

.pricing-card .plan-benefits {
    color: var(--Text-Dark_Primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    float: right;
    width: 100%;
    text-align: right;
}

.pricing-card.featured .plan-benefits {
    color: #fff;
}

.pricing-card .plan-top-section h4 {
    color: var(--Text-Dark_Primary);
    font-size: 30px;
    font-weight: 700 !important;
    line-height: 38px;
    margin-top: 75px !important;
    float: right;
    width: 100%;
    text-align: right;
}

.pricing-card.featured .plan-top-section h4 {
    color: #fff;
}

.pricing-card .plan-price {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.20);
    margin-top: -10px;
}

.pricing-card .plan-price, .pricing-card .plan-price span.h1, .pricing-card .plan-price span.h2, .pricing-card .plan-price .currency {
    color: var(--Text-Dark_Primary);
    font-size: 24px !important;
    font-weight: 600;
    line-height: 32px;
    text-align: right;
}

.pricing-card.featured {
    background: var(--primary-light);
    color: white;
    transform: scale(1.05);
    z-index: 2;
    border: 1px solid var(--accent-blue);
}

.pricing-card.featured .plan-price, .pricing-card.featured .plan-price span.h1, .pricing-card.featured .plan-price span.h2, .pricing-card.featured .plan-price .currency {
    color: white;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    width: 100%;
}

.reviews-section {
    background: var(--Background-Base_White-2, #F2F2F2);
    padding: 64px 32px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.reviews-section h3 {
    color: var(--accent-indigo);
    text-align: right;
    font-size: 36px;
    font-weight: 700;
    line-height:  44px;
    letter-spacing: -0.72px;
    margin-top: 20px;
}

.reviews-section svg path {
    fill: var(--accent-indigo);
}

.reviews-section .stars {
    text-align: right;
    color: var(--accent-indigo);
    text-align: right;
}

.reviews-section .stars svg, .reviews-section .stars svg path {
    fill: var(--accent-indigo);
}

.reviews-section p {
    align-self: stretch;
    color: var(--Text-Dark_Primary) !important;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.reviews-section .review .review-logo {
    width: 56px;
    height: 56px;
    background: gray;
}

.reviews-section .review h6.store-name {
    color: var(--text-primary);
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.reviews-section .review small.store-platform {
    color: var(--text-primary);
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

/* Accordion (FAQ) */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    padding-left: 50px !important;
    line-height: 1.7;
}

.accordion-button:not(.collapsed) {
    background-color: #eef0ff;
    color: var(--accent-blue);
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Hide default Bootstrap accordion icons */
.accordion-button::after {
    display: none !important;
}

/* Add custom + and - icons */
.accordion-button::before {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-indigo);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
    content: '−';
    font-size: 28px;
    font-weight: 200;
}

/* Footer */
footer {
    display: flex;
    height: 728px;
    padding: 40px 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 31px 31px 0 0;
    background: var(--Text-Dark_Primary);
}

footer h4 {
    color: white;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
}

footer p {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    max-width: 40%;
    margin: 0 30%;
}

footer .footer-bottom a, footer .footer-bottom a:hover {
    text-decoration: none;
    display: block;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    height: 20px;
    margin-bottom: 14px;
    direction: ltr;
}

footer a.contact-link, footer a.contact-link:hover {
    display: flex;
    width: 130px;
    height: 40px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    color: var(--Text-Dark_Primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    margin: 28px auto 42px auto;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    margin: 0 2%;
    padding-top: 40px;
    width: 96%;
}

footer .footer-bottom h5 {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 12px;
}

a.footer-contact-whatsapp {
    background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/sent.svg') no-repeat center right;
    padding-right: 32px;
}
a.footer-contact-support {
    background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/mail.svg') no-repeat center right;
    padding-right: 32px;
}

footer a.footer-white-logo, footer a.footer-white-logo:hover {
    background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/notimoney_white_logo.svg') no-repeat center left;
    background-size: 140px 40px;
    width: 140px;
    height: 40px;
    display: inline-block;
    margin-bottom: 20px;
}

footer .social-links {
    padding-right: 20px;
}

footer .social-links a, footer .social-links a:hover {
    margin-right: 16px;
}

footer .footer-copyright {
    height: 100px;
    width: 100%;
    align-self: stretch;
    align-items: center;
    padding-top: 30px;
}

footer .copyright-text, footer .copyright-text span {
    text-align: left !important;
}

footer .copyright-text span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

/* Mobile Plan Selector */
.mobile-plan-selector {
    margin-bottom: 2rem;
}

.mobile-plan-btn {
    background: #DADDF1;
    border: 2px solid rgba(62, 72, 158, 0.3);
    border-radius: 26px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--Text-Dark_Primary);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.mobile-plan-btn:hover {
    background-color: rgba(29, 33, 73, 0.1) !important;
    transform: translateY(-2px);
}

.mobile-plan-btn.active {
    background-color: var(--Text-Dark_Primary) !important;
    color: white;
    border-color: var(--Text-Dark_Primary);
}

/* Reviews Carousel Styling */
.reviews-section {
    padding: 60px 0;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

.reviews-section .container {
    overflow: hidden;
}

.reviews-section .carousel {
    margin-bottom: 2rem;
    overflow: hidden;
}

.reviews-section .carousel-inner {
    overflow: visible;
    position: relative;
}

/* Multi-item carousel - show 3 items, slide 1 at a time */
.multi-item-carousel {
    overflow: hidden !important;
}

.multi-item-carousel .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    transition: transform 0.6s ease-in-out;
}

.multi-item-carousel .carousel-item {
    display: block !important;
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0 10px;
    margin-right: 0 !important;
    margin-left: 0 !important;
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
    backface-visibility: hidden;
}

.review-bottom {    
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.review-logo {
    width: 56px;
    height: 56px;
    background: gray;
}

.review-bottom .store-name {
    color: var(--text-primary);
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.review-bottom .store-platform {
    color: var(--text-primary);
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    float: right;
}

.multi-item-carousel .carousel-item .card {
    height: 100%;
    min-height: 280px;
}

/* Disable Bootstrap's default carousel transitions for multi-item */
.multi-item-carousel .carousel-item-next,
.multi-item-carousel .carousel-item-prev,
.multi-item-carousel .carousel-item-start,
.multi-item-carousel .carousel-item-end,
.multi-item-carousel .carousel-item.active {
    transform: none !important;
}

/* Standard single-item carousel fixes for RTL */
.reviews-section .carousel:not(.multi-item-carousel) .carousel-item {
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
    left: 0 !important;
    right: auto !important;
    float: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Ensure next/prev items overlay to prevent height jumps on mobile */
.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-next,
.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-prev {
    position: absolute;
    top: 0;
}

/* Keep single-item carousel inner clipped to avoid layout shifts */
.reviews-section .carousel:not(.multi-item-carousel) .carousel-inner {
    overflow: hidden;
}

/* RTL Slide Animation for single-item carousel */
.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(-100%) !important;
}

.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-next.carousel-item-start {
    transform: translateX(0) !important;
}

.reviews-section .carousel:not(.multi-item-carousel) .active.carousel-item-start {
    transform: translateX(100%) !important;
}

.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(100%) !important;
}

.reviews-section .carousel:not(.multi-item-carousel) .carousel-item-prev.carousel-item-end {
    transform: translateX(0) !important;
}

.reviews-section .carousel:not(.multi-item-carousel) .active.carousel-item-end {
    transform: translateX(-100%) !important;
}

/* Reviews Controls Container */
.reviews-controls-container {
    z-index: 15;
    left: 20px;
    width: 80px;
    height: 40px;
    position: absolute;
    top: 0;
}

.reviews-controls-container > div:first-child {
    border-radius: 30px;
}

.reviews-controls-container .carousel-control-prev-desktop,
.reviews-controls-container .carousel-control-next-desktop {
    color: var(--Text-Dark_Primary);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    opacity: 0.9;
    padding-left: 5px;
}

.reviews-controls-container .carousel-control-prev-desktop:hover,
.reviews-controls-container .carousel-control-next-desktop:hover {
    opacity: 1;
    background: var(--Text-Dark_Primary);
    transform: scale(1.1);
    color: #fff;
    font-size: 12px;
}

.reviews-controls-container .carousel-control-prev-desktop:hover svg path,
.reviews-controls-container .carousel-control-next-desktop:hover svg path {
    fill: #fff;
}

/* Hide default carousel controls on desktop; re-enable on mobile */
@media (min-width: 992px) {
    .reviews-section .carousel-control-prev,
    .reviews-section .carousel-control-next {
        display: none;
    }

    .reviews-section .carousel-control-prev:hover,
    .reviews-section .carousel-control-next:hover {
        background: var(--Text-Dark_Primary);
        transform: translateY(-50%) scale(1.1);
    }
}

@media (max-width: 991.98px) {
    /* Show custom controls on mobile; hide built-in arrows */
    .reviews-controls-container {
        display: block;
    }

    .reviews-section .carousel-control-prev,
    .reviews-section .carousel-control-next {
        display: none;
    }
}

.reviews-section .carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
}

.reviews-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-indigo);
    background: white;
    transition: all 0.3s ease;
}

.reviews-section .carousel-indicators button.active {
    background: var(--accent-indigo);
    transform: scale(1.2);
}

.faq-section {
    background: linear-gradient(177deg, rgba(62, 72, 158, 0.30) 8.07%, rgba(127, 72, 204, 0.00) 98.2%);
    padding: 20px 0 40px 0;
}

.faq-section .left-text h2 {
    color: var(--accent-indigo);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
}

.faq-section .left-text p {
    color: var(--accent-indigo);
    font-size:18px;
    font-weight: 500;
    line-height: 28px;
}

.faq-section h2.accordion-header button.accordion-button {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    color: var(--accent-indigo);
}

.faq-section .accordion-body {
    color: var(--Text-Dark_Primary) !important;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .navbar {
        background: transparent;
        position: absolute;
        top: 20px;
        left: auto;
        right: 5%;
        width: 90%;
        padding: 16px 0;
        z-index: 1000;
    }

    .navbar .container {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
        padding: 12px 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 14px;
        padding: 12px;
        margin-top: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 6px 0;
        padding: 10px 12px !important;
    }

    .navbar a.nav-login {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
        padding: 32px 16px 48px;
        margin: 0;
        border-radius: 20px;
        max-width: 95%;
        margin-right: 2.5%;
        margin-top: 15px; /* Offset the navbar height */
        padding-top: 127px; /* 95px navbar + 32px content padding */
    }

    .hero-content {
        max-width: 100%;
        margin-top: 50px;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 28px;
        margin-top: 32px;
    }

    .notimoney-hero-pill {
        margin-bottom: 32px !important;
    }

    .hero-title {
        font-size: 28px;
        line-height: 38px;
    }

    .hero-title-description {
        font-size: 15px;
        line-height: 24px;
    }

    .hero-scroll-down-whatsapp {
        margin-top: 12px;
        height: 80px;
    }

    .hero-scroll-down-whatsapp a.scroll-down {
        display: block;
        margin: 0 auto;
    }

    .hero-scroll-down-whatsapp a.whatsapp {
        float: none;
        display: block;
        margin: 14px auto 0;
        background-size: 120px 120px;
        width: 68px;
        height: 68px;
    }

    .hero-img-container {
        max-width: 360px;
        margin: 0 auto;
    }

    .dashboard-mockup {
        transform: none;
        margin-top: 10px;
        text-align: center;
    }

    .logo-section {
        width: 90%;
        margin-right: 5%;
    }

    .logo-section .container {
        padding: 0 12px;
    }

    a.more-partners {
        position: static;
        margin: 0 0 48px 0;
    }

    .logo-section-heading {
        margin-bottom: 24px;
    }

    .logo-item {
        max-width: 155px;
        max-height: 63px;
        margin: 0 auto;
        display: block;
        float: none;
    }

    .body-content-container {
        padding: 0 12px;
        margin-top: 0;
    }

    .body-content {
        text-align: center;
    }

    .body-content .title-pill {
        margin: 0 auto 12px;
    }

    .body-content-description {
        margin-top: 18px;
    }

    .feature-card-dark {
        margin-top: 12px;
    }

    .mid-benefits h2.title-pill {
        margin-top: 0;
    }

    /* Community Support Cards Mobile */
    .community-support-cards {
        margin-bottom: 24px;
    }

    .community-card {
        padding: 16px 8px;
    }

    .community-icon svg {
        width: 48px;
        height: 48px;
    }

    .community-title {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 4px;
    }

    .community-description {
        font-size: 12px;
        line-height: 18px;
    }

    .service-box {
        height: auto;
        padding: 20px;
    }

    .service-box svg {
        float: none;
        margin: 0 auto 12px;
    }

    .service-box h4,
    .service-box p {
        float: none;
        width: 100%;
    }

    .service-box p {
        width: 100%;
    }

    .service-box a.btn,
    .service-box a.btn:hover {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .monthly-yearly-switch {
        width: 100%;
        max-width: 260px;
    }

    .monthly-yearly-switch-container {
        margin-bottom: 1rem;
    }

    .monthly-yearly-switch-container img {
        position: static;
        margin: 8px auto 0;
        display: block;
    }

    .pricing-card {
        padding: 16px 14px;
    }

    .pricing-card .plan-top-section {
        height: auto;
        padding: 16px;
        align-items: center;
        text-align: center;
    }

    .pricing-card .plan-top-section h4 {
        margin-top: 32px !important;
        text-align: center;
        font-size: 24px;
    }

    .pricing-card .plan-price {
        text-align: center;
        border-bottom: 0;
        padding-bottom: 0;
    }

    .plan-icon {
        right: 16px;
    }

    .mobile-plan-btn {
        min-width: 100px;
        padding: 12px;
    }

    .pricing-card .plan-benefits {
        text-align: center;
        margin: 12px 0;
    }

    .pricing-card ul {
        padding: 0 8px 8px;
    }

    .mobile-plan-selector {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .reviews-section {
        margin: 40px 0;
        padding: 40px 5% 20px 5%;
    }

    .review-bottom {
        position: static;
        margin-top: 12px;
    }

    .faq-section .container {
        width: 90%;
        padding-right: 5%;
    }

    .faq-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .faq-section .left-text {
        order: -1;
        margin-bottom: 2rem;
    }

    .faq-section .left-text h2, .reviews-section h3, .pricing-section h2, .mid-benefits h1, .logo-section-heading {
        font-size: 24px;
    }

    footer {
        height: auto;
        padding: 40px 20px 0 20px;
        border-radius: 24px 24px 0 0;
    }

    footer h4 {
        font-size: 30px;
        line-height: 36px;
    }

    footer p {
        max-width: 100%;
        margin: 0;
    }

    footer .footer-bottom {
        text-align: center;
        padding-top: 24px;
    }

    footer .footer-bottom a,
    footer .footer-bottom a:hover {
        margin-bottom: 10px;
    }

    footer a.footer-white-icon, footer a.footer-white-icon:hover {
        background: url('https://live-notimoney.fra1.cdn.digitaloceanspaces.com/static/notimoney_white_icon.svg') no-repeat center left;
        background-size: 45px 45px;
        width: 45px;
        height: 45px;
        display: inline-block;
        margin-bottom: 20px;
        margin-top: 40px;
    }

    footer .social-links {
        text-align: center;
        padding-right: 0;
        margin-bottom: 12px;
    }

    footer .copyright-text,
    footer .copyright-text span {
        text-align: center !important;
        font-size: 12px;
        margin-top: -12px;
    }

    .featured-second-content {
        padding-top: 0;
    }

    .mid-benefits h2.title-pill, .pricing-section span.title-pill {
        margin: 40px auto 12px auto
    }
}

@media (min-width: 992px) {
    .mobile-plan-selector {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    .nav-link {
        margin: 0px;
        padding:12px 10px !important;
    }
    
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
        line-height: 34px;
    }

    .hero-title-description {
        font-size: 14px;
    }

    .mid-benefits h1 {
        line-height: 36px;
    }

    .mid-benefits p.description {
        font-size: 16px;
        line-height: 24px;
    }

    .pricing-section p {
        font-size: 16px;
    }
}