﻿/* HERO VIDEO */

.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

    .hero-content h1 {
        color: #fff;
        font-size: 65px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .hero-content h2 {
        color: #FFD400;
        font-size: 35px;
        font-weight: 500;
        min-height: 60px;
    }

/* Tablet */

@media(max-width:991px) {
    .hero-banner {
        height: 550px;
    }
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 32px;
    }
}

/* Mobile */

@media(max-width:575px) {

    .hero-banner {
        height: 150px !important;
    }


    .hero-content h1 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero-content h2 {
        font-size: 14px;
        min-height: auto;
    }

        .hero-content h2 {
            font-size: 24px;
        }
}
/* Review Bar */

.review-strip{
    background:#eef5f6;
    padding:18px 20px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:140px;

    flex-wrap:wrap;
}

.review-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.review-item img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.review-content span{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#000;
    line-height:1.2;
}

.review-content p{
    margin:0;
    color:#000;
    font-size:14px;
    font-weight:500;
}

/* Tablet */

@media(max-width:991px){

    .review-strip{
        gap:50px;
    }

}

/* Mobile */

@media(max-width:575px) {

    .review-strip {
        gap: 12px;
        padding: 10px 5px;
    }

    .review-item img {
        width: 28px;
        height: 28px;
    }

    .review-content span {
        font-size: 11px;
    }

    .review-content p {
        font-size: 10px;
        line-height: 1.2;
    }
}


.video-slider-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.destinationSlider {
    border-radius: 20px;
    overflow: hidden;
}

    .destinationSlider .swiper-slide {
        position: relative;
        height: 400px;
    }

    .destinationSlider video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .destinationSlider .swiper-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.05) 100% );
    }

.slide-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

    .slide-content h2 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 24px;
        margin: 0;
    }

.swiper-button-next,
.swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    background: #396bb3;
    color: #fff !important;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
        font-weight: 700;
    }

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #396bb3;
}

@media(max-width:768px) {

    .destinationSlider .swiper-slide {
        height: 250px;
    }

    .slide-content {
        left: 20px;
    }

        .slide-content h2 {
            font-size: 30px;
        }

        .slide-content p {
            font-size: 15px;
        }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}

.community-strip {
    padding: 0 0 40px;
    background: #f5f5f5;
}

    .community-strip .video-slider-wrapper {
        width: 85%;
        margin: 0 auto;
    }

    .community-strip img {
        width: 100%;
        display: block;
        border-radius: 18px;
    }


.india-trips-section {
    padding: 70px 0 120px;
    background: #fff;
}

.india-banner {
    width: 78%;
    margin: auto;
    position: relative;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
}

    .india-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
.india-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.05) 100% );
}

.india-content {
    position: absolute;
    top: 70px;
    left: 70px;
    z-index: 2;
}

    .india-content h2 {
        color: #fff;
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .india-content p {
        color: #fff;
        font-size: 20px;
        margin-bottom: 35px;
    }

.explore-btn {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 16px 50px;
    border-radius: 14px;
    font-weight: 700;
}

.india-slider-wrap {
    width: 78%;
    margin: -90px auto 0;
    position: relative;
    z-index: 5;
    overflow: hidden; /* Important */
}

.indiaTripsSlider{
    overflow:hidden;
}

.indiaTripsSlider .swiper-slide{
    height:auto;
}

.trip-card{
    height:250px;
    border-radius:18px;
    overflow:hidden;
    border:3px solid #fff;
}

    .trip-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .trip-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.05) );
    }

.trip-info {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 20px;
    z-index: 2;
}

    .trip-info h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .trip-info span {
        color: #fff;
        font-size: 12px;
        font-weight: 500;
    }



.india-prev,
.india-next {
    position: absolute;
    top: 50% !important;
    width: 30px;
    height: 30px;
    background: #396bb3;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
}

.india-prev {
    left: -30px;
}

.india-next {
    right: -30px;
}

.india-prev:after {
    content: "‹";
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
}

.india-next:after {
    content: "›";
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
}
.indiaTripsSlider .swiper-wrapper {
    align-items: stretch;
}

.indiaTripsSlider .swiper-slide {
    height: auto;
}
.india-prev {
    left: -0px;
}

