* {
    margin: 0;
    padding: 0;

    font-optical-sizing: auto;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    box-sizing: border-box;

}

/*=============== HOMEPAGE ===============*/
/*==============================================================================*/


/* Main content container */
.hero-container {
    max-width: 100%;
    margin-inline: auto;
    margin: 0 20px 0 20px;
}

/* Header section styles */
.header-section {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 50;
    
}

.navbar-inner {
   max-width: 1560px;  /* Match your hero-container or layout standard */
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
}

.header-section nav {
    display: flex;
    justify-content: space-between;
}

.header-section .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-section .logo-container a img {
    width: auto;
    border-outline: none;
}

.header-section .logo-container span:first-of-type {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
}

.header-section .logo-container span:last-of-type {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.header-section .desktop-nav-links {
    display: none;
    align-items: center;
    gap: 3.2rem;
}

.header-section .nav-item {
    position: relative;
}

.header-section .desktop-nav-links a {
    color: #002D4B;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
    padding: 0.5rem 0;
    display: block;
    text-decoration: none;
}

.header-section .desktop-nav-links a:hover {
    color: #FF3D00;
}

.header-section .nav-item>a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    padding: 0.5rem 0;
    display: block;
}

.header-section .nav-item>a:hover {
    color: #2563eb;
}


.header-section .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    min-width: 12rem;
    padding: 0.5rem 0;
    z-index: 20;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.header-section .nav-item:hover .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.header-section .sub-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #002D4B;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.header-section .sub-menu a:hover {
    background-color: #f3f4f6;
    color: #FF3D00;
}

.header-section .quote-button {
    background-color: #FF3D00;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 9999px;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.header-section .quote-button:hover {
    background-color: #FF3D00;
    color: #fff;
}

.header-section .mobile-menu-toggle {
    display: flex;
    align-items: center;
}

.header-section .mobile-menu-toggle button {
    color: #4b5563;
    outline: none;
    transition: color 0.3s ease-in-out;
}

.header-section .mobile-menu-toggle button:hover {
    color: #2563eb;
}

.header-section .mobile-menu-toggle svg {
    width: 2.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    padding-top: 0px;
    margin-top: 5px;
}

body.menu-open {
    overflow: hidden;
}

.header-section .mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 16rem;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    z-index: 60; /* ✅ Increased from 20 to ensure it's above sticky header */
    transition: transform 0.3s ease-out;
    transform: translateX(100%); /* Off-screen by default */
    overflow-y: auto; /* ✅ Keep for internal scroll on mobile */
}

.header-section .mobile-menu.active {
    transform: translateX(0);
}

.header-section .mobile-menu-close-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.header-section .mobile-menu-close-container button {
    color: #4b5563;
    outline: none;
    transition: color 0.3s ease-in-out;
}

.header-section .mobile-menu-close-container button:hover {
    color: #2563eb;
}

.header-section .mobile-menu-close-container svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-section .mobile-nav-links {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.header-section .mobile-nav-item {
    position: relative;
    cursor: pointer;
}

.header-section .mobile-nav-links a,
.header-section .mobile-nav-item>span {
    color: #1f2937;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .mobile-nav-links a:hover,
.header-section .mobile-nav-item>span:hover {
    color: #2563eb;
}

.header-section .mobile-nav-item svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-section .mobile-nav-item.active svg {
    transform: rotate(90deg);
}

.header-section .mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.header-section .mobile-nav-item.active .mobile-sub-menu {
    max-height: 200px;
    /* Adjust as needed */
}

.header-section .mobile-sub-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4b5563;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    padding-left: 1.5rem;
}

.header-section .mobile-sub-menu a:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Hero banner section styles */
.hero-banner {
    position: relative;
    height: 37.5rem;
    overflow: hidden;
    border-radius: 16px;
    padding: 0 80px 0 80px;
}

.hero-banner .hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('assets/hero-banner-bg.webp');
}

.hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.5;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.hero-banner .hero-main-text-container {
    max-width: 56rem;
    margin-bottom: 6rem;
}

.hero-banner .hero-main-text-container h1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.hero-banner .hero-sub-features {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: #99D6FF;
}

.hero-banner .hero-sub-features span:first-of-type,
.hero-banner .hero-sub-features span:nth-of-type(2) {
    border-right: 1px solid #777777;
    padding-right: 0.1rem;
}

.hero-banner .bottom-right-cta {
    position: absolute;
    bottom: 1.5rem;
    right: 0 !important;
}

.hero-banner .bottom-right-cta button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.hero-banner .bottom-right-cta button:hover {
    transform: translateY(-2px);
}

.hero-banner .bottom-right-cta button span {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    transition: color 0.3s ease-in-out;
}

.hero-banner .bottom-right-cta button:hover span {
    color: #1295D8;
}

.hero-banner .bottom-right-cta .cta-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-banner .bottom-right-cta button:hover .cta-icon-circle {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.hero-banner .bottom-right-cta svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease-in-out;
}

.hero-banner .bottom-right-cta button:hover svg {
    transform: translateX(5px);
}


/* Media Queries */
@media (min-width: 768px) {
    .header-section {
        padding-inline: 0;
    }

    .header-section .desktop-nav-links {
        display: flex;
        gap: 30px;
    }

    .header-section .mobile-menu-toggle {
        display: none;
    }

    .header-section .mobile-menu {
        display: none;
    }

    .hero-banner {
        height: 43.75rem;
    }

    .hero-banner .hero-content {
        padding-inline: 0;
    }

    .hero-banner .hero-main-text-container {
        margin-bottom: 5rem;
    }

    .hero-banner .hero-main-text-container h1 {
        font-size: 3.75rem;
    }

    .hero-banner .hero-sub-features {
        gap: 1.5rem;
        font-size: 1.5rem;
    }

    .hero-banner .hero-sub-features span:first-of-type,
    .hero-banner .hero-sub-features span:nth-of-type(2) {
        padding-right: 1.5rem;
    }

    .hero-banner .bottom-right-cta {
        bottom: 3rem;
        right: 3rem;
    }
}

@media (min-width: 1024px) {
    .header-section {
        padding-inline: 0;
    }

    .hero-banner .hero-content {
        padding-inline: 0;
    }

    .hero-banner .hero-main-text-container h1 {
        font-size: 4.5rem;
    }
}


/*=== WHO WE ARE SECTION ===*/

/* Container styles */
.w-are-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Text Section styles */
.intro-section {
    background-color: #ffffff;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;

}

.intro-section .w-are-container p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 1400px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 50px;
    border-bottom: 1px solid #828282;
}

/* Who We Serve Section styles */
.who-we-serve-section {
    background-color: #ffffff;
    text-align: center;
}

.who-we-serve-section .w-are-container h2 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.who-we-serve-section .w-are-container>p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
}

.who-we-serve-section .info-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.who-we-serve-section .info-blocks-container .info-block-item {
    background-color: #002D4B;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 1038px;
    margin: auto;
}

.who-we-serve-section .client-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin: auto;
}

.who-we-serve-section .client-grid-container .client-card {
    background-color: #FBFBFB;
    border-radius: 0.75rem;
    padding: 16px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: left;
    border: 2px solid #E9E9E9;

}

.who-we-serve-section .client-grid-container .client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #ff3b30;
}

.who-we-serve-section .client-grid-container .client-card-mros {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 16px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: left;
    border: 2px solid #ff3b30;
}

.who-we-serve-section .client-grid-container .client-card-mros:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #ff3b30;
}

.who-we-serve-section .client-grid-container .client-card h3,
.who-we-serve-section .client-grid-container .client-card-mros h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 0.5rem;
}

.who-we-serve-section .client-grid-container .client-card p,
.who-we-serve-section .client-grid-container .client-card-mros p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.who-we-serve-section .client-grid-container .client-card img,
.who-we-serve-section .client-grid-container .client-card-mros img {
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media (min-width: 640px) {

    .who-we-serve-section .client-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {

    .intro-section,
    .who-we-serve-section {
        padding-bottom: 50px;
                margin: 0 20px;
    }

    .who-we-serve-section .info-blocks-container .info-block-item {
        flex: 1;
    }

    .who-we-serve-section .info-blocks-container {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {

    .who-we-serve-section .client-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}


/*=== Reducing Cost | Accelerating Solutions ===*/


/* Main CSS */
#r-cost-container {
    max-width: 1400px;
    margin: auto;
}

#r-cost-container header {
    text-align: center;
    padding: 32px 0;
}

#r-cost-container header h1 {
    color: #002D4B;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

#r-cost-container header h1 span {
    color: #FF3D00;
    font-size: 56px;
    font-weight: 400;
}

#r-cost-container header p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 1276px;
    margin-left: auto;
    margin-right: auto;
}

#r-cost-container main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

#r-cost-container main>div {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

#r-cost-container main>div:hover {
    transform: translateY(-5px);
}

#r-cost-container main .tell-us {
    flex: 2 1 60%;
    min-width: 300px;
}

#r-cost-container main .global-network,
#r-cost-container main .options-quickly,
#r-cost-container main .parts-fast {
    flex: 1 1 35%;
    min-width: 300px;
}

#r-cost-container main>div>div:first-of-type {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #EBF3F8;
}

#r-cost-container main>div>div:first-of-type h2 {
    font-size: 30px;
    font-weight: 500;
    color: #131B24;
    margin-bottom: 10px;
    line-height: 36px;
}

#r-cost-container main>div>div:first-of-type p {
    font-size: 16px;
    color: #131B24;
    line-height: 1.5;
}

#r-cost-container main>div img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#r-cost-container main .global-network img,
#r-cost-container main .options-quickly img,
#r-cost-container main .parts-fast img {
    height: 100%;
}

#r-cost-container main>div>div:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002D4B;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    color: #fff;
}

#r-cost-container main>div:hover>div:last-of-type {
    opacity: 0.9;
}

#r-cost-container main>div>div:last-of-type a {
    display: inline-flex;
    align-items: center;
    background-color: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#r-cost-container main>div>div:last-of-type a:hover {
    background-color: none;
}

#r-cost-container main>div>div:last-of-type a span {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#r-cost-container main>div>div:last-of-type a:hover span {
    transform: translateX(5px);
}

#r-cost-container .bottom-right-cta {
    position: absolute;
    bottom: 1.5rem;
    right: 0 !important;
}


#r-cost-container .bottom-right-cta button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

#r-cost-container .bottom-right-cta button:hover {
    transform: translateY(-2px);
}

#r-cost-container .bottom-right-cta button span {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    transition: color 0.3s ease-in-out;
}

#r-cost-container .bottom-right-cta button:hover span {
    color: #fff;
}

#r-cost-container .bottom-right-cta .cta-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    background-color:transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#r-cost-container .bottom-right-cta button:hover .cta-icon-circle {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

#r-cost-container.bottom-right-cta svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease-in-out;
}

#r-cost-container .bottom-right-cta button:hover svg {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #r-cost-container header h1 {
        font-size: 2rem;
    }

    #r-cost-container header p {
        font-size: 1rem;
    }

    #r-cost-container main {
        flex-direction: column;
        align-items: center;
    }

    #r-cost-container main>div {
        width: 100%;
        max-width: 500px;
    }
}


/*=== testimonials ===*/

/* Main wrapper for the testimonial section */
.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 48rem;
    width: 100%;
    position: relative;
    margin: auto;
    max-width: 1083px;
}

.testimonial-wrapper .profile-circle {
    position: relative;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonial-wrapper .profile-circle::before {
    content: '';
    position: absolute;
    top: -0.625rem;
    left: -0.625rem;
    right: -0.625rem;
    bottom: -0.625rem;
    border: 2px dashed #ff6b6b;
    border-radius: 50%;
    opacity: 0.7;
}

.testimonial-wrapper .profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Container for the testimonial slider */
.testimonial-wrapper .slider-container {
    overflow: hidden;
    width: 100%;
}

/* Inner container for testimonial slides */
.testimonial-wrapper .slides-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual testimonial slide styling */
.testimonial-wrapper .testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial-wrapper .profile-section {
    position: relative;
    flex-shrink: 0;
    margin-bottom: 2rem;
}

.testimonial-wrapper .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.testimonial-wrapper .content-section p {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.testimonial-wrapper .author-info {
    display: flex;

}

.testimonial-wrapper .author-info img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
}

.testimonial-wrapper .author-details p:first-child {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.testimonial-wrapper .author-details p:last-child {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: -29px;
}

/* Pagination dots container */
.testimonial-wrapper .pagination-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    position: absolute;
    bottom: 2rem;
    z-index: 99;
    margin: auto;
    left: 29%;
    bottom: 21%;
}

/* Individual pagination dot styling */
.testimonial-wrapper .pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
}

/* Active pagination dot styling */
.testimonial-wrapper .dot-active {
    background-color: #ef4444;
    /* red-500 */
}

/* Inactive pagination dot styling */
.testimonial-wrapper .dot-inactive {
    background-color: #d1d5db;
    /* gray-300 */
}

/* Media Queries for responsiveness */
@media (min-width: 768px) {
    .testimonial-wrapper {
        flex-direction: row;
    }

    .testimonial-wrapper .profile-circle {
        width: 12rem;
        height: 12rem;
    }

    .testimonial-wrapper .testimonial-slide {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .testimonial-wrapper .profile-section {
        margin-bottom: 0;
        margin-right: 3rem;
    }

    .testimonial-wrapper .content-section {
        align-items: flex-start;
        text-align: left;
    }

    .testimonial-wrapper .content-section p {
        font-size: 1.25rem;
    }
}


/*=== our services ===*/

/* Scoped styles for the services section */
.services-section {
    padding: 1rem;
    background-color: #F2F2F2;
    max-width: 1400px;
    border-radius: 16px;
    margin: auto;
    padding: 56px 50px 56px 50px;
}

.services-section .services-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;

}

.services-section .header-section {
    text-align: center;
    margin-bottom: 2rem;
    background: none;
}

.services-section .header-section h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;

}

.services-section .header-section p {
    font-size: 1.125rem;
    color: #4b5563;
}

.services-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.services-section .service-card {

    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.services-section .service-card:hover {}

.services-section .card-image-wrapper {
    position: relative;
    width: 260px;
    margin: auto;
    z-index: 999;
    bottom: -16px;
}

.services-section .card-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Styles for the hover overlay on the image */
.services-section .card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
    border-radius: 16px;
}

/* Show overlay on service-card hover */
.services-section .service-card:hover .card-image-overlay {
    opacity: 0.75;
    visibility: visible;
}

.services-section .card-content {
    padding: 1.5rem;
    border: 2px solid transparent;
    /* Default transparent border */
    border-radius: 16px;
    transition: border-color 300ms ease;
    /* Smooth transition for border color */
    min-height: 360px;
    background: #fff;
}

