@charset "utf-8";
/* CSS Document */


/* =========================
   Topbar
========================= */
.topbar{
    background:#0d3b66;
    padding:10px 0;
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.topbar i{
    color:#f4b400;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.topbar a:hover{
    color:#f4b400;
}

/* =========================
   Header
========================= */
.main-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.navbar{
    padding:15px 0;
}

/* Logo */
.header-logo{
    max-height:90px;
    width:auto;
}

/* Nav Links */
.navbar-nav .nav-link{
    color:#0d3b66;
    font-size:16px;
    font-weight:600;
    margin:0 12px;
    transition:0.3s;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:#f4b400;
}

/* Stylish Active Menu */
.active-nav{
    background:linear-gradient(135deg,#0d3b66,#1c5ea1);
    color:#fff !important;
    padding:10px 22px !important;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(13,59,102,0.25);
}

/* Book Button */
.book-btn{
    background:linear-gradient(135deg,#f4b400,#ff9800);
    color:#fff;
    padding:11px 26px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(244,180,0,0.30);
}

.book-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    background:linear-gradient(135deg,#ff9800,#f4b400);
}

/* Mobile Responsive */
@media(max-width:991px){

    .navbar-nav{
        text-align:center;
        padding-top:15px;
    }

    .navbar-nav .nav-link{
        margin:10px 0;
    }

    .book-btn{
        display:inline-block;
        margin-top:10px;
    }

    .header-logo{
        max-height:70px;
    }
	
}

/* =========================
   Hero Slider
========================= */
.hero-slider{
    position:relative;
    overflow:hidden;
}

.carousel-item{
    height:90vh;
    min-height:600px;
    position:relative;
}

.slider-img{
    height:100%;
    overflow:hidden;
}

.slider-img img{
    height:100%;
    object-fit:cover;
    animation:zoomEffect 10s ease-in-out infinite;
}

/* Overlay */
.carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

/* Zoom Animation */
@keyframes zoomEffect{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
}

/* Caption */
.carousel-caption{
    z-index:2;
    bottom:50%;
    transform:translateY(50%);
    text-align:center;
}

.carousel-caption span{
    font-size:22px;
    letter-spacing:2px;
    color:#fff;
    margin-bottom:15px;
    text-transform:uppercase;
}

.carousel-caption h1{
    font-size:65px;
    font-weight:700;
    margin-bottom:20px;
}

.carousel-caption p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

/* Button */
.slider-btn{
    display:inline-block;
    background:linear-gradient(135deg,#f4b400,#ff9800);
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(244,180,0,0.35);
}

.slider-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    background:linear-gradient(135deg,#ff9800,#f4b400);
}

/* Custom Arrows */
.custom-arrow{
    width:60px;
    height:60px;
    background:rgba(255,255,255,0.18);
    border:2px solid rgba(255,255,255,0.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(5px);
    transition:0.3s;
}

.custom-arrow i{
    color:#fff;
    font-size:22px;
}

.carousel-control-prev:hover .custom-arrow,
.carousel-control-next:hover .custom-arrow{
    background:#f4b400;
    border-color:#f4b400;
}

/* Indicators */
.carousel-indicators button{
    width:14px !important;
    height:14px !important;
    border-radius:50%;
    background:#fff;
    opacity:0.6;
}

.carousel-indicators .active{
    background:#f4b400;
    opacity:1;
}

/* Responsive */
@media(max-width:991px){

    .carousel-item{
        height:75vh;
    }

    .carousel-caption h1{
        font-size:42px;
    }

    .carousel-caption p{
        font-size:16px;
    }
}

@media(max-width:576px){

    .carousel-caption h5{
        font-size:16px;
    }

    .carousel-caption h1{
        font-size:30px;
    }

    .carousel-caption p{
        font-size:14px;
    }

    .slider-btn{
        padding:12px 28px;
    }

    .custom-arrow{
        width:45px;
        height:45px;
    }
}

/* =========================
   About Section
========================= */
.about-section{
    background:#f8fbff;
    overflow:hidden;
}

/* Image */
.about-img{
    position:relative;
}

.main-img{
    width:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* Experience Box */
.experience-box{
    position:absolute;
    bottom:-25px;
    right:30px;
    background:linear-gradient(135deg,#0d3b66,#1d5fa2);
    color:#fff;
    padding:25px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(13,59,102,0.25);
}

.experience-box span{
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
    font-family:'Playfair Display', serif;
}

.experience-box p{
    margin:0;
    font-size:15px;
    font-family:'Poppins', sans-serif;
}

/* Content */
.about-content{
    padding-left:15px;
}

.sub-title{
    display:inline-block;
    font-size:24px;
    font-weight:600;
    color:#f4b400;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-family:'Poppins', sans-serif;
}

.about-content h2{
    font-size:40px !important;
    font-weight:700;
    color:#0d3b66;
    line-height:1.3;
    margin-bottom:25px;
    font-family:'Playfair Display', serif;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
    font-family:'Poppins', sans-serif;
}

/* Feature Box */
.feature-box{
    background:#fff;
    padding:16px 18px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    width:50px;
    height:50px;
    background:#f4b400;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.feature-box span{
    font-size:15px;
    font-weight:600;
    color:#0d3b66;
    font-family:'Poppins', sans-serif;
}

/* Button */
.about-btn{
    display:inline-block;
    margin-top:10px;
    background:linear-gradient(135deg,#f4b400,#ff9800);
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    font-family:'Poppins', sans-serif;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(244,180,0,0.25);
}

.about-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background:linear-gradient(135deg,#ff9800,#f4b400);
}

/* Responsive */
@media(max-width:991px){

    .about-content{
        padding-left:0;
    }

    .about-content h2{
        font-size:38px;
    }

    .experience-box{
        right:15px;
        bottom:-20px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:24px !important;
    }

    .experience-box{
        padding:18px 20px;
    }

    .experience-box h2{
        font-size:30px;
    }
}

/* =========================
   Amenities Section
========================= */
.amenities-section{
    background:#f8fbff;
    overflow:hidden;
    position:relative;
}

/* Section Title */
.section-title span{
    color:#f4b400;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    font-family:'Poppins', sans-serif;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#0d3b66;
    margin-top:15px;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
    font-family:'Poppins', sans-serif;
}

/* Amenity Box */
.amenity-box{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.amenity-box::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,rgba(244,180,0,0.08),rgba(13,59,102,0.08));
    transition:0.5s;
}

.amenity-box:hover::before{
    left:0;
}

.amenity-box:hover{
    transform:translateY(-10px);
}

/* Icon */
.amenity-box .icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d3b66,#1d5fa2);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(13,59,102,0.25);
    position:relative;
    z-index:1;
}

.amenity-box .icon i{
    color:#fff;
    font-size:34px;
}

/* Heading */
.amenity-box span{
    font-size:24px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
    position:relative;
    z-index:1;
}

/* Paragraph */
.amenity-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    font-family:'Poppins', sans-serif;
    position:relative;
    z-index:1;
}

/* Responsive */
@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .section-title h2{
        font-size:30px;
    }

    .amenity-box{
        padding:30px 20px;
    }

    .amenity-box span{
        font-size:22px;
    }
}

/* =========================
   ADA Section
========================= */
.ada-section{
    background:#f8fbff;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
}

/* Main Box */
.ada-box{
    background:linear-gradient(135deg,#0d3b66,#1d5fa2);
    border-radius:30px;
    padding:50px 40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(13,59,102,0.25);
}

/* Background Glow */
.ada-box::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

/* Icon */
.ada-icon{
    width:110px;
    height:110px;
    background:rgba(255,255,255,0.12);
    border:2px solid rgba(255,255,255,0.18);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    backdrop-filter:blur(4px);
}

.ada-icon i{
    font-size:48px;
    color:#f4b400;
}

/* Subtitle */
.ada-subtitle{
    display:inline-block;
    color:#f4b400;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

/* Heading */
.ada-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
}

/* Paragraph */
.ada-content p{
    color:rgba(255,255,255,0.85);
    font-size:16px;
    line-height:1.9;
    margin-bottom:0;
}

/* Button */
.ada-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#f4b400,#ff9800);
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(244,180,0,0.30);
}

.ada-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    background:linear-gradient(135deg,#ff9800,#f4b400);
}

/* Responsive */
@media(max-width:991px){

    .ada-box{
        padding:40px 30px;
        text-align:center;
    }

    .ada-content h2{
        font-size:34px;
    }

    .ada-btn{
        margin-top:10px;
    }
}

@media(max-width:576px){

    .ada-box{
        padding:30px 20px;
        border-radius:20px;
    }

    .ada-content h2{
        font-size:28px;
    }

    .ada-content p{
        font-size:15px;
    }

    .ada-btn{
        width:100%;
        padding:14px 20px;
        font-size:16px;
    }

    .ada-icon{
        width:90px;
        height:90px;
    }

    .ada-icon i{
        font-size:38px;
    }
}

/* =========================
   Gallery Section
========================= */
.gallery-section{
    background:#f8fbff;
}

.gallery-subtitle{
    color:#f4b400;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-title{
    font-size:48px;
    font-weight:700;
    color:#0d3b66;
    margin-top:15px;
}

/* Gallery Item */
.gallery-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

/* =========================
   Fullscreen Modal
========================= */
.custom-modal{
    display:none;
    position:fixed;
    z-index:9999;
    padding-top:40px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:hidden;
    background:rgba(0,0,0,0.95);
}

/* Modal Content */
.modal-content-custom{
    position:relative;
    margin:auto;
    width:90%;
    max-width:1000px;
    text-align:center;
}

.gallery-slide{
    display:none;
}

.gallery-slide img{
    width:100%;
    max-height:85vh;
    object-fit:contain;
    border-radius:20px;
    animation:zoomIn 0.4s ease;
}

/* Zoom Animation */
@keyframes zoomIn{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Close Button */
.close-btn{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    z-index:10000;
    transition:0.3s;
}

.close-btn:hover{
    color:#f4b400;
}

/* Prev & Next Buttons */
.prev-btn,
.next-btn{
    cursor:pointer;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    user-select:none;
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

.prev-btn:hover,
.next-btn:hover{
    background:#f4b400;
    color:#fff;
}

/* Responsive */
@media(max-width:768px){

    .gallery-title{
        font-size:34px;
    }

    .gallery-item img{
        height:250px;
    }

    .prev-btn,
    .next-btn{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .close-btn{
        font-size:30px;
        right:20px;
    }
}

/* =========================
   Footer Section
========================= */
.footer-section{
    background:#0b1f33;
    color:#fff;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
}

/* Footer Top */
.footer-top{
    position:relative;
}

/* Footer Logo */
.footer-logo{
    font-size:38px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

/* Paragraph */
.footer-widget p{
    color:rgba(255,255,255,0.75);
    line-height:1.9;
    font-size:15px;
}

/* Widget Title */
.footer-widget h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
    font-family:'Playfair Display', serif;
}

.footer-widget h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:#f4b400;
    border-radius:10px;
}

/* Quick Links */
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:rgba(255,255,255,0.75);
    text-decoration:none;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:15px;
}

.footer-links a:hover{
    color:#f4b400;
    padding-left:5px;
}

/* Contact Info */
.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact-item i{
    width:45px;
    height:45px;
    background:#f4b400;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
}

.contact-item div,
.contact-item a{
    color:rgba(255,255,255,0.75);
    text-decoration:none;
    line-height:1.8;
    transition:0.3s;
}

.contact-item a:hover{
    color:#f4b400;
}

/* Social Icons */
.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:0.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#f4b400;
    transform:translateY(-5px);
}

/* Footer Bottom */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px 0;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,0.7);
    font-size:14px;
}
.cgs {color:#f4b400 !important; text-decoration:none;}
	.cgs a{color:#f4b400 !important; text-decoration:none;}
	.cgs a:hover{color:#fff !important; text-decoration:none;}
	.cgs2 {color:#f4b400 !important; text-decoration:none;}
	.cgs2 a{color:#f4b400 !important; text-decoration:none;}
	.cgs2 a:hover{color:#fff !important; text-decoration:none;}
/* Responsive */
@media(max-width:991px){

    .footer-logo{
        font-size:32px;
    }

    .footer-widget h4{
        margin-top:10px;
    }
}

@media(max-width:576px){

    .footer-logo{
        font-size:28px;
    }

    .footer-widget h4{
        font-size:24px;
    }

    .social-icons{
        flex-wrap:wrap;
    }
}

/* =========================
   Back To Top Button
========================= */
.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#f4b400,#ff9800);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(244,180,0,0.35);
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all 0.4s ease;
}

/* Show Button */
.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Hover Effect */
.back-to-top:hover{
    color:#fff;
    transform:translateY(-5px);
    background:linear-gradient(135deg,#ff9800,#f4b400);
}

/* Responsive */
@media(max-width:576px){

    .back-to-top{
        width:48px;
        height:48px;
        font-size:18px;
        right:15px;
        bottom:15px;
    }
}
.faq {color:#f4b400; text-decoration:none;}
.faq a{color:#f4b400; text-decoration:none;}
.faq a:hover{color:#000; text-decoration:none;}
    .gallery img {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    .modal-img {
      width: 100%;
      transition: transform 0.3s ease;
    }

    .zoomed {
      transform: scale(1.5);
      cursor: zoom-out;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: white;
      background: rgba(0,0,0,0.5);
      border: none;
      padding: 10px 15px;
      cursor: pointer;
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
	#more {display: none;}
	.attraction-card { transition: all 0.3s; }
    .attraction-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
	.txt {color:#f4b400;}
	.txt a{color:#f4b400; text-decoration:none;}
	.txt a:hover{color:#000000; text-decoration:none;}