body {
    font-family: "Open Sans", sans-serif !important;
    background: #fff;
    font-weight: 400;
    margin: 0 auto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p {
    margin-bottom: 1rem;
}

.logo {
    position: absolute;
    width: 100px;
    top: -27px;
    left: 64px;
    z-index: 99;
}
.logo-bg {
    position: absolute;
    top: -10px;
    left: 40px;
    z-index: 9;
    width: 121px;
}

.menu-item {
    position: relative;
    list-style: none;
    padding: 12px 8px;
    font-size: 14px;
    color: #051d3d;
}

.dropdown-icon {
    font-size: 14px;
    font-weight: 500;
    margin-left: 4px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 500px;
    box-shadow: 0px 0px 10px #ccc;
    z-index: 10;
    display: none;
    background: #fff;
    border-radius: 10px;
    border-top: 4px solid #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.tab-header {
    display: flex;
    padding: 0 16px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-label {
    cursor: pointer;
    padding: 8px 16px;
    font-size: 14px;
}

.tab-label.active {
    font-weight: bold;
    border-bottom: 2px solid #1976d2;
    color: #1976d2;
}

.dropdown-list {
    padding: 8px 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dropdown-item {
    padding: 4px 0;
}

.honeymoon-pkg {
    width: 434px !important;
}
.reduce-width {
    width: 200px !important;
}
.single-column {
    display: block !important;
    padding: 8px 16px;
}

/* banner css  */

.searchContainerWrapper {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: inherit;
    top: 20%;
    height: inherit;
}

.banner-header h2 span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
}

.banner-header span {
    font-size: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: animationUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    text-transform: uppercase;
}

@keyframes animationUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-header .MuiBox-root .css-0 {
    position: absolute;
    top: 25%;
    text-align: center;
    width: 100%;
}

.banner-container {
    width: 100%;
    height: 620px;
    position: relative;
    overflow: hidden;
}

.banner-image {
    min-height: 600px;
}

.searchContainer {
    z-index: 1;
    position: absolute;
    top: 45%;
    border-radius: 10px;
    background-color: #ffffffe6;
}
.searchContainer form {
    display: flex;
    gap: 15px;
}

.searchParamContainer {
    padding: 16px 0 16px 16px;
}

.searchParamContainer label {
    margin: 0;
    font-weight: bold;
}
.searchParamInput {
    margin-top: 10px;
}

.searchParamInput input {
    outline: none;
    border: none;
    width: 186px;
    background-color: transparent;
}

.searchButtonContainer button {
    width: 100%;
    height: 100%;
    background: #051d3d;
    padding: 0 10px;
    margin: 0;
    border: none;
    border-radius: 0 10px 10px 0;
    color: #fff;
}

.card-3D-container {
    padding-top: 20px;
}

.card-3D-container .owl-theme {
    .owl-prev,
    .owl-next {
        top: calc(50%);
        transform: translateY(-50%);
    }
}

:root {
    --card-height: 300px;
    --card-width: calc(var(--card-height) / 1.5);
}

#cards3D .heading {
    display: flex;
}

#cards3D .heading h2:nth-of-type(2) {
    color: #b0b0b0;
    font-size: 15px;
}

