/*=============== HEADER START ===============*/
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(0, 0%, 100%);
    --first-color-lighten: #1d1d1f;
    --title-color: hsl(0, 0%, 100%);
    --text-color: rgba(255, 255, 255, 0.8);
    --body-color: hsl(0, 0%, 0%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica,
        Arial, sans-serif;
    --title-font: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
        Arial, sans-serif;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1.3rem;
        --small-font-size: 12px;
        --smaller-font-size: 0.813rem;
    }
}

/* Add these styles after the existing CSS reset rules */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Allow text selection for specific elements if needed */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-user-select: text;
    user-select: text;
}

/* Update the nav__link styles */
.nav__link {
    /* ...existing styles... */
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Update dropdown link styles */
.dropdown__link {
    /* ...existing styles... */
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    /* font-size: var(--normal-font-size); */
    /* background-color: var(--body-color); */
    background-color: #161617;
    color: var(--text-color);
    /* background-image: url('images/inteligies.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container1 {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    z-index: var(--z-fixed);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.8);
    transition: backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}

/*=============== NAV ===============*/
/* .nav {
    height: var(--header-height);
} */

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.3s;
}

.nav__logo i {
    font-size: 1.25rem;
}

.nav__logo:hover {
    color: var(--first-color);
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
    font-size: 1.25rem;
    color: var(--title-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu {
        background-color: var(--body-color);
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        padding-block: 1.5rem 4rem;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0.5rem;
    }

    .nav__menu::-webkit-scrollbar-thumb {
        background-color: hsl(220, 12%, 70%);
    }
}

.nav__link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica,
        Arial, sans-serif;
    position: relative;
}

/* .nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--first-color);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    opacity: 0;
} */

.nav__link:hover {
    color: var(--first-color);
}

.nav__link:hover::after {
    width: 100%;
    opacity: 1;
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 3rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
    display: grid;
}

.dropdown__content {
    opacity: 1;
    transform: translateY(-4px);
    transition: opacity 0.3s ease 0.1s,
        transform 0.3s cubic-bezier(0.3, 0, 0, 1) 0.1s;
}

.dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s, opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.3, 0, 0, 1);
    transform: translateY(-8px);
    opacity: 1;
}

.dropdown__content {
    row-gap: 1.75rem;
}

.dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
}

.dropdown__group:first-child {
    margin-top: 1.25rem;
}

.dropdown__group:last-child {
    margin-bottom: 1.25rem;
}

.dropdown__icon i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.dropdown__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    font-family: var(--title-font);
}

.dropdown__list {
    row-gap: 0.25rem;
}

.dropdown__link {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: color 0.3s;
}

.imgx212 {
    background-image: url(images/banner2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 53vw;
    margin: 15px;
    border-radius: 20px;
}

.dropdown__link:hover {
    color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
    .dropdown__group {
        padding-left: 1.5rem;
    }

    .dropdown__button {
        color: white;
    }
}

@media screen and (max-width: 1117px) {
    .navs {
        padding: 10px 0px;
    }
}

/* For large devices */
@media screen and (min-width: 1118px) {
    /* Nav */
    .navs {
        /* height: calc(var(--header-height) + 2rem); */
        padding: 8px 0px;
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        display: flex;
        column-gap: 3rem;
        height: 100%;
    }

    .navs li {
        display: flex;
    }

    .nav__link {
        padding: 0;
    }

    .nav__link:hover {
        background-color: initial;
    }

    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
        pointer-events: none;
    }

    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 4rem;
        background-color: var(--body-color);
        /* box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05); */
        pointer-events: none;
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        visibility: hidden;
    }

    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 6rem;
        max-width: 1120px;
        margin-inline: auto;
        opacity: 1;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .dropdown__icon {
        transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    }

    .dropdown__group:hover .dropdown__icon {
        transform: scale(1.1);
        background-color: var(--first-color);
    }

    .dropdown__group:hover .dropdown__icon i {
        color: white;
        transition: color 0.3s ease;
    }

    .dropdown__item:hover .dropdown__content {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .dropdown__group {
        padding: 4rem 0;
        align-content: baseline;
        row-gap: 1.25rem;
    }

    .dropdown__group:first-child,
    .dropdown__group:last-child {
        margin: 0;
    }

    .dropdown__list {
        row-gap: 0.75rem;
    }

    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }

    .dropdown__icon i {
        font-size: 2rem;
    }

    .dropdown__title {
        font-size: var(--normal-font-size);
    }

    .dropdown__link {
        font-size: var(--small-font-size);
    }

    .dropdown__link:hover {
        color: var(--first-color);
    }

    .dropdown__item {
        cursor: pointer;
    }

    .dropdown__item:hover .dropdown__arrow {
        transform: rotate(180deg);
    }

    .dropdown__item:hover > .dropdown__container {
        top: 2.4rem;
        opacity: 1;
        pointer-events: initial;
        cursor: initial;
        transform: translateY(0) scale(1);
        visibility: visible;
    }

    /* Remove blur effect when dropdown is active */
    .dropdown__item:hover ~ .header,
    .dropdown__item:hover .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: #161617;
    }

    .dropdown__container {
        background-color: #161617;
    }
}

