/********** Template CSS **********/
:root {
  --primary: #1CA7EC ;
  --light: #C1C7CF;
  --primary-active-link: #000000;
  --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 {
  font-weight: 500;
  transition: .5s;
  border-radius: 20px;
}

.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;
}


/*** Navbar ***/
.navbar {
  background: rgba(26,35,126,0.82);
  box-shadow: 0 6px 32px rgba(26,35,126,0.10), 0 1.5px 8px rgba(60,60,60,0.07);
  backdrop-filter: blur(8px);
  border-radius: 0 0 24px 24px;
  padding: 14px 0 !important;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar .navbar-brand img {
  max-height: 64px;
  filter: drop-shadow(0 2px 8px #1A237E22);
}

.navbar .navbar-nav .nav-link {
  margin-right: 18px;
  padding: 10px 22px 10px 22px;
  border-radius: 28px;
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  border: none;
  position: relative;
  letter-spacing: 1px;
  transition: color 0.2s, background 0.2s;
  overflow: visible;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, #1A237E 0%, #64B5F6 100%);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.22s, transform 0.22s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #000000 !important;
  background: rgba(255,255,255,0.08);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .navbar {
    border-radius: 0;
    padding: 10px 0 !important;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 18px;
    padding: 10px 0;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    background: rgba(26,35,126,0.96);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}
/*** Header ***/


.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 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-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;
  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 .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);
}

/*====================================*/
.navbar .navbar-nav .nav-link {
  color: black;
}

.main-banner__title,
.main-banner__description {
  color: white;
}

p {
  font-size: 1.25rem;
}

header,
header .navbar {
  background-color: var(--primary) !important;
}

.footer {
  background-color: var(--primary);

  h5, p, a, div {
    color: white;
  }
}

/*====================================*/
.header-bg {
  background: url(../img/3000x980-Full-Length-Banner-LC250-RFS.webp) center center no-repeat;
  background-blend-mode: lighten;
  background-size: cover;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(28,167,236,0.10);
}

.main-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end !important;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

.main-banner__content-holder {
  background: rgba(255,255,255,0.78);
  border-radius: 32px 12px 32px 12px;
  padding: 56px 38px 40px 38px;
  box-shadow: 0 8px 40px rgba(28,167,236,0.10), 0 0 0 6px rgba(28,167,236,0.08);
  border: 2.5px solid rgba(28,167,236,0.18);
  position: relative;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s, border 0.3s;
  overflow: visible;
  max-width: 500px;
}

.main-banner__title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #1CA7EC 60%, #6EE7F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 8px 32px rgba(28,167,236,0.10);
}

.main-banner__description {
  font-size: 1.22rem;
  color: #1e293b;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(28,167,236,0.07);
}

.main-banner__button-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}

.main-banner__button {
  max-width: 220px;
  min-height: 54px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px 10px 32px 10px;
  background: linear-gradient(90deg, #1CA7EC 0%, #6EE7F7 100%);
  color: #fff !important;
  font-size: 1.13rem;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(28,167,236,0.13);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: none;
  letter-spacing: 0.7px;
  position: relative;
  overflow: hidden;
}

.main-banner__button::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 1;
}