/* Apply orange border to card-content on service-card hover */
.services-section .service-card:hover .card-content {
    border-color: #f97316;
    /* Orange color */
    background: #fff;
    border-radius: 16px;
}

.services-section .card-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #002D4B;
    margin-bottom: 0.75rem;
}

.services-section .card-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
}

/* Styling for the orange arrow icon inside the overlay */
.services-section .card-icon-bg {
    background-color: #f97316;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 300ms ease;
}

/* Show icon on service-card hover (via overlay) */
.services-section .service-card:hover .card-icon-bg {
    opacity: 1;
}

.services-section .card-icon-bg a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.services-section .card-icon-bg svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

/* Media Queries */
@media (min-width: 640px) {
    .services-section {}

    .services-section .services-container {}

    .services-section .header-section h1 {
        font-size: 3rem;
    }

    .services-section .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .services-section {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .services-section {}

    .services-section .services-container {}

    .services-section .cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/*=== Our Offerings ===*/


/* Specific section styling */
.our-offerings-section .offering-wrap {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.our-offerings-section .hdr {
    margin-bottom: 2rem;
}

.our-offerings-section .hdr h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
}

.our-offerings-section .hdr p {
    font-size: 18px;
    color: #333;
    line-height: 1.625;
}

.our-offerings-section .acc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.our-offerings-section .item {
    background: none;
    border-radius: 24px;
    overflow: hidden;
}

.our-offerings-section .btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    outline: none;
    /* Gradient border with border-radius */
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to bottom, #000, #ffffff, #ffffff) border-box;
}

.our-offerings-section .btn:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to bottom, #FF3D00, #ffffff, #ffffff) border-box;
}

.our-offerings-section .btn span:first-of-type {
    font-size: 26px !important;
    font-weight: 500;
    color: #333;
    /* Added max-width for collapsing effect */
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.1s ease, max-width 0.3s ease, margin-right 0.3s ease;
    margin-left: 12px;
    margin-right: 12px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to bottom, #FF3D00, #ffffff, #ffffff) border-box;
}

.our-offerings-section .btn span:first-of-type.hidden-heading {
    opacity: 0;
    pointer-events: none;
    /* Collapse space when hidden */
    max-width: 0;
    margin-right: 0;
    /* Adjust margin if needed to prevent extra space */
}

.our-offerings-section .btn span:last-of-type {
    color: #4a5568;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.our-offerings-section .btn span:last-of-type.active-icon {
    transform: matrix(1, 0, 0, 1, 0, 0);

}

.our-offerings-section .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1.25rem;
    padding-right: 1.25rem;

}

.our-offerings-section .panel.active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
    margin-top: -50px;
    margin-bottom: 20px;

}

.our-offerings-section .content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 1rem 1rem 0 1rem;
}

.our-offerings-section .img-box {
    flex-shrink: 0;
    width: 100%;
    position: relative;
}

.our-offerings-section .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.our-offerings-section .arrow-box {
    position: absolute;
    bottom: 1.5rem;
    right: -1.9rem;


}

.our-offerings-section .arrow-box svg {
    height: 1.5rem;
    width: 1.5rem;
    color: #ef4444;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.our-offerings-section .txt-box {
    flex-grow: 1;
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.625;

}

.our-offerings-section .txt-box h3 {
    font-size: 30px;
    font-weight: 500;
    color: #1295D8;
    margin-bottom: 1rem;
}

.our-offerings-section .txt-box p {
    margin-bottom: 0.5rem;
}

.our-offerings-section .txt-box p.sub-desc-pt {
    padding-top: 1rem;
}

/* Media Queries */
@media (min-width: 640px) {

    .our-offerings-section .offering-wrap {
        padding: 2rem;
    }

    .our-offerings-section .hdr h1 {}

    .our-offerings-section .hdr p {
        font-size: 1.125rem;
    }

    .our-offerings-section .btn span:first-of-type {
        font-size: 1.25rem;
    }

    .our-offerings-section .txt-box {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {

    .our-offerings-section .offering-wrap {
        padding: 2.5rem;
    }

    .our-offerings-section .content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
        margin-top: 0;
    }

    .our-offerings-section .img-box {
        width: 33.333333%;
    }
}

@media (min-width: 1024px) {

    .our-offerings-section .offering-wrap {
        padding: 3rem;
    }

    .our-offerings-section .img-box {
        width: 25%;
    }
}


/*=== Why Choose Airlink Spares ===*/


/* Styles for the main page wrapper */
.page-wrapper {
    max-width: 100% !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

/* Specific styles for the "Why Choose Airlink Spares" section */
.airlink-section .section-header {
    margin-bottom: 2rem;
    max-width: 1290px;
    margin: auto;
}

.airlink-section .section-header h1 {
    /* Targeted h1 directly */
    font-size: 56px;
    line-height: 2.25rem;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 1rem;
}

.airlink-section .section-header p {
    /* Targeted p directly */
    font-size: 18px;
    line-height: 1.5rem;
    color: #333;
    line-height: 1.625;
    margin-bottom: 30px;
}

.airlink-section .content-area {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.airlink-section .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.airlink-section .image-container img {
    /* Targeted img directly */
    width: 100%;
    max-height: 674px;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
}

.airlink-section .benefits-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.airlink-section .before-section {
    /* No specific styles needed here, children handle styling */
}

.airlink-section .before-section h2 {
    /* Targeted h2 directly */
    font-size: 30px;
    line-height: 1.75rem;
    font-weight: 500;
    color: #FF3D00;
    margin-bottom: 2rem;
}

.airlink-section .before-section ul {
    /* Targeted ul directly */
    padding: 0;
    list-style: none;
}

.airlink-section .benefits-list-container .before-section li {
    /* Targeted li directly */
    display: flex;
    align-items: center;
    color: #374151;
    line-height: 34px;
}

.airlink-section .benefits-list-container .before-section li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.airlink-section .benefits-list-container .before-section li img {
    /* Targeted svg directly */
    width: 30px;
    /* Updated icon size */
    height: 30px;
    /* Updated icon size */

    position: relative;
    margin-left: 10px;
    right: 10px;
}

.airlink-section .with-section {
    /* No specific styles needed here, children handle styling */
}

.airlink-section .with-section h2 {
    /* Targeted h2 directly */
    font-size: 30px;
    line-height: 1.75rem;
    font-weight: 500;
    color: #FF3D00;
    margin-bottom: 2rem;
}

.airlink-section .with-section ul {
    /* Targeted ul directly */
    padding: 0;
    list-style: none;
}

.airlink-section .benefits-list-container .with-section li {
    /* Targeted li directly */
    display: flex;
    align-items: center;
    color: #374151;
    line-height: 34px;
}

.airlink-section .benefits-list-container .with-section li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.airlink-section .benefits-list-container .with-section li img {
    /* Targeted svg directly */
    width: 30px;
    /* Updated icon size */
    height: 30px;
    /* Updated icon size */

    position: relative;
    margin-left: 10px;
    right: 10px;
}

/* Responsive @media queries */
@media (min-width: 640px) {
    /* sm breakpoint */


    .airlink-section .section-header h1 {
        /* Targeted h1 directly */
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .airlink-section .section-header p {
        /* Targeted p directly */
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .airlink-section .before-section h2,
    /* Targeted h2 directly */
    .airlink-section .with-section h2 {
        /* Targeted h2 directly */
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 1024px) {
    /* lg breakpoint */


    .airlink-section .section-header h1 {
        /* Targeted h1 directly */
        font-size: 3rem;
        line-height: 1;
    }

    .airlink-section .content-area {
        flex-direction: row;
        align-items: center;
    }

    .airlink-section .image-container,
    .airlink-section .benefits-list-container {
        width: 50%;
    }
}


/*=== Common Questions ===*/


/* Main CSS for the cq-container section */
.cq-container {
    background-color: #EBF3F8;
    padding: 32px;
    border-radius: 12px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: auto;
    margin-top: 56px;
}

.cq-container>div:first-child {
    flex: 1;
    width: 100%;
}

.cq-container>div:first-child>h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 32px;
}

.cq-container>div:first-child>div[onclick] {
    background-color: #fff;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cq-container>div:first-child>div[onclick]>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cq-container>div:first-child>div[onclick]>div:first-child>h3 {
    font-size: 20px;
    font-weight: 500;
    color: #002D4B;
    display: flex;
    align-items: center;

}

.cq-container>div:first-child>div[onclick]>div:first-child>h3>span::before {
    background-image: url("assets/aog-icon.webp");
    margin-right: 10px;
    color: #1e3a8a;
    font-weight: bold;
}

.cq-container>div:first-child>div[onclick]>div:first-child>svg {
    width: 24px;
    height: 24px;
    color: #4a5568;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.cq-container>div:first-child>div[onclick]>div:nth-child(2) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.cq-container>div:first-child>div[onclick]>div:nth-child(2)>p {
    margin-top: 16px;
    color: #333333;
}

.cq-container>div:first-child>div[onclick]>div:nth-child(2)>p>a {
    color: #2563eb;
    text-decoration: none;
}

.cq-container>div:first-child>div[onclick]>div:nth-child(2)>p>a:hover {
    text-decoration: underline;
}

.cq-container>div:nth-child(2) {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cq-container>div:nth-child(2)>img {
    border-radius: 12px;
    width: 100%;
    max-width: 448px;
    height: auto;
    object-fit: cover;
}

/* Media Queries */
@media (min-width: 1024px) {
    .cq-container {
        padding: 48px;
        flex-direction: row;
        align-items: center;
    }

    .cq-container>div:first-child {
        width: 50%;
    }

    .cq-container>div:nth-child(2) {
        width: 50%;
    }

    .cq-container>div:nth-child(2)>img {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .cq-container>div:first-child>h1 {
        font-size: 40px;
    }
}


/*=== Keep Your Fleet Flying Efficiently ===*/


/* Styles specific to the .fleet-flying section */
.fleet-flying {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    margin-top: 56px;
    color: #ffffff;
}

.fleet-flying .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.fleet-flying section.hero-section {
    background-image: url('assets/fleet-flying-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;*/
    color: white;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
   /*overflow-x: hidden;*/
    width: 100%;
    min-height: 537px;
}

.fleet-flying .hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    border-radius: 1rem;
    opacity: 0.7;
}

.fleet-flying .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1058px;
    width: 100%;
}

.fleet-flying .hero-content h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
    
}

.fleet-flying .hero-content h3 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
     color: #ffffff !important;
}

.fleet-flying .hero-content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ffffff !important;

}

.fleet-flying .hero-section-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

/* Common button styles */
.fleet-flying .button-common {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    text-align: center;
    cursor: pointer;
    flex-grow: 1;
    font-size: 1.125rem;
}

/* Primary button styles (orange) */
.fleet-flying .button-primary {
    background-color: #FF4500;
    color: white;
    border: 2px solid #FF4500;
}

.fleet-flying .button-primary:hover {
    background-color: #E63900;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

/* Secondary button styles (white with dark text/border) */
.fleet-flying .button-secondary {
    background-color: white;
    color: #0A2342;
    border: 2px solid #0A2342;
}

.fleet-flying .button-secondary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(10, 35, 66, 0.2);
}

.fleet-flying section.info-box {
    background-color: #1295D8;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: -10rem;
    max-width: 1350px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 999;


}

.fleet-flying section.info-box p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}

/* Media queries for responsiveness */
@media (min-width: 640px) {
    .fleet-flying .hero-section-buttons {
        flex-direction: row;
        max-width: 500px;
    }

    .fleet-flying .hero-content h1 {
        font-size: 3.5rem;
    }

    .fleet-flying .hero-content p {
        font-size: 1.25rem;
    }

    .fleet-flying section.info-box {
        padding: 2.5rem;
        font-size: 1.4rem;
            width: 94%;
    }

}

@media (min-width: 1024px) {
    .fleet-flying section.hero-section {
        padding: 3.5rem 2rem;
    }

    .fleet-flying .hero-content h1 {}

    .fleet-flying .hero-content p {
        font-size: 1.375rem;
    }

    .fleet-flying section.info-box {

        font-size: 1.5rem;
    }
}


/*=== Schedule a call today to get free quote ===*/

/* Custom styles for the schedule call section */
.schedule-call-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    gap: 2rem;
    max-width: 1025px;
    width: 100%;
    margin: 40px auto;
}

.schedule-call-text {
    text-align: center;
}

.schedule-call-text h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 60px;
}

.schedule-call-text h1 span {
    color: #1295D8;
    font-size: 56px;
    font-weight: 500;
}

.schedule-call-text p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #374151;
    margin-top: 1.5rem;
}

.schedule-call-text p .bold-text {
    font-weight: 700;
}

.schedule-call-text p .red-link {
    color: #ef4444;
    text-decoration: none;
}

.schedule-call-text p .red-link:hover {
    text-decoration: underline;
}

.schedule-call-form-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 28rem;
    flex-shrink: 0;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.schedule-call-form-card form {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    outline: none;
    background-color: #F7F8FA;
    color: #696A85;
    border: none;
    margin-bottom: 14px;
}

.form-input::placeholder {
    color: #696A85;
}

.form-input:focus {
    ring-width: 2px;
    ring-color: #3b82f6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.select-arrow-wrapper {
    position: relative;
}

.select-arrow-wrapper select {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    appearance: none;
    outline: none;
    background-color: #F7F8FA;
    color: #696A85;
    padding-right: 2.5rem;
}

.select-arrow-wrapper select:focus {
    ring-width: 2px;
    ring-color: #3b82f6;
}

.select-arrow-icon {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    display: flex;
    align-items: center;
    color: #FF5721;
}

.select-arrow-icon svg {
    fill: currentColor;
    height: 1rem;
    width: 1rem;
    color: #FF5721;
}

.submit-button {
    width: 100%;
    background-color: #FF3D00;
    color: white;
    font-weight: 600;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 999px;
    transition-property: background-color;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    max-width: 216px;
    margin: auto;
    display: block;
}

.submit-button:hover {
    background-color: #c2410c;
}

.privacy-text {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6b7280;
    margin-top: 1rem;
}

.privacy-text .privacy-link {
    color: #ea580c;
    text-decoration: none;
}

.privacy-text .privacy-link:hover {
    text-decoration: underline;
}

/* Media queries */
@media (min-width: 768px) {

    /* md breakpoint */
    .schedule-call-text h1 {}
}

@media (min-width: 1024px) {

    /* lg breakpoint */
    .schedule-call-wrapper {
        flex-direction: row;
        gap: 5rem;
        padding: 1.5rem;
    }

    .schedule-call-text {
        text-align: left;
    }
}


/*=== Footer Base ===*/

/* Footer base styling */
.footer-base {
    background-color: #002D4B;
    color: #B2C0C9;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
}

/* Main footer content grid */
.footer-base .footer-main-content-grid {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: auto;
    justify-content: space-between;
}