@media screen and (min-width: 1152px) {
    .container1 {
        margin-inline: auto;
    }
}

/*=============== HEADER END ===============*/

/*=============== FOOTER START ===============*/
.footer {
    background-color: var(--first-color-lighten);
    padding: 2.5rem 0 1rem;
}

.footer__container {
    max-width: 1145px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__section {
    margin-bottom: 1.5rem;
}

.footer__title {
    color: var(--title-color);
    font-size: 0.85rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: var(--text-color);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--title-color);
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: var(--text-color);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: var(--title-color);
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--text-color);
    text-align: center;
}

/* Responsive footer */
@media screen and (max-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer__section {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .footer__content {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .nav__link {
        font-size: 24px;
        line-height: 28px;
        font-weight: bold;
        padding: 14px 0;
        font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
            Helvetica, Arial, sans-serif;
    }

    .dropdown__link {
        font-size: 14px;
    }

    .dropdown__title {
        font-size: 14px;
        font-weight: bold;
    }

    .dropdown__arrow {
        font-size: 2rem;
    }

    .nav__menu {
        padding: 20px;
        height: 100vh;
    }

    .footer__container {
        padding: 0 25px;
    }
}

/*=============== FOOTER END ===============*/

/* GIF HERO SECTION */
.gif {
    background-image: url(images/anim1.gif);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.gif h1 {
    background-image: url(images/anim2.gif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: var(--title-font);
    /* background: linear-gradient(180deg, #ffea00, #fbff00 46%, #0346ff 69%, #fffaf4); */
    background-clip: text;
    --webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.gif h3 {
    color: white;
    font-family: var(--body-font);
    margin-top: 200px;
}

@media screen and (max-width: 480px) {
    .glow212 {
        margin-top: 300px;
    }
}

/*=============== APPLE CARDS CAROUSEL ===============*/
.cards-slider {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.cards-slider::-webkit-scrollbar {
    display: none;
}

.card-apple {
    flex: 0 0 400px;
    height: 620px;
    border-radius: 20px;
    position: relative;
    color: #fff;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    cursor: pointer;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    user-select: none;
}

@media screen and (max-width: 480px) {
    .card-apple {
        flex: 0 0 300px;
        height: 460px;
    }

    .modal-title {
        font-size: 1rem;
    }
}

.card-apple:hover {
    transform: scale(1.02);
}

.card-apple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-apple .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0.08) 69%,
        rgb(0 0 0) 100%
    );
    z-index: 2;
}

.card-apple .text1 {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    z-index: 3;
    font-family: var(--title-font);
}

.category {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.85;
}

.title {
    font-size: 1.68rem;
    line-height: 40px;
    font-weight: 600;
    margin-top: 5px;
    font-family: var(--body-font);
}

/* --- Slider Buttons --- */
.slider-controls {
    position: absolute;
    right: 20px;
    bottom: -50px;
    display: flex;
    gap: 25px;
    z-index: 10;
}

.slider-btn321 {
    background: #2e2e30;
    border-radius: 50%;
    border: none;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
}

.slider-btn321:hover {
    background: #444446;
    color: white;
}

/* --- Modal Styling --- */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    border: none;
}

.modal-body img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
}

#cds2 {
    margin-bottom: 160px;
    margin-top: 100px;
}

.modal-body {
    padding: 0px 40px;
}

