.carousel-caption{
    bottom: 10%;
    background: rgba(56, 53, 48, 0.5);
    border-radius: 15px;
}

.carousel-caption h2{
    font-size: 42px;
    font-weight: 700;
}

.carousel-caption p{
    font-size: 18px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size: 70%;
}

/* cATEGORY sECTION  */
.booking-section{
    padding:70px 40px;
    background:#f5f5f5;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:#666;
}


.booking-grid{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}


.booking-card{
    width:260px;
    height:230px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    box-shadow:0 4px 15px rgba(0,0,0,.12);
}


.card-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}


/* Hover zoom */

.booking-card:hover .card-bg{
    transform:scale(1.08);
}


/* Middle icon */

.icon-circle{
    width:62px;
    height:62px;
    background:rgba(255,255,255,.72);
    border-radius:50%;

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    display:flex;
    justify-content:center;
    align-items:center;

    backdrop-filter:blur(4px);
}


.icon-circle img{
    width:60px;
    height:60px;
    object-fit:contain;
}


/* ABOUT HOME SEC  */
.about-section{

    /* YOUR BACKGROUND IMAGE */
    background-image:url("../images/bg-img.png");

    background-size:cover;
    background-position:center;
    padding:80px 40px;
}


.about-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}


/* LEFT IMAGE */

.about-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:420px;
    height:420px;
    object-fit:cover;
    position:relative;
    z-index:2;
    border:8px solid #fff;
}


/* Decorative Circles */

.circle-red{
    position:absolute;
    width:470px;
    height:470px;
    border:18px solid #ff4136;
    border-left-color:transparent;
    border-bottom-color:transparent;
    border-radius:50%;
    z-index:1;
}

.circle-green{
    position:absolute;
    width:470px;
    height:470px;
    border:16px solid #032626;
    border-right-color:transparent;
    border-top-color:transparent;
    border-radius:50%;
    z-index:1;
}


/* RIGHT CONTENT */

.about-content{
    flex:1.2;
}

.about-content h5{
    color:#111;
    font-size:18px;
    margin-bottom:18px;
    font-weight:500;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
    color:#111;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:28px;
}


/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.feature{
    font-size:28px;
    color:#111;
    display:flex;
    align-items:center;
    gap:10px;
}


/* BUTTON */

.about-btn{
    position:relative;
    display:inline-block;
    padding:14px 48px;
    border-radius:35px;
    background:#0c8b8b;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
    z-index:1;
    transition:.3s;
}


/* Split Layers */

.about-btn::before,
.about-btn::after{
    content:'';
    position:absolute;
    top:0;
    width:0%;
    height:100%;
    background:#032626;
    transition:.45s ease;
    z-index:-1;
}

.about-btn::before{
    left:50%;
}

.about-btn::after{
    right:50%;
}


/* Hover */

.about-btn:hover{
    color:white;
    transform:translateY(-2px);
}

.about-btn:hover::before{
    width:50%;
    left:0;
}

.about-btn:hover::after{
    width:50%;
    right:0;
}
.fa-check{
    background-color: #F44336;
    color: white;
    border-radius: 50%;
    padding: 5px;
}


/* RESPONSIVE */

@media(max-width:992px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-content h2{
        font-size:38px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .about-image img{
        max-width:320px;
        height:320px;
    }

    .circle-red,
    .circle-green{
        width:360px;
        height:360px;
    }
}


@media(max-width:576px){

    .about-section{
        padding:60px 20px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-image img{
        max-width:260px;
        height:260px;
    }

    .circle-red,
    .circle-green{
        width:300px;
        height:300px;
        border-width:12px;
    }
}


/* WHY CHOOSE US SECTION  */

.why-section{

    /* YOUR BG IMAGE */
    background-image:url("../images/bg-img.png");
    background-size:cover;
    background-position:center;

    padding:80px 40px;
}


.why-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}


/* LEFT */

.why-image-wrap{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.why-image-wrap img{
    width:100%;
    max-width:420px;
    height:500px;
    object-fit:cover;
    position:relative;
    z-index:2;
    border-radius:6px;
}


/* Decorative */

.shape-top{
    position:absolute;
    top:-18px;
    right:30px;
    width:180px;
    height:180px;
    border-top:18px solid #032626;
    border-right:18px solid #032626;
    z-index:1;
}

.shape-bottom{
    position:absolute;
    bottom:-18px;
    left:40px;
    width:180px;
    height:180px;
    border-bottom:18px solid #032626;
    border-left:18px solid #032626;
    z-index:1;
}


/* RIGHT */

.why-content{
    flex:1.2;
}

.why-content h5{
    font-size:18px;
    margin-bottom:18px;
    font-weight:500;
}

.why-content h2{
    font-size:48px;
    line-height:1.3;
    margin-bottom:40px;
    font-weight:700;
}


/* FEATURES */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.why-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.why-item img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.why-item h4{
    margin-bottom:8px;
    font-size:24px;
}

.why-item p{
    color:#555;
    line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:992px){

    .why-container{
        flex-direction:column;
        text-align:center;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-item{
        justify-content:center;
    }

    .why-content h2{
        font-size:36px;
    }

    .why-image-wrap img{
        max-width:320px;
        height:400px;
    }

    .shape-top,
    .shape-bottom{
        width:120px;
        height:120px;
    }
}

@media(max-width:576px){

    .why-section{
        padding:60px 20px;
    }

    .why-content h2{
        font-size:28px;
    }

    .why-image-wrap img{
        max-width:260px;
        height:340px;
    }

    .why-item{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
}


/* REVIEW SECTION  */

.review-section{

    background-image:url("../images/airport.png");
    background-size:cover;
    background-position:center;

    padding:90px 20px;
    position:relative;
}

.review-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.review-title{
    text-align:center;
    color:white;
    margin-bottom:45px;
    font-size:42px;
    position:relative;
    z-index:2;
}

.review-card{

    background:#fff;
    border-radius:28px;
    padding:35px;
    position:relative;
    max-width:950px;
    margin:auto;
    min-height:230px;
    z-index:2;

    display:flex;
    gap:25px;
    align-items:flex-start;

    clip-path:polygon(
        4% 0,
        100% 0,
        94% 100%,
        0 100%
    );
}

.review-user img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #F44336;
}

.review-content{
    flex:1;
}

.review-content p{
    color:#333;
    line-height:1.8;
    margin-bottom:25px;
}

.review-content h4{
    margin-bottom:6px;
}

.review-content span{
    color:#666;
}

.quote-icon{
    position:absolute;
    right:65px;
    bottom:20px;
    color:#F44336;
    font-size:42px;
}

.carousel-indicators{
    bottom:-55px;
}

.carousel-indicators button{
    width:35px !important;
    height:8px !important;
    border-radius:20px;
    background:#F44336 !important;
}


/* Responsive */

@media(max-width:768px){

    .review-card{
        flex-direction:column;
        text-align:center;
        clip-path:none;
        border-radius:20px;
    }

    .review-user{
        margin:auto;
    }

    .review-title{
        font-size:30px;
    }

    .quote-icon{
        position:static;
        margin-top:15px;
    }
}