/* Airlink Info Section */
.footer-base .airlink-info-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-base .airlink-logo-wrapper {
    margin-bottom: 1rem;
}

.footer-base .airlink-info-section p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #9ca3af;
}

.footer-base h3 {
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.footer-base ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-base ul.space-y-2>li:not([hidden])~li:not([hidden]) {
    margin-top: 0.5rem;
}

.footer-base ul li a {
    color: #9ca3af;
    transition-property: color;
    transition-duration: 300ms;
    font-size: 14px;
    border-radius: 0.125rem;
    text-decoration: none;
}

.footer-base ul li a:hover {
    color: white;
}

.footer-base .contact-items-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-base .contact-items-wrapper>*:not([hidden])~*:not([hidden]) {
    margin-top: 0.75rem;
}

.footer-base .contact-item {
    display: flex;
    align-items: center;
    align-items: flex-start;
}

.footer-base .contact-item img {
    color: #9ca3af;
    margin-right: 10px;
    font-size: 0.875rem;
}

.footer-base .contact-item p {
    color: #1295D8;
    font-size: 14px;
    line-height: 1;
}

.footer-base .contact-item a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    border-radius: 0.125rem;
    color: #9ca3af;
}

.footer-base .contact-item a:hover {
    text-decoration: underline;
}

/* Did You Know & Follow Us Section */
.footer-base .did-you-know-follow-us-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 5rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #4a5568;
    position: relative;

}

.footer-base .did-you-know-content {
    margin-bottom: 1.5rem;
}

.footer-base .did-you-know-content h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 56px;
    color: #1295D8;
}

.footer-base .did-you-know-content h3 i {
    color: #fcd34d;
    margin-right: 0.5rem;
}

.footer-base .did-you-know-content p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #9ca3af;
}

.footer-base .follow-us-wrapper {
    padding-right: 60px;
}

.footer-base .follow-us-wrapper h3 {
    margin-bottom: 0.75rem;
    font-size: 20px;
    font-weight: 500;

}

.footer-base .social-icons-wrapper {
    display: flex;
}

.footer-base .social-icons-wrapper>*:not([hidden])~*:not([hidden]) {
    margin-left: 1rem;
}

.footer-base .social-icons-wrapper a {
    color: white;
    /* Changed icon color to white */
    background-color: #0077B5;
    /* Changed background to a blue color similar to image */
    transition-property: background-color;
    transition-duration: 300ms;
    border-radius: 9999px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-base .social-icons-wrapper a:hover {
    background-color: #1295D8;
    /* Darker blue on hover */
}

.footer-base .social-icons-wrapper a i {
    font-size: 16px;
    color: #002D4B;
}


/* Copyright Policy Section */
.footer-base .copyright-policy-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;

}

.footer-base .copyright-policy-section p {
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer-base .policy-links-wrapper {
    display: flex;
}

.footer-base .policy-links-wrapper>*:not([hidden])~*:not([hidden]) {
    margin-left: 1.5rem;
}

.footer-base .policy-links-wrapper a {
    color: #9ca3af;
    transition-property: color;
    transition-duration: 300ms;
    display: flex;
    align-items: center;
    border-radius: 0.125rem;
    text-decoration: none;
    font-size: 14px;
}

.footer-base .policy-links-wrapper a:hover {
    color: white;
}

.footer-base .policy-links-wrapper a i {
    font-size: 0.375rem;
    margin-right: 0.5rem;
}

/* Custom scroll-to-top button styling */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #ff6600;
    color: white;
    padding: 15px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top i {
    font-size: 1.125rem;
}

/* Styling for the new arrow button at the bottom */
.bottom-arrow-button {
    background-color: #ff6600;
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: -20px;
    right: 1rem;
    z-index: 10;
}

.bottom-arrow-button:hover {
    background-color: #e05c00;
}

.bottom-arrow-button i {
    font-size: 1.125rem;
}

.quick-links-section {
    justify-self: anchor-center;
}

.get-in-touch-section {
    justify-self: flex-end;
}

/* Media Queries */
@media (min-width: 640px) {

    /* sm */
    .footer-base {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin: 0px 40px 40px;
    }

    .footer-base .did-you-know-follow-us-section {}

    .footer-base .copyright-policy-section {
        flex-direction: row;
        margin-bottom: 0;

    }

    .footer-base .copyright-policy-section p {
        margin-bottom: 0;
    }

    .bottom-arrow-button {
        right: 1.5rem;
    }

}

@media (min-width: 768px) {

    /* md */
    .footer-base .footer-main-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-base .did-you-know-follow-us-section {
        flex-direction: row;
        align-items: center;
    }

    .footer-base .did-you-know-content {
        width: 60%;
        margin-bottom: 0;
    }

    .footer-base .follow-us-wrapper {
        width: auto;
    }

}

@media (min-width: 1024px) {

    /* lg */
    .footer-base {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-base .footer-main-content-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-base .did-you-know-follow-us-section {}

    .footer-base .copyright-policy-section {}

    .bottom-arrow-button {
        right: 2rem;
    }
}

/* Additional Responsive Media Queries for iPad, iPad Air, iPad Pro */

/* iPad (Portrait and Landscape) */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

    /* General adjustments for iPads */
    .hero-container {
        margin: 0 40px;
    }

    .header-section .desktop-nav-links {
        display: none;
        /* Hide desktop nav on iPads */
    }

    .header-section .mobile-menu-toggle {
        display: flex;
        /* Ensure mobile toggle is visible on iPads */
    }

    .header-section .mobile-menu {
        /* No display: none here, allowing it to be controlled by JS */
            width: 17rem;
    }

    .hero-banner {
        height: 50rem;
        /* Slightly taller hero for iPads */
        padding: 0 40px;
    }

    .hero-banner .hero-main-text-container h1 {
        font-size: 3rem;
    }

    .hero-banner .hero-sub-features {
        font-size: 1.6rem;
    }

    .w-are-container {
        padding: 0 40px;
    }

    .intro-section .w-are-container p {
        font-size: 18px;
    }

    .who-we-serve-section .w-are-container h2 {
        font-size: 40px;
    }

    .who-we-serve-section .client-grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for client cards */
    }

    #r-cost-container header h1 {
        font-size: 40px;
    }

    #r-cost-container header p {
        font-size: 1rem;
        padding: 0px 40px;
    }

    #r-cost-container main {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
                padding: 0px 40px;
    }

    #r-cost-container main>div {
        width: 48%;
        /* Adjust width for two columns */
        min-width: unset;
        /* Remove min-width constraint */
    }

    #r-cost-container main .tell-us {
        flex: 1 1 100%;
        /* Make tell-us full width */
    }

    #r-cost-container main .global-network,
    #r-cost-container main .options-quickly,
    #r-cost-container main .parts-fast {
        flex: 1 1 48%;
        /* Adjust for two columns */
    }

    .testimonial-wrapper {
        padding: 3rem;
    }

    .testimonial-wrapper .profile-circle {
        width: 10rem;
        height: 10rem;
    }

    .testimonial-wrapper .content-section p {
        font-size: 1.1rem;
    }

    .services-section {
        padding: 40px;
    }

    .services-section .header-section h1 {
        font-size:40px;
    }

    .services-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for services */
    }

    .our-offerings-section .offering-wrap {
        padding: 2.5rem;
    }

    .our-offerings-section .hdr h1 {
        font-size: 40px;
    }

    .our-offerings-section .btn span:first-of-type {
        font-size: 1.1rem;
    }

    .our-offerings-section .content {
        flex-direction: row;
        gap: 2rem;
    }

    .our-offerings-section .img-box {
        width: 40%;
    }

    .our-offerings-section .txt-box {
        font-size: 0.95rem;
    }

    .airlink-section .section-header h1 {
        font-size: 48px;
    }

    .airlink-section .content-area {
        flex-direction: row;
        /* Keep side-by-side layout */
        flex-wrap: wrap;
        /* Allow wrapping if content is too wide */
        justify-content: center;
    }

    .airlink-section .image-container,
    .airlink-section .benefits-list-container {
        width: 100%;
        /* Full width for content blocks on iPads */
    }

    .cq-container {
        padding: 40px;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .cq-container>div:first-child,
    .cq-container>div:nth-child(2) {
        width: 100%;
        /* Full width for blocks on iPads */
    }

    .cq-container>div:nth-child(2)>img {
        max-width: 70%;
        /* Adjust image size */
    }

    .fleet-flying .hero-content h1 {
        font-size: 48px;
    }

    .fleet-flying .hero-section-buttons {
        flex-direction: row;
    }

    .fleet-flying section.info-box p {
        font-size: 22px;
    }

    .schedule-call-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .schedule-call-text h1 {
        font-size: 48px;
    }

    .schedule-call-text p {
        font-size: 1rem;
    }

    .schedule-call-form-card {
        max-width: 100%;
    }

    .footer-base .footer-main-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-base .did-you-know-follow-us-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-base .did-you-know-content {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-base .follow-us-wrapper {
        width: 100%;
        padding-right: 0;
    }

    .footer-base .copyright-policy-section {
        flex-direction: column;
        align-items: center;
    }

    .footer-base .copyright-policy-section p {
        margin-bottom: 1rem;
    }

    .services-section .header-section { position: inherit;
}

#mobile-menu.hidden { display: block;}
.fleet-flying {padding: 0px 40px;}
.fleet-flying .hero-content h3 {font-size: 40px;}
.fleet-flying .hero-content p {font-size: 18px;}
.benefits-list-container { padding-left: 30px;}
.airlink-section .content-area {flex-direction: row;gap: 0px;}
.airlink-section .before-section h2 {margin-top: 10px; margin-bottom: 10px;}
}

/* iPad Pro (Portrait and Landscape) */

@media only screen and (min-width:1367px) and (max-width: 1600px) {
.fleet-flying .content-wrapper { margin: 0px 40px;}
#r-cost-container main  { margin: 0px 40px;}
}




@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {

    /* General adjustments for iPad Pro */
    .hero-container {
        margin: 0 60px;
    }

    .hero-banner {
        height: 55rem;
        padding: 0 60px;
    }

    .hero-banner .hero-main-text-container h1 {
        font-size: 3rem;
    }

    .hero-banner .hero-sub-features {
        font-size: 1.8rem;
    }

    .w-are-container {
        padding: 0 60px;
    }

    .intro-section .w-are-container p {
        font-size: 20px;
    }

    .who-we-serve-section .w-are-container h2 {
        font-size: 56px;
    }

    .who-we-serve-section .client-grid-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns for client cards */
    }

    #r-cost-container header h1 {
        font-size: 56px;
    }

    #r-cost-container header p {
        font-size: 1.1rem;
    }

    #r-cost-container main>div {
        width: calc(33.33% - 20px);
        /* Adjust width for three columns */
    }

    #r-cost-container main .tell-us {
        flex: 2 1 calc(66.66% - 20px);
        /* Two-thirds width for tell-us */
    }

    #r-cost-container main .global-network,
    #r-cost-container main .options-quickly,
    #r-cost-container main .parts-fast {
        flex: 1 1 calc(33.33% - 20px);
        /* One-third width for others */
    }

    .testimonial-wrapper {
        padding: 4rem;
    }

    .testimonial-wrapper .profile-circle {
        width: 12rem;
        height: 12rem;
    }

    .testimonial-wrapper .content-section p {
        font-size: 1.25rem;
    }

    .services-section {
        padding: 60px;
    }

    .services-section .header-section h1 {
        font-size: 56px;
    }

    .services-section .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns for services */
    }

    .our-offerings-section .offering-wrap {
        padding: 3rem;
    }

    .our-offerings-section .hdr h1 {
        font-size: 56px;
    }

    .our-offerings-section .btn span:first-of-type {
        font-size: 1.25rem;
    }

    .our-offerings-section .img-box {
        width: 33.333333%;
    }

    .our-offerings-section .txt-box {
        font-size: 1rem;
    }

    .airlink-section .section-header h1 {
        font-size: 56px;
    }

    .airlink-section .content-area {
        flex-direction: row;
    }

    .airlink-section .image-container,
    .airlink-section .benefits-list-container {
        width: 50%;
    }

    .cq-container {
        padding: 48px;
        flex-direction: row;
    }

    .cq-container>div:first-child,
    .cq-container>div:nth-child(2) {
        width: 50%;
    }

    .cq-container>div:nth-child(2)>img {
        max-width: 100%;
    }

    .fleet-flying .hero-content h1 {
        font-size: 56px;
    }

    .fleet-flying section.info-box p {
        font-size: 26px;
        color: #ffffff;
    }

    .schedule-call-wrapper {
        flex-direction: row;
        gap: 5rem;
        padding: 1.5rem;
    }

    .schedule-call-text h1 {
        font-size: 56px;
    }

    .schedule-call-text p {
        font-size: 1.125rem;
    }

    .schedule-call-form-card {
        max-width: 28rem;
    }

    .footer-base .footer-main-content-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-base .did-you-know-follow-us-section {
        flex-direction: row;
        align-items: center;
    }

    .footer-base .did-you-know-content {
        width: 60%;
        margin-bottom: 0;
    }

    .footer-base .follow-us-wrapper {
        width: auto;
    }

    .footer-base .copyright-policy-section {
        flex-direction: row;
        margin-bottom: 0;
    }

    .fleet-flying {
    padding: 0 40px;
}
.fleet-flying .hero-content h3 {font-size: 50px;}
.services-section .header-section {position: inherit;}
.who-we-serve-section .client-grid-container {grid-template-columns: repeat(2, 1fr);}
.who-we-serve-section .client-grid-container .client-card img, .who-we-serve-section .client-grid-container .client-card-mros img {height: auto;object-fit: cover;border-radius: 10px;margin-top: 1.5rem;max-height: 250px;object-position: top;}
.airlink-section .content-area {flex-direction: row;padding: 0 30px;}
#r-cost-container main {display: flex;flex-wrap: wrap;gap: 20px;margin-bottom: 20px;margin: 0px 60px;}
}

