.puppy-card{
    overflow:hidden;
    transition:.4s;
}

.puppy-card img{
    transition:.5s;
}

.puppy-card:hover img{
    transform:scale(1.1);
}

body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

/* TOP BAR */

.top-bar{
    background:#4e88b0;
    color:#fff;
    padding:10px 0;
    font-size:14px;
    font-weight:600;
}

.top-bar a{
    color:#fff;
    margin-left:15px;
}

/* NAVBAR */

.custom-navbar{
    background:#fff;
    padding:18px 0;
}

.navbar-brand img{
    height:80px;
}

.nav-link{
    color:#444;
    font-weight:500;
    margin:0 10px;
}

.nav-link:hover{
    color:#4e88b0;
}
.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

.whatsapp-btn i{
    font-size:18px;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:12px;
}

@media(max-width:991px){

.nav-right{
    flex-wrap:wrap;
    justify-content:center;
}

.call-btn,
.whatsapp-btn{
    width:100%;
    justify-content:center;
    text-align:center;
}

}

.floating-whatsapp{
    position:fixed;
    left:20px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    z-index:99999;
    box-shadow:0 8px 25px rgba(37,211,102,.45);
    animation:whatsappPulse 1.8s infinite;
}

.floating-whatsapp:hover{
    color:#fff;
    transform:scale(1.08);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

.floating-whatsapp{
    width:58px;
    height:58px;
    font-size:30px;
    left:15px;
    bottom:20px;
}

}


.search-icon{
    font-size:20px;
    cursor:pointer;
}

.call-btn{
    background:#a8c94a;
    color:#fff;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.call-btn:hover{
    background:#94b238;
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

.nav-right{
    margin-top:20px;
}

.navbar-brand img{
    height:60px;
}

}

/* HERO */

.hero-section{
overflow:hidden;
}

.hero-slide{
position:relative;
height:650px;
}

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

.hero-overlay{
position:absolute;
top:50%;
left:80px;
transform:translateY(-50%);
color:#fff;
max-width:450px;
}

.hero-overlay span{
font-size:32px;
font-family:cursive;
display:block;
margin-bottom:10px;
}

.hero-overlay h1{
font-size:90px;
font-weight:900;
line-height:.9;
margin-bottom:20px;
text-shadow:0 4px 15px rgba(0,0,0,.3);
}

.hero-overlay p{
font-size:22px;
margin-bottom:25px;
}

.hero-btn{
display:inline-block;
padding:14px 35px;
background:#a8c94a;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:5px;
}

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

/* RIGHT GRID */

.customer-grid{
display:grid;
grid-template-columns:1fr 1fr;
height:650px;
}

.grid-img{
overflow:hidden;
}

.grid-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

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

/* OWL */

.hero-slider .owl-nav button{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px!important;
color:#fff!important;
}

.hero-slider .owl-prev{
left:20px;
}

.hero-slider .owl-next{
right:20px;
}

/* MOBILE */

@media(max-width:991px){

.hero-slide,
.hero-slide img{
height:500px;
}

@media (max-width:768px) {
    .cloned{
        /* display: none; */
    }
    
}

.customer-grid{
height:auto;
grid-template-columns:1fr 1fr;
}

.grid-img{
height:220px;
}

.hero-overlay{
left:25px;
right:25px;
}

.hero-overlay h1{
font-size:55px;
}

.hero-overlay p{
font-size:18px;
}

}


/* CUSTOMER SECTION */

.customer-section{
padding:30px 0 60px;
background:#fff;
}

.customer-item{
height:320px;
overflow:hidden;
}

.customer-item img{
width:100%;
height:110%;
object-fit:cover;
transition:.5s;
}

.customer-item:hover img{
transform:scale(1.08);
}

.featured-heading{
text-align:center;
padding:50px 15px;
}

.featured-heading span{
color:#9bc53d;
font-weight:600;
font-size:18px;
}

.featured-heading h2{
margin-top:10px;
font-size:40px;
font-weight:700;
color:#4b87b2;
}