.india-next {
    right: -0px;
}
/* Mobile */
@media (max-width:768px) {

    .india-trips-section {
        padding: 40px 0 60px;
    }

    .india-banner {
        width: 95%;
        height: 320px;
        border-radius: 18px;
    }

    .india-content {
        left: 20px;
        top: 35px;
        right: 20px;
    }

        .india-content h2 {
            font-size: 34px;
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .india-content p {
            font-size: 15px;
            margin-bottom: 18px;
            width: 90%;
        }

    .explore-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .india-slider-wrap {
        width: 95%;
        margin-top: -60px;
    }

    .trip-card {
        height: 160px;
        border-radius: 14px;
    }

    .trip-info {
        left: 15px;
        right: 15px;
        bottom: 12px;
    }

        .trip-info h3 {
            font-size: 16px;
            margin-bottom: 0;
        }

    .india-prev,
    .india-next {
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }

    .india-prev {
        left: 5px;
    }

    .india-next {
        right: 5px;
    }

        .india-prev:after,
        .india-next:after {
            line-height: 38px;
            font-size: 24px;
        }
}

.international-trips-section {
    padding: 70px 0 120px;
    background: #fffef5;
}

.international-banner {
    width: 78%;
    height: 420px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

    .international-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.international-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.20) 60%, rgba(0,0,0,.05) 100%);
}

.international-content {
    position: absolute;
    left: 70px;
    top: 70px;
    z-index: 2;
}

    .international-content h2 {
        color: #fff;
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .international-content p {
        color: #fff;
        font-size: 20px;
        margin-bottom: 35px;
    }

.international-slider-wrap {
    width: 78%;
    margin: -90px auto 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.internationalTripsSlider {
    overflow: hidden;
}

.international-prev,
.international-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #396bb3;
    cursor: pointer;
    z-index: 10;
}

.international-prev {
    left: 5px;
}

.international-next {
    right: 5px;
}

.international-prev:after {
    content: "‹";
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
}

.international-next:after {
    content: "›";
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
}

.international-pagination {
    position: relative !important;
    margin-top: 30px;
}

    .international-pagination .swiper-pagination-bullet-active {
        background: #396bb3;
    }

/* =======================
   International Mobile
======================= */
@media (max-width:768px) {

    .international-trips-section {
        padding: 40px 0 60px;
    }

    .international-banner {
        width: 95%;
        height: 320px;
        border-radius: 18px;
    }

    .international-content {
        top: 35px;
        left: 20px;
        right: 20px;
    }

        .international-content h2 {
            font-size: 34px;
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .international-content p {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 18px;
            width: 90%;
        }

    .international-slider-wrap {
        width: 95%;
        margin-top: -60px;
    }

    .internationalTripsSlider .swiper-slide {
        height: auto;
    }

    .internationalTripsSlider .trip-card {
        height: 170px;
        border-radius: 14px;
    }

    .internationalTripsSlider .trip-info {
        left: 15px;
        right: 15px;
        bottom: 12px;
    }

        .internationalTripsSlider .trip-info h3 {
            font-size: 16px;
            margin-bottom: 0;
        }

    .international-prev,
    .international-next {
        width: 38px;
        height: 38px;
        top: 50%;
        margin-top: -19px;
    }

    .international-prev {
        left: 5px;
    }

    .international-next {
        right: 5px;
    }

        .international-prev:after,
        .international-next:after {
            font-size: 24px;
            line-height: 38px;
        }

    .international-pagination {
        margin-top: 18px;
    }
}
@media (max-width:768px) {

    .india-slider-wrap,
    .international-slider-wrap {
        width: 95%;
    }

    .trip-card {
        height: 160px;
    }

    .trip-info h3 {
        font-size: 15px;
    }
}
/* ==========================
   CONNECT SECTION
========================== */

.connect-section {
    padding: 20px 0 80px;
    background: #fff;
}

.connect-banner {
    width: 78%;
    height: 285px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .connect-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.connect-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,0) 100% );
}

.connect-content {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

    .connect-content h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .connect-content p {
        color: #fff;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 35px;
    }

.connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 58px;
    background: #ffd400;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    transition: .3s;
}

    .connect-btn:hover {
        background: #ffd400;
        color: #000;
    }

