/*=============== 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%, 0%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(0, 0%, 0%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(0, 0%, 100%);
    /*========== 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;
    }
}

/* Custom Scrollbar Styling */
/* ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000ff;
} */

/* Firefox scrollbar styling */
/* h1 {
    scrollbar-width: thin;
    scrollbar-color: #000000ff #ffffffff;
} */

/* For Edge and other browsers */
/* ::-ms-scrollbar {
    width: 10px;
    height: 10px;
}

::-ms-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-ms-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-ms-scrollbar-thumb:hover {
    background: #555;
} */

/* 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);
    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(255, 255, 255, 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: #000;
    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;
    }
}

@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: rgba(255, 255, 255, 1);
    }

    .dropdown__container {
        background-color: rgba(255, 255, 255, 1);
    }
}

@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__link1 a:hover {
    color: var(--title-color);
    cursor: pointer;
}

.footer__link1 a {
    color: var(--text-color);
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #d2d2d7;
    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 ===============*/

/*=============== CAROUSEL SECTION ===============*/
.carousel-section {
    margin-top: 47px;
}

.swiper {
    width: 100%;
    height: calc(102vh - var(--header-height));
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.8s ease;
}

.swiper-slide-active .slider-img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: black;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-content {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
}

.slide-content h2 {
    font-size: 65px;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #032741 0%, #6093bc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: var(--title-font);

    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.slide-content p {
    font-size: 25px;
    margin-bottom: 2rem;
    font-family: var(--body-font);
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.slider-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 17px;
    background-color: #333333;
    color: #fff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    text-decoration: none;
    font-family:
        "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial,
        sans-serif;
    transition: all 0.3s ease;
    min-width: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.slider-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Navigation Controls */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
}

.swiper-button-prev {
    right: 145px !important;
    left: auto !important;
    bottom: 30px !important;
}

.swiper-button-next {
    right: 35px !important;
    bottom: 30px !important;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) !important;
} */

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(165, 165, 165);
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: rgb(0, 0, 0);
    width: 40px;
}

/* Custom Controls */
.swiper-controls {
    position: absolute;
    bottom: 30px;
    right: 90px;
    z-index: 10;
}

.swiper-control-btn {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.swiper-control-btn i {
    font-size: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        bottom: 20px !important;
    }

    .swiper-button-prev {
        right: 125px !important;
    }

    .swiper-button-next {
        right: 25px !important;
    }

    .swiper-controls {
        right: 75px;
        bottom: 20px;
    }

    .swiper-control-btn {
        width: 40px;
        height: 40px;
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: black;
        z-index: 2;
        width: 100%;
        max-width: 800px;
        padding: 0 20px;
        opacity: 0;
        transition: all 0.8s ease;
    }

    .slide-content h2 {
        font-size: 41px;
        margin-bottom: 1rem;
        font-weight: 700;
        background: linear-gradient(90deg, #000000 0%, #000000 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-family: var(--title-font);

        /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    }

    .slide-content p {
        font-size: 20px;
        margin-bottom: 2rem;
        font-family: var(--body-font);
        /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
    }

    .slider-btn {
        display: inline-block;
        padding: 10px 30px;
        font-size: 17px;
        background-color: #333333;
        color: #fff;
        border: none;
        border-radius: 980px;
        cursor: pointer;
        text-decoration: none;
        font-family:
            "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial,
            sans-serif;
        transition: all 0.3s ease;
        min-width: 28px;
        font-weight: 400;
        letter-spacing: -0.01em;
    }

    .slider-btn:hover {
        background-color: #333;
        transform: translateY(-2px);
    }
}

@media screen and (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        bottom: 15px !important;
        display: none;
    }

    .swiper-button-prev {
        right: 110px !important;
    }

    .swiper-button-next {
        right: 20px !important;
    }

    .swiper-controls {
        right: 65px;
        bottom: 15px;
    }

    .swiper-control-btn {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after,
    .swiper-control-btn i {
        font-size: 1rem;
    }

    #simples,
    #smart {
        font-size: 33px;
    }
}

@media screen and (max-width: 480px) {
    .swiper-controls {
        bottom: 20px;
        right: 20px;
    }
}

