@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.top{

}

/* Top Bar Styles */
.top-bar {
    background-color: #eb5e28;
    color: #fffcf2;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    max-width: 1200px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info .phone,
.contact-info .email {
    color: #252422;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-info .phone:hover,
.contact-info .email:hover {
}

.social-icons {
    display: inline-flex;
    gap: 18px;
    margin-right: 20px;
}

.social-icons a {
    color: #fffcf2;
    font-size: 15px;
    transition: color 0.4s ease;
}

.social-icons a:hover {
    color: #252422;
}

.auth-links {
    display: inline-flex;
    gap: 15px;
}

.auth-links a {
    color: #eb5e28;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #fffcf2;
}

.login {
    color: #eb5e28 !important;
}

.signup {
    color: #eb5e28 !important;
}

/* Navbar Styles */
.navbar {
    /* background-color: transparent; */
     background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fffcf2 !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    color: #fffcf2 !important;
    font-size: 24px;
    font-weight: 700;
}

.navbar-brand i {
    margin-right: 8px;
}

.navbar-brand:hover {
    color: #00bcd4 !important;
}

.navbar-nav .nav-link {
    color: #fffcf2 !important;
    margin-left: 25px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    gap: 10px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #00bcd4 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #00bcd4 !important;
}

.search-input {
    background-color: #eb5e28;
    color: #fffcf2;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    width: 130px;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #fffcf2;
}

.search-input:focus {
    color: #000;
    width: 200px;
    box-shadow: none;
    border: none;
    outline: none;
}

/* Shrinked Navbar on Scroll */
.navbar.shrink {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar.shrink .navbar-brand {
    font-size: 20px;
}

.navbar.shrink .navbar-nav .nav-link {
    margin-left: 20px;
    font-size: 15px;
}

.navbar.shrink .search-input {
    width: 120px;
}

.navbar.shrink .search-input:focus {
    width: 180px !important;
}

/* Header Section for Carousel */
.header-section {
    position: relative;
}

.header-section .carousel {
    margin-top: 0;
}

/* Responsive Breakpoints */

/* Large Desktop (1200px and up) - Default styles cover this */

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        margin-left: 20px;
        font-size: 15px;
    }

    .search-input {
        width: 120px;
    }

    .search-input:focus {
        width: 180px;
    }

    .navbar.shrink .search-input {
        width: 110px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar.shrink .navbar-brand {
        font-size: 18px;
    }
}

/* Tablet/Laptop (768px to 991px) */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .navbar.shrink {
        padding: 10px 0;
    }

    .navbar-collapse {
        background-color: #1a252f;
        margin-top: 10px;
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .search-input {
        margin-top: 10px;
        width: 100%;
        max-width: 250px;
    }

    .search-input:focus {
        width: 100%;
        max-width: 300px;
    }

    .carousel-item {
        height: 500px;
    }

    .carousel-caption h1 {
        font-size: 50px;
    }

    .carousel-caption h3 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 20px;
    }

    .navbar-brand {
        font-size: 20px;
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.shrink {
        padding: 8px 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .navbar.shrink .navbar-brand {
        font-size: 16px;
    }

    .navbar-collapse {
        background-color: #1a252f;
        margin-top: 5px;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        font-size: 15px;
        padding: 10px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .search-input {
        width: 100%;
        margin-top: 10px;
        padding: 8px 12px;
    }

    .search-input:focus {
        width: 100%;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        left: 5%;
        padding: 0 15px;
    }

    .carousel-caption h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .carousel-caption h3 {
        font-size: 25px;
    }

    .carousel-caption p {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .carousel-caption .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .carousel-indicators {
        bottom: 5px;
    }

    .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar.shrink {
        padding: 6px 0;
    }

    .navbar-brand {
        font-size: 16px;
    }

    .navbar.shrink .navbar-brand {
        font-size: 14px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .search-input {
        padding: 6px 10px;
        font-size: 14px;
    }

    .carousel-item {
        height: 350px;
    }

    .carousel-caption {
        left: 2%;
        right: 2%;
        text-align: center;
    }

    .carousel-caption h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .carousel-caption h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .carousel-caption p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .carousel-caption .btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .carousel-indicators {
        bottom: 3px;
    }

    .carousel-indicators li {
        width: 6px;
        height: 6px;
    }
}

/* Extra Small Devices (Portrait phones, < 320px) */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 14px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption h3 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 15px;
    }
}

/* Extra Styles for Carousel */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
}

.carousel-caption h3 {
    color: #fffcf2;
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 400;
}

.carousel-caption h1 {
    color: #fffcf2;
    font-size: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.carousel-caption p {
    color: #ccc5b9;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 400;
}

.carousel-caption .btn {
    background-color: #eb5e28;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

.carousel-indicators {
    bottom: 10px;
}

/* New Styles for Popular Tour Packages Section */
.popular-tour-packages {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.popular-tour-packages .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/2356045/pexels-photo-2356045.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.popular-tour-packages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.popular-tour-packages .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.popular-tour-packages .header h2 {
    font-size: 24px;
    margin: 0;
    color: #555;
}

.popular-tour-packages .header a {
    color: #eb5e28;
    text-decoration: none;
    font-size: 16px;
}

.popular-tour-packages .carousel {
    position: relative;
    display: flex;
    background: none;
    align-items: center;
    padding: 30px 60px;
}

.carousel-item::before {
    background: none !important;
    background-color: transparent !important;
}

.carousel-caption {
    background: none !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 20px;
}

.popular-tour-packages .carousel-inner {
    background: none;
    display: flex;
    transition: transform 0.5s ease;
    overflow: hidden;
    width: 100%;
    padding: 0 60px;
}

.popular-tour-packages .card {
    flex: 0 0 33.33%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 18rem !important;
}

.popular-tour-packages .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.popular-tour-packages .card-content {
    padding: 15px;
}

.popular-tour-packages .card h3 {
    font-size: 18px;
    margin: 0 0 5px;
    color: #333;
}

.popular-tour-packages .card .price {
    font-size: 16px;
    color: #eb5e28;
    margin: 0 0 5px;
}

.popular-tour-packages .card .duration {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.popular-tour-packages .card .reviews {
    font-size: 14px;
    color: #ffcc00;
}

.popular-tour-packages .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6600;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 2;
}

.popular-tour-packages .prev,
.popular-tour-packages .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #eb5e28;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
}

.popular-tour-packages .prev {
    left: -20px;
}

.popular-tour-packages .next {
    right: -20px;
}

/* Responsive design for Popular Tour Packages */
@media (max-width: 768px) {
    .popular-tour-packages .card {
        flex: 0 0 100%;
        margin: 0 5px;
    }

    .popular-tour-packages .prev,
    .popular-tour-packages .next {
        padding: 5px;
    }
}