/********** Template CSS **********/
:root {
    --primary: #060F50;
    --light: #F3F4F5;
    --dark: #282F34;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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-primary:hover{
    color:#FFFFFF !important;
}
.btn {
    font-weight: 500;
    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;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #21523d;
    --bs-btn-border-color: #21523d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #519678;
    --bs-btn-hover-border-color: #519678;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #519678;
    --bs-btn-active-border-color: #519678;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #21523d;
    --bs-btn-disabled-border-color: #21523d;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(16 8 5) !important;
}
/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 50px;
}

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

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7));
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

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


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7));
    background-size: cover;
}

.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 #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    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 {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* about  */
    .section-title {
      font-weight: bold;
      margin-bottom: 1.5rem;
    }
    .about-image {
      border-radius: 12px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* General Text Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #263238; /* Dark text */
}

.lead-text {
    font-size: 1.15rem;
    color: #546e7a; /* Muted text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.75rem;
    font-weight: bold;
    color: #263238; /* Dark text */
}

.icon-section {
    color: #060F50; /* Teal color for icons */
}

.icon-color {
    color: #060F50; /* Ensure icon color is consistent */
}

.mission-text,
.story-text {
    font-size: 1rem;
    color: #546e7a; /* Muted text */
    line-height: 1.7;
}

/* Image Specifics */
.rounded {
    border-radius: 10px !important; /* Slightly more rounded corners for images */
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; /* Subtle shadow */
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; /* More pronounced shadow for the larger image */
}

/* Padding and Margins for Sections */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Ensure text-start works on larger screens for story */
@media (min-width: 768px) {
    .story-text {
        text-align: left !important;
    }
}
/* about  */

/* explore */
.card-img-top {
      height: 200px;
      object-fit: cover;
    }
    .badge-instant {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #fce303;
      color: #000;
      font-weight: bold;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
    }
    .availability-tag {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background-color: #f7d774;
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 4px;
    }

/* explore */
.logo {
    display: flex;
    justify-content: center; /* Centers logo horizontally */
    align-items: center; /* Centers logo vertically */
    height: 100px; /* Adjust height as needed */
}

.logo img {
    max-width: 100%; /* Ensures logo is responsive */
    height: auto;
    display: block;
}
/* Products */

.listing-gallery img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 200px;
  }
  .listing-section {
    margin-top: 30px;
  }
  .listing-price-box {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
  }
  .listing-box h5 {
    font-weight: bold;
  }
  .listing-box i {
    margin-right: 8px;
  }
  .btn-viewmore {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
  }
  .badge-instant {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffc107;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
  }

/* Products */
/* Services */
 .service-section {
      padding: 60px 0;
    }

    .service-section:nth-child(even) {
      background-color: #f9f9f9;
    }

    .service-img {
      border-radius: 10px;
      width: 100%;
      object-fit: cover;
      max-height: 300px;
    }

    .service-content h3 {
      font-weight: bold;
    }
/* Services */
/* Modal  */
#adModal .ad-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }
  #adModal .ad-card:hover {
    transform: scale(1.02);
  }
  #adModal .ad-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  #adModal .ad-card-body {
    padding: 1rem;
    background: #fff;
  }
  #adModal .ad-card-body h5 {
    margin: 0 0 0.5rem;
    font-weight: bold;
  }
  #adModal .ad-card-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
  }
/* Modal  */

/* Testimonial Section */
.testimonial-carousel {
  position: relative;
}

.testimonial-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-item img {
  border-radius: 50%;
  border: 4px solid #21523d; /* Olive Green Accent */
  background: #fff;
}

.testimonial-text {
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 15px;
  padding: 20px;
}

.testimonial-text p {
  font-style: italic;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.testimonial-text h5 {
  font-weight: 600;
  margin-top: 15px;
  color: #21523d;
}

.testimonial-text span {
  font-size: 13px;
  color: #888;
}

/* Owl Carousel Dots */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: #21523d;
  transform: scale(1.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}


    .promo-card {
      display: flex;
      flex-wrap: wrap;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin: 2rem auto;
      max-width: 1000px;
    }
    .promo-text {
      background-color: #3e5535; /* Olive green */
      color: #fff;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem;
      background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* subtle texture */
    }
    .promo-text h5 {
      font-weight: 400;
      letter-spacing: 1px;
    }
    .promo-text h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-top: 1rem;
    }
    .promo-img {
      flex: 1;
      min-height: 300px;
      background: url('https://images.unsplash.com/photo-1506806732259-39c2d0268443') center/cover no-repeat;
    }
    .btn-custom {
      background-color: #f4d35e;
      color: #3e5535;
      font-weight: bold;
      border: none;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background-color: #e0c04d;
    }