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


:root {
    --primary-color: #2095ae;
    --white-color: #ffffff;
    --light-gray-color: #ddd;
    --blue-color: #0f2454;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

.heading-normal-txt {
    font-size: 1rem;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.headings {
    font-size: 3rem;
    font-family: 'ubuntu';
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

.headings span {
    color: var(--primary-color);
}

.secondary-heading {
    font-size: 2.5rem;
    font-family: 'ubuntu';
    padding: 1rem 0;
}

.lead {
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}

.primary-btn {
    width: 50%;
    outline: none;
    background-color: var(--primary-color);
    border: none;
    padding: 0.7rem;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--white-color);
    cursor: pointer;
}

header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

header.sticky {
    background: var(--primary-color);
}

.logo img {
    height: 40px;
    object-fit: cover;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 0.9rem;
    position: relative;
}

nav ul li a {
    color: var(--white-color);
    font-size: 1.1rem;
}

nav ul li::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white-color);
    opacity: 0;
    transition: all 0.3s ease-in;
}

nav ul li:hover::before {
    width: 100%;
    opacity: 1;
}

.btn {
    font-size: 1.3rem;
    color: var(--white-color);
    cursor: pointer;
    display: none;
}



main {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.swiper {
    height: 100vh;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100vh;
    position: relative;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100%;
}


.overlay::after {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.img-overlay {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-family: 'Ubuntu', sans-serif;
}

.img-overlay p {
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--white-color);
    animation: animate 3s forwards;
}

.img-overlay h2 {
    font-size: 5rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: animate 3s forwards;
    transition: all 0.5s ease-in-out;
}


@keyframes animate {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

.img-overlay h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
}


#location-search {
    transform: translateY(-170%);
}

.form-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    width: 100%;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control {
    width: 100%;
}

form input, select {
    padding: 0.6rem;
    outline: none;
    font-size: 1.1rem;
    color:black;
    border: 1px solid var(--light-gray-color);
    margin: 0 0.4rem;
    border-radius: 4px;
}



.about-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    margin: 3rem 0;
}

.about-content-wrapper h2 span {
    color: var(--primary-color);
    font-family: 'ubuntu';
}

.about-content-wrapper ul {
    list-style: none;
}

.about-content-wrapper ul .icons {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.about-content-wrapper ul .icons i {
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--white-color);
}

.about-content-wrapper ul p {
    margin-left: 1rem;
}

.agency-right-side .img {
    position: relative;
}

.agency-right-side .img img {
    width: 75%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    transition: 0.5s ease-in;
}

.agency-right-side .img::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 55px;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: var(--primary-color);
    z-index: -2;
}

.agency-right-side .img img:hover {
    transform: scale(0.95);
}



#choose-place {
    padding: 6rem 0;
}

.choose-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
}

.lg-img {
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    width: 100%;
    height: 96%;
}

.lg-img:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.lg-img:hover {
    transform: scale(1.02);
}

.img-content {
    position: absolute;
    bottom: 20px;    
}

.img-content h2 {
    padding: 0 2rem;
    color: var(--white-color);
}

.hidden-content {
    padding: 0.5rem 2rem;
    color: var(--white-color);
    transform: translateY(120%);
    transition: all 0.3s ease-in-out;
}

.hidden-content i {
    padding: 0.2rem 0.2rem 0 0;
}

.lg-img:hover .hidden-content {
    transform: translateY(0%);
}

.price-label {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;  
    position: absolute;
    top: 25px;
    right: 0;
    transform: rotate(45deg);   
}

.row-wise-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}



#static-counter {
    padding: 6rem 0;
    background: url(../img/background.jpg) no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 4;
}

#static-counter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.static-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.static-icons {
    color: var(--white-color);
    cursor: pointer;
}

.static-icons i {
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.numbers {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.static-icons i:hover {
    background: var(--primary-color);
    border: none;
    transform: translateY(-20%);
}



#top-destination {
    padding: 6rem 0;
}

.top-destination-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    width: 100%;
}

.carousel {
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease-in;
    overflow: hidden; 
    height: 300px; 
}

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

.carousel:hover {
    transform: scale(1.05); 
}

.carousel:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hidden-content-carousel {
    padding: 0.5rem 2rem;
    color: var(--white-color);
    transform: translateY(120%); 
    transition: all 0.5s ease-in-out;
}

.carousel:hover .hidden-content-carousel {
    transform: translateY(0);
}



#travel-countries {
    padding: 6rem 0;
}

.travel-countries-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr; 
    gap: 2rem; 
    width: 100%;
}

.countries-content {
    margin-top: 2rem;
}

.countries-content ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.countries-content ul li {
    margin: 1.5rem 0;
}

.countries-content ul li i {
    margin: 0rem 0.5rem;
}


.slider-content-wrapper {
    overflow: hidden;
}



#travel-blog {
    background: var(--blue-color);
    padding: 6rem 0;
}

.blog h2 {
    color: var(--light-gray-color);
}

.blog {
    position: relative;
}

.blog:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.blog-image-overlay {
    width: 100%;
}

.blog-img-content {
    position: absolute;
    bottom: 20px;
}

.blog-img-content {
    background:rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 50%;
    padding: 1rem 1rem;
    transition: all 0.3s ease-in;
    color: var(--white-color);
}

.blog .price-label {
    transform: rotate(0deg);
}


#testimonials {
    padding: 6rem 0;
    width: 100%;
    background: url('../img/background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#testimonials .headings {
    color: var(--white-color);
}

.review {
    color: var(--white-color);
}

.testimonials-wrapper {
    overflow: hidden;
    background:rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 2rem 6rem;

}

.testimonials-wrapper i {
    color: var(--primary-color);
}

.testimonials-wrapper p {
    text-align: center;
}

.test-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-img img {
    width: 20%;
    object-fit: cover;
    margin: 1rem 0;
    border-radius: 50%;
}

.testimonials-content .icons {
    text-align: center;
}

.guest {
    font-size: 0.75rem;
}


#footer {
    padding: 6rem 0;
    background: var(--blue-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--light-gray-color);
}

.ft-content {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--white-color);
}

.icon i{
    padding: 1rem;
    font-size: 2.5rem;
    background: var(--primary-color);
}

.content {
    padding: 1rem;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    grid-gap: 2rem;
    color: var(--white-color);
    margin: 4rem 0;
}

.about img {
    width: 50%;
    object-fit: cover;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons i {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem;
    font-size: 1.3rem;
    margin: 1rem 0;
    border-radius: 50%;
    cursor: pointer;
}

.about .lead {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.links ul {
    list-style: none;
}

.links ul li {
    margin: 1rem;
    font-size: 1rem;
}

.links ul li a {
    color: var(--white-color);
}

.subscribe .lead {
    font-size: 1.1rem;
    letter-spacing: 1;
}

form {
    position: relative;
}

.subscribe input {
    width: 100%;
    padding: 0.6rem 1rem; 
    outline: none;
    border: 1px solid var(--light-gray-color);
    margin-top: 1rem;
    border-radius: 5px;
}

.subscribe button {
    display: block;
    position: absolute;
    top: 30%;
    right: 4%;
    padding: 0.5rem 1.5rem;
    outline: none;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    font-size: 1rem;
}

.footer {
    border-top: 1px solid var(--light-gray-color);
    color: var(--white-color);
}

.footer p {
    text-align: center;
    padding: 1rem 0;
}