@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu';
}


header {
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    background-color: white;
    border-bottom: 2px solid #09b109;
}

.top-bar {
    background-color: white;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 2px dotted rgb(9, 177, 9);
}

.logo {
    width: 100px;
    height: auto;
}

.nav-link {
    font-size: 16px;
    color: #333 !important;
    font-weight: 500;
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: #ff9933 !important;
}

.plan-tour-btn {
    background-color: #ff9933;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.plan-tour-btn:hover {
    background-color: #ff8811;
    color: white;
}



.social-icons a {
    color: #666;
    margin-left: 15px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff9933;
}

.dropdown-toggle::after {
    vertical-align: middle;
}

.hero {
    position: relative;
    background: url('../img/hero.jpg') no-repeat center center/cover;
    height: calc(100vh - 120px);
    margin-top: 120px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 78, 122, 0.727);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content i {
    font-size: 38px;
}

.btn-vd {
    background-color: hsla(calc(33 + 46), 98%, calc(58% - 18%), 100%);
    color: white;
}

.btn-vd:hover {
    background-color: hsla(calc(33 + 46), 98%, calc(58% - 18%), 80%);
    color: white;
}

.wave-line {
    font-size: 2rem;
    margin: 20px 0;
}



.search-section {
    background-image: url(../img/search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}


.search-label {
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
}

.form-control {
    height: 50px;
    border-radius: 4px;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
}

.form-select {
    height: 50px;
    border-radius: 4px;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.search-btn {
    height: 50px;
    background-color: #ff9933;
    border: none;
    color: white;
    padding: 0 30px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 100%;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #ff8811;
}

.section-tag {
    background-color: #e8f4ff;
    color: #0084ff;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 250px;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid white;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.4s ease;
    z-index: 1;
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: white;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.4s ease;
    z-index: 0;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.destination-card:hover::after {
    opacity: 0.1;
    transform: scale(1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.destination-name {
    color: white;
    font-size: 28px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}


.travel-section {
    padding: 0;
    background-color: #fff;
    overflow: hidden;
}

.travel-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.travel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 19/6;
}

.t-head {
    aspect-ratio: 19/4;
}


.section-tag {
    background-color: #f0ffd9;
    color: #84bc00;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}

.travel-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
}

.travel-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    /* border-bottom: 2px dotted #ff8800; */
    padding-bottom: 20px;
}



.video-preview {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 30px;
}

.video-thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    margin-left: 20px;
}

.video-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-subtitle {
    color: #666;
    font-size: 14px;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.video-popup.active {
    display: block;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    top: 50%;
    transform: translateY(-50%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-popup-close {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

.video-popup.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.video-popup.fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.section-tags {
    background-color: #fff3e6;
    color: #ff9933;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.tour-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tour-content {
    padding: 24px;
}

.tour-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-tag {
    color: #666;
    font-size: 14px;
}

.feature-tag span {
    color: #ff9933;
}

.tour-text {
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.price {
    color: #84bc00;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tour-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 1s;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    z-index: 1;
}

.tour-button:before {
    content: '';
    width: 0;
    height: 500%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #333;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.tour-button:hover {
    color: white;
}

.tour-button:hover:before {
    color: white;
    width: 105%;
}



.arrow-icon {
    margin-left: 8px;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    background-image: url(../img/footer-tagline-bg-3.png);
    background-position: top 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #09b109;
}

.footer h5 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 0;
    border-bottom: 2px dotted #ff9933;
    margin-top: 5px;
}

.footer .social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
}

.footer .subscribe-btn {
    background-color: #28a745;
    border: none;
    padding: 8px 16px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.footer .logo img {
    height: auto;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}


.border-line {
    height: 6px;
    background: linear-gradient(to right, #ff9800, #09b109, blue);
    width: 100%;
}

.sicon {
    place-items: end;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.611);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}



.popup-content {
    background: #0d3c34;
    color: #fff;
    border-radius: 8px;
    border: 4px solid #fff;
    overflow: hidden;
    display: flex;
    max-width: 900px;
    width: 90%;
}

.popup-content img {
    width: 45%;
    height: 550px;
    object-fit: cover;
}

.popup-details {
    padding: 20px;
    place-content: center;
    text-align: center;
    flex: 1;
}

.popup-details h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-details input {
    margin-bottom: 10px;
}

.subscribe-btn {
    background-color: #28a745;
    border: none;
    padding: 10px 70px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
}


.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.704), rgba(0, 0, 0, 0.704)),
        url('../img/featured-tour-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.cta-title {
    font-family: cursive;
    font-size: 3.5rem;
    position: relative;
    display: inline-block;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff9800;
}

.feature-list {
    margin: 40px 0;
}

.feature-item {
    margin: 15px 0;
}

.feature-item::before {
    content: '✓';
    margin-right: 10px;
    color: white;
}

.cta-button {
    background-color: #9cce00;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #8bb500;
}

.cta-price {
    font-size: 2.5rem;
    font-weight: bold;
}


.section-label {
    background-color: #e8f4ff;
    color: #0088ff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.team-member-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.team-member-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.team-member-image:hover img {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.member-position {
    color: #ff8800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    margin-bottom: 15px;
}

.member-phone {
    color: #555;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #333;
    position: relative;
}

.social-icon:hover {
    background-color: #e0e0e0;
}


.custom-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.social-icon:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
}


.section-label-new {
    background-color: #fdf2ff;
    color: #cc33ff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}





.blog-card {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    border: none;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-badge {
    font-size: 0.9rem;
    color: #ff8800;
    margin-bottom: 15px;
    display: inline-block;
}

.category-badge.adventure {
    color: #ff6b6b;
}

.category-badge+.category-badge::before {
    content: '/';
    margin: 0 8px;
    color: #ddd;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-decoration: none;
}

.blog-title:hover {
    color: #0088ff;
}

.read-more {
    color: #0088ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #0066cc;
}

.read-more svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}

.dropdown-toggle::after {
    display: none;
}

.overlay-sb {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-color: #f2f2f2;
    overflow-x: hidden;
    transition: 0.2s;
}

.overlay-sb-content {
    position: relative;
    top: 7%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay-sb .read-more {
    margin: 20px;
    text-decoration: none;
    font-size: 18px;
    color: #ff8811;
    display: block;
    transition: 0.3s;
    text-align: start;
    border-bottom: 1px solid #09b109;
    width: fit-content;
    padding-bottom: 10px;
    border-radius: 5px;
}

.overlay-sb .read-more:hover,
.overlay-sb .read-more:focus {
    color: #09b109;
    border-bottom: 1px solid #ff8811;
}

.overlay-sb .closebtn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 60px;
    color: #333;
    text-decoration: none;
}

.sb-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}




.read-more {
    color: #FF8B3D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 40px;
}

.read-more:hover {
    color: #e67220;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.sb-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 20px;
    text-align: start;
}

.sb-text {
    color: #666;
    line-height: 1.6;
    margin: 20px;
    text-align: start;
}

.gallery-container {

    margin: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    text-align: center;
}

.lightbox-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

.other-pages {
    padding-top: 150px;
}


.tb-img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}


.tours-section-new {
    background-color: #8f0ebe;
    background-image: url(../img/search-form-bg-2.png);
    color: white;
    padding: 4rem 0;
}

.tours-card-new {
    background: transparent;
    border: none;
    color: white;
    margin-bottom: 2rem;
}

.tours-image-new {
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in;
}

.tours-image-new:hover {
    transform: scale(1.05);
}

.view-tours-btn {
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 0.5rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-tours-btn:hover {
    background: white;
    color: #8e24aa;
}

.specialist-badge-new {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title-new {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}



.awards-section {
    padding: 4rem 0;
    background: #fff;
}

.award-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.award-image:hover {
    filter: brightness(-10%);
}

.award-title {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: 600;
}




.contact-section {
    background-color: #0077cc;
    padding: 4rem 0;
    color: white;
    margin: 100px 100px;
    border-radius: 10px;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info {
    font-size: 1.1rem;
    opacity: 0.9;
}

.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 100px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


.contact-box {
    padding: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;

}

.image-side {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, #ff8c00);
    padding: 3rem 2rem;
    color: white;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-tours-btn {
    display: flex;
    width: fit-content;
    background: #76b82a;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 1.5rem;

}

.custom-tours-btn:hover {
    background: #669f24;
    color: white;
}

.form-side {
    padding: 3rem;
}

.form-control {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
    overflow: hidden;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(142, 36, 170, 0.1);
    border-color: #8e24aa;
}

.form-control::placeholder {
    color: #999;
}

.send-message-btn {
    width: 100%;
    background: #8e24aa;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-message-btn:hover {
    background: #7b1fa2;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}


.sharechg i {
    transition: all 0.3s ease;
}

.sharechg:hover i {
    display: none;
}

.sharechg:hover::after {
    font-family: "Font Awesome 5 Free";
    content: "\f1e0";
    font-weight: 900;
    font-size: 14px;
    color: inherit;
}


.form-range::-webkit-slider-thumb {
    background: #6c757d;
}

.form-range::-moz-range-thumb {
    background: #6c757d;
}

.form-range::-ms-thumb {
    background: #6c757d;
}

.form-check-input:checked {
    background-color: #9333ea;
    border-color: #9333ea;
}

.dropdown-item {
    font-size: 18px;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px;
    position: relative;
}

.dropdown-item:hover {
    background-color: #8bca02;
    color: #fff;
    border-bottom: none;
}

.dropdown-item:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8bca02;
}



.feature-icon {
    color: #8e44ad;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.view-details {
    background-color: #ff9933;
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: #ff8819;
    color: white;
}

.price-text {
    color: #7ab80e;
    font-size: 1.25rem;
}

.feature-card {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}





@media (max-width: 768px) {
    .contact-box {
        margin: 2rem;
        border-radius: 15px;
    }

    .image-side {
        min-height: 400px;
    }

    .form-side {
        padding: 2rem;
    }

    .contact-section {
        margin: 40px;
    }
}


@media (max-width: 768px) {
    .award-image {
        width: 100px;
        height: 100px;
    }

    .award-title {
        font-size: 0.8rem;
    }
}

@media screen and (max-height: 450px) {
    .overlay-sb a {
        font-size: 20px
    }

    .overlay-sb .closebtn {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }

    .hero-about {
        margin-top: 15px;
    }
}



@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }

    header {
        height: 60px;
    }

    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .search-section {
        padding: 30px 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .travel-section {
        padding: 40px 0;
    }

    .travel-title {
        font-size: 36px;
        margin-top: 30px;
    }

    .video-preview {
        margin-top: 20px;
    }

    .t-head {
        display: none;
    }

    .popup-content {
        display: block;
    }

    .popup-content img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .hero-about {
        margin-top: 15px;
    }

    .other-pages {
        padding-top: 100px;
    }

}