/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #197b93;
    --light: #fff;
    --dark: #000;
	--secondary: #717171;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
h2 {
    font-size: 38px;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container{
	max-width: 1250px;
}
strong {
    color: var(--primary);
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #89cfe1 !important;
    padding: 15px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}

/* Parent menu item */
.site-header .nav > li {
    position: relative;
}

/* Submenu hidden by default */
.site-header .nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 217px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    margin: 0px 0 0;
    display: none;
    z-index: 9999;
}

/* Show on hover */
.site-header .nav > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.site-header .sub-menu li {
    padding: 0;
}

/* Links */
.site-header .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover effect */
.site-header .sub-menu li a:hover {
    background: #f5f5f5;
    color: #000;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.header-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 20px !important; 
}
.site-header .nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box {
    position: absolute;
    top: 0px;
    z-index: 20;
    background: #ffffff;
    padding: 25px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #717271;
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
    background: #cce5eb;
    color: #333;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
.site-header .nav > li.menu-item-has-children > a::after {
    content: "\f107"; /* down arrow icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
}

/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
/* section.breadcrumb-section {
    background:url(https://webzensys.com/work/nancyharney.com/wp-content/uploads/2026/04/jumbotron.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 84vh;
    position: relative;
} */
section.breadcrumb-section {
    background: linear-gradient(rgb(35 38 39 / 37%), rgb(20 30 33 / 89%)), url(https://nancyharney.com/wp-content/uploads/2026/04/Untitled-design-22.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 65vh;
    position: relative;
}
.breadcrumb-item.active {
    color: #ffffff !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: #89cfe1;
}
li.breadcrumb-item a {
    color: #89cfe1;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    /* background: url(https://webzensys.com/work/aureusuniversity.ca/wp-content/uploads/2026/03/footer-bg.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
    padding-top: 30px;
    background: #021327;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 19%);
    z-index: -1;
}
footer::after {
    content: "";
    position: absolute;
    top: -69%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 214px;
    background: url('https://nancyharney.com/wp-content/uploads/2026/04/image-hero-e1766464901862.png') no-repeat center/contain;
    z-index: 1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.col-lg-7.col-md-6.footer-menu .menu {
    display: flex;
    gap: 38px;
    justify-content: end;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: #fff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}

ul#menu-quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: #bcc6cc;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #9caaad2e;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: #96eaff !important;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px 12px;
    transition: all 0.3s ease;
	display: inline-block;
}

a.btn-primary:hover {
    border-radius: 0 20px;
}
.btn-primary i {
    margin-right: 8px;
}
a.btn-primary:hover::before {
    transform: scale(1.2) rotate(-10deg);
    transition: 0.3s;
}
/* Hero Slider  */
.hero-banner {
    position: relative;
}

.hero-slide {
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 658px;
    object-fit: cover;
}

/* Overlay Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-35%);
    color: #fff;
    z-index: 2;
    max-width: 538px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

/* Optional dark overlay */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

/* Arrow Base */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 47px;
    height: 47px;
    background: linear-gradient(45deg, #7cc0d1, #000000b3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    border: 1px solid #fff !important;
    font-size: 0;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: #ffffff00;
    outline: none;
    background: linear-gradient(45deg, #7cc0d1, #181616db) !important;
}

/* Left */
.slick-prev {
    left: 20px;
}

/* Right */
.slick-next {
    right: 20px;
}

/* Arrow Icons */
.slick-prev::before,
.slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #000;
}

/* Icons */
.slick-prev::before {
    content: "\f053"; /* left */
}

.slick-next::before {
    content: "\f054"; /* right */
}

/* Hover */
.slick-prev:hover,
.slick-next:hover {
    background: #000;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    color: #fff;
}

/* About Section  */
.about-style-two {
    padding: 0px 0 60px;
    background: #f8f9fb;
}

/* IMAGE SIDE */
.about-images {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-images .img {
    border-radius: 50px;
    overflow: hidden;
}

.about-images .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* First Image */
.img1 {
    width: 287px;
    height: 456px;
    border: 3px solid #7acbdb;
}
/* Second Image (overlap) */
.img2 {
    width: 267px;
    height: 469px;
    margin-top: 28%;
	 border: 3px solid #7acbdb;
}

/* Decorative Text */
.adopt-text {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-weight: 600;
    color: green;
    transform: rotate(-10deg);
}

/* CONTENT */
.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    position: relative;
    color: var(--primary);
    font-size: 40px;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 6px;
    z-index: -1;
}

/* LIST */
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.list-item .icon {
  width: 50px;
  height: 50px;
  background: #f3e8e2; /* soft elegant bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list-item span {
    color: #6d6963fa !important;
    font-size: 18px;
    background: #7cc0d1 !important;
    height: 40px !important;
    width: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 54px 10px;
    border: 1px solid;
    box-shadow: 4px 15px 38px 2px #44737e63;
}

/* .list-item .icon i {
  color: #8b5e3c; /* paw color */
  font-size: 20px;
}
 */
.list-item span {
    color: orange;
    font-size: 18px;
}

.list-item h5 {
    margin: 0;
    font-size: 16px;
}

.list-item p {
    margin: 0;
    font-size: 14px;
}

/* Time Line */
/* .time-line {
    position: relative;
    padding: 100px 0;
    background: url('https://webzensys.com/work/nancyharney.com/wp-content/uploads/2026/04/Untitled-design-15.png') repeat center center;
    background-size: contain;
    z-index: 1;
} */

.time-line {
    position: relative;
    padding: 80px 0 40px;
    min-height: 100vh;
    background: url('https://nancyharney.com/wp-content/uploads/2026/04/Untitled-design-15.png') center center repeat;
    background-attachment: fixed;
    z-index: 1;
}

.time-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #a3925fde;
    z-index: -1;
}

.timeline {
    position: relative;
}

/* Center Line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    opacity: 0.4;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

/* Left Side */
.timeline-item:nth-child(odd) .timeline-img {
    order: 1;
    width: 45%;
    display: flex;
    justify-content: end;
}
.timeline-item:nth-child(odd) .timeline-content {
    order: 2;
    width: 45%;
    text-align: left;
}

/* Right Side */
.timeline-item:nth-child(even) .timeline-img {
    order: 2;
    width: 45%;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    width: 45%;
    text-align: right;
}

.timeline-img {
    height: 326px;
}
/* Image */
.timeline-img img {
    width: 63%;
    border-radius: 10px;
    height: 309px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* right: 0 !important; */
}

/* Content Box */
.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Center Dot */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: 0.3s;
}

/* ACTIVE STATE (on scroll) */
.timeline-item.active::before {
    background: var(--primary);
    animation: rotateDot 1s linear, pulseDot 1.5s ease infinite;
}

/* ROTATION */
@keyframes rotateDot {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* PULSE GLOW */
@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 115, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 115, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 115, 255, 0);
    }
}