/* Tablet */

@media(max-width:991px) {

    .connect-banner {
        width: 90%;
        height: 240px;
    }

    .connect-content {
        left: 50px;
    }

        .connect-content h2 {
            font-size: 36px;
        }

        .connect-content p {
            font-size: 22px;
        }

    .connect-btn {
        min-width: 220px;
        height: 52px;
        font-size: 22px;
    }
}

/* Mobile */

@media(max-width:575px) {

    .connect-banner {
        width: 94%;
        height: 220px;
        border-radius: 14px;
    }

    .connect-content {
        left: 20px;
        right: 20px;
    }

        .connect-content h2 {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .connect-content p {
            font-size: 18px;
            margin-bottom: 20px;
        }

    .connect-btn {
        min-width: 180px;
        height: 46px;
        font-size: 18px;
        border-radius: 10px;
    }
}

/*=========================
WHY PRATHAM HOLIDAYS
=========================*/
.why-pratham {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .section-title h2 {
        display: inline-block;
        position: relative;
        font-size: 46px;
        font-weight: 700;
        color: #1f2937;
        margin: 0;
        padding-bottom: 15px;
        text-align: center;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);

            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, #396bb3, #17b3e8);
            border-radius: 50px;
        }

        .section-title h2::before {
            content: "✈";
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            color: #396bb3;
            background: #fff;
            padding: 0 8px;
        }

        @media (max-width: 767px) {

            .section-title {
                justify-content: center !important;
                text-align: center !important;
                margin-bottom: 30px;
            }

                .section-title h2 {
                    width: 100%;
                    font-size: 32px;
                    text-align: center;
                    padding-bottom: 12px;
                }

                    .section-title h2::after {
                        width: 70px;
                        left: 50%;
                        transform: translateX(-50%);
                    }

                    .section-title h2::before {
                        left: 50%;
                        transform: translateX(-50%);
                        top: -15px;
                        font-size: 16px;
                    }
        }

        .why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    height: 500px;
    background: #fff;
    border: 1.5px solid #1cb8ee;
    border-radius: 22px;
    overflow: hidden;
    padding: 42px 32px;
}

.why-title {
    position: relative;
    z-index: 5;
    color: #09a6d6;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 34px;
}

.why-desc {
    position: relative;
    z-index: 5;
    color: #333;
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
    width: 92%;
}

/* Background SVG */
.sauce-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

@media(max-width:991px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-card {
        height: 430px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-desc {
        font-size: 16px;
    }
}
@media(max-width:767px) {

    .why-pratham {
        padding: 50px 0;
    }

    .section-title {
        text-align: left;
        margin-bottom: 25px;
    }

        .section-title h2 {
            font-size: 34px;
        }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        height: 360px;
        padding: 28px 22px;
    }

    .why-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .why-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .sauce-img {
        width: 100%;
    }
}
.journey-section{
    padding:80px 0;
    background:#fff;
}

.journey-title{
    text-align:center;
    margin-bottom:50px;
}

    .journey-title h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #396bb3
    }

    .journey-title p {
        font-size: 22px;
        color: #396bb3;
    }

.frameSlider{
    width:85%;
    margin:auto;
    position:relative;
}

.frameSlider .swiper-slide{
    height:520px;
    overflow:hidden;
    position:relative;
}

.frameSlider .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.location{
    position:absolute;
    left:15px;
    bottom:20px;
    background:rgba(0,0,0,.7);
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    font-size:18px;
}

/* Left curve */

.frameSlider .swiper-slide:first-child{
    border-radius:0 0 0 80px;
}

/* Right curve */

.frameSlider .swiper-slide:last-child{
    border-radius:0 0 80px 0;
}

/* Buttons */

.frame-prev,
.frame-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:30px;
    background:#396bb3;
    border-radius:50%;
    z-index:100;
    cursor:pointer;
}

.frame-prev{
    left:5px;
}

.frame-next{
    right:5px;
}

.frame-prev:after{
    content:"‹";
    color:#fff;
    font-size:25px;
    line-height:25px;
    display:block;
    text-align:center;
}

.frame-next:after{
    content:"›";
    color:#fff;
    font-size:25px;
    line-height:25px;
    display:block;
    text-align:center;
}


