/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto&display=swap');

/* General Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:root {
    --primary: #2e3190;
}

body {
    position: relative;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    width: 100%;

}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px;
    background: transparent;
    backdrop-filter: blur(10px);

    transition: 1s;
    z-index: 1300;
}

header.active {
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

header a img {
    position: absolute;
    width: 160px;
    top: 4px;
}

header.active a img {
    width: 86px;
    top: 1px;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #000000;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
}

.menu {
    color: #000000;
    font-size: 20px;
    transition: 0.5s;
}

/* Menu on Mobile */
.menu .open {
    display: block;
}

.menu .close {
    display: none;
}

.menu.active .open {
    display: none;
}

.menu.active .close {
    display: block;
}

.nav {
    display: flex;
}

.nav li {
    list-style: none;
    margin: 0 8px;
}

.nav li a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 300;
    padding: 10px;
}

.nav li a:hover,
.nav li a.active {
    color: var(--primary);
}

.search {
    position: relative;
    width: 300px;
    height: 40px;
    transition: 0.5s;
}

.search input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #000000;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    outline: none;
    padding: 0 10px 0 15px;
}

.search input::placeholder {
    color: #000000;
    text-transform: uppercase;
    font-weight: 350;
}

.search i {
    font-size: 1.4em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    padding-left: 10px;
    color: #000000;
    cursor: pointer;
    border-left: 1px solid #000000;
}


/*---- Mobile Navigation ----*/
.nav-mobile {
    display: none;
}

.nav-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 1200;
    gap: 20px;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile li {
    position: relative;
    list-style: none;
}

.nav-mobile li a {
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 300;
    padding: 10px;
}

.nav-mobile li a:hover {
    color: var(--primary);
}


.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.banner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);

}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Centers content absolutely in the middle of its parent */
.bg-slide .content {
    position: absolute;
    top: 50%;
    /* Positions at 50% from top */
    left: 50%;
    /* Positions at 50% from left */
    transform: scale(0) translate(-50%, -50%);
    /* Precise centering */
    width: 60vw;
    /* Takes 60% of parent width */
    z-index: 1100;
    /* Ensures it stays above other elements */
    transition: ease-in-out 3s;
    /* Smooth transitions for all properties */
    opacity: 0;
    visibility: hidden;
}

/* Styles for h1 headings inside .content */
.bg-slide .content h1 {
    font-size: 6em;
    /* Very large text */
    text-transform: uppercase;
    /* Converts text to uppercase */
}

.bg-slide .content p {
    font-family: 'Great Vibes', cursive;
    /* Elegant cursive font */
    font-weight: 200;
    /* Light font weight */
    font-size: 1.5em;
    /* Responsive size (fixed from 'cm' to 'em') */
    letter-spacing: 1px;
    /* Slight spacing between letters */
}

.bg-slide.active .content {
    transform: scale(1) translate(-50%, -50%);
    /* Ensures centered scaling */
    opacity: 1;
    /* Fully visible */
    visibility: visible;
    /* Ensures element is interactable */
}

.circle {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0, 0) rotateZ(0);
    opacity: 0;
    visibility: hidden;
    transition: 3s;
}

.circle.bg {
    background: transparent;
    width: 140vw;
    height: 140vw;
    border-radius: 0;
}

.circle.large {
    width: 70vw;
    height: 70vw;
}

.circle.small {
    width: 35vw;
    height: 35vw;
}

.circle img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.circle.bg img {
    border-radius: 0;
}

.circle.large img {
    transform: scale(2);
}

.circle.small img {
    transform: scale(4);
}

.bg-slide.active .circle.bg {
    transform: translate(0, 0) rotateZ(-360deg);
    opacity: 1;
    visibility: visible;
}

.bg-slide.active .circle.large {
    transform: translate(0, 0) rotateZ(720deg);
    opacity: 1;
    visibility: visible;
}

.bg-slide.active .circle.small {
    transform: translate(0, 0) rotateZ(-720deg);
    opacity: 1;
    visibility: visible;
}

