* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
}

html::-webkit-scrollbar {
    display: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000000;
}

li a:hover {
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 212px;
    height: 60px;
}

.nav_bar ul li {
    position: relative;
}

.nav_bar ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.nav_bar ul li {
    padding: 6px 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #292929;
    display: inline-block;
    transition: color 0.3s;
}

/* The bottom bar */
.nav_bar ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 3px solid #0076CE;
    transform: translateX(-50%);
    /* center it */
    transition: width 0.3s ease, height 0.3s ease;
}

/* On hover expand the bar slightly */
.nav_bar ul li a:hover::after {
    width: 10px;
    height: 0;
}

.nav_bar ul li a:hover {
    color: #0076CE;
    font-weight: 600;
}



.apply_pilot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 16px;
    gap: 12px;
    background: #0076CE;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    width: fit-content;
}

.apply_pilot a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-right: 45px;
    /* space for circle */
}

/* Circle */
.apply_pilot a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;

    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    /* circle behind */
}

/* Arrow inside the circle */
.apply_pilot a::before {
    content: "➔";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #0076CE;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Text hover */
.apply_pilot a:hover {
    color: #ffffff;
}

.apply_pilot:hover {
    background: #000000;
    transition: background 0.3s ease;
    cursor: pointer;
}

/* Animate only arrow */
.apply_pilot a:hover::before {
    animation: arrow-slide 0.6s ease forwards;
}

.book_call {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 30px 16px;
    gap: 12px;
    border: 1px solid #0076CE;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    width: fit-content;

    /* Smooth transition for background and box-shadow */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.book_call a {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #0076CE;
    text-decoration: none;

    /* Smooth color transition for the link */
    transition: color 0.3s ease;
}

.book_call:hover {
    background: #000000;
    cursor: pointer;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
    /* optional stronger shadow */
}

.book_call:hover a {
    color: #ffffff;
    /* smooth text color change */
}


/* Arrow keyframes */
@keyframes arrow-slide {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateY(-50%) translateX(12px);
        opacity: 0;
    }

    60% {
        transform: translateY(-50%) translateX(-14px);
        opacity: 0;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.hero {
    border-top: 1px solid;
    /* border-bottom: 1px solid; */
    border-image: repeating-linear-gradient(to right,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch;
}

.hero_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Border setup for border-image */
    /* border-left: 1px solid;
    border-right: 1px solid;

    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_top_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left-blank,
.right-blank {
    flex: 0 0 12.5%;
}

.hero_text {
    flex: 0 0 75%;
    text-align: center;
    /* Border setup for border-image */
    /* border-left: 1px solid;
    border-right: 1px solid;

    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_text_content {
    padding: 80px 30px 40px 30px;
}

.hero_text_content h1 {
    font-size: 54px;
    line-height: 70px;
    text-align: center;
    letter-spacing: -0.03em;

    background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
}

.hero_text_content p {
    margin-top: 20px;

    font-size: 20px;
    line-height: 34px;
    text-align: center;
    letter-spacing: -0.02em;

    color: #646464;
}

.hero_text_content p span {
    font-weight: 700;
    color: #292929;
}

.hero_middle {
    /* border-bottom: 1px solid;
    border-image: repeating-linear-gradient(to right,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_middle_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-left: 1px solid;
    border-right: 1px solid;

    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_middle_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero_middle_text {
    flex: 0 0 75%;
    text-align: center;
    /* border-left: 1px solid;
    border-right: 1px solid;

    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_middle_text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 20px;
}

.hero_bottom_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-left: 1px solid;
    border-right: 1px solid;

    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch; */
}

.hero_bottom_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.hero_bottom_brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

/* Ai Section */

.ai_section {
    background: linear-gradient(121.49deg, #004374 0%, #43006C 100.36%);
    display: flex;
    align-items: center;
    gap: 80px;
}
.slider_left {
    flex: 1;
    width: 544px;
    height: 420px;
    background-color: #D9D9D9;
    clip-path: polygon(-1% 10%, 100% -1%, 100% 101%, 0% 89%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.slider_right {
    flex: 1;
    width: 544px;
    height: 402px;
    background-color: #D9D9D9;
    clip-path: polygon(0 -1%, 100% 9%, 100% 91%, 0% 101%);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

/* Active indicator */
.indicator.active {
    background-color: #FFFFFF;
}

.ai_container {
    flex: 4;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* needed for slider positioning */
}

.ai_section_content {
    width: 100%;
    position: relative; /* needed for indicators absolute positioning */
}

.slider_images {
    position: relative;
    width: 100%;
    height: auto;
}

.slider_img {
    width: 100%;
    border: 12px solid rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0px 10px 14px rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    object-fit: cover;

    /* fade effect */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.slider_img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}


.slider_indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -40px; /* adjust below the image */
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    box-sizing: border-box;
    flex: none;
    cursor: pointer;
}

/* Active indicator */
.indicator.active {
    background-color: #FFFFFF;
}


.why_choose_us,
.experience_fatchcare {
    background: #fafafa;
}

.why_choose_us_content {
    margin-top: 168px;
    text-align: center;
    width: 100%;

}

.why_choose_us_content h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 64px;
    letter-spacing: -0.03em;

    background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
}

.why_choose_us_content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #646464;
}

.why_choose_us_content p span {
    font-weight: 700;
    color: #292929;
}

.why_choose_us_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.why_choose_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
}

.graph_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    position: relative;
    border: 2px solid #0076CE;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 80px;
    gap: 0;
}

.graph_container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    /* base thickness */
    transform: translateX(-50%);
    border-right: 1px solid;
    border-image: repeating-linear-gradient(to bottom,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch;
}


/* Horizontal dotted line */
/* .graph_content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    border-bottom: 1px solid;
    border-image: repeating-linear-gradient(to right,
            #E7E7E7 0 10px,
            transparent 10px 14px) 1 stretch;
} */

.graph_content {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
}


/* Graph images */
.graph_container .graph_content img {
    width: 194px;
    height: 200px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
}

/* Texts */
.graph_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.graph_text img {
    padding: 12px;
    width: 48px !important;
    height: 48px !important;
    background: #0076CE;
    border-radius: 40px !important;
}

.graph_text h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #292929;
}

.graph_text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #414141;
}

