/* Airport Section */
.airport-section {
    padding: 50px 0px 100px;
}

.home-main-headings {
    margin-bottom: 80px;
    text-align: center;
}

.home-main-headings h2 {
    font-size: 40px;
    font-weight: 400;
    color: #222;
    letter-spacing: .03em;
}

.airport-wrapper {
    background-color: #f4f4f4;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.airport-cards {
    padding: 45px 55px 50px;
    border-bottom: 3px solid transparent;
    width: 33.33%;
}

.a-card-active {
    border-bottom-color: #ccc;
    background-color: rgba(204, 204, 204, 0.15);
}

.border-right-side {
    border-right: 3px solid #ccc;
}

.airport-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #444;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.airport-cards .airport-cards-txt h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #222;
}

.airport-cards .airport-cards-txt h3 a {
    color: #222;
    text-decoration: underline #444;
}

.airport-cards .airport-cards-txt p {
    font-size: 14px;
}



/* Train section */
.train-sec {
    position: relative;
    padding-bottom: 100px;
}

.train-sec .scroll-up {
    position: absolute;
    left: 40%;
    z-index: 2;
    top: 96px;
}

.train-sec .scroll-down {
    position: absolute;
    left: 40%;
    z-index: 2;
}

.train-sec button {
    border: none;
    background: none;
    outline: none;
}

.train-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.train-left-scroll {
    height: 440px;
    overflow-y: auto;
    overflow-y: scroll;
    /* scroll allow karega */
    scrollbar-width: none;
    /* Firefox ke liye */
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.train-main-div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ececec;
    padding: 25px 55px 10px;
    transition: all .3s;
    border-bottom: 1px solid #fff;
}

.train-main-div:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    /* background-color: #ccc; */
    /* background-color: #222; */
    position: relative;
    z-index: 1;
}

.train-txt h3 {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
.train-txt h3 a{
    color: #222 ;
    text-decoration: none;
}
.train-txt p {
    font-size: 15px;
    font-weight: 500;
}

.border-line {
    display: inline-block;
    width: 20px;
    height: 3px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #d01818;
}

/* Services Section */

.main-service-div {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: -90px;
}

.services-sec {
    padding: 50px 0;
    background-image: url(../images/service.jpg);
    background-position: top;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.services-sec::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 60%);
    /* opacity: .8;  */
    z-index: -1;
}

.services-sec .home-main-headings h2 {
    color: #fff;
}

.services-cards {
    padding: 50px 30px;
    transition: all .3s;
    background-color: #f4f4f4;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    width: 33.33%;
    text-align: center;
}

.services-cards:hover {
    background-color: #d01818;
    color: #fff;
}

.services-cards .services-txt {
    margin-top: 30px;
}

.services-cards .services-txt h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all .3s;
    color: #222;
}

.services-cards .services-txt h3 a {
    color: #222;
    text-decoration: none;
    transition: all .3s;
}

.services-cards:hover .services-txt h3 a {
    color: #ffff;
}

.services-cards .services-txt h3 strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
}

.services-cards .services-txt p {
    font-size: 14px;
}

.services-cards:hover .border-line {
    background-color: #fff;
}

.services-cards:hover .service-icon {
    filter: brightness(0) invert(1);
}

/* Fleet sec */

.fleet-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 100px 0px 50px;
}

.fleet-sec .home-main-headings {
    text-align: left;
    margin-bottom: 30px;
}

.fleet-sec .home-main-headings p {
    font-size: 14px;
    width: 50%;
    font-weight: 500;
}

.main-fleet {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 20px;
    align-items: center;
    min-height: 100vh;
    justify-items: center;
}

.cus-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cus-tabs button {
    padding: 12px 40px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    background-color: #ececec;
    color: #222;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    outline: none;
}

.cus-tabs button:hover {
    box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.15);
}

.cus-tabs button.active {
    background-color: #d01818;
    color: #fff;
    outline: none;
}

.car-section {
    display: none;
    grid-column: 2 / 4;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.car-section.active {
    display: grid;
}

.car-details {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.car-details h3 {
    color: #222;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.car-details p {
    color: #666;
    font-size: 14px;
}

.car-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transform: rotate(-92deg);
}

/* Footer Sec */
.footer-sec {
    background-image: url(../images/footer-image.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}

.footer-sec::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 65%);
}

.footer-sec .footer-top {
    padding: 100px 0;
}

.footer-sec .footer-logo {
    margin-bottom: 20px;
}

.footer-sec .footer-description p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.footer-sec h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.footer-sec ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-sec ul li {
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-sec ul li span {
    font-weight: 900;
    color: #fff;
}

.footer-sec ul li a img,
.footer-sec ul li img {
    margin-right: 10px;
}

.footer-sec ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
}

