
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

body {
    padding-top: 70px;
}

/* Navbar Styling */
.custom-navbar {
    background: rgba(160, 171, 212, 0.429);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff !important;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: #0056b3 !important;
}

.nav-link {
    font-size: 1.3rem;
    color: #2f2d2d !important;
    padding: 10px 15px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #007bff !important;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Dropdown Styling */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
    display: none;
    position: absolute;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    width: 200px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    font-size: 1rem;
    color: #333 !important;
    padding: 10px;
    transition: background 0.3s ease-in-out;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #007bff;
    color: #64719c !important;
}

/* Request Button */
.request-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.request-btn:hover {
    background: linear-gradient(45deg, #0056b3, #003d80);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 8px 10px;
    }

    .navbar-toggler {
        border: none;
        background: none;
        font-size: 1.5rem;
    }

    .navbar-collapse {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Carousel Styling */
.carousel {
    height: 850px;
}
.carousel-item {
    height: 850px;
    position: relative;
}
.carousel-item img {
    height: 850px;
    width: 100%;
    object-fit: cover;
}
.carousel-caption {
    text-align: left;
    left: 10%;
    right: auto;
    max-width: 50%;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.carousel-caption .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .carousel {
        height: 600px;
    }
    .carousel-item {
        height: 600px;
    }
    .carousel-item img {
        height: 600px;
    }
    .carousel-caption {
        max-width: 70%;
        padding: 15px;
    }
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 500px;
    }
    .carousel-item {
        height: 500px;
    }
    .carousel-item img {
        height: 500px;
    }
    .carousel-caption {
        max-width: 80%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 400px;
    }
    .carousel-item {
        height: 400px;
    }
    .carousel-item img {
        height: 400px;
    }
    .carousel-caption {
        max-width: 90%;
        padding: 10px;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* FILTER SECTION - Modern Glass Effect */
.filter-section {
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translate(-50%, 100%);
    background: rgba(72, 195, 206, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 1px solid rgba(104, 163, 205, 0.3);
    transition: all 0.3s ease-in-out;
}

/* Filter Section Heading */
.filter-section h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Stylish Form Elements */
.filter-section select,
.filter-section input {
    border-radius: 50px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

/* Hover & Focus Effects */
.filter-section select:hover,
.filter-section input:hover,
.filter-section select:focus,
.filter-section input:focus {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* Apply Button */
.filter-section button {
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    background: #007bff;
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.filter-section button:hover {
    background: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 91, 187, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-section {
        width: 95%;
        padding: 15px;
    }
    .filter-section .d-flex {
        flex-direction: column;
        gap: 12px;
    }
    .filter-section select,
    .filter-section input,
    .filter-section button {
        width: 100%;
    }
}

body {
    background-color: #f4f4f4;
}





/* Carousel Styling */
.carousel {
    height: 850px;
}
.carousel-item {
    height: 850px;
    position: relative;
}
.carousel-item img {
    height: 850px;
    width: 100%;
    object-fit: cover;
}
.carousel-caption {
    text-align: left;
    left: 10%;
    right: auto;
    max-width: 50%;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.carousel-caption .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .carousel {
        height: 600px;
    }
    .carousel-item {
        height: 600px;
    }
    .carousel-item img {
        height: 600px;
    }
    .carousel-caption {
        max-width: 70%;
        padding: 15px;
    }
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 500px;
    }
    .carousel-item {
        height: 500px;
    }
    .carousel-item img {
        height: 500px;
    }
    .carousel-caption {
        max-width: 80%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 400px;
    }
    .carousel-item {
        height: 400px;
    }
    .carousel-item img {
        height: 400px;
    }
    .carousel-caption {
        max-width: 90%;
        padding: 10px;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* FILTER SECTION - Modern Glass Effect */
.filter-section {
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translate(-50%, 100%);
    background: rgba(72, 195, 206, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 1px solid rgba(104, 163, 205, 0.3);
    transition: all 0.3s ease-in-out;
}

/* Filter Section Heading */
.filter-section h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Stylish Form Elements */
.filter-section select,
.filter-section input {
    border-radius: 50px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

/* Hover & Focus Effects */
.filter-section select:hover,
.filter-section input:hover,
.filter-section select:focus,
.filter-section input:focus {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* Apply Button */
.filter-section button {
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    background: #007bff;
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
}

/* Button Hover Effect */
.filter-section button:hover {
    background: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 91, 187, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-section {
        width: 95%;
        padding: 15px;
    }
    .filter-section .d-flex {
        flex-direction: column;
        gap: 12px;
    }
    .filter-section select,
    .filter-section input,
    .filter-section button {
        width: 100%;
    }
}

body {
    background-color: #f4f4f4;
}






.LG1{
    background: linear-gradient(to right, #8ec4ec, #ffffff); /* Soft Blue to Light */
    padding: 50px 0;
}











.curved-container {
    display: flex;
    justify-content: space-around; /* Ensures images spread across the screen */
    align-items: flex-end;
    padding: 40px 5%;
    gap: 50px; /* Adjusts spacing between cards */
    position: relative;
    margin-top: 100px;
}

.destination-card {
    width: 180px;
    height: 320px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Curved Effect */
.destination-card:nth-child(1) {
    transform: translateY(50px) rotate(-10deg);
}

.destination-card:nth-child(2) {
    transform: translateY(30px) rotate(-5deg);
}

.destination-card:nth-child(3) {
    transform: translateY(0px) rotate(0deg);
}

.destination-card:nth-child(4) {
    transform: translateY(30px) rotate(5deg);
}

.destination-card:nth-child(5) {
    transform: translateY(50px) rotate(10deg);
}

.destination-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.destination-card img:hover {
    transform: scale(1.1); /* Slightly enlarge the image */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Adds a shadow effect */
}

h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .curved-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .destination-card {
        transform: none; /* Removes curve for small screens */
    }
}























body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    /* background-color: #2193b0; */
    background-image: url('https://www.transparenttextures.com/patterns/cloudy-day.png'); 
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}


.travel-slider-section {
    max-width: 1800px;
    margin: 40px auto;
    padding: 20px;
    /* background-image: url(https://media.istockphoto.com/id/1149092646/vector/blue-line-curve-water-wave-abstract-background-in-flat-vector-illustration-design-style.jpg?s=612x612&w=0&k=20&c=Zoz1IwgmjseDPWe0vyO0YcOdkIdeimxTNeCrZRMj81g=); */

}

h2 {
    font-size: 34px;
    color: #595858;
    font-weight: 500px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

p {
    color: #898585;
}

.slider1-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider1-track {
    display: flex;
    width: max-content;
    animation: slide-left 52s linear infinite;
}

.destination-card1 {
    flex: 0 0 300px;
    margin: 10px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pop-up effect on hover */
.destination-card1:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.destination-card1 img {
    width: 100%;
    height: 200px;
}

.card1-info {
    padding: 15px;
}

.card1-info h3 {
    margin: 0;
    color: #333;
}

.card1-info p {
    font-size: 14px;
    color: #777;
}

/* Animation */
@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Stop scrolling when hovered */
.slider1-wrapper:hover .slider1-track {
    animation-play-state: paused;
}














.container2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
  }
  
  .image {
    flex: 1;
  }
  
  .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .text {
    flex: 1;
    padding-left: 40px;
  }
  
  .text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  .features {
    margin-top: 20px;
  }
  
  .features div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .features i {
    font-size: 20px;
    color: #ff6b00;
    margin-right: 10px;
  }
  
  .learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .learn-more:hover {
    background-color: #e65c00;
  }
  











/* Section with Background Image */
.lets-go1 {
background: url('https://source.unsplash.com/1600x900/?nature,mountains') no-repeat center center/cover;
color: rgb(8, 8, 8);
padding: 100px 20px;
position: relative;
}

/* Dark Overlay for Better Readability */
.lets-go1::before {
content: "";
position: absolute;
top: 0;

left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right,#ffffff,#aed5f0); /* Soft Blue to Light */
z-index: 1;
}

.container {
position: relative;
z-index: 2;
}

.section-title {
font-size: 2.8rem;
font-weight: bold;
text-transform: uppercase;
animation: fadeIn 1.5s ease-in-out;
}

.section-subtitle {
font-size: 1.5rem;
margin: 15px 0;
animation: fadeIn 2s ease-in-out;
}

.section-description {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 20px;
}

/* Button Styling */
.explore-btn {
font-size: 1.2rem;
padding: 12px 30px;
border-radius: 30px;
transition: all 0.3s ease-in-out;
background: #ff6b6b;
border: none;
box-shadow: 0 4px 8px rgba(195, 175, 175, 0.3);
}

.explore-btn:hover {
background: white;
color: #ff6b6b;
transform: scale(1.1);
}

/* Image Styling */
.travel-image {
width: 90%;
height: 700px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(20, 126, 15, 0.2);
animation: fadeIn 2s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.row {
text-align: center;
}

.text-content {
margin-bottom: 30px;
}
}

/* CONTACT SECTION - Gradient Background */
#contact {
    background: linear-gradient(to right, #e3f2fd, #ffffff); /* Soft Blue to Light */
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTACT CARD - Glassmorphism Effect */
#contact .card {
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.8); /* Light Glass Effect */
    backdrop-filter: blur(10px);
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #333;
    border: 1px solid rgba(0, 123, 255, 0.2);
    max-width: 550px;
    width: 90%;
}

/* HOVER EFFECT - Smooth Elevation */
#contact .card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

/* CONTACT CARD HEADING */
#contact .card h2 {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #007bff; /* Blue Accent */
}

/* CONTACT FORM INPUTS */
#contact .card input,
#contact .card textarea {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    background: #f8f9fa;
    color: #333;
}

/* INPUT FOCUS EFFECT */
#contact .card input:focus,
#contact .card textarea:focus {
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}



/* GALLERY CONTAINER */
.gallery-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* GRID LAYOUT */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 0.5 fr);
    grid-auto-rows: 100px;
    grid-template-columns: 500px;
    gap: 15px;
    padding: 20px;
}

/* IMAGE STYLING */
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* HOVER EFFECTS */
.gallery img:hover {
    transform: scale(1.07) ;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* DIFFERENT IMAGE SIZES FOR A COLLAGE EFFECT */
.gallery img:nth-child(1),
.gallery img:nth-child(4) {
    grid-row: span 2;
}

.gallery img:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

/* TITLE STYLING */
.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
    letter-spacing: 1.2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery img {
        border-radius: 10px;
    }
    .gallery img:nth-child(1),
    .gallery img:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }
}







/* CONTACT SECTION */
#contact .card {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures button on left and image on right */
    flex-wrap: wrap;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

/* CONTACT BUTTON - Stylish Gradient */
#contact .card button {
    background: linear-gradient(to right, #007bff, #00bfff);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* BUTTON HOVER EFFECT */
#contact .cardi button:hover {
    background: linear-gradient(to right, #0056b3, #0088cc);
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
}

/* IMAGE STYLING */
#contact .cardi img {
    width: 370px; /* Adjust the size */
    /* height: auto; */
    height: 370px;
    margin-left: 50px; /* Space between button and image */
    margin-top: 32px;
    border-radius: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
    #contact .cardi {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #contact .cardi img {
        margin-top: 20px; /* Add space on smaller screens */
        margin-left: 0;
    }
}


.social-icons a {
transition: 0.3s;
}

.social-icons a:hover {
color: #007bff !important;
}

footer {
font-size: 14px;
}

footer a {
text-decoration: none;
transition: 0.3s;
}
.text-muted {
color: #dcdcdc !important; /* Light gray for better visibility */
}
footer a:hover {
color: #f8f9fa !important;
text-decoration: underline;
}

.social-icons a {
transition: 0.3s;
}

.social-icons a:hover {
color: #007bff !important;
}