/* Active */
.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.active::before {
    background: var(--primary);
    transform: translateX(-50%) scale(1.3);
}
.timeline-content span {
    color: #0a6981;
    font-size: 17px;
    font-weight: 500;
    font-family: cursive;
}


/* --------------------- 
 * Inspiration---------  */

.inspiration-sec {
  padding: 80px 0;
  background: #faf7f5;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.section-title.text-center p {
    color: #1995b5;
    font-weight: 500;
    font-family: cursive;
    font-size: 18px;
}
.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.inspiration-sec .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 47px;
    height: 47px;
    background: linear-gradient(45deg, #a8e4f3eb, #000000b3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
	 border: 1px solid #000 !important;
    font-size: 0;
}
.inspiration-sec .slick-prev {
    left: -20px;
}
.inspiration-sec .slick-next {
    right: -20px;
}
/* .review {
  font-style: italic;
  margin-bottom: 20px;
} */
.review {
    font-style: italic;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}
/* .testimonial-box p {
    max-height: 81px;
    overflow-y: auto;
    font-style: italic;
} */
.testimonial-box p {
    max-height: 83px;
    overflow-y: auto;
    font-style: italic;
    padding-right: 6px;
    margin-top: 20px;
    overflow-x: hidden;
}

/* Scrollbar width */
.testimonial-box p::-webkit-scrollbar {
    width: 6px;
}

/* Track (background) */
.testimonial-box p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scroll thumb */
.testimonial-box p::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1995b5, #0f6c85);
    border-radius: 10px;
    transition: 0.3s;
}