/* Mobile Devices (Max-width 767px) - General adjustments for smaller screens */
@media (max-width: 767px) {
    .hero-container {
        margin: 0 15px;
    }

    .header-section .desktop-nav-links {
        display: none;
        /* Hide desktop nav on mobiles */
    }

    .header-section .mobile-menu-toggle {
        display: flex;
        /* Show mobile toggle */
    }

    .header-section .mobile-menu {
        width: 100%;
        /* Full width mobile menu */
    }

    .hero-banner {
        height: 30rem;
        padding: 0 20px;
    }

    .hero-banner .hero-main-text-container h1 {
        font-size: 1.8rem;
    }

    .hero-banner .hero-sub-features {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-banner .hero-sub-features span:first-of-type,
    .hero-banner .hero-sub-features span:nth-of-type(2) {
        border-right: none;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .hero-banner .bottom-right-cta {
        bottom: 1rem;
        right: 1rem !important;
    }

    .hero-banner .bottom-right-cta button span {
        font-size: 16px;
    }

    .hero-banner .bottom-right-cta .cta-icon-circle {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-banner .bottom-right-cta svg {
        width: 1rem;
        height: 1rem;
    }

    .w-are-container {
        padding: 0 15px;
    }

    .intro-section .w-are-container p {
        font-size: 16px;
    }

    .who-we-serve-section .w-are-container h2 {
        font-size: 30px;
    }

    .who-we-serve-section .info-blocks-container {
        flex-direction: column;
    }

    .who-we-serve-section .client-grid-container {
        grid-template-columns: 1fr;
        /* Single column for client cards */
    }

    #r-cost-container header h1 {
        font-size: 30px;
    }

    #r-cost-container header h1 span {
        font-size: 2.5rem;
    }

    #r-cost-container header p {
        font-size: 0.9rem;
        padding: 10px;
    }

    #r-cost-container main {
        flex-direction: column;
        align-items: center;
    }

    #r-cost-container main>div {
        width: 95%;
        min-width: unset;
    }

    .testimonial-wrapper {
        padding: 1.5rem;
    }

    .testimonial-wrapper .profile-circle {
        width: 8rem;
        height: 8rem;
    }

    .testimonial-wrapper .testimonial-slide {
        padding: 1rem;
    }

    .testimonial-wrapper .content-section p {
        font-size: 16px;
    }

    .testimonial-wrapper .pagination-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
    }

    .services-section {
        padding: 20px;
    }

    .services-section .header-section h1 {
        font-size: 30px;
    }

    .services-section .header-section p {
        font-size: 1rem;
    }

    .services-section .cards-grid {
        grid-template-columns: 1fr;
        /* Single column for services */
    }

    .our-offerings-section .offering-wrap {
        padding: 1rem;
    }

    .our-offerings-section .hdr h1 {
        font-size: 30px;
    }

    .our-offerings-section .hdr p {
        font-size: 0.9rem;
    }

    .our-offerings-section .btn span:first-of-type {
        font-size: 1rem !important;
    }

    .our-offerings-section .btn span:last-of-type {
        font-size: 1rem;
    }

    .our-offerings-section .content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .our-offerings-section .img-box {
        width: 100%;
    }

    .our-offerings-section .txt-box {
        font-size: 0.8rem;
    }

    .our-offerings-section .txt-box h3 {
        font-size: 20px;
    }

    .our-offerings-section .panel.active {
        margin-top: -30px;
    }

    .airlink-section .section-header h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .airlink-section .section-header p {
        font-size: 1rem;
    }

    .airlink-section .content-area {
        flex-direction: column;
        gap: 2rem;
    }

    .airlink-section .image-container,
    .airlink-section .benefits-list-container {
        width: 100%;
    }

    .airlink-section .before-section h2,
    .airlink-section .with-section h2 {
        font-size: 1.2rem;
    }

    .airlink-section .benefits-list-container .before-section li,
    .airlink-section .benefits-list-container .with-section li {
        font-size: 16px;
        line-height: 1.5;
    }

    .airlink-section .benefits-list-container .before-section li img,
    .airlink-section .benefits-list-container .with-section li img {
        width: 24px;
        height: 24px;
    }

    .cq-container {
        padding: 20px;
        flex-direction: column;
    }

    .cq-container>div:first-child>h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .cq-container>div:first-child>div[onclick]>div:first-child>h3 {
        font-size: 16px;
    }

    .cq-container>div:first-child>div[onclick]>div:nth-child(2)>p {
        font-size: 14px;
    }

    .cq-container>div:nth-child(2)>img {
        max-width: 90%;
    }

    .fleet-flying section.hero-section {
        padding: 2rem 1rem;
        min-height: 400px;
            width: 90%;
    }

    .fleet-flying .hero-content h1 {
        font-size: 2.2rem;
    }

    .fleet-flying .hero-content p {
        font-size: 1rem;
    }

    .fleet-flying .hero-section-buttons {
        flex-direction: column;
    }

    .fleet-flying .button-common {
        font-size: 1rem;
    }

    .fleet-flying section.info-box {
        padding: 1.5rem;
        margin-top: 1rem;
            width: 90%;
    }

    .fleet-flying section.info-box p {
        font-size: 18px;
    }

    .schedule-call-wrapper {
        padding: 1rem;
        margin: 20px auto;
    }

    .schedule-call-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .schedule-call-text h1 span {
        font-size: 36px;
    }

    .schedule-call-text p {
        font-size: 0.9rem;
    }

    .schedule-call-form-card {
        padding: 1.5rem;
    }

    .form-input,
    .select-arrow-wrapper select {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .privacy-text {
        font-size: 0.75rem;
    }

    .footer-base {
        padding: 2rem 1rem;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .footer-base .footer-main-content-grid {
        grid-template-columns: 1fr;
    }

    .footer-base h3 {
        font-size: 18px;
    }

    .footer-base ul li a,
    .footer-base .contact-item p,
    .footer-base .contact-item a,
    .footer-base .copyright-policy-section p,
    .footer-base .policy-links-wrapper a {
        font-size: 16px;
    }

    .footer-base .did-you-know-follow-us-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-base .did-you-know-content h3 {
        font-size: 36px;
    }

    .footer-base .did-you-know-content p {
        font-size: 0.8rem;
    }

    .footer-base .follow-us-wrapper {
        padding-right: 0;
    }

    .footer-base .social-icons-wrapper a {
        width: 1.8rem;
        height: 1.8rem;
    }

    .footer-base .copyright-policy-section {
        flex-direction: column;
        align-items: center;
    }

    .footer-base .policy-links-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
        align-items: center;
    }

    .footer-base .policy-links-wrapper>*:not([hidden])~*:not([hidden]) {
        margin-left: 0;
    }

    .bottom-arrow-button {
        right: 1rem;
        bottom: -15px;
        padding: 0.6rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 0.8rem;
    }

    .quick-links-section {
        justify-self: auto;
    }

    .services-section .card-image-wrapper {
        width: 90%;
    }

    .hero-banner .bottom-right-cta {
        bottom: 2rem;
        right: 4rem !important;
    }

    .hero-banner .hero-main-text-container {
        margin-bottom: 10rem;
    }

    .get-in-touch-section {
        justify-self: auto;
    }


  #r-cost-container main>div>div:first-of-type h2 {
    font-size: 23px;

   }

   
   
   
}


/*=============== ABOUT US PAGE ===============*/
/*==============================================================================*/

/* Main CSS for Banner Section */
.inner-hero-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    width: 100%;
    max-width: 1560px;
    height: 428px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    margin: 0 auto;
}

.inner-hero-container .banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.inner-hero-container .banner-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    flex-grow: 1;
    z-index: 10;
}

.inner-hero-container .banner-content-box {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1.6rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    min-width: 700px;
    width: 100%;
    margin-bottom: 10px;
}

.inner-hero-container .banner-content-box h1 {
    font-size: 30px;
    font-weight: 500;
    color: #002D4B;
    line-height: 30px;

}

.inner-hero-container .banner-content-box p {
    font-size: 16px;
    color: #333333;
}

.inner-hero-container .banner-breadcrumb-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 10;
    padding-bottom: 0;
    padding-left: 1rem;
}

.inner-hero-container .banner-breadcrumb-nav {
    font-size: 14px;
    color: #ffffff;
}

.inner-hero-container .banner-breadcrumb-nav a {
    color: #fb923c;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.inner-hero-container .banner-breadcrumb-nav a:hover {
    text-decoration: none;
}

.inner-hero-container .banner-breadcrumb-nav span:nth-of-type(1) {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: #d1d5db;
}

.inner-hero-container .banner-breadcrumb-nav span:nth-of-type(2) {
    color: #d1d5db;
}

@media (min-width: 768px) {
    .inner-hero-container .banner-content-box {
        max-width: 600px;
    }

    .inner-hero-container .banner-content-box h1 {}
}


/* Styles specific to the "Who We Are" section */
.who-we-are-card {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.who-we-are-card .header-section {
    margin-bottom: 2rem;
}

.who-we-are-card .header-section h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 1rem;
}

.who-we-are-card .header-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.625;
}

.who-we-are-card .main-content-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.who-we-are-card .main-content-section .left-column {
    flex: 1;
    margin-bottom: 2rem;
}

.who-we-are-card .main-content-section .left-column p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.who-we-are-card .main-content-section .left-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-we-are-card .main-content-section .left-column ul li {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
}

.who-we-are-card .main-content-section .left-column ul li img {
    color: #3b82f6;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.who-we-are-card .main-content-section .right-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.who-we-are-card .main-content-section .right-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
}

.who-we-are-card .main-content-section .right-column .image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.who-we-are-card .main-content-section .right-column .image-overlay a {
    display: flex;
    align-items: center;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.who-we-are-card .main-content-section .right-column .image-overlay a:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.who-we-are-card .main-content-section .right-column .image-overlay a i {
    margin-left: 0.75rem;
}

.who-we-are-card .bot-content {
    padding-top: 1.2rem;
    color: #333;
    font-size: 18px;
}

.who-we-are-card .main-content-section .bottom-right-cta {
    position: absolute;
    left: 18px;
    top: 25px;
}

.who-we-are-card .main-content-section .bottom-right-cta button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.who-we-are-card .main-content-section .bottom-right-cta button:hover {
    transform: translateY(-2px);
}

.who-we-are-card .main-content-section .bottom-right-cta button span {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    transition: color 0.3s ease-in-out;
}

.who-we-are-card .main-content-section .bottom-right-cta button:hover span {
    color: #1295D8;
}

.who-we-are-card .main-content-section .bottom-right-cta .cta-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.who-we-are-card .main-content-section .bottom-right-cta button:hover .cta-icon-circle {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.who-we-are-card .main-content-section .bottom-right-cta svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease-in-out;
}

.who-we-are-card .main-content-section .bottom-right-cta button:hover svg {
    transform: translateX(5px);
}

.who-we-are-card .bot-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.625;
}

/* @media queries for responsiveness */
@media (min-width: 640px) {

    .who-we-are-card {
        padding: 2rem;
    }
}

@media (min-width: 768px) {

    .who-we-are-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {

    .who-we-are-card {
        padding: 3rem;
    }

    .who-we-are-card .main-content-section {
        flex-direction: row;
    }

    .who-we-are-card .main-content-section .left-column {
        margin-bottom: 0;
    }
}






/* Styles scoped to the aviation section */
#aviation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#aviation-section .aviation-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
}

#aviation-section .aviation-content-wrapper h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 2rem;
    line-height: 1.25;
}


#aviation-section .circle-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#aviation-section .aviation-content-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
    color: #FF3D00;
    margin-bottom: 0.5rem;
}

#aviation-section .aviation-content-wrapper p {
    font-size: 18px;
    color: #333333;
    max-width: 65ch;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
    #aviation-section .aviation-content-wrapper h1 {
        font-size: 3rem;
    }

    #aviation-section .aviation-content-wrapper h2 {
        font-size: 1.875rem;
    }

    #aviation-section .aviation-content-wrapper p {
        font-size: 1.25rem;
    }

    #aviation-section .circle-border {}
}

@media (min-width: 1024px) {
    #aviation-section .aviation-content-wrapper h1 {
        font-size: 3.75rem;
    }
}

@media (max-width: 480px) {
    #aviation-section .circle-border {}
}

/* Main styles for the deep industry insight section */
#deep-industry-wrapper .container {
    display: flex;
    flex-direction: column;
    max-width: 1154px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

#deep-industry-wrapper .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#deep-industry-wrapper .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

#deep-industry-wrapper .content-section {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#deep-industry-wrapper .content-section h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.25rem;
}

#deep-industry-wrapper .content-section p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#deep-industry-wrapper .content-section p:last-of-type {
    margin-bottom: 0;
}

#deep-industry-wrapper .content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

#deep-industry-wrapper .content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
    color: #444444;
}

#deep-industry-wrapper .content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.25rem;
    line-height: 1;
}

#deep-industry-wrapper .content-section ul li:last-child {
    margin-bottom: 0;
}

/* Media queries */
@media (min-width: 768px) {
    #deep-industry-wrapper .container {
        flex-direction: row;
    }
}


/* Main section styles */
.airlink-section {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.airlink-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.airlink-section .section-header h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;
    margin-bottom: 1rem;
}

.airlink-section .section-header p {
    font-size: 18px;
    color: #333333;
}

.airlink-section .content-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.airlink-section .content-layout .column-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.airlink-section .content-layout .column-right {
    width: 100%;
}

.airlink-section .feature-card {
    background-color: #F2F2F2;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    min-height: 203px;
}

.airlink-section .feature-card .icon-container {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.airlink-section .feature-card .icon-container.blue-bg {
    background-color: #dbeafe;
}

.airlink-section .feature-card .icon-container.red-bg {
    background-color: #fee2e2;
}

.airlink-section .feature-card .icon-container.green-bg {
    background-color: #d1fae5;
}

.airlink-section .feature-card .icon-container img {
    width: 74px;
    height: 74px;
}

.airlink-section .feature-card .icon-container.blue-bg img {
    color: #2563eb;
}

.airlink-section .feature-card .icon-container.red-bg img {
    color: #dc2626;
}

.airlink-section .feature-card .icon-container.green-bg img {
    color: #059669;
}

.airlink-section .feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #002D4B;
    margin-bottom: 0.5rem;
}

