.about-section {
    padding: 2rem 0rem 4rem 0;
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
}

.about-header {
    text-align: center;
}

    .about-header .subtitle {
        color: var(--primary-color);
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 1.3rem;
    }

    .about-header h2 {
        font-size: 2.7rem;
        color: var(--secondary-dark);
    }

.about-content h3 {
    font-size: 3rem;
    color: var(--secondary-dark);
}

    .about-content h3 span {
        color: var(--primary-color);
    }

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.about-content p {
    color: var(--secondary-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 30px;
}

    .about-features ul {
        list-style: none;
        padding: 0;
    }

    .about-features li {
        margin-bottom: 12px;
        font-weight: 600;
        position: relative;
        padding-left: 2rem;
    }

        .about-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }


.about-btn {
    display: inline-block;
    background: #b63d00;
    padding: 10px 60px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s ease;
    font-size: 1.4rem;
}

    .about-btn:hover {
        background: var(--secondary-dark);
        color: var(--primary-color);
    }

.about-image {
    transform: translateX(200px);
    opacity: 0;
    transition: 1s ease;
}

    .about-image img {
        width: 100%;
        border-radius: 10px;
        ;
    }


.about-section.active .about-image {
    transform: translateX(0);
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

@media (max-width: 992px) {
    .about-header {
        margin-top: 1rem !important;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        transform: translateX(0);
        opacity: 1;
        margin-top: 3rem;
    }


    .about-features {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 30px;
    }

        .about-features ul {
            width: 50%;
            text-align: left;
        }

        .about-features li {
            padding-left: 0;
        }

            .about-features li::before {
                position: static;
                margin-right: 8px;
            }

    .about-content h3 {
        font-size: 2rem;
        display: none;
    }

    .about-content p {
        text-align: justify;
        hyphens: auto;
        margin-bottom: 20px;
    }
}


/* ===============================
   Airport Transfers Section
=================================*/
.airport-section {
    padding: 5rem 0 4rem 0;
}

.airport-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}


.airport-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e2a39;
}

.airport-intro {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.airport-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1e2a39;
}

.airport-content ul {
    margin-bottom: 2.5rem;
}

    .airport-content ul li {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        color: #444;
    }

.airport-content h4 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e2a39;
}

.airport-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.airport-image img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .airport-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .airport-content h2 {
        font-size: 3.2rem;
    }
}

/* feature section */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

    .row > div {
        padding-left: 15px;
        padding-right: 15px;
    }

.col-md-6 {
    width: 50%;
}


.col-md-3 {
    width: 25%;
}


.container-fluid {
    width: 100%;
    margin: 0 auto;
}


.content-section {
    padding: 4rem 0rem 4rem 0;
}

.section-heading {
    font-size: 2.7rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

    .content-block ul li {
        padding: 5px 0;
        position: relative;
        padding-left: 30px;
    }

        .content-block ul li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

.transfer-section {
    padding: 4rem 0rem 4rem 0
}

.image-grid {
    position: relative;
}

.img-box {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .img-box.large img,
    .img-box.small img {
        width: 100%;
        height: auto;
        display: block;
    }

    .img-box.small {
        width: 48%;
        display: inline-block;
    }

.highlight-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #32d4e2;
    padding: 25px 35px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

    .highlight-box h3 {
        margin: 0;
        font-size: 24px;
    }

.orange-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

    .service-list li {
        margin: 12px 0;
        font-size: 16px;
    }

    .service-list .dot {
        height: 10px;
        width: 10px;
        background: var(--main-color);
        display: inline-block;
        border-radius: 50%;
        margin-right: 10px;
    }

.custom-btn {
    background: #212529;
    border: none;
    padding: 14px 28px;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
}

.features-section {
    padding: 30px 9px;
    background: #f4f4f4;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    ;
    height: 100%;
}

    .feature-card:hover {
        transform: scale(1.02);
    }

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .row {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .col-md-3 {
        width: 100%;
    }

    .content-section {
        padding: 3rem 0rem 4rem 0;
        text-align: justify;
        hyphens: auto;
        --webkit-hyphens: auto;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .img-box.small {
        width: 48%;
    }

    .highlight-box {
        padding: 10px 20px;
    }

    .content-block ul li {
        padding: 0;
        position: relative;
        padding-left: 23px;
    }

    .features-section {
        padding: 3rem 0rem 4rem 0;
    }

    .outer-feater > * {
        padding: 0;
    }

    .orange-tag {
        display: none;
    }

    .transfer-section {
        padding: 4rem 0rem 4rem 0;
    }

    .section-heading {
        font-size: 2.7rem;
        margin-bottom: 30px;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 0;
    }

    .image-grid {
        text-align: center;
        padding: 0;
    }

    .img-box.small {
        width: 100%;
    }

    .highlight-box {
        font-size: 10px;
        left: 0;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

        .highlight-box h3 {
            font-size: 15px;
        }

    .content-area {
        padding: 0;
    }

    .service-list li {
        font-size: 15px;
        margin: 5px 0;
    }

    .custom-btn {
        border: none;
        padding: 10px 10px;
        margin-top: 20px;
        font-size: 1.5rem;
        margin: 5px auto;
    }

    .col-md-6 {
        width: 100%;
    }
}

/* newsletter start */
.newsletter {
    background-color: var(--primary-color);
    padding: 2rem 3rem;
}

.newsletter-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-left .small-title {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-left h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 1rem 0;
    line-height: 1.2;
}

.newsletter-left p {
    max-width: 70%;
    color: var(--secondary-dark);
    font-size: 1.5rem;
    line-height: 1.4;
}


.newsletter-right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn {
    background-color: #b63d00;
    color: var(--bg-white);
    padding: 1.5rem 5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        background-color: var(--bg-dark);
        color: var(--primary-color);
    }

@media (max-width: 992px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-left h2 {
        font-size: 2.7rem;
    }

    .newsletter-left p {
        margin: 0 auto;
        max-width: 100%;
        text-align: justify;
        hyphens: auto;
        font-size: 1.6rem;
    }

    .contact-btn {
        margin-top: 1rem;
    }

    .newsletter-right {
        width: 100%;
    }
}