/* Hover effect */
.testimonial-box p::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0f6c85, #1995b5);
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin: 0 auto 10px;
}
/* Buttons */
.insp-buttons {
    margin-top: 56px;
    /* margin-bottom: 90px; */
}
.btn-read,
.btn-guest {
  padding: 12px 25px;
  border-radius: 30px;
  margin: 0 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-read {
    background: var(--primary);
    color: #fff;
}

.btn-guest {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* Popup */
body.popup-open {
  overflow: hidden;
  height: 100vh;
}
.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99999;
}

.popup-form.active {
  display: block;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  border-radius: 12px;
}

.popup-title {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #8b5e3c;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
}

.testimonial-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    height: 240px;
}


/* Gallery */
section.gallery-section {
    padding: 50px 0px;
    background: linear-gradient(45deg, #6c727338, #18242738);
}
.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.gallery-section .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
	 pointer-events: none;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-section .sub-heading{
	justify-content: flex-start;
}
.gallery-section .heading {
    text-align: left;
}
.gallery-section .gallery-overlay i {
    font-size: 30px;
    color: #fff;
}
.gallery-section .nav-width {
    display: inline-flex;
    gap: 25px;
    width: 14%;
    background: #1995b582;
    border-radius: 47px;
    padding: 16px 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.gallery-section .custom-nav {
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: flex-end;
}
.gallery-section .nav-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:0.3s;
	position: relative;
	z-index: 1;
}
.gallery-section .nav-btn i{
    font-size:14px;
    color:#000 !important;
}
.gallery-section .nav-btn:hover{
    background: var(--secondary) !important;
    transform:translateY(-3px);
}
.gallery-section .nav-btn:hover i{
    color:#fff !important;
}
.gallery-section .custom-nav .swiper-button-next:after,
.gallery-section .custom-nav .swiper-button-prev:after {
    font-size: 16px;
	display: none;
}
.gallery-videos {
    padding: 60px 0 20px;
}

.video-box {
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
    padding: 3px;
    border-radius: 16px;
}

/* Tabs */
.gallery-tabs {
    padding: 60px 0;
}

.gallery-tabs img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Active tab style */
.nav-tabs .nav-link.active {
    background: #000;
    color: #fff;
    border-radius: 30px;
}

/* contact section */
.contact-cta-sec {
    padding: 100px 0 170px;
    text-align: center;
    position: relative;
    background: linear-gradient(rgb(124 192 209 / 47%), rgb(124 192 209 / 56%)), url(https://nancyharney.com/wp-content/uploads/2026/04/BG1-a-scaled.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-cta-sec .container {
  position: relative;
  z-index: 2;
}

.sub-title {
  color: #ff3b2f;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.cta-content p {
    color: #8b5e3c;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    font-family: cursive;
}

/* Button */
/* .cta-btn {
  display: inline-block;
  background: #ff3b2f;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
} */

.btn-guest i {
  margin-right: 8px;
}
section.contact-cta-sec .btn-guest {
    color: #374447;
}
.btn-guest:hover {
    background: #b8dae0;
    transform: translateY(-2px);
    border: 1px solid #000;
}


/* Contact Page  */

/*==========================

    Contact page Css 

==========================*/

section.contact-inner-section {
    padding: 60px 0 0;
}
.contact-inner-section .main-heading, .contact-form .main-heading {
    text-align: center;
    font-size: 38px;
    margin-bottom: 23px;
}
section.contact-form {
    padding: 60px 0;
}
.inner-contact-form {
    width: 70%;
    margin: auto;
    border: 1px solid var(--primary);
    border-radius: 20px;
}
.form-control {
   background: #f9f9f9;
   border: 1px solid #ddd;
   color: #000;
}
.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
} 
.info-card {
    padding: 35px 25px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: 0.3s;
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.info-card a{ 
   color: #000 !important;
	text-decoration: none;		
}
.info-card:hover {
   border-color: var(--primary);
   transform: translateY(-4px);
}
.info-card i {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 10px;
    background: var(--primary);
    height: 50px;
    width: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.info-card h6 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}
.legacy-content{
	background: var(--primary);
}

/* Conatct Form */
/* Form Wrapper */
.wpcf7 {
    max-width: 650px;
    margin: 40px auto;
}

/* Labels */
.wpcf7 label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* Inputs + Textarea */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

/* Focus Effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #53bed9;
    box-shadow: 0 0 8px rgba(83, 190, 217, 0.3);
    outline: none;
}

/* Textarea height */
.wpcf7 textarea {
    min-height: 120px;
    resize: none;
}

/* Spacing */
.wpcf7 p {
    margin-bottom: 18px;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background: #53bed9;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

/* Button Hover */
.wpcf7 input[type="submit"]:hover {
    background: #3aa9c5;
    transform: translateY(-2px);
}

/* Error */
.wpcf7-not-valid {
    border-color: #ff4d4d !important;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #ff4d4d;
    margin-top: 5px;
}

/* Success Message */
.wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    background: #e6f7fb;
    border-radius: 6px;
    color: #333;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .wpcf7 {
        padding: 0 15px;
    }
}

/* Animal Rescue Page  */
section.animal-story {
    padding: 60px 0px 70px;
}
.story-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-left {
    width: 40%;
    border-radius: 12px;
    overflow: visible;
    z-index: 1;
    position: absolute;
    right: -13px;
    top: 40px;
    border: 5px solid #7cc0d1;
}

.img-left img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.img-right {
    width: 93%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
}

.img-right img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: left;
}

