/*======================================
    TravelMittra Premium Website
    style.css
=======================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================================
        Global Styles
=======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

section{
    padding:100px 0;
}

.container{
    max-width:1200px;
}

/*======================================
        Custom Scrollbar
=======================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#084298;
}

/*======================================
            Navbar
=======================================*/

.navbar{

    padding:18px 0;

    transition:.4s ease;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    z-index:9999;

}

.navbar.scrolled{

    background:#081b29;

    padding:12px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.navbar-brand{

    color:#fff !important;

    font-size:30px;

    font-weight:700;

    letter-spacing:1px;

}

.navbar-brand span{

    color:#ffc107;

}

.nav-link{

    color:#fff !important;

    margin:0 12px;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.nav-link:hover{

    color:#ffc107 !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#ffc107;

    transition:.4s;

}

.nav-link:hover::after{

    width:100%;

}

/* Book Button */

.book-btn{

    background:#ffc107;

    color:#111;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    border:none;

}

.book-btn:hover{

    background:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.25);

}

/*======================================
            Hero Section
=======================================*/

.hero{

    height:100vh;

    position:relative;

    background:url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    color:#fff;

    text-align:center;

}

.hero-content h5{

    font-size:20px;

    letter-spacing:2px;

    color:#ffc107;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:68px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.2;

}

.hero-content p{

    font-size:20px;

    max-width:760px;

    margin:auto;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    background:#ffc107;

    color:#111;

    padding:15px 45px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.hero-btn:hover{

    background:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.3);

}

/* Floating Animation */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.hero-btn{

    animation:float 3s ease-in-out infinite;

}

/* Mouse Scroll */

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:30px;

    animation:float 2s infinite;

}

/*======================================
        Hero Social Icons
=======================================*/

.hero-social{

    position:absolute;

    left:40px;

    top:50%;

    transform:translateY(-50%);

    z-index:10;

}

.hero-social a{

    display:block;

    color:#fff;

    margin:18px 0;

    font-size:22px;

    transition:.3s;

}

.hero-social a:hover{

    color:#ffc107;

    transform:scale(1.2);

}

/*======================================
        Responsive
=======================================*/

@media(max-width:991px){

.navbar{

background:#081b29;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

}

.hero-social{

display:none;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:38px;

}

.hero-content h5{

font-size:18px;

}

.hero-content p{

font-size:16px;

padding:0 10px;

}

.hero-btn{

padding:13px 35px;

}

.navbar-brand{

font-size:24px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:32px;

}

.hero{

height:90vh;

}

.book-btn{

margin-top:10px;

}

}
/* ===========================================
   POPULAR DESTINATIONS
=========================================== */

#destinations{
    background:#f8f9fa;
    padding:100px 0;
}

#destinations h2{
    font-size:42px;
    font-weight:700;
    color:#0d1b2a;
}

#destinations p{
    color:#6c757d;
}

#destinations .card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#destinations .card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

#destinations img{

    height:320px;

    object-fit:cover;

    transition:.6s;

}

#destinations .card:hover img{

    transform:scale(1.08);

}

#destinations .card-body{

    padding:30px;

}

#destinations h3{

    font-size:30px;

    font-weight:700;

    color:#0d1b2a;

}

#destinations ul{

    margin-top:20px;

}

#destinations .list-group-item{

    border:none;

    padding-left:0;

    color:#555;

    font-weight:500;

}

#destinations .btn{

    padding:12px 30px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

#destinations .btn:hover{

    transform:translateY(-3px);

}



/* ===========================================
   WHY CHOOSE TRAVELMITTRA
=========================================== */

.why-section{

    padding:100px 0;

    background:white;

}

.why-section h2{

    font-size:42px;

    font-weight:700;

    color:#0d1b2a;

}

