/*=============== 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;
}

.gdbg {
    background-image: url(images/Group\ 18.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 45px;
}

.gdbg h1 {
    font-family: var(--title-font);
    text-align: left;
    font-weight: bold;
}

.gdbg p {
    text-align: left;
    font-family: var(--title-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    width: 45%;
}

@media screen and (max-width: 768px) {
    .gdbg {
        padding: 2rem 0;
    }

    .gdbg .row {
        flex-direction: column-reverse;
    }

    .gdbg .col {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .gdbg h1 {
        font-size: 32px;
        text-align: center;
        padding-top: 1rem;
    }

    .gdbg p {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        padding-bottom: 1rem;
    }

    .gdbg img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .gdbg {
        background-position: right !important;
    }

    .gdbg h1 {
        font-size: 28px;
    }

    .gdbg p {
        font-size: 18px;
        line-height: 24px;
        width: 100%;
    }

    .gdbg img {
        max-width: 90%;
    }

    .gdbg1 p {
        color: white;
        width: 100% !important;
    }

    .gdbg1 {
        border-radius: 0px !important;
        background-position: right !important;
    }

    .gdbg2 {
        background-position: center !important;
        border-radius: 0px !important;
        margin-top: 10px !important;
    }

    .gdbg2 p {
        color: white;
        width: 100% !important;
    }
}

.txt311 {
    font-family: var(--title-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #86868b;
    padding: 50px 0px;
}

.gdbg1 {
    background-image: url(images/banner12.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 45px;
    border-radius: 28px;
}

.gdbg1 h1 {
    font-family: var(--title-font);
    text-align: left;
    font-weight: bold;
    margin-left: 20px;
}

.gdbg1 p {
    text-align: left;
    font-family: var(--title-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    width: 45%;
    margin-left: 20px;
    color: white;
}

.gdbg2 {
    background-image: url(images/banner5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 45px;
    border-radius: 28px;
    position: relative;
}

.gdbg2 h1 {
    font-family: var(--title-font);
    text-align: left;
    font-weight: bold;
    margin-left: 20px;
}

.gdbg2 p {
    text-align: left;
    font-family: var(--title-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    width: 45%;
    margin-left: 20px;
    color: white;
}

/* Plus Button */
.plus-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.plus-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: white;
}

/* Modal Apple Style */
.modal-content {
    border-radius: 28px;
    border: none;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

/* Testimonials Slider */
.container101 {
    max-width: 1200px;
    width: 90%;
    padding-top: 140px;
    padding-bottom: 180px;
    text-align: center;
}

.slider-container102 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider103 {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.slides105 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide106 {
    min-width: 100%;
    padding: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.question12 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: left;
    flex: 1;
}

.answer {
    background: #f5f5f7;
    padding: 20px;
    border-radius: 14px;
    color: #515154;
    line-height: 25px;
    text-align: left;
    flex: 1;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--body-font);
}

.navigation-wrapper {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-button11 {
    font-size: 20px;
    background: #f5f5f7;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button11:hover {
    background: #f5f5f7;
    transform: scale(1.1);
}

.dots132 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d2d7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #000;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .container101 {
        padding: 20px 10px;
        width: 95%;
    }

    .testimonial-slider103 {
        height: auto;
        min-height: 400px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .nav-button11 {
        width: 35px;
        height: 35px;
        background: #f5f5f7;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .question12 {
        font-size: 18px;
    }

    .answer {
        font-size: 14px;
        padding: 15px;
    }

    .navigation-wrapper {
        bottom: -60px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider103 {
        min-height: 335px;
    }

    .slide106 {
        padding: 15px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .avatar {
        width: 50px;
        height: 50px;
    }

    .container101 {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

.slider-title21 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--title-font);
    color: black;
}

/* ================= CALL TO ACTION SECTION ================= */
.cta-section {
    padding: 120px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-eyebrow {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.009em;
    font-family: var(--title-font);
    margin-bottom: 8px;
    background: linear-gradient(90deg, #007aff, #ff2d55);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-headline {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.003em;
    font-family: var(--title-font);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: #86868b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    padding: 12px 32px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    font-family: var(--body-font);
    border-radius: 980px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-primary {
    background: #fff;
    color: #000;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    background: #f5f5f5;
    color: #000;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-eyebrow {
        font-size: 19px;
    }

    .cta-headline {
        font-size: 40px;
    }

    .cta-description {
        font-size: 19px;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 64px 0;
    }

    .cta-eyebrow {
        font-size: 17px;
    }

    .cta-headline {
        font-size: 32px;
    }

    .cta-description {
        font-size: 17px;
        margin-bottom: 28px;
    }
}