/* Optional background shape */
.story-img-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
}


 
/* Vision Mission Section  */
.vision-mission {
    padding: 90px 0 60px;
    background: #f5f7f9;
}

.vm-box {
  position: relative;
  background: #e9edf1;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 40px;
/*   overflow: hidden; */
}

/* Image floating top */
.vm-img {
  position: absolute;
  top: -40px;
  right: 30px;
}
.vm-img img {
    width: 162px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--primary);
}

.vm-box-title {
    background: #e9edf1;
    padding: 8px 10px;
    border-radius: 20px;
    color: var(--primary);
    border: 1px dashed;
}
/* Content */
.vm-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vm-content .text {
  font-size: 15px;
  color: #1c1b1b;
  line-height: 1.7;
}

/* Icon */
.vm-icon {
  margin-bottom: 15px;
}

.vm-icon img {
  width: 50px;
}

/* Different styles */
.vm-box:nth-child(1) {
  background: #e9edf1;
}

.vm-box:nth-child(2) {
  background: #fff;
}

/* Optional highlight block */
.vm-highlight {
  background: #f15a3c;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
  .vm-img {
    position: static;
    margin-bottom: 15px;
  }

  .vm-img img {
    width: 100%;
    height: auto;
  }
}

/* Rescue content section */
/* Section */
section.home-section {
    padding: 60px 0px 60px;
}

/* Row spacing */
.section-row {
  margin-bottom: 100px;
  position: relative;
}
.section-content {
  padding-right: 40px;
}

.section-row.reverse .section-content {
  padding-right: 0;
  padding-left: 40px;
}

.section-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a2c3a;
  margin-bottom: 15px;
}

.section-content p {
    font-size: 15px;
    color: #1c1b1b;
    line-height: 1.7;
    margin-bottom: 15px;
}
.section-images {
  position: relative;
  min-height: 350px;
}
.section-images .img1 {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 408px;
    margin-left: auto;
    border-radius: 15px;
    overflow: hidden;
}
.section-images .img1 img {
    width: 100%;
    display: block;
    height: inherit;
    object-fit: cover;
}
.section-row.reverse .section-images .img1 {
  margin-left: 0;
  margin-right: auto;
}

.section-content {
  background: #efe4d6;
  padding: 40px;
  border-radius: 20px;
}



/* Inspiration PAge  */

.inspiration-story {
    padding: 40px 0 20px;
    background: #ffffff;
}
.story-content h2 {
    font-size: 38px;
    margin-top: 30px;
    color: #1a2c3a;
    width: 58%;
    text-align: center;
    margin: 0 auto;
}
.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #1c1b1b;
    text-align: center;
}
section.animal-story p {
    text-align: left;
}
section.privacy-section {
    padding: 60px 0px;
}

/* Our 501c3 Statement */

.statement-sec {
    padding: 60px 0 10px;
}
.statement-sec img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}
section.donation {
    padding: 20px 0px 60px;
}
.donation-cnt {
    padding: 43px 28px;
    background: #f9f9f9;
    border-radius: 20px;
    border-right: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    margin-top: 24px;
}