.main-banner__button:hover {
  background: linear-gradient(90deg, #6EE7F7 0%, #1CA7EC 100%);
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
}

.main-banner__button:hover::after {
  width: 180%;
  height: 180%;
}

.main-banner__content-list-info {
  color: #1CA7EC;
  font-weight: 700;
  margin-top: 22px;
  letter-spacing: 1px;
  font-size: 1.08rem;
  text-shadow: 0 1px 6px rgba(28,167,236,0.06);
}
/*==========================================*/
.section-about-us {
  padding: 48px 0;
  background: linear-gradient(120deg, rgba(201,32,26,0.08) 0%, #fff 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.section-about-us::before {
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #1CA7EC 0%, #ff5050 100%);
  opacity: 0.10;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.section-about-us h2 {
  font-size: 3.1rem;
  font-weight: 800;
  color: #C9201A;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-shadow: 0 3px 12px rgba(201,32,26,0.10);
  position: relative;
  z-index: 1;
}

.section-about-us .text-primary {
  color: #1CA7EC !important;
}

.section-about-us img {
  border-radius: 12px !important;
  box-shadow: 0 2px 14px rgba(201,32,26,0.09);
  border: 2px solid rgba(201,32,26,0.10);
  background: #fff;
  position: relative;
  z-index: 1;
}

.section-about-us__content-wrapper {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(201,32,26,0.07);
  margin-top: 0 !important;
  margin-bottom: 28px;
  font-size: 1.16rem;
  padding: 36px 28px 24px 28px;
  color: #232526;
  text-align: center;
  position: relative;
  border: 1.5px solid rgba(201,32,26,0.08);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.section-about-us__content-wrapper p {
  font-size: 1.09rem;
  color: #C9201A;
  margin-bottom: 18px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(201,32,26,0.06);
}

.section-about-us__content-wrapper strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.09rem;
  color: #fff;
  background: linear-gradient(90deg, #1CA7EC 60%, #ff5050 100%);
  border-radius: 10px;
  padding: 8px 22px;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(201,32,26,0.10);
}
/*==========================================*/

.what-we-offer-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.what-we-offer-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(60, 60, 60, 0.07);
  border: 1px solid #e0e0e0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.what-we-offer-list li:hover {
  box-shadow: 0 4px 24px rgba(0, 123, 255, 0.10);
  transform: translateY(-2px) scale(1.02);
}

.what-we-offer-list li h5 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #232526;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: none;
}

.what-we-offer-list li::after {
  content: "";
  margin-left: auto;
  color: #007bff;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: color 0.2s;
}

.what-we-offer-list li:hover::after {
  color: #0056b3;
  opacity: 1;
}

/*==========================================*/
.section-about-us {
  padding: 36px 0;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60, 60, 60, 0.06);
}

.section-about-us img {
  border-radius: 8px !important;
  box-shadow: 0 1px 8px rgba(60, 60, 60, 0.08);
}

.section-about-us__content-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(60, 60, 60, 0.05);
  margin-top: 0 !important;
  margin-bottom: 28px;
  font-size: 1.18rem;
  padding: 28px 22px 20px 22px;
  color: #232526;
}

.section-about-us__content-wrapper p {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 16px;
}

.about-us__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #232526;
  letter-spacing: 0.5px;
}

.about-us__description {
  color: #444;
  font-size: 2rem !important;
  line-height: 1.6;
}
/*==========================================*/
.product-card {
  background: linear-gradient(120deg, rgba(28,167,236,0.16) 60%, rgba(110,231,247,0.13) 100%), repeating-linear-gradient(135deg, #eaf6fb 0 8px, transparent 8px 16px);
  border-radius: 32px 12px 40px 18px;
  box-shadow: 0 10px 40px rgba(28,167,236,0.18), 0 4px 18px rgba(110,231,247,0.13);
  padding: 40px 28px 34px 28px;
  text-align: left;
  position: relative;
  overflow: visible;
  border: 2.5px solid rgba(28,167,236,0.19);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, border 0.3s, transform 0.22s, background 0.22s;
}

.product-card:hover {
  box-shadow: 0 20px 60px rgba(28,167,236,0.22), 0 8px 32px rgba(110,231,247,0.16);
  border: 2.5px solid #6EE7F7;
  background: linear-gradient(120deg, rgba(110,231,247,0.22) 60%, rgba(28,167,236,0.13) 100%);
}

.product-card__image-holder {
  position: relative;
  padding-top: 90%;
  border-radius: 22px 8px 28px 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(28,167,236,0.13);
  background: linear-gradient(120deg, #e6f7fb 60%, #d0f4fa 100%);
  margin-bottom: 26px;
}

.product-card__image-holder img {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  object-fit: contain;
  filter: grayscale(4%) contrast(1.13);
  transition: filter 0.22s, transform 0.22s;
}

.product-card:hover .product-card__image-holder img {
  filter: grayscale(0%) brightness(1.15) drop-shadow(0 10px 28px #1CA7EC44);
}

.product-card h5 {
  font-size: 1.28rem;
  font-weight: 900;
  color: #1CA7EC;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-shadow: 0 6px 18px rgba(28,167,236,0.11);
}

.product-card p {
  font-size: 1.09rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-shadow: none;
}

.product-card__price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(90deg, #1CA7EC 60%, #6EE7F7 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.13rem;
  padding: 10px 24px;
  border-radius: 22px 8px 22px 8px;
  box-shadow: 0 4px 16px rgba(28,167,236,0.15);
  z-index: 2;
  letter-spacing: 0.7px;
  border: 2px solid #fff4;
  transform: rotate(8deg);
}

.product-card a {
  border-radius: 40px !important;
  border: none !important;
  min-height: 56px;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, #1CA7EC 0%, #6EE7F7 100%);
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(28,167,236,0.15);
  transition: background 0.22s, color 0.18s, transform 0.16s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  outline: 2px solid #6EE7F733;
  outline-offset: 2px;
}

.product-card a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(110,231,247,0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 1;
}

.product-card a:hover {
  background: linear-gradient(90deg, #6EE7F7 0%, #1CA7EC 100%);
  color: #fff !important;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 10px 32px #1CA7EC33;
}

.product-card a:hover::after {
  width: 200%;
  height: 200%;
}
/*==========================================*/