#cards3D .card-3D-container {
    padding-top: 0px;
    .owl-carousel {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.card-3D {
    width: var(--card-width);
    height: var(--card-height);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 36px;
    perspective: 2500px;
    margin: 0;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.wrapper-3D {
    transition: all 0.5s;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.card-title {
    width: 100%;
    transition: transform 0.5s;
}

/* filter banner  */

.filterBanner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    height: 210px;
    border-radius: 12px;
    background: rgb(57, 122, 209);
    background: -moz-radial-gradient(
        circle,
        rgba(57, 122, 209, 1) 31%,
        rgba(5, 29, 61, 1) 100%
    );
    background: -webkit-radial-gradient(
        circle,
        rgba(57, 122, 209, 1) 31%,
        rgba(5, 29, 61, 1) 100%
    );
    background: radial-gradient(
        circle,
        rgba(57, 122, 209, 1) 31%,
        rgba(5, 29, 61, 1) 100%
    );
}

.filterBanner img {
    position: absolute;
}

.filterBanner img:nth-child(1) {
    width: 25%;
    top: -8px;
    left: -50px;
}

.filterBanner img:nth-child(2) {
    width: 17%;
    right: -37px;
    bottom: -75px;
    /* transform: rotate(20deg); */
}

.filterBanner img:nth-child(3) {
    display: none;
    z-index: 0;
    opacity: 30%;
}

.filterBanner div {
    z-index: 0;
}

.filterBannerText span {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

.filterButtons {
    display: flex;
    gap: 60px;
}

.filterButtons a {
    color: #000;
    background-color: #fff;
    font-size: 0.9rem;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* travel activity  */

.travel-activity h3 {
    font-size: 26px;
    background: url(../images/Vector55.svg) center 65px no-repeat;
    padding: 19px 0px;
}

.travel-activity h3 span {
    display: block;
    font-size: 20px;
    padding-top: 29px;
    font-weight: 300;
}

/* customer experience  */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-content {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1s;
}

/* blog  */
.blog-container .article {
    overflow: hidden;
    width: auto;
    height: 177px;
    margin-bottom: 0;
    position: relative;
}

.blog-container .article img {
    width: 100%;
    min-height: 100%;
    transition: 0.2s;
}

.article figcaption {
    font-size: 13px;
    color: #fff;
    top: 0;
    bottom: 0;
    padding: 15px 10px;
    background: rgba(6, 18, 53, 0.6);
    opacity: 0;
    transform: scale(1.15);
    transition: 0.2s;
    position: absolute;
}

.blog-container .article figcaption h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.blog-container .article figcaption p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.blog-container .article figcaption a {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 1s ease 0.2s;
    color: #fff;
}

.blog-container .article:hover img {
    filter: blur(3px);
    transform: scale(0.97);
}

.blog-container .article:hover figcaption {
    opacity: 1;
    transform: none;
}

.blog-container .article:hover figcaption a {
    opacity: 1;
    transform: translateY(0);
}

/* why travel junky  */
.aboutUsCardContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 30px;
}

.aboutUsCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #f3f3f3;
    margin-left: 20px;
    padding: 40px 20px 20px;
}

.aboutUsCard svg {
    background-color: #1c5199;
    border-radius: 50%;
    position: absolute;
    top: -20px;
}

.aboutUsCardContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutUsCardContent h4 {
    font-style: italic;
}

.aboutUsCardContent > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}

.aboutUsCardContent > ul > li {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
}

/* about  */
.about-travel-junky p {
    color: #051d3d;
    font-size: 16px;
    margin-bottom: 1rem;
}

.about-travel-junky h2 {
    color: #051d3d;
    font-size: 34px;
    /* background: url(../images/Vectoraa.svg) left bottom no-repeat; */
    padding: 0px 0px 10px 0px;
}
.about-travel-junky text {
    color: #051d3d;
    font-size: 17px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.aboutUsCardContent > ul > li:not(:first-of-type) {
    border-top: 1px solid black;
}

/* theme button  */
.themeBtn {
    background-color: #051d3d;
    color: #fff;
}
.themeBtn:hover {
    background-color: #d8b36b;
}

/* enquery form */
.form-main-contianer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 16px 0 48px 0;
}

.inner-form-main-contianer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    padding: 15px;
    border-radius: 18px;
    background: center center / cover no-repeat #fdfdfd;
    background-size: 100% 100%;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 45%;
    height: max-content;
    border-radius: 18px;
    background-color: rgb(255 255 255);
    margin-right: 54px;
}

.form-heading-container {
    display: flex;
    background-color: #051d3d;
    border-radius: 18px 18px 0px 0px;
    padding: 10px 0px 10px 20px;
    align-items: center;
    gap: 24px;
}

.form-container form {
    padding: 20px;
}

.custom-form-group {
    margin-bottom: 7.5px;
    position: relative;
}

.custom-form-control {
    outline: none;
    height: 48px;
    padding: 0 10px;
    margin: 0 0 10px 0;
    border: 1px solid rgb(209, 209, 209);
    width: 100%;
    border-radius: 10px;
    font-size: 13px;
}

.custom-form-label {
    position: absolute;
    top: 13px;
    left: 23px;
    font-size: 16px;
    color: #727272;
    transition: all 0.15s linear;
    pointer-events: none;
}

.custom-form-control:focus,
.custom-form-control:hover {
    border: 1px solid rgb(1, 175, 209);
}

.about_travel_junky h2 {
    color: #051d3d;
    font-size: 2rem;
    padding: 0px 0px 10px 0px;
    line-height: 1.1;
}

.read_more p {
    display: inline !important;
}

.faqs ul {
    list-style-type: circle;
    margin-top: 0.7rem;
    margin-left: 1.5rem;
}

/* ribbon.css */
.ribbon-wrapper {
    position: absolute;
    top: 0.6rem;
    left: -0.5rem;
    z-index: 20;
}

.ribbon-wrapper::before {
    content: "";
    position: absolute;
    top: 1.8rem;
    left: 0px;
    width: 6px;
    height: 11px;
    background: #0c3c73;
    transform: rotate(135deg);
    z-index: -1;
    border-top-right-radius: 10px;
    z-index: -1;
}

.ribbon-wrapper::after {
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #0c3c73, #3b61c2, #0c3c73);
    color: white;
    padding: 7px 16px;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
    border-bottom-right-radius: 20px;
    box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
}

/* Slick dots custom style */
.slick-dots li button:before {
    color: #fff;
    font-size: 10px;
}
.slick-dots li.slick-active button:before {
    color: #facc15; /* Tailwind yellow-400 */
}