/* Editor content styling */
.donation-cnt  p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.donation-cnt  ul {
  padding-left: 20px;
}
.donation-cnt ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  position: relative;
  padding-left: 25px;
  list-style: none;
}

.donation-cnt ul li::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #4e585b;
}

.donation-cnt ul li::marker {
  color: #2e7d32;
  font-weight: bold;
}

/* Highlight strong text */
.donation-box strong {
  color: #222;
}

.contribution {
    padding: 60px 0 0;
    background: #fff !important;
}

.contribution h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contribution p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.contribution-box {
    background: #7cc0d152;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 26%);
    height: 100%;
    transition: 0.3s ease;
    position: relative;
    padding-left: 35px;
}

/* Paw icon bullet */
.contribution-box::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 20px;
    font-size: 18px;
    color: #516887;
}

.contribution-box:hover {
  transform: translateY(-5px);
}

.sanctuary {
  padding: 60px 0;
}

.sanctuary-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.sanctuary-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.sanctuary-content ul li {
  margin-bottom: 10px;
  color: #444;
  position: relative;
  padding-left: 25px;
  list-style: none;
}

.sanctuary-content ul li::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #323f50d6;
}
section.final-sec {
    padding: 11px 0 60px;
}
.final-box {
    padding: 10px 20px;
    background: #323f5017;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
}

/* Gallery Page  */
.modern-gallery {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 6px 18px rgb(0 0 0 / 23%);
    border: 1px solid var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* overlay effect */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}
/* Remove default positioning */
.lb-data .lb-close {
    position: fixed !important;
    top: 57px !important;
    right: 27px !important;
}

/* Hover effect */
.lb-data .lb-close:hover {
  filter: none;
  opacity: 1;
  transform: rotate(90deg);
}

/*-----------------
 * Donate Page
 * -----------------  */
section.donation-hero {
    padding: 60px 0px;
    background: #9d93d161;
}

img.donate-img-two {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
}
.top-img {
    height: 535px;
}
img.donate-img-one {
    width: 100% !important;
    border-radius: 20px;
    object-fit: cover;
    height: inherit;
}
.col-lg-6.animal-sanctuary ul {
    list-style: none;
   margin-left: 18px;
}

.col-lg-6.animal-sanctuary ul li {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    position: relative;
    padding-left: 28px;
}

.col-lg-6.animal-sanctuary ul li::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: var(--primary);
}

section.pet {
    position: relative;
    padding: 80px 0 60px;
    background: url('https://nancyharney.com/wp-content/uploads/2026/04/bg2-freepik.webp') center/cover no-repeat;
    z-index: 1;
}

section.pet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(193 188 188 / 86%);
    z-index: -1;
}
.pet-img .pet-one {
    width: 100%;
    border-radius: 12px;
    height: 430px;
    object-fit: cover;
    position: relative;
}
img.pet-two {
    position: absolute;
    right: 40%;
    top: 45%;
    height: 255px;
    width: 183px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid #c9c3c3;
}
.counter-section {
    padding: 0px 20px;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: #333;
    background: conic-gradient(#89cfe1 0deg, #eee 0deg);
}

.circle span {
    position: absolute;
}

section.care-sec {
    overflow-x: hidden;
}
.col-lg-6.vision-img {
    background: url('https://nancyharney.com/wp-content/uploads/2026/04/wmremove-transformed-1.jpeg') center/cover no-repeat fixed;
	 transform: scaleX(-1);
}
 img.pet-one {
    width: 100%;
/*     height: 100vh; */
    object-fit: cover;
    object-position: center;
    transform: scaleX(-1);
} 
.col-lg-6.vision-care {
    padding: 50px 40px;
}
.feature-box {
    background: #89cfe1;
    padding: 20px 19px;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--primary);
    margin-bottom: 10px;
}

.feature-box img {
    width: 60px;
    margin-bottom: 15px;
}