.slide-loader {
    position: absolute;
    z-index: 1100;
    bottom: 50px;
    right: 100px;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.slide-loader li {
    list-style: none;
    display: flex;
    align-items: end;
}

.slide-loader li a {
    text-decoration: none;
    color: #111;
    font-size: 2em;
    font-weight: 800;
    transition: 0.5s;
    line-height: 1em;
    cursor: pointer;
    padding: 0;
}

.slide-loader li a.active,
.slide-loader li a:hover {
    font-size: 4em;
}

.slide-loader::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -70%;
    width: 100px;
    height: 2px;
    background: #111111;
}

.share {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1200;
}

.share::before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: -120%;
    height: 100px;
    width: 2px;
    background: #111;
}

.share p {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111;
}

.share a {
    text-decoration: none;
    color: #111;
}

.share a i {
    font-size: 1.8em;
}

.lead {
    position: absolute;
    bottom: 0;
    z-index: 1000;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.move-down {
    position: absolute;
    z-index: 1100;
    color: #111111;
    animation: flink 1s linear infinite;
}

.move-down i {
    font-size: 3.5em;
}

@keyframes flink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.lead svg {
    font-family: 'Great Vibes', cursive;
    position: absolute;
    z-index: 1100;
    fill: currentColor;
    height: auto;
    max-width: 20wmin;
    transform-origin: center;
    width: 66%;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(360deg);
    }
}



section {


    width: 100%;
    display: inline-block;
    bottom: 0;
    background: #ffffff;
    transition: ease-in-out ls;
    transform-origin: bottom;
    z-index: 1100;
    padding: 150px 100px 100px;
    position: relative;

}

section::-webkit-scrollbar {}

section.section-show {

    top: 0;
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    opacity: 1;
}

section h1 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 4em;
    letter-spacing: 1px;
    margin-bottom: 150px;
    text-align: center;
}

section h4 {
    font-family: 'Great Vibes', cursive;
    font-weight: 300;
    font-size: 2.5em;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

section p {
    font-weight: 300;
    color: #111111;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/*---- About Section ----*/

.about h4::first-letter {
    color: var(--primary);
    font-size: 2em;
}

.about::before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: 250px;
    height: 100px;
    width: 2px;
    background: #111111;
}

.about .img-box {
    position: relative;
}

.about .img-box img {
    max-width: 458px;
}

.about .img-box .corner-img {
    position: absolute;
    width: 15vw;
    right: 10px;
    bottom: -50px;
}

.section-bg-img {
    position: absolute;
    bottom: 50px;
    right: 200px;
    opacity: 0.1;
    z-index: 100;
    pointer-events: none;
}

.section-btn {
    position: relative;
    text-decoration: none;
    color: #111111;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: lpx;
    transition: 0.3s;
}

.section-btn:hover {
    color: var(--primary);
}

.section-btn::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -10px;
    width: 85%;
    height: 1px;
    background: #111;
    transition: 0.3s;
}

.section-btn:hover::before {
    left: 20%;
    background: var(--primary);
}

/*---- Services Section ----*/
.services:before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: 250px;
    height: 100px;
    width: 2px;
    background: #111111;
}

.card {
    position: relative;
    margin: 20px 0;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border: none;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    transition: ease-in-out 1s;
    border-radius: 0;
    box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.25);
}

.card:hover {
    transform: perspective(2000px) rotate(-10deg);
    box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.card .img-box {
    position: relative;
    border-style: none;
    width: 100%;
    height: 100%;
    transform-origin: left;
    z-index: 1;
    transition: 1s;
}

.card:hover .img-box {
    transform: rotateY(-130deg);
}

.card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .details {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px 20px 20px;
}

.card .details::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: url('../images/bg-tree.png') no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}

.card .details h4::first-letter {
    color: var(--primary);
    font-size: 1.5em;
}


/*---- Portfolio Section ----*/
.portfolio h1 {
    margin-bottom: 50px;
}

.portfolio #portfolio-filters {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.portfolio #portfolio-filters li {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 0.85em;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #111111;
    transition: 0.35;
    padding: 8px 20px;
    text-align: center;
}

.portfolio #portfolio-filters li::before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    height: 2px;
    width: 50%;
    background: var(--primary);
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    transform-origin: center;
}

.portfolio #portfolio-filters li:hover::before,
.portfolio #portfolio-filters li.filter-active::before {
    opacity: 1;
    visibility: visible;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    position: relative;
}


.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    position: absolute;
    opacity: 0;
    left: 12px;
    right: 12px;
    bottom: 0;
    z-index: 3;
    transition: all 0.3s;
    background: var(--primary);
    padding: 12px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 15px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link i,
