@font-face {
    font-family: 'marvin';
    src: url('../fonts/marvin-demo.otf') format('opentype'); /* Use 'opentype' instead of 'otf' */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nrt';
    src: url('../fonts/nrt-reg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
span,
div {
    font-family: 'nrt', sans-serif !important;
}

.navbar,
.btn,
.card,
.footer {
    font-family: 'nrt', sans-serif !important;
}

.activity-card {
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    position: relative;
    padding: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: none; /* Remove fixed max-height */
    height: auto; /* Allow height to adjust to content */
    min-height: 600px; /* Minimum height to maintain card size */
    transition: max-height 0.5s ease-out, transform 0.3s ease-out; /* Smoother transitions */
}

.activity-card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Smooth shadow */
}

.activity-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.activity-header {
    border-bottom: 2px solid #004aad;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.activity-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #004aad;
}

.activity-subtitle {
    color: #555;
    font-size: 1rem;
}

.activity-body p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-body p i {
    color: #0078d4;
    font-size: 1.2rem;
}

.join-btn {
    margin-top: 15px;
    background: #004aad;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s;
}

.join-btn:hover {
    background: #00327c;
}

.activity-footer {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.see-more {
    font-size: 1rem;
    color: #004aad;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.see-more:hover {
    text-decoration: underline;
}

.extra-details {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #555;
    display: none;
}

.extra-details h5 {
    font-weight: 700;
    color: #004aad;
    margin-bottom: 10px;
}

.extra-details ul {
    list-style: none;
    padding-left: 0;
}

.extra-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.extra-details ul li i {
    color: #0078d4;
}

@media (max-width: 768px) {
    .activity-card {
        padding: 15px;
        max-height: none; /* Remove max-height to allow full expansions */
    }

    .activity-image img {
        height: 200px; /* Smaller image on mobile */
    }

    .activity-header h4 {
        font-size: 1.4rem; /* Smaller header */
    }

    .activity-body p {
        font-size: 0.9rem; /* Smaller text for body */
    }

    .join-btn {
        font-size: 1rem; /* Smaller button text */
    }

    .see-more {
        font-size: 0.9rem; /* Smaller "See More" text */
    }
}

@media (max-width: 480px) {
    .activity-card {
        padding: 15px;
        max-height: none; /* Remove fixed max-height */
        height: auto; /* Allow height to adjust to content */
        min-height: 450px; /* Minimum height to maintain card size */
    }

    .activity-image img {
        height: 150px; /* Image height for mobile */
    }

    .activity-header h4 {
        font-size: 1.2rem; /* Smaller header on mobile */
    }

    .activity-body p {
        font-size: 0.85rem; /* Smaller body text */
    }

    .join-btn {
        font-size: 0.95rem; /* Adjust button text */
        padding: 8px 16px; /* Adjust button padding */
    }

    .see-more {
        font-size: 0.85rem; /* Adjust see more text */
    }
}

.service-card {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}
.icon-circle {
    background-color: #f0f8ff;
    transition: background-color 0.3s ease;
}
.icon-circle:hover {
    background-color: #007bff;
}
h5,
.short-text {
    transition: opacity 0.3s ease-out;
    opacity: 1;
    margin-bottom: 1.5rem; /* Add space between text */
}
.short-text {
    font-size: 1rem;
    margin-bottom: 0.5rem; /* Space between short text and long text */
}
.service-card.active .short-text {
    opacity: 0; /* Fade out short text */
}
.service-card.active .long-text {
    display: block;
    max-height: 200px; /* Adjust to fit content */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}
.service-card .long-text {
    display: none;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
}
.see-more {
    transition: opacity 0.3s ease-out;
    font-size: 1rem;
}
.service-card.active .see-more {
    opacity: 0; /* Hide 'See More' text on expand */
}

.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Rounded corners for a smooth, elegant feel */
}

.about-img-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border: 5px solid transparent; /* Transparent border initially */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.05); /* Soft outer and inner shadow */
    transition: transform 0.5s ease, box-shadow 0.4s ease, filter 0.4s ease; /* Smooth transitions */
}

.about-img-container img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    filter: brightness(1.2) contrast(1.2); /* Enhance brightness and contrast for vibrancy */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 0 35px rgba(0, 0, 0, 0.1); /* Deeper shadows for a more pronounced 3D effect */
    border: 5px solid #ff5e00; /* Border color changes to orange on hover */
}

.about-img-container img:hover {
    box-shadow: 0 8px 35px rgba(255, 94, 0, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.1); /* Glow effect with soft inner shadow */
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.7s;
}

