
.navbar .nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffc107;
    border: none;
    padding: 11px 20px;
    border-radius: 50%;
    cursor: pointer;
	z-index:20;
}
/* Remove bootstrap default controls completely */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

/* Minimal invisible navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;        /* small click zone */
    height: 120px;      /* only center area clickable */
    cursor: pointer;
    z-index: 5;
    background: transparent;
}

.slider-nav.left {
    left: 0;
}

.slider-nav.right {
    right: 0;
}

#custom-navbar {
    background: url('../img/head.jpg') center center / cover no-repeat;
    position: relative;
    min-height: 100px;
}

/* Overlay */
#custom-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0; /* IMPORTANT change */
}

/* Content above overlay */
#custom-navbar .container {
    position: relative;
    z-index: 2;
}
#custom-navbar.navbar {
    background-color: transparent !important;
}
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-img {
        height: 250px;
    }
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #000000, #ab7f05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Underline Effect */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #ffcc70);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.activity-img {
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .activity-img {
        height: 250px;
    }
}.resort-footer {
    position: relative;
    color: #ccc;
    background: url('../img/foot.png') no-repeat center center; /* Footer background image */
    background-size: cover;
    overflow: hidden;
    padding: 60px 0;
}

.resort-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1); /* Dark overlay for readability */
    backdrop-filter: blur(2px);     /* Glass blur effect */
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.resort-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Titles */
.footer-title {
    color: #ffd700; /* Luxury golden color */
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

/* Divider Line */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 10px 0;
}

/* Bottom Text */
.resort-footer a {
    color: #ccc;
    text-decoration: none;
}

.resort-footer a:hover {
    color: #ffd700;
}

.footer-links li {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 5px; /* Space for border */
}

/* Light visible border initially */
.footer-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.2); /* Pale golden light */
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effect: bright gradient */
.footer-links li:hover::after {
    background: linear-gradient(90deg, #ffd700, #ffcc70);
    transform: scaleX(1.05); /* Slight expansion effect */
}


.gallery-section {
    background: #f9f9f9;
}

.gallery-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c3c60;
    margin-bottom: 40px;
}

/* Base pills */
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 500;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect */
.nav-pills .nav-link:hover {
    color: #fff;
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Active tab */
.nav-pills .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #f6e27f);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    border-radius: 50px;
}

/* Golden underline animation */
.nav-pills .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0%;
    height: 3px;
    background: #f6e27f;
    border-radius: 2px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.nav-pills .nav-link:hover::after,
.nav-pills .nav-link.active::after {
    width: 60%;
}

/* Responsive small screens */
@media(max-width:768px){
    .nav-pills .nav-link{
        font-size: 14px;
        padding: 8px 15px;
        margin: 3px;
    }
}

.gallery-section img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Initial state */
.animate-col {
    opacity: 0;
    transform: translateY(50px); /* Slide up */
    transition: all 0.8s ease-out;
}

/* Fade right / left */
[data-animate="fade-right"] {
    transform: translateX(-50px);
}
[data-animate="fade-left"] {
    transform: translateX(50px);
}

/* When visible */
.animate-col.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.modal-content {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.modal-title {
    color: #0c3c60;
    letter-spacing: 0.5px;
}

.modal-body p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.modal-footer .btn {
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dark background with subtle shadow */
#galleryModal .modal-content {
    background: rgba(0,0,0,0.95);
    border-radius: 10px;
    overflow: hidden;
}

/* Modal title */
#galleryModal .modal-title {
    font-weight: 600;
    font-size: 22px;
}

/* Image hover effect in gallery */
#our-gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#our-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-img:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.custom-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 5px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    background: linear-gradient(45deg, #ffb400, #ff6b00);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.activity-img{
    height: 400px;
    object-fit: cover;
}
/* Remove all borders from nav pills */
.custom-tabs .nav-link {
    border: none !important;
    box-shadow: none !important;
}

/* Active tab ka bhi border remove */
.custom-tabs .nav-link.active {
    border: none !important;
    box-shadow: none !important;
}

/* Focus outline bhi remove karna ho to */
.custom-tabs .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Background blur */
.modern-modal .modal-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: none;
    overflow: hidden;
    animation: zoomInModal 0.4s ease;
}

/* Gradient header */
.modern-modal .modal-header {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-bottom: none;
    padding: 20px 25px;
}

.modern-modal .modal-title {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

/* Modern close button */
.modern-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.modern-close:hover {
    background: #fff;
    color: #ff5722;
}

/* Image wrapper */
.image-wrapper {
    padding: 25px;
}

.image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

/* Image hover zoom */
.image-wrapper img:hover {
    transform: scale(1.05);
}

/* Modal animation */
@keyframes zoomInModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dark backdrop */
.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.85);
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button Base */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Individual Colors */
.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5ed7);
}

.call {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Mobile Adjust */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button Base */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Individual Colors */
.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5ed7);
}

.call {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Mobile Adjust */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}


