/********** Template CSS **********/
html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
    scroll-padding-top: 80px; /* Adjust this value to the height of your navbar */
  }

  

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.png'); /* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the whole screen */
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps the background behind the content */
    transition: filter 0.3s ease, opacity 0.3s ease; /* Smooth transition for blur and fade */
}

:root {
    --primary: #123708;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.social-link {
    font-family: 'Luckiest Guy', sans-serif;
    font-size: 25px; /* Font size for the links */
    color: white;
    text-decoration: none;
  }

  .zoom-container {
    overflow: hidden; /* Ensures the zoomed image doesn't overflow */
    display: inline-block;
}

.zoom-container img {
    transition: transform 0.5s ease; /* Smooth transition */
}

.zoom-container:hover img {
    transform: scale(1.2); /* Zooms in the image */
}

.zoom-on-hover {
    transition: transform 0.3s ease;
}
.zoom-on-hover:hover {
    transform: scale(1.1);
}

.tada-on-hover {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Smooth transitions for subtle effects */
}

.tada-animation {
    animation: tada 1s infinite; /* Adjust the duration (1s) as needed */
}

/* Keyframes for tada animation */
@keyframes tada {
    0% { transform: scale(1); }
    10%, 20% { transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Tada Animation */
@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60% {
        transform: scale(1.1) rotate(-3deg);
    }
    80% {
        transform: scale(1) rotate(0);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply animation on hover */
.tada-on-hover:hover {
    animation: tada 1s ease-in-out; /* Duration and easing for the animation */
}

  .navborder{
    border-radius: 41px;
    border: 2px solid #123708 ;
  }

  .borderrad{
    border-radius: 44px; 
  }

  .hover-animate {
    display: inline-block; /* Ensures it's hoverable */
  }

  .hover-animate:hover {
    animation: none; /* Reset animation before applying it */
    animation: tada 1s; /* Apply the animation on hover */
  }

  .outer-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Adjust the height as needed */
  }
  
  .social-link:hover {
    text-decoration: underline; /* Underline on hover for better UX */
  }
  
  .row {
    margin-bottom: 10px; /* Spacing between rows */
  }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.mclaren-regular {
    font-family: "McLaren", serif;
    font-weight: 400;
    font-style: normal;
  }
  .luckiest-guy-regular {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3px;
  }

  @media (max-width: 768px) {
    .mobile-reverse {
        display: flex;
        flex-direction: column;
    }

    .mobile-reverse .first-image {
        order: 2; /* Move the first image to the second position */
    }

    .mobile-reverse .second-image {
        order: 1; /* Move the second image to the first position */
    }
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 12rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* Copy to Clipboard */
.copy-link {
    --height: 36px;
    display: flex;
    padding-bottom: 10px;
}

.span-copy-link{
    cursor: pointer;
}

.copy-link-input {
    padding: 0 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.copy-link-button {
    flex-shrink: 0;
    width: var(--height);
    height: var(--height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dddddd;
    color: #333333;
    outline: none;
    border: 1px solid #cccccc;
    cursor: pointer;
}

.image-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    width: 500px;           /* Optional: set width */ /* Optional: for visualization */
  }

  .image-container img {
    max-width: 100%; /* Adjust to fit the container if needed */
    max-height: 100%;
  }
.copy-link-button:hover {
    background: #cccccc;
}

.copy-link-button:active {
    background: #dddddd;
}

.text-area{
    height:150px;
    border-bottom-left-radius: 0;
}


.container-width{
    width: 950px;
}
.frame-color{
    background-color: #900000 !important;
    transition: transform 0.5s ease;
}

.baranimate{
    transition: transform 0.5s ease;
}

.baranimate:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
}


.frame-color:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
}


.frame-color-1{
    background-color: #566f4f !important;
}

.dots{
    margin: 0!important;
}
.time_section .wow:not(.d-flex) {
    border: 1px solid;
    padding: 0;
    border-radius: 10px;
}

.time_section .cat-item{
    border-radius: 10px 10px 0 0!important;
}

.main_banner{
    background: url("../images/background.png");
}
.modal-body {
    padding: 0; /* Remove padding around the modal body */
    position: relative; /* Ensure proper positioning for the iframe */
  }

  .modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Remove iframe border */
  }

  .social-icons {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1000;
  }
  .social-icons a {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    width: 47px;
    height: 47px;
    line-height: 47px;
    color: white;
    background-color: #900000 ;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .social-icons a:hover {
    background-color: #566f4f;
  }
  .social-icons a i {
    font-size: 20px;
  }

  

  .airdrop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .airdrop-button svg {
    fill: #ffffff;
  }
  
  .airdrop-button:hover {
    background: linear-gradient(135deg, #4682b4, #1e90ff);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .airdrop-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }




  /* NEW */
  
.rent_section {
    background-color: rgba(86, 111, 79, 0.5);
  }
  
  .rent_section .heading_container h2 {
    color: #6f6e6e;
    margin-bottom: 35px;
  }
  
  .rent_section .heading_container h2::first-letter {
    color: #000000;
  }
  
  .rent_section .heading_container h2 span {
    color: #2e303c;
  }
  
  .rent_section .rent_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .rent_section .rent_container .box {
    width: 290px;
    margin: 45px;
    background-color: #900000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 20px 25px;
    padding-bottom: 0;
    border-radius: 57px;
  }
  
  .rent_section .rent_container .box .img-box {
    margin: 50px 0;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .rent_section .rent_container .box .img-box img {
    max-width: 57%;
  }

  .rent_section .rent_container .box .question {
    margin: 30px 0;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            background-color: #123708;
            border-radius: 54px;
  }
  
  .rent_section .rent_container .box .question img {
    max-width: 40%;
  }
  
  .rent_section .rent_container .box .price a {
    display: inline-block;
    padding: 8px 25px;
    background-color: #123708;
    color: #fefdfc;
    border-radius: 5px;
    border: 1px solid #fefdfc;
    font-weight: bold;
  }
  
  .rent_section .rent_container .box .price a:hover {
    color: #fefdfc;
  }
  
  .rent_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .rent_section .btn-box a {
    display: inline-block;
    padding: 10px 65px;
    background-color: #fefdfc;
    color: #1a1919;
    border-radius: 0;
    border: 1px solid #fefdfc;
    margin-top: 35px;
  }
  
  .rent_section .btn-box a:hover {
    background-color: transparent;
    color: #fefdfc;
  }

  .walletaddresssize{
    font-size: 9px;
    color: white;
  }

  .icon-hover {
    color: white; /* Default color for icons */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.icon-hover:hover {
    color: #123708; /* Change to Bootstrap's primary color on hover */
}
  
  