.client_feedback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.client_feedback h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
    margin-top: 151px;
}

.client_feedback_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    gap: 20px;
    width: 934px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #0076CE;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    margin-top: 40px;
}

.client_feedback_content img.quote {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    background: #0076CE;
    border-radius: 40px;
}

.client_feedback_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
}

.client_feedback_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.star_rating {
    text-align: center;
}

.client_feedback_content h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
}

/* Experience Section */
.experience_fatchcare {
    padding-top: 150px;
}

.experience_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience_content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.experience_content h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
}

.experience_content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #646464;
}

.experience_content p span {
    font-weight: 700;
    color: #292929;
}

.calendly_section {
    width: 100%;
}

.booking-kit_logo-container_39b65c89 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px !important;
    padding-bottom: 0 !important;
}

/* contact Section */
.contact {
    background: #E0F0FF;
}

.contact_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 80px 0;
}

.contact_left,
.contact_right {
    width: 50%;
    box-sizing: border-box;
}

.contact_intro {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #646464;
}

.contact_left h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    /* or 150% */
    letter-spacing: -0.03em;

    /* Neutral/500 */
    color: #414141;
    /* margin-top: 14px; */
}

.contact_left h2 span {
    font-weight: 700;
    color: #292929;
}

.contact_email {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #646464;
    margin-top: 16px;
}

.contact_email span {
    font-weight: 700;
    color: #292929;
}

.contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 100px;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.contact_form input,
.contact_form textarea {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 20px;
    height: 57px;
    background: #F2F2F2;
    border-radius: 8px;
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #414141;
    font-family: "Inter", sans-serif;
}

.contact_form textarea {
    height: 153px;
    resize: none;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #414141;
    font-family: "Inter", sans-serif;
}