@media(max-width:991px){

    .frameSlider{
        width:100%;
    }

    .frameSlider .swiper-slide{
        height:350px;
    }
}

@media(max-width:576px){

    .frameSlider .swiper-slide{
        height:250px;
    }
}
/* ==========================
   Tablet
==========================*/
@media (max-width:991px) {

    .journey-section {
        padding: 60px 0;
    }

    .journey-title {
        margin-bottom: 35px;
    }

        .journey-title h2 {
            font-size: 34px;
        }

        .journey-title p {
            font-size: 18px;
        }

    .frameSlider {
        width: 95%;
    }

        .frameSlider .swiper-slide {
            height: 350px;
            border-radius: 18px !important;
        }

    .frame-prev,
    .frame-next {
        width: 42px;
        height: 42px;
    }

    .frame-prev {
        left: 5px;
    }

    .frame-next {
        right: 5px;
    }

        .frame-prev:after,
        .frame-next:after {
            font-size: 24px;
            line-height: 42px;
        }

    .location {
        font-size: 15px;
        padding: 7px 12px;
    }
}


/* ==========================
   Mobile
==========================*/
@media (max-width:767px) {

    .journey-section {
        padding: 40px 0;
    }

    .journey-title {
        margin-bottom: 25px;
    }

        .journey-title h2 {
            font-size: 28px;
            line-height: 1.3;
        }

        .journey-title p {
            font-size: 15px;
        }

    .frameSlider {
        width: 95%;
    }

        .frameSlider .swiper-slide {
            height: 250px;
            border-radius: 15px !important;
        }

            .frameSlider .swiper-slide img {
                border-radius: 15px;
            }

    .location {
        left: 10px;
        bottom: 10px;
        font-size: 13px;
        padding: 6px 10px;
    }

    .frame-prev,
    .frame-next {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    .frame-prev {
        left: 8px;
    }

    .frame-next {
        right: 8px;
    }

        .frame-prev:after,
        .frame-next:after {
            font-size: 22px;
            line-height: 36px;
        }

    /* Remove desktop corner curves */
    .frameSlider .swiper-slide:first-child,
    .frameSlider .swiper-slide:last-child {
        border-radius: 15px !important;
    }
}
.callback-section {
    padding: 70px 0;
    background: #fff;
}

.callback-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #12A7C9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.callback-left {
    width: 55%;
    text-align: center;
    padding: 40px;
}

    .callback-left img {
        width: 100%;
        max-width: 520px;
    }

.callback-right {
    width: 40%;
    background: #fff;
    margin: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.callback-header {
    background: #eef9fc;
    padding: 28px;
}

    .callback-header span {
        color: #00A3D8;
        font-size: 28px;
        font-weight: 600;
    }

    .callback-header h2 {
        font-size: 34px;
        margin-top: 8px;
        font-weight: 700;
        color: #222;
    }

.callback-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

    .form-group span {
        color: red;
    }

.input-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    height: 58px;
    background: #fff;
}

    .input-box i {
        width: 55px;
        text-align: center;
        color: #999;
        font-size: 20px;
    }

.country {
    padding: 0 18px;
    border-right: 1px solid #ddd;
    font-weight: 600;
}

.form-control {
    border: none !important;
    box-shadow: none !important;
    height: 58px;
    font-size: 17px;
}

    .form-control:focus {
        box-shadow: none;
    }

.submit-btn {
    width: 100%;
    display: block;
    background: #FFD600;
    color: #000;
    text-align: center;
    padding: 17px;
    border-radius: 40px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .submit-btn:hover {
        background: #ffca00;
        color: #000;
    }

.text-danger {
    color: red;
    font-size: 13px;
}

@media(max-width:991px) {

    .callback-wrapper {
        flex-direction: column;
    }

    .callback-left,
    .callback-right {
        width: 100%;
    }

    .callback-left {
        padding: 25px;
    }

        .callback-left img {
            max-width: 320px;
        }

    .callback-right {
        margin: 20px;
    }

    .callback-header h2 {
        font-size: 26px;
    }

    .callback-header span {
        font-size: 22px;
    }

    .submit-btn {
        font-size: 20px;
    }
}