body{

font-family:Poppins,sans-serif;

background:#FFFFFF;

   

}

/* ===========================================
   TOP HEADER
=========================================== */

.top-header{
    background:#fcd703;
    color:#000;
    font-size:15px;
    font-weight:500;
    padding:10px 0;
}

.top-header a{
    color:#000;
    text-decoration:none;
}

.top-header a:hover{
    color:#006400;
}

.top-header i{
    margin-right:6px;
}

/* ===========================================
   MAIN NAVBAR
=========================================== */

.custom-navbar{
    background:#222;
    min-height:75px;
    padding:0;
    box-shadow:0 3px 12px rgba(0,0,0,.25);
}

.custom-navbar .container{
    min-height:75px;
    display:flex;
    align-items:center;
}

/* ===========================================
   LOGO
=========================================== */

.logo{
    padding:0;
    margin:0;
}

.logo img{
    height:62px;
    width:auto;
    display:block;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.03);
}

/* ===========================================
   BRAND
=========================================== */

.navbar-brand{
    padding:0;
    margin:0;
}

/* ===========================================
   MENU
=========================================== */

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-item{
    margin-left:10px;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-size:17px;
    font-weight:500;
    padding:10px 14px !important;
    transition:.3s;
    position:relative;
}

/* Yellow underline animation */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#FFD700;

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:#FFD700 !important;

}

.navbar-nav .nav-link.active{

    color:#FFD700 !important;

}

/* ===========================================
   LOGIN BUTTON
=========================================== */