.contact_form .apply_pilot,
.contact_form .submit_btn {
    width: 100%;
}

/* faq section */

.faq {
    padding: 80px 0;
    background: #fafafa;
}

.faq_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

.faq_item {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq_content {
    width: 910px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_content h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #111111;
}

.faq_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #292929;
}

.faq_accordion_container {
    background: rgba(242, 242, 242, 0.6);
    border: 2px solid #FFFFFF;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border-radius: 12px;
}

.faq_accordion {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    gap: 32px;
    /* height: 33px; */
    backdrop-filter: blur(6px);

    width: 910px;
}

.faq_accordion h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: #292929;
}



.faq_answer {
    display: none;
}

.faq_accordion img {
    background: #111111;
    border-radius: 18px;
    cursor: pointer;
}

.faq_answer p {
    padding: 24px 0 0 0;
    text-align: left;
}

/* footer */
footer {
    background: #111111;
}

.footer_container {
    max-width: 1138px;
    margin: 0 auto;
    display: flex;
    padding: 50px 0 16.5px 0;
    flex-direction: column;
    gap: 43.36px;
}

.footer_content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer_content .logo {
    text-align: center;
    margin-bottom: 100px;
}

.footer_links {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
}

.footer_links .middle {
    margin-left: 215px;
    /* gap between left & middle */
}

.footer_links .right {
    margin-left: 215px;
    flex: 1;
}


.footer_links .left {
    display: flex;
    gap: 40px;
}

.footer_links .left ul,
.footer_links .middle ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
}

.footer_links .left ul li,
.footer_links .middle ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.footer_links .left ul li a,
.footer_links .middle ul li a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer_links .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    /* gap: 24px; */
    width: 300px;
}

.footer_links .right .subscribe_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer_links .right .input_group {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.footer_links .right .input_group input {
    width: 100%;
    padding: 0 181px 0 16px;
    /* leave space for button */
    height: 52px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: #E7E7E7;
}

.footer_links .right .input_group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #888888;

}

.footer_links .right .input_group .submit_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #0076CE;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.16);
    border-radius: 6px 8px 8px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    cursor: pointer;
    gap: 12px;
}

.footer_links .right .input_group .submit_btn img {
    /* display: none; */
}
.social_media img{
        width: 32px;
    }