.modal-header {
    padding-left: 40px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.modal-title {
    font-family: var(--title-font);
    font-size: 50px;
    font-weight: 600;
    line-height: 55px;
    color: black;
}

@media screen and (max-width: 768px) {
    .modal-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .modal-title {
        font-size: 30px;
        line-height: 32px;
    }

    .imgx212 {
        background-image: url(images/banner2.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
        width: 84vw;
        margin: 15px;
        border-radius: 15px;
    }

    .category-description {
        text-align: left !important;
    }
}

.modal-header .btn-close {
    padding-right: 50px;
}

#modalCategory,
#modalDescription {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 36px;
}

.category-description {
    /* color: rgba(255, 255, 255, 0.7); */
    /* font-size: 1.1rem; */
    /* line-height: 1.6; */
    /* max-width: 600px; */
    margin: 0 auto;
    font-size: 1.25rem;
    color: #86868b;
    line-height: 1.4;
    text-align: center;
}

/* .footer {
    margin-top: 100px !important;
} */

/* SECURE SECTION STYLE */
.gradient-text {
    background: linear-gradient(90deg, #00c6b9, #71f95a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease forwards;
    font-family: var(--title-font);
    padding-top: 100px;
}

.text-muted {
    color: #aaa !important;
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
}

.secure22 {
    padding-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.feature:nth-child(1) {
    animation-delay: 0.3s;
}

.feature:nth-child(2) {
    animation-delay: 0.6s;
}

.feature:nth-child(3) {
    animation-delay: 0.9s;
}

.icon-circle {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.icon-circle:hover {
    color: #6ecb62;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secure21 {
    margin-bottom: 100px;
}

/* UX DESIGN SECTION  */
.image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: 300px;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.blur-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    color: white;
    padding: clamp(15px, 4vw, 30px);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.blur-box h2 {
    margin: 0;
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.3;
    font-family: var(--title-font);
}

.blur-box p {
    margin: clamp(8px, 2vw, 15px) 0 clamp(15px, 3vw, 25px);
    /* font-size: clamp(0.9rem, 2vw, 1.1rem); */
    /* line-height: 1.5; */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: #86868b;
    line-height: 1.4;
    font-family: var(--body-font);
}

.btn-custom {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 32px;
    transition: background 0.3s, transform 0.2s, border-color 0.3s;
    width: 100%;
    max-width: 250px;
}

.btn-custom:hover {
    background: rgba(255, 255, 255, 0.25);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small devices (phones) */
@media (max-width: 576px) {
    .image-container {
        min-height: 250px;
    }

    .blur-box {
        position: relative;
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 991px) {
    .image-container {
        min-height: 400px;
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    .image-container {
        min-height: 500px;
    }
}

/* VERTICALS TABS STYLES */
.image-box {
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    border-radius: 25px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-list {
    padding: 0;
    margin-top: 40px;
}

.feature-list li {
    cursor: pointer;
    padding: 25px 0;
    border-bottom: 1px solid #333333;
    position: relative;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.feature-list li:hover::before {
    width: 100%;
}

.feature-list h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #86868b;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
    font-family: var(--title-font);
}

.feature-list li:hover h5 {
    color: #cccccc;
}

.feature-number {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.5;
    font-weight: bold;
    transition: opacity 0.3s ease;
    font-family: var(--title-font);
}

.feature-list li:hover .feature-number {
    opacity: 0.8;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.feature-content p {
    font-family: var(--body-font);
}

.feature-list li.active-feature .feature-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

.active-feature {
    border-bottom-color: #ffffff;
}

@media (max-width: 991px) {
    .row213 {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .image-box {
        aspect-ratio: 16/9;
        min-height: 400px;
        margin-bottom: 30px;
    }

    .feature-list li {
        padding: 20px;
        background-color: #1a1a1a;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .feature-list li:hover {
        padding-left: 20px;
        background-color: #333333;
    }
}

@media (max-width: 576px) {
    .feature-list h5 {
        font-weight: bold;
        font-size: 1.3rem;
        font-family: var(--title-font);
    }

    .feature-content .feature-list p {
        font-size: 0.9rem;
        line-height: 1.5;
        font-family: var(--body-font);
    }

    .feature-list {
        margin-top: 0px;
    }

    .image-box {
        min-height: 300px;
        margin-bottom: 0px;
    }

    .feature-list li {
        padding: 15px;
    }

    .feature-content {
        margin-top: 10px;
    }

    .tbs122 {
        padding-top: 150px !important;
        padding-bottom: 100px !important;
    }

    #imbx12 {
        margin-top: 0px !important;
    }

    .rcf12 {
        margin-top: 0px !important;
    }
}

.tbs122 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glow-text {
    position: relative;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #ffffff;
    filter: brightness(1.1);
    z-index: 1;
}

.glow-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00cfff, #a600ff, #ff006e, #ff8800);
    filter: blur(20px) brightness(0.8);
    opacity: 0.7;
    border-radius: 100px;
    z-index: -1;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

.glow-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    background: linear-gradient(90deg, #00cfff, #a600ff, #ff006e, #ff8800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: color-burn;
    filter: blur(3px) brightness(1.3);
    z-index: 0;
    pointer-events: none;
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 576px) {
    .tilt-wrapper {
        margin-top: 350px !important;
    }
}

.tilt-wrapper {
    margin-top: 30px;
}