.btn-warning{

    background:#FFC107;

    border:none;

    color:#000;

    padding:9px 22px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-warning:hover{

    background:#ffb300;

    color:#000;

    transform:translateY(-2px);

}

/* ===========================================
   TOGGLER
=========================================== */

.navbar-toggler{

    border:1px solid rgba(255,255,255,.25);

    padding:6px 10px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* ===========================================
   TABLET
=========================================== */

@media (max-width:991px){

.custom-navbar{

    min-height:70px;

}

.logo img{

    height:54px;

}

.navbar-collapse{

    background:#222;

    margin-top:10px;

    padding:15px;

    border-radius:8px;

}

.navbar-nav .nav-item{

    margin-left:0;

}

.navbar-nav .nav-link{

    padding:12px 0 !important;

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.btn-warning{

    width:100%;

    margin-top:15px;

}

}

/* ===========================================
   MOBILE
=========================================== */

@media (max-width:768px){

.top-header{

    font-size:13px;

    padding:8px 0;

}

.custom-navbar{

    min-height:65px;

}

.custom-navbar .container{

    min-height:65px;

}

.logo img{

    height:48px;

}

.navbar-nav .nav-link{

    font-size:16px;

}

}

/* ===========================================
   SMALL MOBILE
=========================================== */

@media (max-width:480px){

.top-header{

    font-size:12px;

}

.logo img{

    height:42px;

}

.custom-navbar{

    min-height:60px;

}

.custom-navbar .container{

    min-height:60px;

}

}

.hero{
    width:100%;
    height:700px;
    background-image:url("images/bnr.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Large Tablets */
@media (max-width:991px){

.hero{
    height:500px;
}

}

/* Mobile */
@media (max-width:768px){

.hero{
    height:300px;
}

}

/* Small Mobile */
@media (max-width:480px){

.hero{
    height:220px;
}

}
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.45);
}

.hero-content{
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}
.hero-content p{
    color: #fff;
    font-size: 28px;
}

.hero h1{

font-size:70px;

font-weight:bold;

}

.hero p{

font-size:22px;

}

.btn-book{

padding:15px 35px;

font-size:20px;

border-radius:40px;

}

.card{

transition:.4s;

}

.card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.2);

}

footer{

background:#222;

color:white;

padding:50px 0;

}

footer ul{

list-style:none;

padding:0;

}

footer li{

padding:6px;

}

footer a{

color:white;

text-decoration:none;

}



.page-banner{
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("images/bnr.png") center center/cover;
    padding:100px 0;
    color:#fff;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
}

.destination-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.destination-card:hover{
    transform:translateY(-10px);
}

.destination-card img{
    height:250px;
    object-fit:cover;
}

.destination-card .card-body{
    padding:25px;
}

.destination-card p{
    color:#666;
}

.badge{
    font-size:13px;
    padding:8px 12px;
    border-radius:20px;
}

/* Login */

.login-section{

    background:#f4f7fb;

    min-height:80vh;

    display:flex;

    align-items:center;

}

.login-card{

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.login-card h2{

    font-weight:700;

}

.login-card .form-control{

    height:50px;

    border-radius:10px;

}

.login-card .btn{

    height:50px;

    border-radius:10px;

    font-weight:600;

}

.login-card a{

    text-decoration:none;

}

footer{
    background:#1f1f1f;
    color:#fff;
}

footer h4{
    font-weight:600;
    margin-bottom:20px;
}

footer p{
    color:#ddd;
    line-height:1.8;
}

footer a{
    color:#ddd;
    transition:.3s;
}

footer a:hover{
    color:#ffc107;
    padding-left:5px;
    text-decoration:none;
}

footer i{
    color:#ffc107;
}

footer hr{
    border-color:#555;
}

footer .fa-facebook-f:hover,
footer .fa-instagram:hover,
footer .fa-x-twitter:hover,
footer .fa-youtube:hover{
    color:#ffc107;
}

.hotel-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

.hotel-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.hotel-card img{
    height:240px;
    object-fit:cover;
}

/* Contact Page */

.contact-section{

    background:#f8f9fa;

}

.contact-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-info{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.info-box{

    display:flex;

    align-items:flex-start;

    margin-bottom:30px;

}

.info-box i{

    width:60px;

    height:60px;

    background:#0d6efd;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    margin-right:20px;

}

.info-box h5{

    font-weight:600;

    margin-bottom:5px;

}

.info-box p{

    margin:0;

    color:#666;

}

.contact-card .form-control{

    border-radius:10px;

    height:50px;

}

.contact-card textarea.form-control{

    height:auto;

}

.map-container{

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.about-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.about-box i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.card img{
    height:300px;
    object-fit:cover;
}

/* Gallery */

.gallery-section{

    background:#f8f9fa;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.gallery-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:0.4s;

}

.gallery-card:hover img{

    transform:scale(1.1);

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    background:rgba(0,0,0,.65);

    color:#fff;

    text-align:center;

    padding:15px;

    transform:translateY(100%);

    transition:.4s;

}

.gallery-card:hover .gallery-overlay{

    transform:translateY(0);

}

.gallery-overlay h5{

    margin:0;

    font-weight:600;

}

/* ===========================
   Register Page
=========================== */

.register-section{
    background:#f4f7fb;
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:60px 0;
}

.register-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.register-card h2{
    font-weight:700;
    margin-bottom:10px;
}

.register-card p{
    color:#6c757d;
}

.register-card .form-control{
    height:50px;
    border-radius:10px;
    margin-bottom:15px;
}

.register-card .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

.register-card .btn{
    height:50px;
    border-radius:10px;
    font-weight:600;
}

.register-card a{
    text-decoration:none;
}

.register-card a:hover{
    text-decoration:underline;
}

.ad-space{
    background:#f8f9fa;
    border:2px dashed #ccc;
    text-align:center;
    padding:40px 20px;
    margin:30px 0;
    border-radius:10px;
    color:#666;
    font-weight:600;
}

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    max-width:700px;
    margin:auto;
    background:#212529;
    color:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    z-index:9999;
    display:none;
}

.cookie-content h5{
    margin-bottom:10px;
}

.cookie-content p{
    margin-bottom:15px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

@media(max-width:768px){

.cookie-banner{
    left:10px;
    right:10px;
    bottom:10px;
}

.cookie-buttons .btn{
    width:100%;
}

}

.card{
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card-body ul li{
    margin-bottom:10px;
}

.card-body a{
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.card-body a:hover{
    color:#198754;
    padding-left:8px;
}

section a{
    font-weight:500;
}

@media(max-width:768px){

.card{
margin-bottom:20px;
}

}

.feedback-section{
    background:#f5f7fa;
    min-height:80vh;
}

.feedback-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.feedback-card h2{
    font-weight:700;
}

.feedback-card .form-control,
.feedback-card .form-select{
    height:50px;
    border-radius:10px;
}

.feedback-card textarea{
    height:auto;
    border-radius:10px;
}

.feedback-card .btn{
    padding:12px 35px;
    border-radius:10px;
}

.feedback-card:hover{
    transform:translateY(-3px);
    transition:.3s;
}

/* ===========================
   Pagination
=========================== */

.custom-pagination .page-link{

    color:#198754;

    border-radius:12px;

    margin:0 5px;

    padding:10px 18px;

    border:2px solid #198754;

    transition:.3s;

    font-weight:600;

}

.custom-pagination .page-link:hover{

    background:#198754;

    color:#fff;

    transform:translateY(-2px);

}

.custom-pagination .active .page-link{

    background:#198754;

    border-color:#198754;

    color:#fff;

    box-shadow:0 5px 15px rgba(25,135,84,.4);

}

@media(max-width:768px){

.custom-pagination .page-link{

padding:8px 12px;

margin:2px;

font-size:14px;

}

}

/* Cuisine Section */

.cuisine-section{
    background:#ffffff;
    padding:80px 0;
}

.section-title{
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:35px;
}


.cuisine-gallery{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:0;
    margin-top:40px;
}

.cuisine-card{
    width:200px;
    height:350px;
    background:#fff;
    padding:5px;
    margin-left:-18px;
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}

.cuisine-card:first-child{
    margin-left:0;
}

.cuisine-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.rotate-left{
    transform:rotate(-8deg);
}

.rotate-right{
    transform:rotate(8deg);
}

.cuisine-card:hover{
    transform:rotate(0deg) scale(1.12);
    transition:.3s;
    z-index:100;
}

.cuisine-caption{
    margin-top:30px;
    background:#f4b400;
    color:#000;
    font-size:24px;
    font-weight:bold;
    padding:12px;
    border-radius:4px;
    text-align:center;
}

.cuisine-btn{
    margin-top:25px;
    padding:12px 30px;
    border-radius:30px;
}

/* ================= Events ================= */

.events-section{
    background:#f8f9fa;
}

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:0.35s;
    height:100%;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.event-img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.event-body{
    padding:20px;
    text-align:center;
}

.event-body h5{
    color:#f4b400;      /* Yellow */
    font-weight:700;
    font-size:22px;
    margin-bottom:12px;
}

/* Event Title */

.event-body h5{
    color: #000 !important;   /* Black */
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}

/* Event Button */

.event-btn{
    background: #ffc107 !important;
    border: 2px solid #ffc107 !important;
    color: #000 !important;      /* Black text */
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    transition: 0.3s;
}

.event-btn:hover{
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #000 !important;
    transform: translateY(-3px);
}

/* ===============================
   Destination Buttons
================================ */



.place-view-btn{
    display:inline-block;
    background:#ffc107;
    color:#000;
    text-decoration:none !important;
    padding:15px 40px;
    font-size:18px;
    font-weight:bold;
    border-radius:50px;
    transition:0.3s;
}

.place-view-btn:hover{
    background:#e0a800;
    color:#000;
    text-decoration:none !important;
}

.sites-view-btn{
    display:inline-block;
    background:#ffc107;
    color:#000;
    text-decoration:none !important;
    padding:15px 40px;
    font-size:18px;
    font-weight:bold;
    border-radius:50px;
    transition:0.3s;
}

.sites-view-btn:hover{
    background:#e0a800;
    color:#000;
    text-decoration:none !important;
}

/* Things To Do Button */

.things-btn{
    display:inline-block;
    margin-top:20px;
    background:#ffc107;
    color:#000;
    text-decoration:none;
    padding:14px 36px;
    border-radius:50px;
    font-weight:700;
    font-size:17px;
    transition:.3s;
    border:2px solid #ffc107;
}

.things-btn:hover{
    background:#e0a800;
    border-color:#e0a800;
    color:#000;
    text-decoration:none;
    transform:translateY(-3px);
}

/* Town & Cities Button */

.town-btn{

    background:#FFC107 !important;

    color:#000 !important;

    border:none !important;

    font-weight:bold !important;

    border-radius:30px !important;

    padding:12px 30px !important;

    text-decoration:none !important;

}

.town-btn:hover{

    background:#E0A800 !important;

    color:#000 !important;

    text-decoration:none !important;

}

/* Tea Garden Button */

.tea-btn{

background:#FFC107;

color:#000;

font-weight:bold;

padding:12px 30px;

border-radius:30px;

text-decoration:none;

border:none;

transition:.3s;

}

.tea-btn:hover{

background:#E0A800;

color:#000;

text-decoration:none;

transform:translateY(-3px);

}

/* Navbar Logo */

.logo{

    width:350px;

    height:100px;

}

.logo img{

    width:350px;

    height:100px;

    object-fit:contain;

    display:block;

}

.blog-card{

    transition:.3s;

    border-radius:15px;

    overflow:hidden;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.blog-card img{

    height:240px;

    object-fit:cover;

}

.blog-card h4{

    font-size:22px;

    font-weight:700;

}

.blog-card .btn{

    border-radius:30px;

}

/* ================= BLOG HOME ================= */

.blog-home-card{

border-radius:18px;

overflow:hidden;

transition:.35s;

}

.blog-home-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.blog-home-card img{

height:240px;

object-fit:cover;

transition:.4s;

}

.blog-home-card:hover img{

transform:scale(1.05);

}

.blog-home-card h4{

font-size:23px;

font-weight:700;

margin-bottom:15px;

line-height:1.4;

}

.blog-category{

display:inline-block;

background:#FFC107;

color:#000;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.blog-home-card p{

line-height:1.8;

font-size:15px;

}

.blog-home-card .btn{

border-radius:30px;

padding:10px 22px;

}