.portfolio .portfolio-item .portfolio-info .details-link i {
    font-size: 18px;
    padding: 0 2px;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #111111;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}


/*---- Contact Us ----*/
.contact h1 {
    margin-bottom: 50px;
}

.contact .info {
    width: 100%;
    background: #ffffff;
}

.contact .info i {
    font-size: 20px;
    padding: 8px;
    color: var(--primary);
    float: left;
    width: 45px;
    height: 45px;
    background: #d1f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    margin-right: 20px;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.contact .info p {
    padding: 0 0 0 60px;
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 0;
    color: #111;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact form {
    width: 100%;
    background: #ffffff;
}

.contact form .form-group {
    padding-bottom: 8px;
}

.contact form input,
.contact form textarea {
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    font-size: 15px;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.contact form input {
    height: 45px;
}

.contact form textarea {
    padding: 10px 12px;
}

.contact form button[type='submit'] {
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    color: #fff;
    transition: 0.5s;
    margin-top: 20px;
}

.contact form button[type='submit']:hover {
    background: #fff;
    color: var(--primary);
}


/*---- Responsive Design ----*/

@media (max-width: 768px) {
    header {
        padding: 38px;
    }

    .nav {
        display: none;
    }

    .search {
        display: none;
    }

    .banner {
        padding: 128px 30px;
    }

    .bg-slide .content {
        width: 94vw;
    }

    .bg-slide .content h1 {
        font-size: 3em;
    }

    .bg-slide .content p {
        font-size: 0.8em;
    }

    .circle.bg {
        width: 148vh;
        height: 148vh;
    }

    .circle.large {
        width: 70vh;
        height: 70vh;
    }

    .circle.small {
        width: 35vh;
        height: 35vh;
    }

    .bg-slide.active .circle.bg {
        transform: translate(0, 0) rotateZ(0);
        opacity: 1;
        visibility: visible;
    }

    .bg-slide.active .circle.large {
        transform: translate(0, 0) rotateZ(360deg);
        opacity: 1;
        visibility: visible;
    }

    .bg-slide.active .circle.small {
        transform: translate(0, 0) rotateZ(-720deg);
        opacity: 1;
        visibility: visible;
    }

    .lead {
        bottom: 100px;
        width: 150px;
        height: 150px;
    }

    .move-down i {
        font-size: 2em;
    }

    .slide-loader {
        bottom: 20px;
    }

    .share {
        left: 5px;
    }

    section.section-show {
        padding: 150px 30px 100px;
    }

    .about .img-box img {
        max-width: 80vw;
    }

    .about .img-box .corner-ing {
        width: 25vw;
        right: -20px;
    }

    .about h4 {
        margin-top: 50px;
    }

    .section-bg-img {
        bottom: -500px;
        right: 0px;
    }

    header a img {
        width: 86px;
    }



    /* start section code for mobile view */
    section {
        padding: 0 !important;
    }

    /* End section code for mobile view */
}

.services .slick-list {
    padding-bottom: 98px;
}

.footer-main-block {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: #000;
    padding: 10px 0;
}

.footer-main-block p {
    color: #ccc;
    margin-bottom: 4px;
}

.footer-main-block p a {
    color: #fff;
}

.breadcum-main-block {
    width: 100%;
    display: inline-block;
    background: url(../images/breadcum.jpg) no-repeat center;
    background-size: cover;
    padding: 180px 0;
    text-align: center;

}

.breadcum-main-block:before {
    content: "";
}

.breadcum-main-block h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcum-main-block p {
    font-size: 18px;
}

.breadcum-main-block p a {
    text-decoration: none;
    color: #1ea3d1;
}

.venue-block {
    width: 100%;
    display: inline-block;
    margin: 0 14px;
    text-align: center;
}

.venue-block a {
    text-decoration: none;
}

.venue-block a img {
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid #74d1ee;
    padding: 2px;
}

.venue-block a h3 {
    font-size: 22px;
    text-decoration: none;
    color: #333;
}

.service-sub-block {
    width: 100%;
    display: inline-block;
    background: #E5D3BD;
    margin-bottom: 34px;
}

.service-sub-block h3 {
    font-size: 22px;
    padding: 14px 0 6px 12px;
    margin: 0;
}

.service-sub-block p {
    padding-left: 12px;
    margin: 0;
    font-size: 14px;
}

.ulockd-main-title {
    position: relative;
    margin-bottom: 60px;
}

.ulockd-main-title h2 {
    font-weight: bold;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 0;
}

.img-whp {
    width: 100% !important;
}

.thumbnail-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.thumbnail-box p {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
}

.details p {
    font-size: 14px;
}

.venue-block-inner {
    width: 100%;
    display: inline-block;
    border: 1px solid #dadada;
    border-radius: 4px;
}

.venue-block-inner a img {
    min-width: 100%;
    margin-bottom: 14px;
    border-radius: 4px 4px 0 0;
}

.venue-block-inner a h3 {
    font-size: 20px;
    color: #333;
    padding: 0 14px;
    font-weight: 500;
}

.hotel-fea {
    width: 100%;
    display: flex;
    padding: 0 14px;
    justify-content: space-between;
}

.hotel-fea p {
    margin-bottom: 14px;
}

.hotel-fea p strong {
    color: #1c97ca;
    font-weight: 600;
}

.venue-block-inner a p {
    padding: 0 14px;
    margin-bottom: 10px;
}

.venue-block-inner span {
    display: block;
    margin: 0 14px 10px;
    text-align: center;
    background: #2aa7dd;
    padding: 8px 0;
    color: #fff;
    font-size: 20px;
    border-radius: 4px;
}

.hotel-spec {
    width: 100%;
    display: inline-block;
    background: #e7f9ff;
    padding: 14px 20px;
    margin-bottom: 18px;
    border: 1px solid #c7e5ef;
    border-radius: 8px;
}

.hotel-spec p {
    margin-bottom: 24px;
    border-right: 1px solid #c7e5ef;
}

.hotel-spec p strong {
    font-weight: 600;
    display: block;
    color: #2a96ba;
    text-align: left;
}

a.call-btn {
    background: #14a3d4;
    color: #fff;
    padding: 10px 28px;
    display: inline-block;
    border-radius: 22px;
    margin-bottom: 28px;
    margin-right: 14px;
}

a.call-btn i {
    padding-right: 8px;
    font-size: 22px;
    vertical-align: middle;
}

a.whats-btn {
    background: #2cb331;
    color: #fff;
    padding: 10px 28px;
    display: inline-block;
    border-radius: 22px;
    margin-bottom: 28px;
    margin-right: 10px;
}

a.whats-btn i {
    padding-right: 8px;
    font-size: 22px;
    vertical-align: middle;
}

.tg-tour-details-video-feature-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 35px;
    background: #d8f4ff;
    padding: 20px 20px;
    border: 1px solid #c6e6f2;
    border-radius: 4px;
}

.tg-tour-details-video-feature-list ul li:not(:last-child) {
    margin-right: 35px;
}

.tg-tour-details-video-feature-list ul li {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    background: #0c6c8c;
    padding-right: 31px;
    border-radius: 6px;
}

.tg-tour-details-video-feature-list ul li .icon {
    color: #ffffff;
    border-radius: 6px;
    width: 60px;
    height: 60px;
    background: #2a9bc0;
    text-align: center;
    line-height: 58px;
    display: inline-block;
    margin-right: 17px;
}

.tg-tour-details-video-feature-list ul li .icon img {
    width: 44px;
}

.tg-tour-details-video-feature-list ul li .title {
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.tg-tour-details-video-feature-list ul li .duration {
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.tour_rat {
    background: rgb(255, 87, 34);
    color: rgb(255, 255, 255);
    font-size: 16px;
    padding: 0px 5px;
    border-radius: 2px;
    margin-left: 8px;
}

.tour_star {
    font-size: 14.5px;
    line-height: 24px;
    font-weight: 400;
}

.tour_star i {
    font-size: 18px;
    color: rgb(255, 152, 0);
}

.tour-detail_price-box {
    position: relative;
    padding: 30px 30px;
    border-radius: 5px;
    background-color: rgb(255 255 255);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.tour-detail-tabs .form-group {
    position: relative;
    margin-bottom: 20px;
}

.tour-detail-tabs .form-group label {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;

}

.tour-detail-tabs .form-group input {
    position: relative;
    top: 0px;
    width: 100%;
    height: 50px;
    color: #999999;
    font-size: 16px;
    border-radius: 5px;
    padding: 14px 15px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.tour-detail-tabs .form-group button.submit-btn {
    position: relative;
    padding: 16px 10px;
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    color: rgb(255 255 255);
    background-color: rgb(253 76 92);

}

.service-icon {
    margin-bottom: 20px;
}

.service-box {
    padding: 40px 20px;
    text-align: center;
}

.service-box h5 {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}

.service-box p {
    color: #333;
}

.diamond {
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom, #4e6fa1, #0a2a52);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    transform: rotate(45deg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diamond span {
    transform: rotate(-45deg);
    display: block;
    width: 100px;
}

.diamond:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.services-section {
    padding: 60px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 42px;
    font-weight: 800;
}

.services-section h2 span {
    color: #4a6fa5;
    /* bluish highlight */
}

.services-section p.sub-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-box {
    background-color: #8c877a;
    color: #fff;
    font-weight: 600;
    padding: 18px 12px;
    border-radius: 4px;
    margin-bottom: 18px;
    text-align: center;
}

.service-box:hover {
    background-color: #6e6a5f;
}

.service-img {
    max-width: 100%;
}

.testimonial-section {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.testimonial-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonial-section h2 span {
    color: #4a6fa5;
    /* bluish highlight */
}

.testimonial-box {
    background-color: #5a7599;
    color: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-style: italic;
    text-align: left;
}

.testimonial-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #e1e1e1;
}

.testimonial-box .author {
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: #fff;
}

.contact-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

.contact-card h2 {
    font-size: 28px;
    font-weight: bold;
}

.contact-card p {
    font-size: 18px;
    margin-bottom: 10px;
}

.thank-text {
    font-size: 32px;
    font-weight: bold;
    margin-top: 20px;
}

.widget {
    position: relative;
    margin: 40px 0 40px;
}

.widget h3 {
    font-size: 30px;
    line-height: 35px;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul>li:first-child {
    border-top: none;
    padding-top: 0;
}

.widget ul.ttm-recent-post-list>li {
    padding: 15px 0;
    position: relative;
}

.widget a {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    display: block;
}

ul.ttm-recent-post-list>li img {
    display: block;
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 18px;
}

@media (max-width:479px) {
    .breadcum-main-block {
        padding: 120px 0 40px;
        text-align: center;
        margin-bottom: 0;
    }

    section h1 {
        margin-bottom: 40px;
    }

    .about .img-box .corner-img {
        width: 40vw;
    }

    section {
        padding: 40px 0 !important;
    }

    section h1 {
        font-size: 3em;
    }

    .service-sub-block img {
        object-fit: cover;
        object-position: center left;
        width: 100%;
        height: auto;
        clip-path: inset(0 0 0 22%);
        margin: 10px auto 10px;
        margin-left: -40px;
    }

    .bg-slide .content p {
        font-size: 1.4em;
    }

    .bg-slide .content h1 {
        font-size: 2em;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev {
        left: 0;
    }

    .tg-tour-details-video-feature-list ul li {
        width: 100%;
        margin: 0 0 14px 0 !important;
    }

    .breadcum-main-block p {
        font-size: 14px;
    }

    .breadcum-main-block h3 {
        font-size: 26px;
    }

    a.whats-btn {
        padding: 10px 14px;
        margin-right: 4px;
        font-size: 14px;
    }

    a.call-btn {
        padding: 10px 14px;
        margin-right: 4px;
        font-size: 14px;
    }

    a.call-btn i,
    a.whats-btn i {
        font-size: 16px;
    }
}

.sidebar__widget {
    padding: 20px;
}

.sidebar__widget {
    background: #6aa3d1;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.list-wrap {
    padding: 0;
    list-style: none;
}

.list-wrap li {
    background: #7caacf;
    padding: 10px 20px;
    margin: 10px 0;
    border-bottom: 0.5px dotted white;
}

.list-wrap li a {
    font-size: 18px;
    color: white;
    font-weight: 500;
    display: block;
}

.list-wrap li:hover {
    background: #6aa3d1;
}

.service-btn {
    font-size: 18px;
    color: white;
    font-weight: 500;
    display: block;
    background: #7caacf;
    border-bottom: 0.5px dotted white;
}
.justify{
    text-align: justify;
}