/* Roboto Font */
/* @font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype'),
        url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
    font-display: swap;
} */

/* Mulish Font */
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/static/Mulish-Regular.ttf') format('truetype'),
        url('../fonts/Mulish/static/Mulish-Bold.ttf') format('truetype'),
        url('../fonts/Mulish/static/Mulish-Light.ttf') format('truetype');
    font-display: swap;
}

/* Nunito Font */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/static/Nunito-Regular.ttf') format('truetype'),
        url('../fonts/Nunito/static/Nunito-Bold.ttf') format('truetype'),
        url('../fonts/Nunito/static/Nunito-Light.ttf') format('truetype');
    font-display: swap;
}

/* FZ Bonestay Font */
@font-face {
    font-family: 'FZ Bonestay';
    src: url('../fonts/FzBonestay/Fz Bonestay.otf') format('opentype');
    font-display: swap;
}

:root {
    --primary-color: #00455E;
    --dark-color: #090909;
    --secondary-color: #00455E61;
    --background-button-white: #F4F4F4;
    --font-fz-bonestay: 'FZ Bonestay', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-mulish: 'Mulish', sans-serif;
    --font-nunito: 'Nunito', sans-serif;
}

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

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

body {
    font-family: 'Roboto', sans-serif;
}

.mt-50 {
    margin-top: 50px
}

.section-title {
    font-size: 50px;
    font-weight: 500;
    text-align: center;
    line-height: 100%;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    line-height: 100%;
}