.airlink-section .column-left .feature-card p {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

.airlink-section .column-right .feature-card>div>p:first-of-type {
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.airlink-section .feature-card ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    color: #4a5568;
    margin-bottom: 0;
}

.airlink-section .feature-card ul li {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.airlink-section .feature-card ul li strong {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    /* md breakpoint */

    .airlink-section .section-header h1 {
        font-size: 2.5rem;
    }

    .airlink-section .section-header p {
        font-size: 1.125rem;
    }

    .airlink-section .feature-card {
        padding: 2rem;
    }

    .airlink-section .feature-card h3 {
        font-size: 1.5rem;
    }

    .airlink-section .column-left .feature-card p,
    .airlink-section .column-right .feature-card>div>p:first-of-type {
        font-size: 1rem;
    }

    .airlink-section .feature-card ul li {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    /* lg breakpoint */

    .airlink-section .section-header h1 {
        font-size: 3rem;
    }

    .airlink-section .content-layout {
        flex-direction: row;
    }

    .airlink-section .content-layout .column-left {
        width: 50%;
    }

    .airlink-section .content-layout .column-right {
        width: 50%;
    }

    .airlink-section .feature-card {
        margin-bottom: 0;
    }
}


/* Main Section Styles */
.cap-section {
    border-radius: 10px;
    overflow: hidden;
    max-width: 1066px;
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* Card Background and Overlay */
.cap-section .card-background {
    background-image: url('assets/exp-capability.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding: 20px;
}

.cap-section .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Content Section Layout */
.cap-section .content-section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Text Content Styling */
.cap-section .text-content {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-width: 37rem;
}

.cap-section .text-content h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    color: #F3F4F6;
}

.cap-section .text-content p {
    font-size: 16px;
    font-weight: 400;
    color: #F3F4F6;
}

/* Button Group Layout */
.cap-section .button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Button Styling (Anchor Tags) */
.cap-section .button-group a {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-duration: 300ms;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cap-section .button-group .product-button {
    background-color: #ffffff;
    color: #1e3a8a;
}

.cap-section .button-group .product-button:hover {
    background-color: #f3f4f6;
}

.cap-section .button-group .service-button {
    background-color: #ea580c;
    color: #ffffff;
}

.cap-section .button-group .service-button:hover {
    background-color: #c2410c;
}

/* Circle Container and Logo */
.cap-section .circle-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    display: none;
    /* Hidden by default, shown on larger screens */
}

.cap-section .circle {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
}

.cap-section .circle-lg {
    width: 100%;
    height: 100%;
}

.cap-section .circle-md {
    width: 70%;
    height: 70%;
}

.cap-section .circle-sm {
    width: 40%;
    height: 40%;
}

.cap-section .logo-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cap-section .logo-image {
    width: 100px;
    height: auto;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .cap-section .card-background {
        padding: 4rem;
    }

    .cap-section .content-section {
        flex-direction: row;
        align-items: center;
    }

    .cap-section .text-content {}

    .cap-section .text-content h1 {
        font-size: 3rem;
    }

    .cap-section .text-content p {
        font-size: 1.25rem;
    }

    .cap-section .button-group {
        flex-direction: row;
    }

    .cap-section .circle-container {
        display: flex;
        /* Show on medium screens and up */
    }
}


/*=============== SERVICES PAGE ===============*/
/*==============================================================================*/


/* Scoped CSS for the aviation solutions component */
.aviation-solutions-component {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 0 0;
    box-sizing: border-box;
    width: 100%;
}

.aviation-solutions-component .main-header {
    color: #002D4B;
    font-size: 56px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.aviation-solutions-component .main-header span {
    color: #D0D0D0;
    font-weight: 300;
}


.aviation-solutions-component .container {
    max-width: 1162px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #D0D0D0;
    padding: 30px;
}

.aviation-solutions-component h1 {
    color: #1a202c;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.aviation-solutions-component h1 span {
    color: #4299e1;
}

/* Feature Cards Section CSS */
.aviation-solutions-component .feature-cards-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.aviation-solutions-component .card {
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aviation-solutions-component .card-icon {
    width: 60px;
    height: 60px;
    background-color: #ebf8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #4299e1;
}

.aviation-solutions-component .card p {
    color: #002D4B;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

/* Call to Action Buttons CSS */
.aviation-solutions-component .call-to-action-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Button Styles */
.aviation-solutions-component .button-primary {
    background-color: #0A2342;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.aviation-solutions-component .button-primary:hover {
    background-color: #1a3a5e;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.aviation-solutions-component .button-secondary {
    background-color: #FF4500;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.aviation-solutions-component .button-secondary:hover {
    background-color: #e63e00;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* What We Deliver Section CSS */
.aviation-solutions-component .what-we-deliver-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aviation-solutions-component .what-we-deliver-section h2 {
    font-size: 40px;
    font-weight: 500;
    color: #1295D8;
    margin-bottom: 10px;
    text-align: center;
}

.aviation-solutions-component .what-we-deliver-section p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 57rem;
}

.aviation-solutions-component .image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.aviation-solutions-component .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG Icon Styles */
.aviation-solutions-component .icon-airplane {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.aviation-solutions-component .icon-24-7 {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Media Queries */
@media (min-width: 768px) {
    .aviation-solutions-component .feature-cards-section {
        flex-direction: row;
    }
}

@media (min-width: 640px) {
    .aviation-solutions-component .call-to-action-buttons {
        flex-direction: row;
    }
}


/* Scoped styles for the .services-page-container */
.services-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.services-page-container .services-content-wrapper {
    max-width: 1400px;
    width: 100%;
}

.services-page-container .services-content-wrapper h1 {
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    color: #002D4B;
}

.services-page-container .fast-spares-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 80px;
}

.services-page-container .spares-image-section {
    flex-shrink: 0;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
}

.services-page-container .spares-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
}

.services-page-container .spares-text-content {
    flex-grow: 1;
    width: 100%;
    color: #4b5563;
}

.services-page-container .spares-text-content>*+* {
    margin-top: 1rem;
}

.services-page-container .spares-text-content h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    line-height: 1.25;
}

.services-page-container .spares-text-content p {
    font-size: 16px;
    line-height: 1.625;
    color: #333333;
}

.services-page-container .spares-text-content ul {
    list-style-type: disc;
    list-style-position: inside;

    line-height: 1.2;


}

.services-page-container .spares-text-content ul li {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 15px;
}

.services-page-container .quote-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.services-page-container .quote-action-group a {
    background-color: #002D4B;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    text-align: center;
    text-decoration: none;
    outline: none;
    position: relative;
}

.services-page-container .quote-action-group a:hover {
    background-color: #002D4B;
    transform: scale(1.05);
}

.services-page-container .quote-action-group a:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.services-page-container .quote-action-group span {
    color: #FF3D00;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Responsive styles using media queries */
@media (min-width: 640px) {
    .services-page-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .services-page-container .quote-action-group {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .services-page-container .services-content-wrapper {}

    .services-page-container .services-content-wrapper h1 {
        margin-bottom: 2rem;
    }

    .services-page-container .fast-spares-layout {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .services-page-container .spares-image-section {
        width: 50%;
    }

    .services-page-container .spares-text-content {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .services-page-container .spares-image-section {
        width: 40%;
    }

    .services-page-container .spares-text-content {
        width: 60%;
    }
}

/* Why Airlink Spares Section */


/* All styles scoped within .airlink-spare-sec */
.airlink-spare-sec {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.airlink-spare-sec header {
    text-align: center;
    margin-bottom: 3rem;
}

.airlink-spare-sec header h1 {
    font-size: 56px;
    font-weight: 600;
    color: #1295D8;
    margin-bottom: 0.5rem;
}

.airlink-spare-sec header p {
    font-size: 1.125rem;
    color: #4b5563;
}

.airlink-spare-sec .cards-grid-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.airlink-spare-sec .cards-grid-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.airlink-spare-sec .card-item {
    background-color: #EBF3F8;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.airlink-spare-sec .card-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border-color: #ff7e5f;
    transform: translateY(-5px);
}

.airlink-spare-sec .card-item div:first-of-type {
    background-color: #3E4066;
    color: #007bff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease-in-out;
}

.airlink-spare-sec .card-item:hover div:first-of-type {
    background-color: #1295D8;
    color: #ffffff;
}

.airlink-spare-sec .card-item h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.airlink-spare-sec .card-item p {
    color: #333333;
    flex-grow: 1;
    font-weight: 400;
}

/* Asset Management Solutions Section */
.airlink-spare-sec .asset-card {
    background-color: #EBF3F8;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.airlink-spare-sec .asset-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border-color: #ff7e5f;
    transform: translateY(-5px);
}

.airlink-spare-sec .asset-card div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.airlink-spare-sec .asset-card div:first-of-type div:first-of-type {
    background-color: #3E4066;
    color: #007bff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s ease-in-out;
}

.airlink-spare-sec .asset-card:hover div:first-of-type div:first-of-type {
    background-color: #1295D8;
    color: #ffffff;
}

.airlink-spare-sec .asset-card div:first-of-type h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.airlink-spare-sec .asset-card p:first-of-type {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 400;
}

.airlink-spare-sec .asset-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airlink-spare-sec .asset-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.airlink-spare-sec .asset-card ul li::before {
    content: '•';
    color: #007bff;
    font-size: 1.2em;
    line-height: 1;
    margin-right: 0.5rem;
}

.airlink-spare-sec .asset-card div:last-of-type {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.airlink-spare-sec .asset-card div:last-of-type a {
    background-color: #1295D8;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    outline: none;
    border: none;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.airlink-spare-sec .asset-card div:last-of-type a:hover {
    background-color: #1295D8;
    transform: scale(1.05);
}

.airlink-spare-sec .asset-card div:last-of-type a:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.airlink-spare-sec .asset-card div:last-of-type span {
    color: #FF3D00;
    font-weight: 500;
    font-size: 1.125rem;
    white-space: nowrap;
}

.airlink-spare-sec .asset-card div:last-of-type span::before {
    content: '— ';
}

/* Media Queries */
@media (min-width: 768px) {
    .airlink-spare-sec .cards-grid-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .airlink-spare-sec .cards-grid-middle {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Ready to Keep Your Fleet Flight-Ready? */


.flight-ready-sec {
    background-color: #ffffff;

    border-radius: 0.75rem;
    max-width: 1400px;
    width: 100%;

    margin-top: 2rem;
    margin-bottom: 2rem;
    margin: auto;
}

/* Main section card with background image styles */
.fleet-ready-section {
    background-image: url('assets/ready-to-keep.webp');
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    padding: 40px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background overlay styles */
.section-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.7;
    border-radius: 0.5rem;
}

/* Left text content block styles */
.fleet-ready-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    margin-bottom: 2rem;
    max-width: 100%;
}

.fleet-ready-content-block h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.fleet-ready-content-block br {
    display: none;
}

.fleet-ready-content-block p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 48rem;
}

/* Right contact information block styles */
.contact-info-block {
    background-color: #000000;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 100%;
    z-index: 10;
    max-width: 24rem;
}

.contact-info-block>div {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.contact-info-block>div:last-child {
    margin-bottom: 0;
}

.contact-info-block>div>span {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-info-block>div>div>p:first-child {
    font-size: 16px;
    color: #FF3D00;
}

.contact-info-block>div>div>p:last-child {

    font-weight: 400;
    font-size: 14px;
    opacity: 0.6;
}

/* --- Media Queries --- */

@media (min-width: 640px) {
    .fleet-ready-content-block h1 {
        font-size: 2.5rem;
    }

    .fleet-ready-content-block p {
        font-size: 1.125rem;
    }

    .contact-info-block {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .fleet-ready-section {
        padding: 3rem;
        flex-direction: row;
    }

    .fleet-ready-content-block {
        align-items: flex-start;
        text-align: left;
        margin-bottom: 0;
        margin-right: 3rem;

    }

    .fleet-ready-content-block br {
        display: block;
    }

    .contact-info-block {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .fleet-ready-content-block h1 {
        font-size: 3rem;
    }
}


/*   Schedule a call today to get free quote / Need Assistance?  Contact Us Now!  */

/* Main CSS for the section layout and components */
.schedule-call-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1025px;
    margin-left: auto;
    margin-right: auto;
    gap: 2.5rem;
    margin-top: 40px;
    margin-bottom: 56px;

}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.left-section .airplane-svg-wrapper {
    margin-bottom: 0;
}

.left-section h1 {
    font-size: 56px;
    font-weight: 500;
    color: #1295D8;
    line-height: 54px;

}

.left-section h2 {
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 54px;
}

.left-section p {
    color: #333;
    font-size: 16px;
    font-weight: 400;


}

.left-section .contact-info-box {
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 28rem;
    margin-top: 20px;
}

.left-section .contact-info-box .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.left-section .contact-info-box .contact-item span {
    color: #60a5fa;
    margin-right: 0.75rem;
    height: 1.5rem;
    width: 1.5rem;
}

.left-section .contact-info-box .contact-item div p:first-child {
    color: #FF3D00;
    font-size: 16px;
    opacity: 1;
}

.left-section .contact-info-box .contact-item div p:last-child {
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    opacity: 0.6;
}

.right-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 512px;
}

.right-section form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.right-section form .input-group {
    /* No specific styles needed here, just for structure */
}

.right-section form label[for] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.right-section form input[type="text"],
.right-section form input[type="email"],
.right-section form input[type="tel"],
.right-section form input[type="number"],
.right-section form textarea,
.right-section form select {
    width: 100%;
    padding: 1rem;
    background-color: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    outline: none;
    color: #1f2937;
}

.right-section form input[type="text"]:focus,
.right-section form input[type="number"]:focus,
.right-section form textarea:focus,
.right-section form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.right-section form input::placeholder,
.right-section form textarea::placeholder {
    color: #6b7280;
}

.right-section form textarea {
    resize: vertical;
}

.right-section form select {
    color: #6b7280;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.right-section form button[type="submit"] {
    width: 50%;
    margin: auto;
    background-color: #FF4500;
    color: #fff;
    font-weight: 600;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 9999px;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    outline: none;
    border: none;
    margin-top: 10px;
    font-size: 16px;
}

.right-section form button[type="submit"]:hover {
    background-color: #FF4500;
    transform: scale(1.05);
}

.right-section form button[type="submit"]:focus {
    outline: none;
}

.right-section form p {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.right-section form p a {
    color: #6b7280;
    text-decoration: none;
}

.right-section form p a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (min-width: 1024px) {
    .schedule-call-sec {
        flex-direction: row;
        align-items: center;
    }

    .left-section {
        align-items: flex-start;
        text-align: left;

    }

    .left-section h1 {}

    .left-section h2 {}

    .right-section {
        padding: 2.5rem;

    }
}

@media (min-width: 768px) {
    .left-section h1 {}

    .left-section h2 {}

    .right-section {
        padding: 2.5rem;
    }
}


/*=============== PRODUCTS PAGE CSS ===============*/
/*==============================================================================*/


/* Styles for the main container of the supplier section */
.supplier-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    margin-top: 40px;
}

/* Styles for the main content card */
.supplier-sec .content-card {
    background-color: #E9E9E9;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
    width: 100%;
}

/* Styles for the globe icon wrapper */
.supplier-sec .globe-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
}

.supplier-sec .globe-icon-wrapper img {
    width: 100%;
    height: 100%;
}

/* Styles for the text content area */
.supplier-sec .text-content-area {
    flex-grow: 1;
}

.supplier-sec .text-content-area h2 {
    font-size: 20px;
    font-weight: 500;
    color: #002D4B;

}

.supplier-sec .text-content-area p {
    color: #333333;
    font-size: 16px;
    line-height: auto;
}

/* Styles for the timeline connector */
.supplier-sec .timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.supplier-sec .timeline-connector img {
    width: auto;
    height: auto;
    margin-bottom: 10px;
    border-radius: 0.5rem;
}

.supplier-sec .timeline-connector div:nth-of-type(1) {
    width: 0.125rem;
    height: 3rem;
    background-color: #d1d5db;
}

.supplier-sec .timeline-connector div:nth-of-type(2) {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #d1d5db;
    border-radius: 9999px;
}

/* Responsive adjustments for medium screens and up */
@media (min-width: 768px) {


    .supplier-sec .content-card {
        padding: 2rem;
        flex-direction: row;
        column-gap: 2rem;
        row-gap: 0;
    }

    .supplier-sec .globe-icon-wrapper {
        width: 8rem;
        height: 8rem;
    }

    .supplier-sec .text-content-area h2 {
        font-size: 1.5rem;
    }

    .supplier-sec .text-content-area p {
        font-size: 1.125rem;
    }
}


/* --- Aircraft Types We Support --- */
.ac-type-sec {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ac-type-sec header {
    text-align: center;
    margin-bottom: 2rem;
}

.ac-type-sec header h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;

}

.ac-type-sec header p {
    font-size: 18px;
    color: #333333;
}

.ac-type-sec .aircraft-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.ac-type-sec .commercial-aircraft-card,
.ac-type-sec .regional-jets-turboprops-card,
.ac-type-sec .cargo-aircraft-card,
.ac-type-sec .military-government-fleets-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FBFBFB;
    border-radius: 16px;
    overflow: hidden;
    transition-property: all;
    transition-duration: 300ms;
    border: 1px solid #D0D0D0;
}

.ac-type-sec .commercial-aircraft-card:hover,
.ac-type-sec .regional-jets-turboprops-card:hover,
.ac-type-sec .cargo-aircraft-card:hover,
.ac-type-sec .military-government-fleets-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #f97316;
}

.ac-type-sec .card-image-wrapper {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    padding: 16px;
}

.ac-type-sec .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ac-type-sec .card-content {
    padding: 0 18px 18px 18px;
    flex-grow: 1;
}

.ac-type-sec .card-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #002D4B;
    margin-bottom: 0.75rem;
}

.ac-type-sec .card-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.625;
}

/* --- Media Queries (Moved to the bottom and scoped) --- */
@media (min-width: 640px) {

    .ac-type-sec header h1 {
        font-size: 2.25rem;
    }

    .ac-type-sec header p {
        font-size: 1.125rem;
    }

    .ac-type-sec .commercial-aircraft-card,
    .ac-type-sec .regional-jets-turboprops-card,
    .ac-type-sec .cargo-aircraft-card,
    .ac-type-sec .military-government-fleets-card {
        width: calc(50% - 0.75rem);
    }
}

@media (min-width: 768px) {

    .ac-type-sec header h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {

    .ac-type-sec .commercial-aircraft-card,
    .ac-type-sec .regional-jets-turboprops-card,
    .ac-type-sec .cargo-aircraft-card,
    .ac-type-sec .military-government-fleets-card {
        width: calc(25% - 1.125rem);
    }
}


/* Key Product Categories */
.product-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Main CSS: Header section styling */
.product-categories-container header {
    text-align: center;


    padding-bottom: 20px;


}

.product-categories-container .sep-curve-top {
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to bottom, #333333, #ffffff, #ffffff) border-box;
    min-height: 80px;
    position: relative;
    z-index: 0;
    bottom: -58px;

}

.product-categories-container .sep-curve-bot {
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to top, #333333, #ffffff, #ffffff) border-box;
    min-height: 80px;
    position: relative;
    z-index: 0;
    top: -58px;

}

.product-categories-container header h1 {
    font-size: 56px;
    font-weight: 600;
    color: #002D4B;


}

.product-categories-container header p {
    font-size: 18px;
    color: #333333;
    line-height: 1.625;
    max-width: 54rem;
    margin-left: auto;
    margin-right: auto;
}

/* Main CSS: Main content area for categories */
.product-categories-container main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1280px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Main CSS: Individual category item wrapper */
.product-categories-container .category-item-wrapper {
    display: flex;
    align-items: flex-start;

    background-color: #ffffff;
    border-radius: 8px;

    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    z-index: 999;
}

/* Main CSS: Hover effect for category item */
.product-categories-container .category-item-wrapper:hover {
    transform: translateY(-5px);
}

/* Main CSS: Image container styling */
.product-categories-container .category-image-container {
    position: relative;

    border-radius: 8px;
    margin-right: 40px;
}

/* Main CSS: Image styling */
.product-categories-container .category-image-container img {
    object-fit: cover;
    border-radius: 10px;


    transition: border-bottom 0.3s ease-in-out;
}

/* Main CSS: Image inner bottom border hover effect */
.product-categories-container .category-item-wrapper:hover .category-image-container img {
    border-bottom: 8px solid #FF3D00;
    box-sizing: border-box;
}

/* Main CSS: Content container for text */
.product-categories-container .category-content-container {
    flex-grow: 1;
}

/* Main CSS: Heading styling */
.product-categories-container .category-content-container h3 {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

/* Main CSS: Heading color hover effect */
.product-categories-container .category-item-wrapper:hover .category-content-container h3 {
    color: #1295D8;
    font-size: 30px;
}

/* Main CSS: Paragraph text styling */
.product-categories-container .category-content-container p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}


/* Main CSS: Responsive adjustments */
@media (max-width: 768px) {
    .product-categories-container .category-item-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-categories-container .category-image-container img {

        margin-bottom: 15px;
    }

    .product-categories-container header h1 {
        font-size: 2rem;
    }

    .product-categories-container header p {
        font-size: 1rem;
    }
}


/******* Certifications & Compliance *******/

.compliance-sec {
    background-color: #D1E0EE;
    border-radius: 16px;
    max-width: 1400px;
    width: 100%;
    padding: 4rem 8rem 4rem 8rem;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Sourcing Capability Section Styles */
.sourcing-capability-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}

.sourcing-capability-section h2 {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 30px;
}

.sourcing-capability-section p {
    color: #333333;
    line-height: 1.6;
    font-size: 16px;
}

.sourcing-capability-section .link-text {
    color: #FF3D00;
    text-decoration: none;
    font-weight: 500;
}

.sourcing-capability-section .link-text:hover {
    text-decoration: underline;
}

/* Certifications & Compliance Section Styles */
.certifications-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;

}

.certifications-section .certifications-content {
    width: 100%;
    margin-bottom: 1.5rem;
}

.certifications-section .certifications-content h2 {
    font-size: 56px;
    font-weight: 500;
    color: #1295D8;
    line-height: 66px;
    margin-bottom: 1rem;
}

.certifications-section .certifications-content p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.certifications-section .certifications-content .link-text {
    color: #FF3D00;
    text-decoration: none;
    font-weight: 500;
}

.certifications-section .certifications-content .link-text:hover {
    text-decoration: underline;
}

.certifications-section .certifications-logos-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.certifications-section .certifications-logos-container .cert-image-wrapper img {
    width: 200px;
    height: auto;
    border-radius: 0.5rem;
}

/* Ready to Order Section Styles */
.ready-to-order-section {
    background-color: #ebf8ff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.ready-to-order-section h2 {
    font-size: 30px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.ready-to-order-section p {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.ready-to-order-section p:last-of-type {
    margin-bottom: 0;

}

.ready-to-order-section p span {
    color: #1295D8;
    font-weight: 600;
}

.ready-to-order-section .link-text {
    color: #FF3D00;
    text-decoration: none;
    font-weight: 400;
}

.ready-to-order-section .link-text:hover {
    text-decoration: underline;
}

/* Additional Information Section Styles */
.additional-info-section {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.6;
}

.additional-info-section p {
    margin-bottom: 0.75rem;
    color: #333;
}

.additional-info-section p:last-of-type {
    margin-bottom: 0;
}

.additional-info-section .link-text {
    color: #FF3D00;
    text-decoration: none;
    font-weight: 500;
}

.additional-info-section .link-text:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (min-width: 390px) {
    .compliance-sec {
        padding: 6rem;
    }

    .certifications-section .certifications-content h2 {
        font-size: 40px;
        line-height: 40px;
    }

}


/* Media Queries */
@media (min-width: 768px) {
    .certifications-section {
        flex-direction: row;
        align-items: center;
    }

    .certifications-section .certifications-content {
        width: 66.666667%;
        margin-bottom: 0;
    }

    .certifications-section .certifications-logos-container {
        width: 33.333333%;
        justify-content: flex-end;
    }


}


/*=============== CONTACT PAGE ===============*/
/*==============================================================================*/


.assistance-sec {
    max-width: 1300px;
}

/* Main CSS for the office location section */
.office-location-sec {

    display: flex;
    justify-content: center;
    align-items: center;


    box-sizing: border-box;

    border-radius: 12px;
    max-width: 1162px;
    width: 100%;

    flex-direction: column;
    gap: 20px;
    margin: auto;
}

/* Styles for the office locations header section */
.office-location-sec .office-locations-header {
    text-align: center;

}

.office-location-sec .office-locations-header h1 {
    font-size: 56px;
    font-weight: 600;
    color: #000000;
}

/* Styles for the office address details section */
.office-location-sec .office-address-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.office-location-sec .office-address-details span {
    color: #FF3D00;
    font-size: 16px;

}

.office-location-sec .office-address-details p:nth-child(2) {
    font-weight: 600;
    color: #FF3D00;

}

.office-location-sec .office-address-details p:nth-child(3) {
    color: #666;
    line-height: 1.5;
    font-size: 16px;
}

/* Styles for the office map display area */
.office-location-sec .office-map-display {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
    border: 1px solid #D0D0D0;
    padding: 18px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.office-location-sec .office-map-display img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Styles for the ready to order contact block */
.office-location-sec .ready-to-order-contact {
    background-color: #F2F2F2;
    border-radius: 8px;
    padding: 25px;
    max-width: 1162px;
    margin: auto;
    width: 100%;
    margin-bottom: 50px;
}

.office-location-sec .ready-to-order-contact h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.office-location-sec .ready-to-order-contact p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.6;
}

.office-location-sec .ready-to-order-contact p a {
    color: #FF3D00;
    text-decoration: none;
    font-weight: 400;
}

.office-location-sec .ready-to-order-contact p a:hover {
    text-decoration: underline;
}

.office-location-sec .ready-to-order-contact p span {
    font-weight: 600;
    color: #1295D8;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-location-sec {
        padding: 20px;
    }

    .office-location-sec .office-locations-header h1 {
        font-size: 2rem;
    }

    .office-location-sec .ready-to-order-contact h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .office-location-sec {
        padding: 15px;
    }

    .office-location-sec .office-locations-header h1 {
        font-size: 1.8rem;
    }

    .office-location-sec .office-address-details span {
        font-size: 1.8rem;
    }

    .office-location-sec .office-map-display {
        min-height: 200px;
    }

    .office-location-sec .ready-to-order-contact h2 {
        font-size: 1.3rem;
    }

    .office-location-sec .ready-to-order-contact p {
        font-size: 0.9rem;
    }
}






.contact-info-box p a {color: #fff;text-decoration: none;}
#r-cost-container main>div>div:last-of-type a {display: contents;}
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
.who-we-are-card .main-content-section .bottom-right-cta button span:hover { color: #fff;}
.fleet-flying section.info-box {padding: 2.5rem;font-size: 1.4rem;width: 96%;}
.who-we-are-card .main-content-section .bottom-right-cta button:hover span { color: #fff;}
section.contact-form-section.right-section { margin: 100px auto;}
section.contact-form-section.right-section {width: 100%;max-width: 750px;box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;}
section.contact-form-section.right-section .banner-content-box h1 {font-size: 40px;text-align: center;margin-bottom: 32px;font-weight: 600;color: #002D4B;}
#r-cost-container main>div>div:first-of-type p {font-size: 14px;color: #131B24;line-height: 1.5;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 29px;font-weight: 500;color: #131B24;margin-bottom: 10px;line-height: 36px;}
.services-section .header-section {position: sticky;top: 0;background-color: #F2F2F2 !important;z-index: 9999;}
.contact-info-block a {color: #fff;text-decoration: none;}
.hero-banner {height: 47.75rem;width: 100%;max-width: 1560px;margin: auto;margin-top: 20px;}
.hero-banner .hero-background {margin-top: 96px;border-radius: 10px;}
.hero-banner .hero-overlay {border-radius: 10px;}
header.header-section.bg-white {position: fixed;top: 0;background-color: #ffffff;z-index: 9999;width: 100%;box-shadow: none;}
.services-section {z-index: 0000;position: relative;}
/* .inner-hero-container {margin: 120px auto;height: 668px;border-radius: 10px;} */
p.address-info {color: #9ca3af!important;line-height: 20px !important;}

.hero-banner { margin-top: 3px;}
.inner-hero-container {
    margin: 103px auto;
    height: 668px;
    border-radius: 10px;
}

footer.footer-base {width: 100%;max-width: 1560px;margin: auto;}
#r-cost-container header h2 {color: #002D4B;font-size: 56px;font-weight: 600;margin-bottom: 10px;}
.services-section .header-section h3 {font-size: 56px;font-weight: 600;color: #002D4B;}
.our-offerings-section .hdr h4 {font-size: 56px;font-weight: 600;color: #002D4B;}
.airlink-section .section-header h5 {font-size: 56px;font-weight: 600;color: #002D4B;margin-bottom: 1rem;}

.cq-container h6 {font-size: 56px;font-weight: 600;color: #002D4B;margin-bottom: 32px;}
.who-we-are-card .header-section h2 {font-size: 56px;font-weight: 600;color: #002D4B;margin-bottom: 1rem;}
#aviation-section .aviation-content-wrapper h3 {font-size: 56px;font-weight: 600;color: #002D4B;margin-bottom: 2rem;line-height: 1.25;}
.airlink-section .section-header h4 {font-size: 50px;font-weight: 600;color: #002D4B;margin-bottom: 1rem;}
.cap-section .text-content h5 { font-size: 48px;font-weight: 500;line-height: 1.25;color: #F3F4F6;}
.ac-type-sec header h2{font-size: 56px;font-weight: 600;color: #002D4B;}
.product-categories-container header h3 {font-size: 56px;font-weight: 600;color: #002D4B;}
.services-section .header-section h5 {font-size: 56px;font-weight: 600;color: #002D4B;}
.aviation-solutions-component h2 {color: #1a202c;font-size: 2.25rem;font-weight: 700;text-align: center;margin-bottom: 40px;}
.services-page-container .services-content-wrapper h3 {font-size: 56px;font-weight: 600;text-align: center;color: #002D4B;}
.airlink-spare-sec header h4 {font-size: 56px;font-weight: 600;color: #1295D8;margin-bottom: 0.5rem;}
.fleet-ready-content-block h5 { font-size: 40px;font-weight: 600;margin-bottom: 1rem;line-height: 1.25;}
.office-location-sec .office-locations-header h2 {font-size: 56px;font-weight: 600;color: #000000;}
.testimonial-wrapper {max-width: 1320px;padding: 3rem;padding-top: 0px;margin-bottom: 50px; padding-bottom: 0px;}
.header-section-client h3 {font-size: 56px;font-weight: 600;color: #002D4B;text-align: center;margin-top: 50px;}
#r-cost-container header h2 span { font-size: 46px;}


    .testimonial-wrapper .content-section {
        align-items: center;
                text-align: center;
    }


.testimonial-wrapper .pagination-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    position: absolute;
    bottom: 2rem;
    z-index: 99;
    margin: auto;
    left: 54%;
    bottom: 21%;
}


 @media (min-width: 1201px) and (max-width: 1600px) {
.who-we-are-card .main-content-section .right-column img {height: 100%;object-position: center;}
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;top: 50%;transform: translate(-50%, -50%);left: 50%; display: contents;}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
.services-section .header-section {position: inherit;}
.airlink-spare-sec { margin: 40px 40px;}
.fleet-ready-section {margin: 0px 40px;}
.services-page-container {margin: 0px 40px; padding: 0px;}
.hero-container {margin: 0 40px;}
.services-page-container .services-content-wrapper h1 { margin-bottom: 30px; margin-top: 30px; font-size: 40px;}
.right-section form button[type="submit"] {width: 100%;}
.ac-type-sec { margin: 0px 40px;}
.ac-type-sec header h1 {font-size: 40px;}
.product-categories-container header h1 {font-size: 40px;}
.services-section .header-section h1 {font-size: 40px;}
.product-categories-container {margin: 0px 40px; padding: 0px;}
.services-section {padding: 60px;margin: 0px 40px;}
.compliance-sec {padding: 6rem;margin: 40px 40px;max-width: fit-content;}
.w-are-container {padding: 0 20px;}
#deep-industry-wrapper .container {flex-direction: row;max-width: fit-content;}
.airlink-section {max-width: 81rem;}
.who-we-are-card .header-section h1 {font-size: 40px;}
#aviation-section .aviation-content-wrapper h1 {font-size: 40px;}
.airlink-section .section-header h1 {font-size: 40px;}
.left-section {align-items: flex-start;text-align: left;padding: 0px;}
.office-location-sec {max-width: 95%;}
.office-location-sec .ready-to-order-contact {max-width: 100%;}
.aviation-solutions-component .main-header {font-size: 40px;}
.airlink-spare-sec header h1 {font-size: 40px;}
.who-we-serve-section .w-are-container h2 {font-size: 40px;}
.hero-banner .hero-main-text-container h1 {font-size: 45px;}
#r-cost-container header h1 {font-size: 40px;}
#r-cost-container header h1 span {font-size: 40px;}
.our-offerings-section .hdr h1 {font-size: 40px;}
.fleet-flying .hero-content h3 {font-size: 40px;}
.left-section h2 {font-size: 40px;}
.office-location-sec .office-locations-header h1 {font-size: 40px;}
.assistance-sec {max-width: 100%; padding: 0px 40px;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 18px;font-weight: 500;color: #131B24;margin-bottom: 10px;line-height: 18px;}
#r-cost-container main {display: flex;flex-wrap: wrap;gap: 20px;margin-bottom: 20px;margin: 0px 20px;}
.who-we-serve-section .client-grid-container {grid-template-columns: repeat(2, 1fr);}
div#deep-industry-wrapper {padding: 0px 40px;}
.aviation-solutions-component .container {padding: 40px; max-width: 90%;}
header.header-section.bg-white {position: fixed;top: 0;background-color: #ffffff;z-index: 9999; left: 0px;}
.hero-container {margin: 0px 15px;}
.navbar-inner {padding: 0 30px;}
.hero-banner { margin-top: 0px;}
.inner-hero-container {margin: 100px auto;height: 668px;border-radius: 10px;}
footer.footer-base {width: 100%;max-width: fit-content;margin: auto;margin-left: 40px !important;margin-right: 40px !important;}
.testimonial-wrapper .pagination-dots {left: 55%;bottom: 21%;}

 }

@media (min-width: 1025px) and (max-width: 1200px) {
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;top: 50%;transform: translate(-50%, -50%);left: 50%; display: contents;}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
.who-we-are-card .header-section {position: inherit;}
#deep-industry-wrapper { margin: 0 60px;}
.airlink-section .content-layout {flex-direction: row;margin: 0px 60px;}
.cap-section {max-width: max-content;}
.ac-type-sec header h1 { font-size: 40px;}
.ac-type-sec .aircraft-cards-grid {padding: 0 15px;}
.services-section .header-section h1 {font-size: 40px;}
.product-categories-container header h1 {font-size: 40px;}
.inner-hero-container .banner-content-box h1 {font-size: 20px;}
.aviation-solutions-component .main-header {font-size:40px;}
.services-page-container .services-content-wrapper h1 {font-size: 40px;}
.services-page-container .quote-action-group {flex-direction: column;}
.airlink-spare-sec { margin: 40px 40px;}
.fleet-ready-section {margin: 0px 40px;}
.services-page-container { margin: 0px 40px 40px; padding: 0px;}
.fleet-ready-content-block br {display: none;}
.office-location-sec {padding: 20px;}
.left-section h2 {font-size: 40px;}
.office-location-sec .office-locations-header h1 {font-size: 40px;}
.footer-base .did-you-know-follow-us-section { padding-top: 4rem; padding-bottom: 4rem;}
#r-cost-container header p {width: 90%;}
.right-section form button[type="submit"] {width: 100%;}
.assistance-sec {max-width: 100%;padding: 0px 40px;}
.left-section {padding: 0px;}
#r-cost-container main {display: flex;flex-wrap: wrap;gap: 20px;margin-bottom: 20px;margin: 0px 20px;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 18px;font-weight: 500;color: #131B24;margin-bottom: 10px;line-height: 18px;}
#r-cost-container header p {padding: 15px;}
.who-we-serve-section .client-grid-container {grid-template-columns: repeat(2, 1fr);}
#r-cost-container header h1 {font-size: 40px;}
.aviation-solutions-component .container {padding: 40px; max-width: 90%;}
.testimonial-wrapper .pagination-dots { left: 64%; transform: translateX(-50%);}
header.header-section.bg-white {position: fixed;top: 0;background-color: #ffffff;z-index: 9999; left: 0px;}
 .hero-container {margin: 0px 15px;}

 #r-cost-container header h2 {font-size: 30px;}
.services-section .header-section h3 {font-size: 30px;}
.our-offerings-section .hdr h4 {font-size: 30px;}
.airlink-section .section-header h5  {font-size: 30px;}
.cq-container h6 {font-size: 30px;}

.who-we-are-card .header-section h2 {font-size: 30px;}
#aviation-section .aviation-content-wrapper h3 {font-size: 30px;}
.airlink-section .section-header h4 {font-size: 30px;}

.ac-type-sec header h2 {font-size: 30px;}
.product-categories-container header h3 {font-size: 30px;}
.services-section .header-section h5 {font-size: 30px;}
.aviation-solutions-component .main-header  {font-size: 30px;}
.services-page-container .services-content-wrapper h3 { font-size: 30px; margin-bottom: 10px;}
.airlink-spare-sec header h4  {font-size: 30px;}
.fleet-ready-content-block h5  {font-size: 30px;}
.left-section h2 {font-size: 30px;line-height: 35px;}
.office-location-sec .office-locations-header h2 {font-size: 30px;}
.header-section-client h3 {font-size: 30px;}
footer.footer-base {width: 100%;max-width: fit-content;margin: auto;margin-left: 40px !important;margin-right: 40px !important;}

}

@media (min-width: 576px) and (max-width: 1024px) {
.header-section .mobile-menu-toggle button {background: none; border: none; cursor: pointer;}
nav.mobile-nav-links a { text-decoration: none;}
.header-section .mobile-menu-close-container button {background: none;border: none; cursor: pointer;} 
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;top: 50%;transform: translate(-50%, -50%);left: 50%; display: contents;}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
.who-we-are-card .header-section {position: inherit;}
.who-we-are-card .main-content-section .right-column img {width: 100%;height: 100%;object-fit: cover;border-radius: 0.5rem;object-position: center;}
#deep-industry-wrapper { margin: 0 40px;}
.airlink-section .content-layout {flex-direction: row;margin: 0px 40px;}
.cap-section {max-width: max-content;}
.inner-hero-container .banner-content-box h1 {font-size: 16px;line-height: 25px;}
.compliance-sec {padding: 30px;}
.certifications-section .certifications-content h2 {font-size: 30px; line-height: 30px;}
.supplier-sec .content-card {padding: 30px;}
.ac-type-sec header h1 {font-size: 30px;}
.ac-type-sec .card-content h3 {margin-bottom: 7px;}
.ac-type-sec .aircraft-cards-grid {padding: 0 40px;}
.product-categories-container .category-content-container h3 {font-size: 22px;}
.product-categories-container .category-image-container img {width: auto;}
.product-categories-container .category-image-container {margin-right: 0px;}
.product-categories-container header h1 { font-size: 30px;}
.services-page-container .quote-action-group {flex-direction: column;}
.aviation-solutions-component .main-header {font-size: 30px;}
.airlink-spare-sec { margin: 0px 40px 40px;}
.fleet-ready-section {margin: 0px 40px 40px;}
.fleet-ready-section {padding: 20px;flex-direction: row;}
.fleet-ready-content-block h1 {font-size: 40px;}
.services-page-container { margin: 0px 40px 40px; padding: 0px;}
.office-location-sec {padding: 40px;}
.left-section h2 {font-size: 40px;}
.office-location-sec .office-locations-header h1 {font-size: 40px;}
.right-section form button[type="submit"] {width: 100%;}
.services-section .header-section h1 {font-size: 30px;}
.services-section {padding: 60px;margin: 0px 40px;}
.compliance-sec {max-width: fit-content;margin: 40px 40px;}
.footer-base {padding-left: 1.5rem;padding-right: 1.5rem;margin: 0px 40px 40px;}
.our-offerings-section .offering-wrap { padding: 0px 40px;}
.fleet-flying { padding: 0 40px;}
.cq-container {padding: 20px;flex-direction: row;margin: 0px 40px;max-width: fit-content;}
.page-wrapper {max-width: 100% !important;margin-left: 0px!important;margin-right: 0px!important;}
.w-are-container {padding: 0 40px;}
#r-cost-container main {margin: 0px 20px;padding: 0px 20px;}
.our-offerings-section .hdr h1 {font-size: 30px;margin-top: 15px;}
#r-cost-container header h1 {font-size: 30px;}
.who-we-serve-section .w-are-container h2 {font-size: 30px;}
.hero-banner .hero-main-text-container h1 {font-size: 39px;}
.airlink-section .section-header h1 {font-size: 30px; margin-top: 30px;}
.cq-container>div:first-child>h1 {font-size: 30px;}
.fleet-flying .hero-content h3 {font-size: 30px;}
#r-cost-container main {margin: 0px 0px;padding: 0px 40px;}
.intro-section, .who-we-serve-section {padding-bottom: 50px;margin: 0 0px;}
.who-we-are-card .header-section h1 {font-size: 30px;margin-top: 15px;margin-bottom: 15px;}
#aviation-section .aviation-content-wrapper h1 {font-size: 30px;}
#deep-industry-wrapper .content-section h2 {font-size: 27px;font-weight: 600;margin-bottom: 0px;}
.airlink-section .feature-card h3 {font-size: 20px;font-weight: 700;}
.airlink-section .feature-card {margin-bottom: 0;height: 100%;}
.footer-base .did-you-know-content h3 {font-size: 30px;}
.footer-base {padding-top: 2rem; padding-bottom: 2rem;}
.who-we-are-card {padding: 0px 40px;}.hero-container {margin: 0px 15px;}
.with-section {margin-bottom: 20px;}
.section-header { padding: 0px 40px;}
.airlink-section .content-area {flex-direction: row;padding: 0 40px;}
.aviation-solutions-component .container {padding: 40px; max-width: 90%;}
.product-categories-container {max-width: 1400px;margin: 0 auto;padding: 40px;}
.left-section {padding: 0px;}
.assistance-sec {max-width: 1300px;padding: 0px 40px; flex-direction: row;}
.left-section .contact-info-box .contact-item div p:first-child {text-align: left;}
.left-section .contact-info-box .contact-item div p:last-child {text-align: left;}
.left-section .contact-info-box .contact-item span {margin-right: 20px;}
#r-cost-container header h1 span {font-size: 30px;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 18px;font-weight: 600;color: #131B24;margin-bottom: 10px;line-height: 28px;}
.cq-container>div:first-child>div[onclick]>div:first-child>h3 {font-size: 17px;}
.fleet-flying section.info-box p {font-size: 19px;color: #ffffff;}
.airlink-section .benefits-list-container .with-section li {font-size: 15px;}
.airlink-section .benefits-list-container .before-section li  {font-size: 15px;}
.our-offerings-section .txt-box h3 {font-size: 20px;}
.our-offerings-section .btn span:first-of-type {font-size: 20px !important;}
.our-offerings-section .arrow-box {position: absolute;bottom: 1px;right: -1.9rem;}
.footer-base .contact-item a {font-size: 13px;}
.airlink-spare-sec header h1 {font-size: 30px;}
.services-page-container .services-content-wrapper h1 {font-size: 30px; margin: 15px 15px;}
.aviation-solutions-component .what-we-deliver-section h2 {font-size: 30px;}
.office-location-sec .ready-to-order-contact {margin-bottom: 0px;}
 .header-section .desktop-nav-links {display: none;}
.header-section .mobile-menu-toggle {display: flex; cursor: pointer;}
#mobile-menu.hidden { display: block;}
.header-section .mobile-nav-links a, .header-section .mobile-nav-item>span {font-size: 16px;}
.header-section .mobile-menu-close-container {display: flex;justify-content: flex-start;margin-bottom: 1.5rem;}
.hero-banner .bottom-right-cta button span {color: #ffffff;font-weight: 500;font-size: 17px;transition: color 0.3s ease-in-out;}
#r-cost-container header p {padding: 15px;}
.who-we-serve-section .client-grid-container {grid-template-columns: repeat(2, 1fr);}
.product-categories-container .category-content-container {flex-grow: 1;margin-left: 20px;}
.testimonial-wrapper .pagination-dots { left: 65%; transform: translateX(-50%);}
.header-section {padding-inline: 0;box-shadow: none!important;}
.services-section .card-content {min-height: 300px;}
header.header-section.bg-white {position: fixed;top: 0;background-color: #ffffff;z-index: 9999; left: 0px;}

#r-cost-container header h2 {font-size: 30px;}
.services-section .header-section h3 {font-size: 30px;}
.our-offerings-section .hdr h4 {font-size: 30px;}
.airlink-section .section-header h5  {font-size: 30px;}
.cq-container h6 {font-size: 30px;}

.who-we-are-card .header-section h2 {font-size: 30px;}
#aviation-section .aviation-content-wrapper h3 {font-size: 30px;}
.airlink-section .section-header h4 {font-size: 30px;}


.ac-type-sec header h2 {font-size: 30px;}
.product-categories-container header h3 {font-size: 30px;}
.services-section .header-section h5 {font-size: 30px;}
.aviation-solutions-component .main-header  {font-size: 30px;}
.services-page-container .services-content-wrapper h3 { font-size: 30px; margin-bottom: 10px;}
.airlink-spare-sec header h4  {font-size: 30px;}
.fleet-ready-content-block h5  {font-size: 30px;}
.left-section h2 {font-size: 30px;line-height: 35px;}
.office-location-sec .office-locations-header h2 {font-size: 30px;}
.header-section-client h3 {font-size: 30px;}
footer.footer-base {width: 100%;max-width: fit-content;margin: auto;margin-left: 40px !important;margin-right: 40px !important;}

}

@media (min-width: 768px) and (max-width: 971px) {
.header-section .mobile-menu-toggle button {background: none;border: none; cursor: pointer;}
.header-section .mobile-menu-close-container button {background: none;border: none; cursor: pointer;} 
nav.mobile-nav-links a { text-decoration: none;}
.who-we-are-card .header-section {position: inherit;}
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;top: 50%;transform: translate(-50%, -50%);left: 50%;}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
.inner-hero-container .banner-content-box {min-width: auto; max-width: 100%;}
#deep-industry-wrapper .content-section {padding: 0 15px;         margin-bottom: 50px;}
.airlink-section  { padding: 0px 40px;}
.intro-section, .who-we-serve-section {padding-bottom: 50px;margin: auto;padding: 2.5rem;}
.w-are-container {padding: 0px;}
.cap-section {max-width: fit-content; margin: 40px 40px;}
.airlink-section .content-layout {flex-direction: column;margin: 0px 60px;}
.inner-hero-container .banner-content-box h1 {font-size: 16px;line-height: 25px;}
.compliance-sec {padding: 30px;}
.certifications-section .certifications-content h2 {font-size: 30px; line-height: 30px;}
.supplier-sec .content-card {padding: 30px;}
.ac-type-sec header h1 {font-size: 30px;}
.ac-type-sec .card-content h3 {margin-bottom: 7px;}
.ac-type-sec .aircraft-cards-grid {padding: 0 40px;}
.product-categories-container .category-content-container h3 {font-size: 22px;}
.product-categories-container .category-image-container img {width: 100%;}
.product-categories-container .category-image-container {margin-right: 0px;}
.product-categories-container header h1 { font-size: 28px;}
.aviation-solutions-component .main-header {font-size: 30px;}
.aviation-solutions-component .what-we-deliver-section h2 {font-size: 28px;}
.services-page-container .spares-text-content h2 {font-size: 20px;}
.services-page-container .services-content-wrapper h1 {font-size: 30px;margin-top: 15px;margin-bottom: 15px;}
.services-page-container .quote-action-group {flex-direction: column;}
.airlink-spare-sec header h1 {font-size: 30px;}
.airlink-spare-sec .card-item h2 {font-size: 17px;}
.airlink-spare-sec .cards-grid-top {grid-template-columns: repeat(3, 1fr);margin: 15px 0px;}
.airlink-spare-sec .cards-grid-middle {grid-template-columns: repeat(2, 1fr);margin: 15px 0px;}
.airlink-spare-sec .asset-card {margin: 0px 0px;}
.flight-ready-sec {margin: 0px 0px; max-width: fit-content;}
.fleet-ready-content-block h1 { font-size: 30px;}
.left-section h2 {font-size: 30px;}
.left-section .contact-info-box .contact-item span { margin-right: 21px;}
.office-location-sec .office-locations-header h1 {font-size: 30px;}
.left-section .contact-info-box .contact-item div p:first-child {text-align: left;}
.left-section .contact-info-box .contact-item div p:last-child {text-align: left;}
.right-section form button[type="submit"] {width: 100%;}
.cq-container>div:first-child>div[onclick]>div:first-child>h3 {font-size: 15px;}
.fleet-flying section.info-box p {font-size: 17px;}
.our-offerings-section .btn span:first-of-type {font-size: 19px !important;}
.our-offerings-section .btn {padding: 10px;}
.our-offerings-section .txt-box h3 {font-size: 17px;margin-bottom: 10px;}
.hero-banner .hero-sub-features span:first-of-type, .hero-banner .hero-sub-features span:nth-of-type(2) {padding-right: 10px;}
.hero-banner .hero-sub-features {gap: 12px;font-size: 1.5rem;}
#r-cost-container header h1 span {font-size: 30px;}
#r-cost-container main>div {width: 100%;max-width: 358px;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 18px;font-weight: 600;line-height: 17px;}
.intro-section, .who-we-serve-section {padding: 20px 40px;}
.who-we-are-card { padding: 0px 40px;}
.who-we-are-card .header-section h1 { font-size: 30px; margin-bottom: 10px; margin-top: 20px;}
#aviation-section .aviation-content-wrapper h1 {font-size: 30px;}
#deep-industry-wrapper {padding: 0px 40px;}
#deep-industry-wrapper {margin: 0 0px;}
#deep-industry-wrapper .content-section h2 {font-size: 20px;font-weight: 600;color: #000;margin-bottom: 10px;}
.hero-container { margin: 0 15px;}
.who-we-are-card .main-content-section .left-column ul {gap: 7px;}
.cap-section .text-content h1 { font-size: 30px;}
.cap-section .text-content p {font-size: 17px;}
.footer-base .did-you-know-content h3 {font-size: 30px;}
.who-we-are-card .main-content-section { gap: 1rem;}
.footer-base .did-you-know-follow-us-section {padding-top: 3rem; padding-bottom: 3rem;}

.header-section .logo-container a img {width: 100%;max-width: 130px; margin: 10px;}
.airlink-spare-sec .card-item {padding: 14px;}
.services-section .card-content h3 {font-size: 17px;font-weight: 600;margin-bottom: 10px;margin-top: 10px;}
.services-section {padding: 20px;margin: 0px 40px;}
#r-cost-container main {margin: 0px 0px;padding: 0px 40px;  justify-content: space-evenly; align-items: unset;}
#r-cost-container main .global-network, #r-cost-container main .options-quickly, #r-cost-container main .parts-fast {flex: 1 1 40%;}
.assistance-sec {max-width: 1300px; flex-direction: column;}
#r-cost-container main>div img {object-fit: cover;}
#r-cost-container main>div>div:last-of-type a span {width: 100%;}
#r-cost-container header p {padding: 15px;}
.aviation-solutions-component .container {padding: 40px; max-width: 90%;}
.testimonial-wrapper .pagination-dots { left: 66%; transform: translateX(-50%);}
.airlink-section .before-section h2 {margin-top: 30px;margin-bottom: 30px;}  
.services-page-container .fast-spares-layout { margin-bottom: 20px;}
.services-section .card-content {min-height: 260px;}
.hero-banner { height: 30rem !important; padding: 0 20px;}
header.header-section.bg-white {position: fixed;width: 100%;z-index: 9999; left: 0px;}
.inner-hero-container {height: 384px;}

#r-cost-container header h2 {font-size: 23px;}
.services-section .header-section h3 {font-size: 23px;}
.our-offerings-section .hdr h4 {font-size: 23PX;}
.airlink-section .section-header h5  {font-size: 23PX;}
.cq-container h6 {font-size: 23PX;}

.who-we-are-card .header-section h2 {font-size: 23PX;}
#aviation-section .aviation-content-wrapper h3 {font-size: 23PX;}
.airlink-section .section-header h4 {font-size: 23PX;}


.ac-type-sec header h2 {font-size: 23PX;}
.product-categories-container header h3 {font-size: 23PX;}
.services-section .header-section h5 {font-size: 23PX;}
.aviation-solutions-component .main-header { font-size: 23px;}
.services-page-container .services-content-wrapper h3 {font-size: 23px;margin-bottom: 10px;}
.airlink-spare-sec header h4 {font-size: 23px;}
.fleet-ready-content-block h5 {font-size: 23px;}
.left-section h2 {font-size: 23px;line-height: 35px;}
.office-location-sec .office-locations-header h2 {font-size: 23px;}
.header-section-client h3 {font-size: 23px;}
footer.footer-base {width: 100%;max-width: fit-content;margin: auto;margin-left: 40px !important;margin-right: 40px !important;}

}


@media (max-width: 767px) {
header.header-section.bg-white {position: fixed;width: 100%;z-index: 9999; left: 0px;}
.services-section .card-content h3 {margin-bottom: 8px;}
.services-section .service-card {position: relative; z-index: 99;}
.services-section .header-section {position: inherit;}
.airlink-section .section-header h1 {font-size: 30px ;}
.airlink-section .section-header p {font-size: 16px ;}
.fleet-flying .hero-content h3 {font-size: 30px;}
#mobile-menu.hidden { display: block;}
.hero-container .inner-hero-container .banner-content-box {min-width: fit-content;}
.header-section .mobile-menu-toggle button {border: none; background: transparent; cursor: pointer;}
.who-we-are-card .header-section { margin-bottom: 2rem; position: inherit;}
.header-section .mobile-menu-close-container button {border: none;background: transparent; cursor: pointer;}
.header-section .mobile-nav-links a, .header-section .mobile-nav-item>span {text-decoration: none;}
.who-we-are-card .header-section h1 {font-size:30px!important; margin-bottom: 10px;}   
/* .who-we-are-card .main-content-section .bottom-right-cta {position: absolute;left: 18px;top: auto;}   */
.who-we-are-card .main-content-section .bottom-right-cta {position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);width: 100%; display: contents;}
.who-we-are-card .main-content-section .right-column .image-overlay a {padding: 0px;}
#aviation-section .aviation-content-wrapper h1 {font-size: 30px;}
div#deep-industry-wrapper { padding: 15px 15px 0px 15px; }
#deep-industry-wrapper .content-section {padding: 10px;}
.airlink-section .content-layout {margin: 0 15px;}
.cap-section {max-width: min-content;}
.inner-hero-container .banner-content-box h1 {font-size: 16px;line-height: 25px;}
.compliance-sec {padding: 30px;}
.certifications-section .certifications-content h2 {font-size: 30px; line-height: 30px;}
.supplier-sec .content-card {padding: 30px;}
.ac-type-sec header h1 {font-size: 30px;}
.ac-type-sec .card-content h3 {margin-bottom: 7px;}
.ac-type-sec .aircraft-cards-grid {padding: 0 15px;}
.product-categories-container .category-content-container h3 {font-size: 22px;}
.product-categories-container .category-image-container img {width: 100%;}
.product-categories-container .category-image-container {margin-right: 0px;}
.product-categories-container header h1 { font-size: 28px;}
.aviation-solutions-component .main-header {font-size: 30px;}
.aviation-solutions-component .what-we-deliver-section h2 {font-size: 19px;}
.services-page-container .services-content-wrapper h1 {font-size: 30px; margin-bottom: 20px;}
.services-page-container .fast-spares-layout { padding: 0px 15px; margin-bottom: 30px;}
.services-page-container .spares-text-content h2 {font-size: 20px;}
.airlink-spare-sec header h1 {font-size: 30px;}
.fleet-ready-content-block h1 {font-size: 30px;}
.footer-base .did-you-know-content h3 {font-size: 30px;}
.airlink-spare-sec { margin: 24px 24px;}
.fleet-ready-section {margin: 0px 24px;}
.footer-base .copyright-policy-section p {text-align: center;}
.airplane-svg-wrapper img {width: 100%;}
.left-section h2 {font-size: 30px; line-height: 35px;}
.left-section .contact-info-box .contact-item span { margin-right: 21px;}
.left-section .contact-info-box .contact-item div p:first-child {text-align: left;}
.left-section .contact-info-box .contact-item div p:last-child {text-align: left;}
.right-section form button[type="submit"] {width: 100%;}
#r-cost-container main>div>div:first-of-type h2 {font-size: 19px;line-height: 25px;font-weight: 600;}
#deep-industry-wrapper .content-section h2 {font-size: 20px;font-weight: 600;margin-bottom: 10px;margin-top: 10px;line-height: 20px;}
.airlink-section .feature-card h3 {font-weight: 600;}
.assistance-sec {max-width: 1300px; flex-direction: column;}
#r-cost-container header {text-align: center;padding: 32px 40px;}
.banner-content-box h1 {font-size: 30px;}
.hero-banner .bottom-right-cta {bottom: 2rem;right: 4rem !important;left: 0px;}
.hero-banner .bottom-right-cta button {padding-left: 0px;}
#r-cost-container header h1 span {font-size: 30px;}
.ac-type-sec header p {padding: 0px 15px;}
.office-location-sec .ready-to-order-contact {margin-bottom: 28px;}
.header-section .mobile-menu-close-container {display: flex;justify-content: flex-start;margin-bottom: 1.5rem;}
.header-section .mobile-menu {width: auto;}
.aviation-solutions-component .container {max-width: 90%;}
section.contact-form-section.right-section .banner-content-box h1 {font-size: 30px;}
.services-section .card-content {min-height: auto;}
.hero-banner { height: 30rem !important; padding: 0 20px;}
.hero-banner .hero-main-text-container {margin-bottom: 6rem;}
.inner-hero-container {height: 384px;}

#r-cost-container header h2 {font-size: 23px;}
.services-section .header-section h3 {font-size: 23px;}
.our-offerings-section .hdr h4 {font-size: 23PX;}
.airlink-section .section-header h5  {font-size: 23PX;}
.cq-container h6 {font-size: 23PX;}

.who-we-are-card .header-section h2 {font-size: 23PX;}
#aviation-section .aviation-content-wrapper h3 {font-size: 23PX;}
.airlink-section .section-header h4 {font-size: 23PX;}

.ac-type-sec header h2 {font-size: 23PX;}
.product-categories-container header h3 {font-size: 23PX;}
.services-section .header-section h5 {font-size: 23PX;}
.aviation-solutions-component .main-header { font-size: 23px;}
.services-page-container .services-content-wrapper h3 {font-size: 23px;margin-bottom: 10px;}
.airlink-spare-sec header h4 {font-size: 23px;}
.fleet-ready-content-block h5 {font-size: 23px;}
.left-section h2 {font-size: 23px;line-height: 35px;}
.office-location-sec .office-locations-header h2 {font-size: 23px;}
.header-section-client h3 {font-size: 23px;}
footer.footer-base {width: 100%;max-width: fit-content;margin: auto;margin-left: 20px !important;margin-right: 20px !important;}
.testimonial-wrapper .pagination-dots {
  
    bottom: 0%;
}
}