.footer_links .right .input_group .submit_btn a {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Circle */
/* .footer_links .right .input_group .submit_btn a::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    z-index: 0;
} */

/* Arrow inside the circle */
/* .footer_links .right .input_group .submit_btn a::before {
    content: "➔";
    position: absolute;
    right: -31px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #0076CE;
    z-index: 1;
} */

/* Animate arrow on hover */
/* .footer_links .right .input_group .submit_btn a:hover::before {
    animation: arrow_slide_bottom 0.6s ease forwards;
} */

@keyframes arrow_slide_bottom {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(6px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.footer_links .right .contact_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.copy_right_text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #646464;
}

.tc_section,
.privacy_section {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: repeating-linear-gradient(to right, #E7E7E7 0 10px, transparent 10px 14px) 1 stretch;
}

.tc_container,
.privacy_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0;
}

.tc_container h1,
.privacy_container h1 {
    font-weight: 600;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: -0.03em;

    background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    display: inline-block;
    margin-left: 10px;
}


.tc_main_container,
.privacy_main_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;

}

.tc_main_left,
.privacy_main_left {
    width: 33%;
    box-sizing: border-box;
    border-left: 1px solid;

    border-image: repeating-linear-gradient(to bottom, #E7E7E7 0 10px, transparent 10px 14px) 1 stretch;
    padding-right: 20px;
}

.tc_main_right,
.privacy_main_right {
    width: 67%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-top: 52px;
    border-left: 1px solid;
    border-right: 1px solid;
    border-image: repeating-linear-gradient(to bottom, #E7E7E7 0 10px, transparent 10px 14px) 1 stretch;
    padding-bottom: 120px;
    padding-right: 20px;
}

.tc_main_left ul,
.privacy_main_left ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 7px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.tc_main_left ul li,
.privacy_main_left ul li {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;

    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: #292929;
}

.tc_main_left ul li:hover,
.privacy_main_left ul li:hover {
    cursor: pointer;
}

/* .tc_main_left ul li.active,
.privacy_main_left ul li.active {
    border-left: 4px solid #0076CE;
} */

.tc_main_right h4,
.privacy_main_right h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    /* identical to box height, or 142% */
    letter-spacing: -0.02em;
    margin-bottom: 10px;

    /* Neutral/600 */
    color: #292929;
}

.calendly-inline-widget {
    height: 715px;
}

.tc_main_right p,
.privacy_main_right p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #292929;
}

.tc_main_right,
.privacy_main_right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* responsive  */
/* Hamburger button */
.hamburger {
    display: none;
    width: 40px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #292929;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.apply_pilot img {
    display: none;
}

/* Responsive for 402px and below */
@media (max-width: 820px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        flex-direction: row;
        align-items: center;
    }

    header .logo img {
        width: 156px;
        height: auto;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    .nav_bar {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .nav_bar.show {
        display: block;
    }

    .nav_bar ul {
        flex-direction: column;
        gap: 0;
    }

    .nav_bar ul li {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    header .apply_pilot {
        display: none;
    }

    .hero_container {
        border: none;
    }

    .hero_text {
        border: none;
    }

    .hero {
        border: none;
    }

    .sm_container {
        padding: 16px 20px;
        border-bottom: 1px solid #E7E7E7;
        backdrop-filter: blur(6px);
    }

    .hero_top_content {
        flex-direction: column;
    }

    .hero_text_content h1 {
        font-weight: 600;
        font-size: 32px;
        line-height: 140%;
        /* or 45px */
        text-align: center;
        letter-spacing: -0.03em;

        background: linear-gradient(90deg, #0076CE 0%, #C565FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        --text-fill-color: transparent;
    }

    .hero_text_content {
        padding: 60px 20px 16px 20px;
    }

    .hero_text_content p {
        /* font-weight: 700; */
        font-size: 15px;
        line-height: 26px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .hero_middle_container {
        padding: 0 20px;
        border: none;
    }

    .hero_middle_content {
        flex-direction: column;
    }

    .hero_middle_text {
        border: none;
        padding: 32px 0;
    }

    .apply_pilot a {
        font-weight: 600;
        font-size: 16px;
        line-height: 140%;
        /* or 22px */
        text-align: center;
        letter-spacing: -0.02em;
        color: #FFFFFF;
        padding-right: 0;
    }

    .apply_pilot {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 14px 18px;
        gap: 12px;
    }

    .book_call {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 14px 18px;
        gap: 12px;
    }

    .hero_middle_text {
        gap: 12px;
    }

    .book_call img {
        width: 20px;
    }

    .apply_pilot a::after,
    .apply_pilot a::before {
        display: none;
    }

    .apply_pilot img {
        display: block;
    }

    .book_call a {
        font-size: 16px;
        line-height: 140%;
        /* or 22px */
        text-align: center;
        letter-spacing: -0.02em;
    }

    .hero_bottom {
        display: none;
    }

    .ai_container {
        padding: 20px;
    }

    .why_choose_container {
        padding: 80px 20px;
    }

    .why_choose_us_content {
        margin: 0;
    }

    .why_choose_us_content h2 {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        /* or 142% */
        text-align: center;
        letter-spacing: -0.02em;
    }

    .why_choose_us_content p {
        font-weight: 500;
        font-size: 15px;
        line-height: 26px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .why_choose_us_btn {
        margin-top: 24px;
    }

    .graph_container {
        margin-top: 40px;
        border: 1px solid #0076CE;
        box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }

    .graph_content {
        flex-direction: column;
        padding: 24px 20px;
    }

    .graph_text {
        align-items: center;
        gap: 12px;
    }

    .graph_text p {
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .graph_text h4 {
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -0.02em;
    }

    .graph_container::before,
    .graph_container::after {
        display: none;
    }

    .client_feedback h2 {
        margin-top: 80px;
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .client_feedback_content {
        padding: 40px 20px;
        margin-top: 32px;
        width: 100%;
        gap: 16px;
    }

    .client_feedback_content p {
        font-size: 14px;
        line-height: 24px;
        /* or 171% */
        text-align: center;
        letter-spacing: -0.02em;
    }

    .client_feedback_content h4 {
        font-size: 16px;
        line-height: 140%;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .experience_fatchcare {
        padding: 0 20px;
    }

    .experience_content h2 {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .experience_content p {
        font-size: 15px;
        line-height: 26px;
        text-align: center;
        letter-spacing: -0.02em;
        color: #414141;
    }

    .calendly-inline-widget {
        height: 750px;
    }



    .contact_container {
        flex-direction: column;
        padding: 80px 20px;
    }

    .contact_left,
    .contact_right {
        width: 100%;
        box-sizing: border-box;
    }

    .contact_intro {
        text-align: center;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -0.02em;
        color: #292929;
    }

    .contact_left h2 {
        font-size: 32px;
        line-height: 48px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .contact_email {
        font-size: 20px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -0.02em;
        margin-top: 16px;
    }

    .contact_form {
        background: #FFFFFF;
        padding: 20px 20px 30px;
    }

    .contact_form input,
    .contact_form textarea {
        padding: 16px;
        gap: 20px;
        height: 57px;
        background: #F2F2F2;
        border-radius: 6px;
        width: 100%;
    }

    .faq_content {
        width: 100%;
    }

    .faq_container {
        padding: 0 20px;
    }

    .faq_content h2 {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .faq_content p {
        font-size: 15px;
        line-height: 26px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .faq_item {
        margin-top: 24px;
        gap: 24px;
        width: 100%;
    }

    .faq_accordion {
        width: 100%;
    }

    .faq_accordion h4 {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.02em;
    }

    .faq_accordion img {
        width: 24px;
    }

    .faq_accordion_container {
        padding: 20px;
    }

    .faq_answer p {
        text-align: left !important;
    }

    .footer_container .logo img {
        width: 100%;
    }

    .footer_content .logo {
        margin-bottom: 40px;
    }

    .footer_container {
        padding: 50px 20px 16.5px 20px;
    }

    .footer_links {
        flex-direction: column;
    }

    .footer_links .right {
        order: 1;
    }

    .footer_links .left {
        order: 2;
        /* middle */
        width: 100%;
    }

    .footer_links .middle {
        order: 3;
        width: 100%;
    }

    .footer_links .right {
        margin-left: 0;
        flex: 1;
        width: 100%;
        align-items: center;
    }

    .footer_links {
        display: flex;
        align-items: flex-start;
        margin-top: 0;
        gap: 40px;
    }

    .footer_links .right .input_group .submit_btn a::before,
    .footer_links .right .input_group .submit_btn a::after {
        display: none;
    }

    .footer_links .right .input_group .submit_btn {
        padding: 14px 12px;
        gap: 12px;
    }

    .footer_links .right .input_group .submit_btn img {
        display: block;
    }

    .footer_links .middle {
        margin-left: 0 !important;
    }

    .footer_links .left ul,
    .footer_links .middle ul {
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 12px;
        width: 100%;
    }
    


    /* Privecy Policy */
    .privacy_content,
    .tc_content {
        text-align: center;
    }

    .tc_container h1,
    .privacy_container h1 {
        font-weight: 600;
        font-size: 32px;
        line-height: 140%;
        text-align: center;
        letter-spacing: -0.03em;
    }

    .tc_main_left,
    .privacy_main_left {
        display: none;
    }

    .tc_main_right,
    .privacy_main_right {
        width: 100%;
        border: 0;
        padding: 50px 20px 120px 20px;
    }

    .tc_main_right h4,
    .privacy_main_right h4 {
        font-weight: 600;
        font-size: 20px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .tc_main_right p,
    .privacy_main_right p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        /* or 150% */
        text-align: center;
        letter-spacing: -0.02em;
    }

    .tc_main_right,
    .privacy_main_right {
        gap: 24px;
    }


}