.review-section {
    width: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
}
.review-image-container {
    flex: 0 0 200px;
    padding: 0 20px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.review-image-container img {
    width: 100%;
    height: auto;
}
.review-content {
    flex: 1;
    overflow: hidden;
}
.review-title {
    text-align: center;
    margin-bottom: 20px;
}
.review-title h2 {
    font-size: 2em;
    color: #333;
}
.review-title p {
    font-size: 1em;
    color: #666;
}
.review-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.review-container::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-right: 20px;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.review-info h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}
.review-stars {
    color: #fbbc04;
    font-size: 1.2em;
}
.review-text {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .review-section {
        flex-direction: column;
    }
    .review-image-container {
        margin-bottom: 20px;
    }
}

/* unique feature */
.rktour-different-section {
    padding: 80px 0;
    background-image: url('assets/img/bg/tour_bg_1.jpg');
    background-size: cover;
    background-position: center;
}
.rktour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.rktour-title-area {
    text-align: center;
    margin-bottom: 50px;
}
.rktour-sub-title {
    color: #0047AB;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}
.rktour-sec-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.rktour-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.rktour-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease;
    animation: rktour-fadeIn 0.5s ease-out;
}
@keyframes rktour-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.rktour-card:hover {
    transform: translateY(-10px);
}
.rktour-card-icon {
    font-size: 40px;
    color: #0047AB;
    margin-bottom: 20px;
    animation: rktour-bounce 2s infinite;
}
@keyframes rktour-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.rktour-card-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}
.rktour-card-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .rktour-card {
        width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .rktour-card {
        width: 100%;
    }
}

/* home about us  */
.rktour-about-area {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}
.rktour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.rktour-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.rktour-col-xl-6 {
    width: 100%;
    padding: 15px;
}
.rktour-img-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.rktour-img-box img:hover {
    transform: scale(1.05);
}
.rktour-content-box {
    padding: 30px;
}
.rktour-sub-title {
    font-size: 18px;
    color: #0047AB;
    margin-bottom: 10px;
    display: block;
}
.rktour-sec-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.rktour-sec-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.rktour-about-item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
.rktour-about-item {
    width: calc(50% - 20px);
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.rktour-about-item:hover {
    transform: translateY(-5px);
}
.rktour-about-item_icon {
    font-size: 30px;
    color: #0047AB;
    margin-bottom: 15px;
}
.rktour-box-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.rktour-about-item_text {
    font-size: 14px;
    color: #666;
}
.rktour-th-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0047AB;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}
.rktour-th-btn:hover {
    background-color: #0047AB;
}
.rktour-shape-mockup {
    position: absolute;
    z-index: -1;
}
.rktour-jump {
    animation: jump 5s infinite;
}
.rktour-spin {
    animation: spin 20s infinite linear;
}
@keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (min-width: 992px) {
    .rktour-col-xl-6 {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .rktour-about-item {
        width: calc(100% - 20px);
    }
}
/* about services  */
.rktourser-services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}
.rktourser-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.rktourser-title-area {
    text-align: center;
    margin-bottom: 50px;
}
.rktourser-sub-title {
    font-size: 18px;
    color: #0047AB;
    margin-bottom: 10px;
    display: block;
    animation: rktourserFadeInUp 1s ease;
}
.rktourser-sec-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    animation: rktourserFadeInUp 1s ease 0.3s;
}
.rktourser-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.rktourser-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
}
.rktourser-service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.rktourser-service-card::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 71, 171, 0.2), transparent);
    transition: 0.5s;
}
.rktourser-service-card:hover::before {
    left: 100%;
}
.rktourser-service-icon {
    font-size: 48px;
    color: #0047AB;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.rktourser-service-card:hover .rktourser-service-icon {
    transform: scale(1.2) rotate(10deg);
}
.rktourser-service-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rktourser-box-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}
.rktourser-service-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.rktourser-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0047AB;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.rktourser-btn:hover {
    background-color: #003380;
}
@keyframes rktourserFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1200px) {
    .rktourser-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media (max-width: 992px) {
    .rktourser-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 576px) {
    .rktourser-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .rktourser-service-content {
        padding: 20px;
    }
    .rktourser-box-title {
        font-size: 18px;
    }
    .rktourser-service-text {
        font-size: 12px;
    }
    .rktourser-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}