.footer-sec ul li a:hover {
    color: #d01818;
    margin-left: 5px;
}

.footer-sec .copyright {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 80%);
    position: relative;
}

.footer-sec .copyright p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.footer-sec .copyright p a {
    color: #fff;
    text-decoration: underline;
}

/* Area page */
.areas-sec {
    padding: 100px 0;
    background-color: #fff;
}

.areas-main {
    /* max-width: 1200px; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    justify-content: center;
}

.areas-card {
    background: linear-gradient(145deg, #d01818, #b01414);
    border: none;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 40%;
}

.areas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: transform 0.5s ease;
    transform: translateX(-100%);
}

.areas-card:hover::before {
    transform: translateX(100%);
}

.areas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(208, 24, 24, 0.4);
}

.areas-card a {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-card a:hover {
    color: #f0f0f0;
}

/* Contact-sec */
.contact-section {

    padding: 50px 0;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.column {
    flex: 1 1 280px;
    max-width: 280px;
    background: #d01818;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.column:hover {
    transform: scale(1.05) rotate(1deg);
    border: 2px solid #fff;
    /* box-shadow: 0 0 30px rgba(208, 24, 24, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.2); */
}

.column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 0.6s ease;
    transform: translateY(-100%);
}

.column:hover::after {
    transform: translateY(100%);
}

.column img {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.column:hover img {
    transform: scale(1.1);
}

.column a,
.column p {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.column a:hover {
    color: #f5f5f5;
    transform: translateY(-2px);
}

.map-section {
    text-align: center;
    padding: 20px;
}

.map-section h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* text-shadow: 0 0 10px rgba(208, 24, 24, 0.8); */
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;

}


/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .contact-columns {
        gap: 20px;
        margin-bottom: 40px;
    }

    .column {
        flex: 1 1 240px;
        max-width: 240px;
        padding: 20px;
    }

    .column img {
        width: 45px;
        height: 45px;
    }

    .column a,
    .column p {
        font-size: 14px;
    }

    .map-section iframe {
        height: 400px;
    }

    .map-section h2 {
        font-size: 1.8em;
    }
}


@media screen and (min-width: 769px) and (max-width: 991px) {
    .airport-cards {
        width: 50%;
    }

    .main-service-div {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media screen and (max-width: 768px) {
    .home-main-headings h2 {
        font-size: 28px;
    }

    .airport-section {
        padding: 30px 0px 50px;
    }

    .airport-cards {
        width: 100%;
    }

    .train-sec .scroll-up {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
    }

    .train-sec .scroll-down {
        transform: translateX(-50%);
        left: 50%;
    }

    .train-main-div {
        padding: 20px 15px 10px;
    }

    .train-right {
        display: none;
    }

    .main-service-div {
        flex-wrap: wrap;
    }

    .services-sec {
        background-image: none;
    }

    .services-sec::before {
        background-color: #222;
    }

    .services-cards {
        width: 100%;
    }



    .fleet-sec .home-main-headings p {
        width: 100%;
    }

    .main-fleet {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .cus-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .cus-tabs {
        gap: 15px;
    }

    .car-image {
        text-align: center;
    }

    .car-image img {
        transform: rotate(0);
    }

    .car-section {
        grid-template-columns: 1fr;
        grid-column: 1 / 2;
        gap: 40px;
    }

    .car-image img {
        max-width: 80%;
    }

    .footer-sec h4 {
        margin-top: 30px;
    }

    .footer-sec .footer-top {
        padding: 50px 0;
    }

    .footer-sec {
        background-image: none;
    }

    .footer-sec::before {
        background-color: #222;
    }

    .footer-sec .copyright {
        background-color: #333;
    }

    .areas-main {
        gap: 15px;
        padding: 5px;
    }

    .areas-card {
        padding: 15px;
        flex: 1 1 180px;
        max-width: 180px;
    }

    .areas-card a {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .contact-columns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .column {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .map-section iframe {
        height: 300px;
    }

    .map-section h2 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .cus-tabs button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .car-details {
        padding: 15px;
    }

    .car-details h2 {
        font-size: 18px;
    }

    .car-details p {
        font-size: 12px;
    }

    .areas-main {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .areas-card {
        flex: none;
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .areas-card a {
        font-size: 1.1em;
    }
}

@media (max-width: 400px) {

    .column {
        padding: 15px;
    }

    .column img {
        width: 40px;
        height: 40px;
    }

    .column a,
    .column p {
        font-size: 1em;
    }

    .map-section iframe {
        height: 250px;
    }
}