.feature-box p {
    font-weight: 600;
    font-size: 16px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

section.donate-sec {
    position: relative;
    background: url('https://nancyharney.com/wp-content/uploads/2026/04/volunteer-abroad-in-jamaica-ivhq-animal-care.avif') center/cover no-repeat fixed;
    padding: 80px 0;
    color: #fff;
    z-index: 1;
}

section.donate-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 79%);
    z-index: -1;
}
.text-center.center-cnt {
    max-width: 800px;
    margin: 0 auto;
}

.donation-boxes {
    padding: 80px 0;
}

.donate-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    border: 2px solid var(--primary);
}

.donate-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.donate-card p {
    font-size: 16px;
    color: #555;
}

.donate-card:hover {
    transform: translateY(-10px);
}
.support-section {
  padding: 60px 0px;

}
section.happy-trails {
    padding: 60px 0px;
}
/* Card Style */
.paw-box p {
    background: #ffffff;
    padding: 18px 30px;
    border-radius: 14px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    text-align: center;
    padding-left: 55px;
}

.col-lg-6.text-center.paw-box:last-child {
    flex: 0 0 57%;
    max-width: 77%;
}

/* Hover Effect */
.paw-box p:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Last Box Highlight */
.paw-box.text-center p {
    text-align: center;
    background: linear-gradient(135deg, #197b93, #afaaa5);
    color: #fff;
    font-weight: 500;
}

.paw-box.text-center p::before {
  display: none;
}
.custom-line {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 385px;
    margin: 19px auto;
    align-content: center;
}
.custom-line p {
    margin: 0;
    font-family: cursive;
    color: var(--primary);
    font-size: 19px;
}
.btn-sec {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .happy-trails h2 {
    font-size: 28px;
  }

  .happy-trails p {
    font-size: 16px;
  }

  .paw-box p {
    text-align: center;
    padding-left: 25px;
  }

  .paw-box p::before {
    position: static;
    display: block;
    margin-bottom: 10px;
  }
}

.donation-section {
    padding: 60px 0 60px;
    background: #dde3e5;
}
.image-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}
.adpotion-poster {
    height: 290px;
}
.image-grid img {
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

/* Form Styling */
.donation-form {
    padding: 20px 0 0;
    border-radius: 10px;
    margin-top: 20px;
    max-width: 50%;
    margin: 18px auto 0;
    text-align: center;
}

.donation-form h3 {
    margin-bottom: 20px;
}

/* CF7 Inputs */
.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button */
.donation-form input[type="submit"] {
    background: linear-gradient(45deg, var(--primary), #535252) !important;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.donation-form input[type="submit"]:hover {
    background: #0056b3;
}

button.nav-link.tab {
    background: linear-gradient(45deg, var(--primary), #8b8b8b);
    color: #fff !important;
    font-size: 18px;
    padding: 10px 50px;
    border: 2px solid var(--primary);
}
button.nav-link.tab.active {
    background: linear-gradient(45deg, #000000, #197b93);
    color: #fff !important;
    font-size: 19px;
    padding: 10px 50px;
    /* border: 2px solid var(--primary); */
    border-radius: 20px 20px 0px 0px !important;
}
ul#galleryTab {
    gap: 20px;
}
.gallery-tabs {
    padding: 60px 0 60px;
}
/* Stipe Button */

.stripe-btn {
    margin-top: 15px;
    text-align: center;
}

.asp_product_buy_btn {
    width: 100%;
    background: #007bff !important;
    padding: 12px !important;
    border-radius: 5px !important;
}
/* .wpcf7 input[type="submit"] {
    display: none!important;
} */
.asp_product_item {
    display: block!important;
    border: none!important;
    box-shadow: unset!important;
    margin-top: 0!important;
    margin-bottom: 0!important;
    padding: 0!important;
}
.asp_product_item_top {
    display: none!important;
}
.asp_product_description {
    margin: 0!important;
    border-bottom: unset!important;
}
button#asp_ng_button_069e75a1e9ed5e {
    background: linear-gradient(45deg, var(--primary), #535252) !important;
    color: #fff !important;
    border: 1px!important;
    padding: 10px 0 !important;
    cursor: pointer!important;
    transition: 0.3s!important;
    width: 500px!important;
    display: flex!important;
    justify-content: center!important;
    border-radius: 20px !important;
}
.asp_product_buy_btn.blue {
    background: linear-gradient(45deg, var(--primary), #535252) !important;
    color: #fff !important;
    border: 1px!important;
    padding: 10px 38px !important;
    cursor: pointer!important;
    transition: 0.3s!important;
    /* width: 500px!important; */
    /* display: flex!important; */
    justify-content: center!important;
    border-radius: 20px !important;
}

/* .btn-read, .btn-guest {
    padding: 12px 25px;
    border-radius: 30px;
    margin: 0 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
} */
.donate-btn {
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/*  */

button#mobileMenuBtn {
    display: none !important;
}
.btn-close-menu {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* Mobile Menu List */
#mobileMenu .nav li {
  list-style: none;
  position: relative;
}

#mobileMenu .nav li a {
    display: block;
    padding: 10px 0;
    color: #000000;
    text-decoration: none;
}

/* Submenu hidden */
#mobileMenu .sub-menu {
  display: none;
  padding-left: 15px;
}

/* Show when active */
#mobileMenu .menu-item-has-children.active > .sub-menu {
  display: block;
}

/* Optional arrow */
#mobileMenu .menu-item-has-children > a::after {
    content: "▾";
    float: right;
    font-size: 24px;
    color: #000 !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

	.header-right.d-none.d-md-flex .btn-primary {
    display: none !important;
}
	button#mobileMenuBtn {
    display: block !important;
}
	nav.d-none.d-md-block {
    display: none !important;
}
  .section-content {
    padding: 25px;
  }
 .site-header .nav {
    display: none; 
  }
  .section-content h2 {
    font-size: 26px;
  }

  .section-images {
    margin-top: 30px;
  }
	.about-images {
    justify-content: center;
    gap: 50px;
}
	.img1 {
    width: 380px;
    height: 456px;
}
.img2 {
    width: 420px;
    height: 469px;
}
	ul#menu-responsive-menu li a {
    font-size: 14px;
    color: #000;
    text-decoration: none !important;
    font-size: 18px;
    /* padding-bottom: 16px !important; */
    /* margin-bottom: 17px !important; */
    padding: 0px 0 20px 0px !important;
}
	.about-images {
    align-items: flex-start !important;
}
	section.about-style-two {
    padding: 40px 0px;
}
	.img2 {
    width: 420px;
    height: 469px;
    margin-top: 9%;
}
	.footer_menu .col-lg-4.col-md-6 {
    width: 100% !important;
}
	.col-lg-8.col-md-6.footer-menu.d-flex {
    width: 100% !important;
}
	footer::after {
    top: -52% !important;
}
	 .img-left,
    .img-right {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
	.img-left img {
    height: 419px;
    /* width: 50%; */
}
	.img-left {
    width: 67% !important;
    height: 340px !important;
}
	.img-left img {
    height: 332px !important;
    object-fit: cover !important;
}
	.vm-box {
    margin-bottom: 0 !important;
}
	.vm-box-title {
    margin-bottom: 60px !important;
}
	.vision-mission {
    padding: 90px 0 0px !important;
}
	.section-images .img1 {
    width: 100% !important;
    height: 450px !important;
}
	.testimonial-box {
    overflow-x: hidden !important;
}
	img.pet-two {
    right: 0 !important;
    bottom: 5% !important;
}
	img.donate-img-two {
    margin-top: 20px !important;
}
	img.donate-img-two {
    height: 570px !important;
}
	.feature-box {
    height: 200px !important;
}
	section.happy-trails {
    padding: 0px 0px 40px !important;
}
	.col-lg-6.mb-4.paw-box {
    width: 55% !important;
}
	
	.adpotion-poster {
    height: 458px !important;
}
	.image-grid {
    display: grid !important;
    gap: 15px;
    grid-template-columns: 1fr !important;
}
	
}

@media (max-width: 767px) {

  .section-row {
    flex-direction: column !important;
  }

  .section-content {
    padding: 20px;
  }

  .section-content h2 {
    font-size: 22px;
  }

  .section-images {
    min-height: auto;
  }

  .section-images .img1 {
    position: relative;
    width: 100%;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
	
}


@media (max-width: 667px) {
	
}

@media (max-width: 568px) {
	
}

@media (max-width: 479px) {
	
}
@media (max-width: 411px) {
	
}
@media (max-width: 379px) {
	
}
@media (max-width: 360px) {
	
}