.btn-hover:hover {
    color: black !important;
}

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-white) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar {
    background: rgba(255, 255, 255, 0.1); /* Light transparency */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.sticky-top.navbar-light {
    background: rgba(255, 255, 255, 0.1); /* Light transparency when sticky */
    backdrop-filter: blur(10px);
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.426); /* Darker transparency */
    backdrop-filter: blur(15px); /* Stronger frosted glass effect */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

.navbar-toggler .bi-list {
    font-size: 1.4rem; /* Adjust size as needed */
    color: black ; /* Default color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.navbar-toggler:hover .bi-list {
    color: white; /* Change color on hover */
    transform: scale(1.2); /* Slightly enlarge on hover */
}

.navbar-toggler {
    padding: 12px 16px; /* Adjust padding */
    border: 2px solid var(--bs-primary); /* Optional border */
    border-radius: 10px; /* Rounded corners */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Slightly transparent */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

@media (max-width: 991.98px) {
.sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white); /* Keep the clean white background */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.299); /* Deeper shadow for more elevation */
    border-radius: 10px; /* Slight rounding for elegance */
}

.navbar-light .navbar-brand img {
    max-height: 45px; /* Keep it consistent */
    margin-right: 15px;
}

.navbar.navbar-expand-lg .navbar-toggler {
    padding: 12px 25px; /* Slightly larger size for better interaction */
    border: 2px solid var(--bs-primary); /* Thicker border for more visibility */
    border-radius: 8px; /* Rounded edges */
    color: var(--bs-primary); /* Consistent primary color */
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1); /* Slight zoom effect */
}

.navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD; /* Light border */
    padding-top: 10px;
}

.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 15px 30px; /* Enhanced padding for larger clickable area */
    color: var(--bs-dark) !important;
    font-size: 1rem; /* Larger font for bold, modern look */
    font-weight: 600; /* Bold for stronger emphasis */
    text-transform: uppercase; /* Uppercase for a clean, impactful design */
    letter-spacing: 1px; /* Increased letter spacing for clarity */
    position: relative;
    transition: all 0.3s ease-in-out;
    border-radius: 8px; /* Slightly rounded edges */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-dark) !important; /* Change text color to white */
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%); /* Gradient hover effect */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transform: translateY(-3px); /* Slight upward movement for depth */
}

@media (max-width: 991.98px) {
    .social-media-buttons .btn {
        background-color: rgba(255, 255, 255, 0.1);
        border: 2px solid var(--bs-primary) !important;
        color: var(--bs-primary) !important;
    }

    .social-media-buttons .btn i {
        color: var(--bs-primary) !important;
    }

    .social-media-buttons .btn:hover {
        background-color: var(--bs-primary);
        color: #fff !important;
    }

    .social-media-buttons .btn:hover i {
        color: #fff !important;
    }
}

.social-media-buttons .btn {
    background-color: transparent; /* Transparent background */
    border: 2px solid #fff; /* White border */
    color: #fff; /* Icon color is white by default */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    position: relative; /* Required for positioning the icon on hover */
}

.social-media-buttons .btn:hover {
    background-color: #fff; /* Change background to white on hover */
    color: #333; /* Change icon color to dark */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.social-media-buttons .btn.facebook {
    border-color: #000000;
    color: #000000;
}

.social-media-buttons .btn.facebook:hover {
    background-color: #4267B2;
    color: #fff;
}

.social-media-buttons .btn.instagram {
    border-color: #000000;
    color: #000000;
}

.social-media-buttons .btn.instagram:hover {
    background-color: #E4405F;
    color: #fff;
}

.social-media-buttons .btn.linkedin {
    border-color: #000000;
    color: #000000;
}

.social-media-buttons .btn.linkedin:hover {
    background-color: #0077B5;
    color: #fff;
}

.social-media-buttons .btn.whatsapp {
    border-color: #000000;
    color: #000000;
}

.social-media-buttons .btn.whatsapp:hover {
    background-color: #25D366;
    color: #fff;
}

.social-media-buttons .btn i {
    transition: color 0.3s ease; /* Ensure icon color changes smoothly */
}

.social-media-buttons .btn:hover i {
    color: #fff; /* Ensure icon stays visible and becomes white on hover */
}

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
        border-radius: 20px; /* Rounded corners */
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: rgba(255, 255, 255, 0.1); /* Keep Glassmorphism effect on scroll */
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;

    }
}

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
.carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
}

.bg-breadcrumb-modern-alt {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.7), rgba(50, 50, 50, 0.85)),
                url('../img/citadle.jpeg'); /* Replace with a new, high-quality image */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 60px;
    position: relative;
    overflow: hidden;
}

.bg-breadcrumb-modern-alt:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.15));
    z-index: 1;
    opacity: 0.5; /* Lowered opacity for a softer shadow */
    animation: soft-pulse 6s infinite alternate ease-in-out;
}

.bg-breadcrumb-modern-alt .container {
    position: relative;
    z-index: 2;
}