.all-puppies-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#9bc53d;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:4px;
}

.all-puppies-btn:hover{
background:#87ad31;
color:#fff;
}


/* PUPPY CARDS */

.puppies-section{
padding:20px 0 80px;
background:#fff;
}

.puppy-card{
overflow:hidden;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.puppy-card:hover{
transform:translateY(-10px);
}

.puppy-img{
position:relative;
overflow:hidden;
height:380px;
}

.puppy-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.puppy-card:hover img{
transform:scale(1.1);
}

.choice-tag{
position:absolute;
top:0;
left:0;
background:#d42a2a;
color:#fff;
padding:10px 15px;
font-size:12px;
font-weight:700;
}

.puppy-content{
text-align:center;
padding:20px;
}

.puppy-content h5{
font-size:18px;
font-weight:700;
margin-bottom:15px;
}

.call-now-btn{
display:inline-block;
padding:10px 25px;
background:#0f9d24;
color:#fff;
text-decoration:none;
font-weight:700;
}

.call-now-btn:hover{
color:#fff;
background:#0c861d;
}

/* =========================
WELCOME SECTION
========================= */

.welcome-section{
padding:100px 0;
background:#fff;
position:relative;
overflow:hidden;
}

/* Paw Background */

.welcome-section::before{
content:"🐾";
position:absolute;
left:5%;
top:10%;
font-size:180px;
opacity:.05;
}

.welcome-section::after{
content:"🐾";
position:absolute;
right:5%;
bottom:10%;
font-size:180px;
opacity:.05;
}

/* Images */

.image-wrapper{
position:relative;
height:650px;
}

.image-wrapper img{
width:100%;
height:100%;
object-fit:cover;
border-radius:15px;
}

/* Big Image */

.img-one{
position:absolute;
left:0;
top:0;
width:70%;
height:420px;
overflow:hidden;
}

/* Right Image */

.img-two{
position:absolute;
right:0;
top:70px;
width:45%;
height:250px;
overflow:hidden;
border:8px solid #fff;
box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* Bottom Image */

.img-three{
position:absolute;
left:20%;
bottom:0;
width:55%;
height:250px;
overflow:hidden;
border:8px solid #fff;
box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* Content */

.welcome-content{
padding-left:40px;
}

.welcome-subtitle{
color:#9bc53d;
font-size:20px;
font-weight:700;
display:block;
margin-bottom:10px;
}

.welcome-content h2{
font-size:44px;
font-weight:800;
color:#4b87b2;
line-height:1.2;
margin-bottom:25px;
}

.welcome-content p{
font-size:17px;
line-height:1.8;
color:#666;
margin-bottom:20px;
}

/* Features */

.welcome-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin:30px 0;
}

.feature-box{
background:#f7f7f7;
padding:15px;
border-radius:8px;
font-weight:600;
transition:.4s;
}

.feature-box:hover{
background:#9bc53d;
color:#fff;
}

/* Button */

.learn-btn{
display:inline-block;
padding:14px 35px;
background:#9bc53d;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:5px;
transition:.4s;
}

.learn-btn:hover{
background:#85ad2f;
color:#fff;
}

@media(max-width:991px){

.image-wrapper{
height:auto;
margin-bottom:40px;
}

.img-one,
.img-two,
.img-three{
position:relative;
width:100%;
height:280px;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin-bottom:20px;
}

.welcome-content{
padding-left:0;
text-align:center;
}

.welcome-content h2{
font-size:35px;
}

.welcome-features{
grid-template-columns:1fr;
}

}

/* ==========================
WHY CHOOSE US
========================== */

.choose-us{
padding:100px 0;
background:#f8fbfd;
}

.section-title span{
color:#9bc53d;
font-weight:700;
}

.section-title h2{
font-size:45px;
font-weight:800;
color:#4b87b2;
margin-top:10px;
}

.choose-card{
background:#fff;
padding:40px 30px;
text-align:center;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.choose-card:hover{
transform:translateY(-10px);
}

.choose-card i{
font-size:55px;
color:#9bc53d;
margin-bottom:20px;
}

.choose-card h4{
font-weight:700;
margin-bottom:15px;
}

.choose-card p{
color:#666;
line-height:1.8;
}



/* ==========================
WHY CHOOSE US
========================== */

.choose-us{
padding:100px 0;
background:#f8fbfd;
}

.section-title span{
color:#9bc53d;
font-weight:700;
}

.section-title h2{
font-size:45px;
font-weight:800;
color:#4b87b2;
margin-top:10px;
}

.choose-card{
background:#fff;
padding:40px 30px;
text-align:center;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.choose-card:hover{
transform:translateY(-10px);
}

.choose-card i{
font-size:55px;
color:#9bc53d;
margin-bottom:20px;
}

.choose-card h4{
font-weight:700;
margin-bottom:15px;
}

.choose-card p{
color:#666;
line-height:1.8;
}


.review-section{
    padding:100px 0;
    background:#f8f8f8;
}

.section-heading span{
    color:#9bc53d;
    font-weight:700;
    font-size:20px;
}

.section-heading h2{
    color:#3d7db0;
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:60px;
}

.review-item{
    padding:10px;
}

.review-item img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.4s;
}

.review-item:hover img{
    transform:translateY(-10px);
}

.review-slider .owl-dots{
    margin-top:30px;
    text-align:center;
}

.review-slider .owl-dot span{
    width:12px;
    height:12px;
    background:#ccc !important;
}

.review-slider .owl-dot.active span{
    background:#9bc53d !important;
}

.review-slider .owl-nav button{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border-radius:50%!important;
    background:#fff!important;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.review-slider .owl-prev{
    left:-25px;
}

.review-slider .owl-next{
    right:-25px;
}

.review-slider .owl-nav span{
    font-size:35px;
    color:#333;
}

@media(max-width:768px){

.section-heading h2{
    font-size:28px;
}

.review-item img{
    height:420px;
}

}


.breeds-section{
padding:100px 0;
background:#fff;
}

.breeds-section span{
color:#9dc63f;
font-weight:700;
}

.breeds-section h2{
font-size:38px;
font-weight:700;
color:#3e7fb0;
margin:10px 0 20px;
}

.breed-btn{
background:#9dc63f;
padding:10px 25px;
color:#fff;
text-decoration:none;
font-size:13px;
font-weight:700;
border-radius:4px;
}

.breed-card{
background:#fff;
border:1px solid #eee;
text-align:center;
padding:25px;
transition:.4s;
height:100%;
}

.breed-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.breed-card img{
width:100%;
height:260px;
object-fit:contain;
}

.breed-card h6{
margin-top:15px;
font-weight:600;
}

.active-card{
box-shadow:0 10px 25px rgba(0,0,0,.12);
background:#f8f8f4;
}


.adopted-banner{
height:400px;
background:url('images/banner.jpg');
background-size:cover;
background-position:center;
position:relative;
}

.overlay{
background:rgba(0,0,0,.35);
height:100%;
display:flex;
align-items:center;
}

.adopted-banner h3{
color:#a7cf3a;
font-size:38px;
font-weight:700;
}

.adopted-banner p{
color:#fff;
}

.dog-strip{
padding:40px 0;
background:#fff;
}

.dog-strip img{
max-width:900px;
}

.partners{
padding:50px 0;
background:#dfe9ef;
}

.partners img{
max-height:50px;
opacity:.7;
transition:.3s;
}

.partners img:hover{
opacity:1;
}

.footer{
padding:80px 0 30px;
background:#dcd7d7;
}

.footer h5{
font-weight:700;
margin-bottom:20px;
}

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

.footer ul li{
margin-bottom:10px;
}

.footer ul li a{
text-decoration:none;
color:#666;
}

.subscribe-btn{
background:#9dc63f;
border:none;
padding:10px 25px;
color:#fff;
}

.insta-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.insta-grid img{
width:100%;
height:100px;
object-fit:cover;
}
html,
body{
    overflow-x:hidden;
}