#fx01 {
    background-image: url("images/fx02.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}

#fx02 {
    background-image: url("images/fx03.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}

#fx03 {
    background-image: url("images/fx01.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}

/*=============== WHO WE ARE SECTION ===============*/
.who-we-are {
    padding: 120px 0;
    background-color: #fff;
}

.who-we-are .subheading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.who-we-are h2 {
    font-family: var(--title-font);
    background: linear-gradient(90deg, #ffffff 0%, #5946b9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.who-we-are .lead {
    font-size: 1.25rem;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.who-we-are .stats-row {
    margin-bottom: 3rem;
}

.who-we-are .stat-box {
    padding: 1.5rem;
    background: #161617;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.who-we-are .stat-box:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.04);
}

.who-we-are .stat-box h3 {
    text-align: left;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--title-font);
}

.who-we-are .stat-box p {
    font-weight: bold;
    text-align: left;
    color: #86868b;
    font-size: 0.9rem;
    margin: 0;
}

.who-we-are .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.who-we-are .image-box:hover {
    transform: translateY(-10px);
}

.who-we-are .image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.who-we-are .image-box:hover img {
    transform: scale(1.05);
}

.who-we-are .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.who-we-are .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .who-we-are {
        padding: 80px 0;
    }

    .who-we-are h2 {
        font-size: 2.5rem;
    }

    .who-we-are .lead {
        font-size: 1.1rem;
    }

    .who-we-are .stat-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .who-we-are {
        padding: 60px 0;
    }

    .who-we-are h2 {
        font-size: 2rem;
    }

    .who-we-are .image-grid {
        gap: 1rem;
    }

    .who-we-are .stat-box {
        padding: 1rem;
    }

    .who-we-are .stat-box h3 {
        font-size: 1.75rem;
    }

    .learnbtn {
        display: flex;
        justify-content: center;
    }

    .dropdown__link {
        color: black;
    }
}

/*=============== LAPTOP STYLE CSS ===============*/
.laptop-section {
    min-height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.laptop-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.laptop-container h1 {
    font-family: var(--title-font);
    background: linear-gradient(
        to right,
        #0d93ff 12%,
        #ff00a6 60%,
        #ff6200 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.simple {
    font-family: var(--title-font);
    background: linear-gradient(
        to right,
        #0096ff 12%,
        #ff00a6 60%,
        #ff6200 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.laptop-mockup {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
}

.laptop-mockup img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.categories-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.categories-wrapper {
    overflow: hidden;
    margin: 0 auto;
}

.categories-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.category-item {
    flex: 0 0 auto;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.category-item.active {
    color: #fff;
    transform: scale(1.1);
    font-weight: 600;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-button.prev {
    left: 0;
}

.nav-button.next {
    right: 0;
}

.nav-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .laptop-mockup {
        width: 95%;
    }

    .categories-slider {
        width: 100%;
        padding: 0 45px;
    }

    .category-item {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }

    .nav-button {
        width: 35px;
        height: 35px;
    }
}

.category-content {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-content.show {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.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;
}

@media (max-width: 480px) {
    .laptop-section {
        padding: 3rem 1rem;
    }

    .categories-slider {
        padding: 0 35px;
    }

    .category-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .nav-button {
        width: 30px;
        height: 30px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .laptop-container h1 {
        font-size: 32px;
    }
}

.parasimple {
    font-size: 24px;
    color: #86868b;
    font-weight: 600;
    margin: 2rem 5rem;
    font-family: var(--title-font);
}

@media screen and (max-width: 480px) {
    .parasimple {
        font-size: 22px;
        color: #777777ff;
        font-weight: 600;
        margin: 1rem 0rem;
        font-family: var(--title-font);
    }

    .who-we-are {
        padding-bottom: 0px;
    }
}

#forspace {
    padding-bottom: 150px;
}

#for001 {
    padding-bottom: 120px;
}

/*=============== 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: 2rem;
    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: #fff;
    border-radius: 50%;
    border: none;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.slider-btn321:hover {
    background: #f1f1f1;
}

/* --- 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;
}

.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;
    }
}

.modal-header .btn-close {
    padding-right: 50px;
}

#modalCategory,
#modalDescription {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 36px;
}

/*=============== FAQS STYLE ===============*/
.title324 {
    font-size: 40px;
    line-height: 44px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: var(--title-font);
    color: black;
}

.questions-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.question {
    border-bottom: 1px solid #d2d2d7;
}

.question button {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border: none;
    outline: none;
    font-size: 19px;
    color: #1d1d1f;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--body-font);
}

.question p {
    font-size: 17px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    color: #1d1d1f;
}

.d-arrow {
    transition: transform 0.5s ease-in;
    color: #86868b;
    flex-shrink: 0;
    margin-left: 10px;
}

/*add this class when click*/
.question p.show {
    max-height: 200px;
    opacity: 1;
    padding: 0px 15px 30px 15px;
}

.question button .d-arrow.rotate {
    transform: rotate(180deg);
}

/* Remove border from last FAQ */
#quend {
    border-bottom: none;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .title324 {
        font-size: 36px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .question button {
        font-size: 18px;
        padding: 15px 10px;
    }

    .question p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .title324 {
        font-size: 28px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .question button {
        font-size: 16px;
        padding: 12px 8px;
    }

    .question p {
        font-size: 14px;
    }
}

/* ================= 4 CARD CONTACT ================= */

.card32 {
    border: none;
    text-align: center;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

.card32:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.card32 img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.card32 .card-body {
    padding: 2.5rem;
}

.card32 .card-title {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.card32 p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: #86868b;
    margin-bottom: 1.5rem;
}

.card32 button {
    background-color: #1d1d1f;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.card32 button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.card-body1 {
    background-image: url(images/email.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 380px;
    width: 100%;
}

.card-body2 {
    background-image: url(images/call.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 380px;
    width: 100%;
}

.rnd1 {
    border: 2px solid #1d1d1f;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.card32:hover .rnd1 {
    background-color: #1d1d1f;
    border-color: #1d1d1f;
}

.card32:hover .rnd1 i {
    color: #ffffff;
}

.rnd1 i {
    font-size: 1.5rem;
    color: #1d1d1f;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .card32 {
        margin-bottom: 1.5rem;
    }

    .card32 .card-body {
        padding: 2rem;
    }

    .card32 .card-title {
        font-size: 1.3rem;
    }

    .card32 p {
        font-size: 1rem;
    }
}