.why-card{

    background:white;

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-card i{

    font-size:60px;

    color:#0d6efd;

    margin-bottom:20px;

}

.why-card h3{

    font-size:40px;

    font-weight:700;

    color:#198754;

}

.why-card h5{

    margin:15px 0;

    font-weight:600;

}

.why-card p{

    color:#6c757d;

    line-height:28px;

}



/* ===========================================
   TESTIMONIALS
=========================================== */

.testimonial{

    background:#f8f9fa;

    padding:100px 0;

}

.testimonial h2{

    font-size:42px;

    font-weight:700;

    color:#0d1b2a;

}

.carousel-item{

    padding:20px;

}

.testimonial-card{

    background:white;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    max-width:850px;

    margin:auto;

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card h4{

    margin-top:20px;

    font-weight:600;

}

.testimonial-card p{

    font-size:18px;

    color:#666;

    line-height:32px;

}

.stars{

    color:#ffc107;

    font-size:28px;

    margin-bottom:15px;

}

.carousel-control-prev-icon,

.carousel-control-next-icon{

    background-color:#0d6efd;

    border-radius:50%;

    padding:20px;

}



/* ===========================================
   HOVER ANIMATIONS
=========================================== */

.card{

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

}

.btn-warning{

    transition:.3s;

}

.btn-warning:hover{

    background:#0d6efd;

    color:white;

    border-color:#0d6efd;

}



/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:991px){

#destinations h2,
.why-section h2,
.testimonial h2{

    font-size:34px;

}

#destinations img{

    height:260px;

}

.testimonial-card{

    padding:30px;

}

}

@media(max-width:768px){

#destinations{

    padding:70px 0;

}

.why-section{

    padding:70px 0;

}

.testimonial{

    padding:70px 0;

}

#destinations h2,
.why-section h2,
.testimonial h2{

    font-size:30px;

}

.why-card{

    margin-bottom:25px;

}

.testimonial-card{

    padding:25px;

}

.testimonial-card p{

    font-size:16px;

}

}
/* ===========================================
   ADVENTURE ACTIVITIES
=========================================== */

#activities{
    background:#f8f9fa;
    padding:80px 0;
}

#activities h2{
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:15px;
}

#activities p{
    color:#666;
}

.activity-card{
    overflow:hidden;
    border:none;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    background:#fff;
}

.activity-card img{
    height:220px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.activity-card:hover img{
    transform:scale(1.1);
}

.activity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.activity-card .card-body{
    padding:25px;
}

.activity-card h4{
    font-weight:600;
    color:#0d1b2a;
    margin-bottom:15px;
}

.activity-card p{
    color:#666;
    font-size:15px;
}

.activity-btn{
    background:#ffc107;
    color:#000;
    padding:10px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.activity-btn:hover{
    background:#0d6efd;
    color:#fff;
}




/* ===========================================
   FOOTER
=========================================== */

footer{
    background:#0d1b2a;
    color:#fff;
    padding-top:70px;
}

footer h3{
    font-weight:700;
    margin-bottom:20px;
}

footer h5{
    font-weight:600;
    margin-bottom:20px;
}

footer p{
    color:#d6d6d6;
    line-height:28px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

footer ul li a:hover{
    color:#ffc107;
    padding-left:8px;
}

footer .social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#1b263b;
    color:#fff;
    font-size:20px;
    margin-right:10px;
    transition:.4s;
}

footer .social-icons a:hover{
    background:#ffc107;
    color:#000;
    transform:translateY(-6px);
}

footer hr{
    border-color:rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    padding:20px 0;
    color:#bbb;
}




/* ===========================================
   BUTTON HOVER EFFECT
=========================================== */

.btn-warning{
    transition:.4s;
}

.btn-warning:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}




/* ===========================================
   CARD ANIMATION
=========================================== */

.card{
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}




/* ===========================================
   IMAGE ZOOM
=========================================== */

.card img{
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}




/* ===========================================
   SMOOTH SCROLL
=========================================== */

html{
    scroll-behavior:smooth;
}




/* ===========================================
   RESPONSIVE DESIGN
=========================================== */

@media(max-width:1200px){

.hero h1{
    font-size:55px;
}

}



@media(max-width:992px){

.navbar{
    background:#0d1b2a;
}

.hero{
    text-align:center;
}

.hero h1{
    font-size:45px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:32px;
}

.activity-card{
    margin-bottom:25px;
}

footer{
    text-align:center;
}

footer .social-icons{
    justify-content:center;
}

}



@media(max-width:768px){

.hero{
    height:90vh;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:16px;
}

.section-title{
    font-size:28px;
}

.card img{
    height:220px;
}

footer{
    padding-top:50px;
}

}



@media(max-width:576px){

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

.book-btn{
    width:100%;
}

.activity-btn{
    width:100%;
}

.btn-warning{
    width:100%;
}

.card-body{
    padding:20px;
}

footer h3{
    font-size:28px;
}

footer h5{
    margin-top:20px;
}

}