.Linear {
    background: linear-gradient(to right, #E83E8C, #6610F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #333;
}

.owl-carousel .owl-item {
    transition: transform 0.3s ease-in-out;
}

.owl-carousel .owl-item.center {
    transform: scale(1.05);
    /* Phóng to item chính giữa nếu muốn */
}

/*.owl-carousel .owl-stage-outer {*/
/*    overflow: visible;*/
/*    !* Quan trọng: để item ngoài cùng hiển thị nửa *!*/
/*}*/

/* Nav */
.navbar-brand img {
    height: 60px;
    width: 60px;
}

.nav-link {
    color: #fff;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    font-size: 16px;
}

.nav-link.active {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff !important;
}

.nav-link:hover {
    color: #fff;
}


#navbarNav {
    color: #fff;
    margin-left: 140px;
    background: linear-gradient(to right, #E83E8C, #6610F2);
    border-radius: 100px;
    padding: 5px;
}

.nav-left {
    margin-right: 20px;
    gap: 10px;
}

@media (max-width: 767.98px) {
    #navbarNav {
        margin-left: 0;
        margin-right: 0;
        padding: 10px;
        border-radius: 20px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-left {
        margin-right: 0;
        gap: 5px;
        flex-direction: column;
        align-items: center;
    }
}

.btn-register {
    width: 126px;
    background-color: #fff !important;
    color: #333;
    border-radius: 100px;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.btn-register:hover {
    background-color: #fff !important;
    color: #333;
}

.cart {
    position: relative;
}

.cart .cart-count {
    position: absolute;
    top: 1px;
    right: 0px;
    background: #C77A30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 999px;
    line-height: 1;
}

.change-language {
    background-color: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.change-language:hover {
    color: #fff;
    background-color: transparent;
}

/* Footer */

.newsletter-section {
    background: linear-gradient(to right, #E83E8C, #6610F2);
    width: 70%;
    margin: auto;
    color: white;
    padding: 60px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}


.newsletter-content {
    position: relative;
    z-index: 2;
}

h3.newsletter-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

h2.newsletter-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 16px;
    font-family: var(--font-nunito);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
}

.email-form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: #FFFFFFC9;
    border-radius: 50px;
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    padding-right: 150px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    outline: none;
}

.email-input::placeholder {
    color: #4C4C4C;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-nunito);
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    padding: 12px 25px;
    background: linear-gradient(to right, #FF00B5, #BB4FFF);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.subscribe-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-main-section {
    color: #333;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    width: 100px;
}

.footer-section {
    align-items: center;
    margin: 0 30px;
}

.footer-title {
    font: 700 18px 'Nunito', sans-serif;
    text-transform: uppercase;
    text-align: justify;
}

.footer-content {
    font: 400 16px 'Nunito', sans-serif;
    text-align: justify;
    margin: 20px 0;
}

.footer-content i {
    border: #090909 1px solid;
    border-radius: 100px;
    margin-left: 20px;
}

.payment-icon {
    height: 32px;
    width: 69px;
}

.footer-nav-section {
    gap: 50px;
    margin: 0 20px;
}

.footer-nav-section .nav-item {
    padding: 10px 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
}

.footer-nav-section .social-icons {
    text-align: center;
    margin: 20px 0;
    height: 35px;
}

.footer-nav-section .social-icons a {
    margin: 0 15px;
    color: #333;
    font-size: 35px;
}

.social-icons a:hover {
    text-decoration: none;
}

.footer-copyright {
    padding: 10px;
    background: linear-gradient(to right, #E83E8C, #6610F2);
    margin: 0 30px;
}

.footer-copyright p {
    color: #fff;
}

.introducing {
    margin: 10px 20px;
    padding: 60px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.introducing-content {
    align-items: center;
    gap: 20px;
    max-width: 500px;
}

.introducing-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
}

h2.introducing-subtitle {
    font-size: 25px;
    font-weight: 600;
    line-height: 45px;
}

.service {
    background: linear-gradient(to right, #E83E8C, #6610F2);
    border-radius: 50px;
    position: relative;
}

.hero-content {
    max-width: 500px;
    margin: 20px;
    padding: 60px 0;
}

h1.hero-title {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
}

p.hero-text {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    line-height: 100%;
}

.hero-image {
    position: absolute;
    top: -8rem;
    right: 3rem;
    max-width: 42%;
    height: auto;
    z-index: 10;
}

.service-section {
    margin: 20px 60px;
    padding: 20px 0;
}

.service-list {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}

.service-card {
    padding: 20px;
}

.service-title {
    font-size: 30px;
    font-weight: 550;
    line-height: 100%;
}

.world-map-card {
    padding: 20px;
    background: linear-gradient(130.37deg, rgba(217, 187, 255, 0.37) 4.05%, rgba(217, 187, 255, 0) 95.95%);
    border: 1px solid rgba(128, 128, 128, 0.15);
    border-radius: 12px;
}

.world-map-icon {
    position: relative;
    display: inline-block;
}

.world-map-icon img {
    display: block;
    position: relative;
    z-index: 2;
}

.world-map-icon .ellipse {
    position: absolute;
    bottom: -15px;
    /* điều chỉnh vị trí dưới icon */
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background: #D5C6FA;
    border-radius: 50%;
    z-index: 1;
}


#faq-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.faq-box {
    background: linear-gradient(90deg, #D9BBFF 0%, rgba(217, 187, 255, 0) 100%);
    border-radius: 100px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    /* border: 1px solid;
    border-color: linear-gradient(90deg, #E83E8C, #6610F2);  */
}

.faq-box.active {
    background: linear-gradient(90deg, rgba(217, 187, 255, 0.5) 0%, rgba(217, 187, 255, 0.2) 100%);
    box-shadow: 0 0 10px rgba(217, 187, 255, 0.5);
    border-radius: 20px;
}

.faq-question {
    font-weight: 700;
    color: #4D00C9;
    cursor: pointer;
    font-size: 21px;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #333;
    text-align: justify;
}

.faq-toggle {
    float: right;
    font-size: 20px;
    color: #fff;
    background-color: #7237EC;
    border-radius: 100px;
    width: 24px;
    height: 24px;
    display: flex;
    /* Căn giữa nội dung */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    /* Không bị thu nhỏ nếu container co lại */
    transition: background-color 0.3s;
}

.partners-section {
    margin: 20px 60px;
    padding: 20px 0;
}

.partner-bg {
    background: rgba(151, 71, 255, 0.12);
}

.partner-card {
    padding: 20px;
}

.partner-card img {
    width: 50px;
}

.partner-name {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    color: #000000;
    margin-left: 15px;
}


.news-card-primary {
    border-radius: 16px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    height: 100%;
}

.news-card-primary img {
    max-height: 670px;
}

.news-overlay {
    background: linear-gradient(180deg,
            rgba(132, 27, 219, 0),
            rgba(132, 27, 219, 0.71),
            rgba(132, 27, 219, 1));
    opacity: 1.2;
    /* Hoặc sử dụng rgba để linh hoạt hơn */
    padding: 20px;
    border-radius: 0 0 12px 12px;
    color: white;
}

h3.news-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
}


p.news-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
}

.news-secondary-title,
.news-third-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.see-detail-link {
    display: inline-block;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    font-size: 16px;
}

.see-detail-link:hover {
    text-decoration: none;
}

.see-detail-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #999;
}

img.news-secondary-img,
img.news-third-img {
    border-radius: 20px;
    min-height: 300px;
}

.news-secondary-content,
.news-third-content {
    position: relative;
}

.news-secondary-tag {
    position: absolute;
    top: 15px;
    right: 336px;
    background: #E11D48;
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .news-secondary-tag {
        font-size: 0.65rem;
        padding: 6px 12px;
        top: 15px;
        right: 336px;
    }
}

.news-third-tag {
    position: absolute;
    top: 15px;
    right: 336px;
    background: #171717;
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .news-third-tag {
        font-size: 0.65rem;
        padding: 6px 12px;
        top: 15px;
        right: 336px;
    }
}

.news-section .btn-view-all {
    background: linear-gradient(to right, #E83E8C, #6610F2);
    color: white;
    border-radius: 100px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
}

.plan {
    padding: 4rem 0;
}

.pricing-card {
    background-color: #EDE6FF;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 30px;
    margin: 40px;
    border: 1.5px solid #752DF0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.plan-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.plan-title {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    line-height: 100%;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    line-height: 100%;
}

.price .period {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.features {
    list-style: none;
    flex-grow: 1;
    padding: 0;
}

.features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.pricing-card .btn {
    background: linear-gradient(to left, #E83E8C, #6610F2);
    border-radius: 20px;
    color: white;
    font-size: 21px;
    font-weight: 700;
    line-height: 100%;
}

#plan-carousel .owl-item.center .pricing-card {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.owl-item.center .pricing-card {
    border-image: linear-gradient(to right, #E83E8C, #6610F2) 1;
    border-radius: 0px;
}
.post-feature-one {
    position: relative;
}

.post-feature-one .post-name {
    font-size: 36px;
    line-height: 120%;
}

.post-feature-one .post-short-description {
    font-size: 18px;
}

.post-feature-one .post-timer {
    font-size: 14px;
}

.card-post-feature-left .post-link-more {
    border-bottom: 1px solid #848485;
    font-size: 16px;
}

.card-post-feature-left .post-name {
    font-size: 22px;
}

.card-post-feature-left p.post-short-description {
    font-size: 16px;
}
.post-short-content {
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    padding: 10px 50px;
    color: #ffff;
    background: linear-gradient(180deg, rgba(132, 27, 219, 0) 0%, rgba(132, 27, 219, 0.538618) 25.92%, rgba(132, 27, 219, 0.76) 100%);
    padding-bottom: 40px;
    text-align: left;
    width: 100%;
}
.post-feature-one-image img {
    width: 100%;
}
.card-post-feature-left .post-link-more {
    border-bottom: 1px solid #848485;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
.post-feature-one p.post-short-description {
    color: #ffff;
}

.post-feature-one p.post-timer {
    color: #fff;
}
.card-post-description-right {
    text-align: left;
}
.post-feature-one .post-timer {
    font-size: 14px;
}

.post-feature-one {
    position: relative;
}

.post-feature-one .post-name {
    font-size: 36px;
    line-height: 120%;
}

.post-feature-one .post-short-description {
    font-size: 18px;
}

.post-feature-one .post-timer {
    font-size: 14px;
}
.card-title {
    display: block;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: var(--tblr-font-weight-medium);
    line-height: 1.5rem;
}
.discount-badge {
    background: #dc3545;
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.price-new {
    font-size: 18px;
    font-weight: bold;
    color: #dc3545;
}
.usd-price {
    font-size: 14px;
    color: #28a745;
}
.price-old {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.card.product-card a:hover {
    text-decoration: initial;
}
a.accordion-button:after{
    display:none;
}
.cart .product-img {
    width: 50px;
    height: 50px;
}
.cart-header {
    background: #e3f2fd;
    font-weight: bold;
}
.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    align-items: center;
}
button#buyNow, #btnContact {
    background: linear-gradient(90deg, #E83E8C 0%, #6610F2 100%);
    color: #ffff;
    border-radius: 8px;
}
.main-btn-background {
    background: linear-gradient(90deg, #E83E8C 0%, #6610F2 100%);
    color: #ffff;
    border-radius: 8px;
}
button#buyNow {
    background: linear-gradient(90deg, #E83E8C 0%, #6610F2 100%);
    color: #ffff;
}

button#addToCart {
    border-radius: 8px;
    border: 1px solid #7237EC;
    color: #7237EC;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: #7237EC;
    border-color: #7237EC;
}
.text-primary{
    color: #7237EC!important;
}
.error{
    color:red
}
div#group-payment-method img {
    width: 50px;
}
.active-page {
    display: block;
}
.page-modal {
    width: 50%;
    flex-shrink: 0;
    padding: 10px;
}
.page-container {
    width: 200%;
    display: flex;
    transition: transform 0.4s ease-in-out;
}
div#paymentModal .btn-modal-footer {
    border: 0px;
}

.main-content.page-account {
    margin-top: 40px;
}
div#accountCollapse ul a.active, div#accountCollapse ul a:hover {
    background: linear-gradient(86.04deg, #FF968D 0.56%, #752DF0 99.44%);
    color: #fff;
}
div#accountCollapse ul a {
    padding: 11px 12px;
    font-size: 24px;
    font-weight: initial;
    text-decoration: none;
    border: 1px solid rgba(173, 173, 173, 0.14);
    color: rgba(0, 0, 0, 1);
}
.filter-category p {
    margin-bottom: 0px;
}
div#accountCollapse ul a {
    padding: 11px 12px;
    font-size: 24px;
    font-weight: initial;
    text-decoration: none;
    border: 1px solid rgba(173, 173, 173, 0.14);
    color: rgba(0, 0, 0, 1);
}

div#accountCollapse ul a.active, div#accountCollapse ul a:hover {
    background: linear-gradient(86.04deg, #FF968D 0.56%, #752DF0 99.44%);
    color: #fff;
}
div#accountCollapse ul a.active p, div#accountCollapse ul a:hover p{
    color: #ffff;
}
.level-group {
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(86.04deg, #FF968D 0.56%, #752DF0 99.44%);
    position: relative;
}
.leve-group-inner {
    border-radius: 30px;
    background: white;
    padding: 23px;
}
.list-level {
    justify-content: space-around;
    gap: 4px;
    flex: 9;
}
.item-level img {
    max-width: 42px;
}
.list-level .item-level span {
    font-size: 18px;
}
.icon-robot {
    flex: 1;
}
.icon-robot img {
    position: absolute;
    bottom: 17px;
    right: 0px;
}
.show-my-level {
    background: linear-gradient(86.04deg, #FF968D 0.56%, #752DF0 99.44%);
    padding: 5px 18px;
    color: #ffff;
    border-radius: 16px;
    margin: 34px 0px;
    font-size: 24px;
}
.show-my-level .name {
    font-size: 36px;
    color: #fff;
}
.show-my-level .level-name {
    font-size: 24px;
    color: #fff;
}
.show-my-level p, .show-my-level>div {
    margin: 18px 0px;
}
.show-my-level .progress {
    width: 100%;
    height: 17px;
    border-radius: 32px;
}
.bg-atm {
    background: linear-gradient(250deg, #a191c6, #6c3ce4);
    width: 320px;
}
.atm-title {
    font-size: 12px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.atm-balance {
    line-height: 29px;
}

.atm-balance {
    font-size: 32px;
}
.atm-note {
    font-size: 12px;
    margin-top: 30px;
}
.countdown span {
    font-weight: bold;
    font-size: 24px;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
a.btn.btn-register.btn-primary-custom.main-btn-background {
    border-radius: 100px;
    border: 0px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.list-level .item-level img {
    align-self: center;
}
@media (max-width: 767.98px) {

    /* Navigation responsive */
    #navbarNav {
        margin-left: 0;
        margin-right: 0;
        padding: 10px;
        border-radius: 20px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-left {
        margin-right: 0;
        gap: 5px;
        flex-direction: row;
        align-items: center;
        float: right;
    }

    /* Hero responsive */
    .hero-content {
        margin: 10px;
        padding: 30px 0;
    }

    h1.hero-title {
        font-size: 40px;
    }

    .hero-image {
        position: static;
        max-width: 100%;
    }

    .introducing-title {
        font-size: 40px;
        line-height: 50px;
    }

    /* Service section responsive */
    .service-section {
        margin: 10px 20px;
    }

    .partners-section {
        margin: 10px 20px;
    }
}

@media (max-width: 768px) {

    #plan-carousel .owl-item.center .pricing-card {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    /* Newsletter responsive */
    .newsletter-section {
        width: 90%;
        margin: 10px auto;
        padding: 30px 10px;
    }

    .email-form {
        flex-direction: column;
        gap: 10px;
    }

    .email-input {
        padding-right: 20px;
    }

    .subscribe-btn {
        position: static;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .email-form {
        flex-direction: column;
        gap: 10px;
        background: none;
    }

    .email-input {
        padding-right: 20px;
        background: #FFFFFFC9;
        border-radius: 100px;
        overflow: hidden;
    }
    h3.newsletter-title {
        line-height: 120%;
    }
    .hero-section p {
        line-height: 30px;
    }
    .service-section {
        margin: 0px;
    }
    .service-section .service-card {
        padding: 0px;
    }

}
