/* Typography & Section Helpers */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .title {
    font-family: Inter Tight;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 120%;
    letter-spacing: 0px;
}

.section-header .subtitle {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #565656;
    max-width: 711px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    background: url('img/about.png');
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: left;
}

/* .about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(13, 42, 79, 0.75); */
    /* Darker overlay */
/* } */

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: Inter Tight;
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0px;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 44px !important;
    }
    .about-text h2 {
    font-size: 40px !important;
}
.cta-section .title {
    font-size: 40px !important;
}
}
.stat-box {
    background-color: #053862;
    padding: 16px 40px;
    gap: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-family: Inter Tight;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #E6EBEF;
}

.stat-label {
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #ced4da;
}

/* About Section */
.about-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-text h2 {
    font-family: Inter Tight;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #000000;
}

.about-text p {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--fly-text-gray);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f7f7f7;
    position: relative;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    border-radius: 12px;
}

.testimonial-card .name {
    font-family: inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #2D2E2E;
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
    width: 24px;
    height: 24px;
    color: #F8D254;
}

.testimonial-card .quote {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #2D2E2E;
    margin-top: 15px;
}

.slider-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-arrow.prev {
    left: -60px;
}

.slider-arrow.next {
    right: -60px;
}


/* Partners/Logos Section */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    /* Increased gap */
}

.logo-grid img {
    flex: 1 1 calc(20% - 50px);
    /* 5 images per row, minus the gap */
    max-width: calc(20% - 50px);
    height: 40px;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    background-color: #053862;
    color: #ffffff;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
}

.cta-section .title {
    font-family: Inter Tight;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #ffffff;
}

.cta-section .subtitle {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #EAEAEA;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding-top: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    text-align: left;
    flex-direction: column;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-family: Inter Tight;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0px;
    color: #343434;
}

.feature-item .heading {
    font-family: Inter Tight;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 0 !important;
}

.feature-item p {
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #565656;
}