.bg-breadcrumb-modern-alt h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    color: #f1f1f1;
}

.breadcrumb-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ddd;
}

.breadcrumb-modern li:not(:last-child)::after {
    content: '›';
    color: var(--bs-primary);
    margin: 0 10px;
    font-size: 1.2rem;
}

.breadcrumb-modern li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-modern li a:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb-modern .active {
    font-weight: 700;
    color: var(--bs-light);
}

.animate-fade-in {
    animation: fade-in 1.5s ease-out forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes soft-pulse {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.9;
    }
}

.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}

.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
    height: 50px;
    width: 100px;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(125, 125, 125, 0.307);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item:hover .guide-title h4,
.guide .guide-item:hover .guide-title p {
    color: var(--bs-white);
    position: relative;
    z-index: 3;
}

.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}

.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}

.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/r2.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.footer {
    background-color: #121212;
    color: #fff;
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
    border-top: 1px solid #333;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #bbb;
    transition: color 0.3s ease-in-out;
    text-align: center;
}

.footer-link:hover {
    color: #00bfa5;
}

.glassmorphism {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;  /* Increased border radius */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.glassmorphism:hover {
    background: rgba(0, 191, 165, 0.2);
    color: #fff;
    transform: scale(1.05);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    text-align: center;
}

.footer-link:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    color: #bbb;
    font-size: 1.6rem;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #00bfa5;
    transform: scale(1.1);
}

.small {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 767px) {
    .footer-logo {
        max-width: 180px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .social-icons {
        justify-content: center;
    }
}

.copyright {
    background-color: #121212;  /* Dark background for a modern feel */
    color: #f1f1f1;  /* Light text color for high contrast */
    font-size: 1rem;  /* Readable font size */
    padding: 10px 0;  /* Reduced padding to minimize spacing */
    text-align: center;  /* Center the text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-weight: bold;  /* Bold brand name */
    color: #777777c5;  /* Accent color */
    letter-spacing: 1px;  /* Slight letter-spacing for better readability */
}

.designer-name {
    font-weight: bold;  /* Bold designer name */
    color: #777777cb;  /* Accent color for designer name */
}

.text-light {
    letter-spacing: 0.5px;  /* Slight letter-spacing for readability */
}

.brand-name:hover,
.designer-name:hover {
    color: #fff;  /* White text on hover */
    text-decoration: underline;  /* Underline on hover */
    text-decoration-color: #00bfa5;  /* Accent underline color */
}

@media (max-width: 768px) {
    .copyright {
        font-size: 0.9rem;  /* Slightly smaller font size on mobile */
    }
}

.blog {
    background-color: #f8f8f8;
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #444;
}

.blog p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img-inner {
    position: relative;
}

.blog-img-inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-img-inner img {
    transform: scale(1.05);
}

.blog-info {
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.blog-content {
    padding: 20px;
    background-color: #fff;
}

.blog-content .btn {
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.blog-content .btn-primary {
    background-color: #007bff;
    border: none;
}

.blog-content .btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 992px) {
    .blog .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .blog-item {
        margin-bottom: 20px;
    }
    .blog-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .blog .section-title {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .blog-item {
        margin-bottom: 30px;
    }
}

                        @media screen and (max-width: 767px) {

    .navbar-toggler {
        position: relative;
        z-index: 103; /* Toggle button stays above logo */
    }

    .navbar-collapse {
        position: relative;
        z-index: 100; /* Ensure collapse doesn't overlap the logo */
    }
                     }

                                #logo {
                                    transition: opacity 0.3s ease;
                                }

.live-chat-container {
    position: fixed;
    bottom: 10px; /* Adjusted to move closer to the bottom */
    right: 10px; /* Adjusted to move closer to the right */
    z-index: 9999;
    width: auto; /* Ensures it doesn't take up unnecessary space */
    max-width: 250px; /* Restricts container size */
}
.live-chat-container .btn-glassmorphism {
    background: rgba(37, 211, 101, 0.758); /* Light WhatsApp Green with opacity */
    color: white;
    font-size: 17px; /* Reduced font size */
    border-radius: 40px; /* Adjusted for a smaller button */
    padding: 8px 10px; /* Reduced padding for a smaller button */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px); /* Slightly reduced blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(37, 211, 102, 0.4); /* Border with a green tint */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); /* Slightly reduced shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.live-chat-container .btn-glassmorphism i {
    font-size: 24px; /* Reduced icon size */
    margin-right: 8px; /* Adjusted spacing between icon and text */
}
.live-chat-container .btn-glassmorphism:hover {
    background: rgba(37, 211, 102, 0.4); /* Darker green on hover for better contrast */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3); /* Slightly reduced hover shadow */
}
.live-chat-container .btn-glassmorphism:focus {
    outline: none;
}
