/*@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');*/
@font-face {
    font-family: 'Catfiles';
    src: url('cat/CatfilesRegular.woff2') format('woff2'),
         url('cat/CatfilesRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    min-height: 100vh; /* Prevents collapsing */
    overflow-x: hidden; /* Avoids horizontal scrolling */
}

body {
    font-family:"inter";
    font-size: 18px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #052a50;
}

#hero {
    background-color: rgb(236, 242, 255);
    text-align: left;
    padding: 0;
    display: flex;
    background-size: cover;

}

#hero-1 {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

#hero-2 {
    width: 30%;
    height: 500px;
    background-image: url('pawsimg/aboutdog.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
     /* Reserve space before image loads */
    display: block;
    aspect-ratio: 2 / 1; /* Adjust based on your image dimensions */
}

#hero h1 {
    line-height: 1.2em;
    font-size: 58px;
    margin-bottom: 1rem;
    font-family: 'Catfiles', sans-serif;
    color: #021b4a;
}

#hero p {
    font-size: 1.2rem;
}

#bottom {
    padding: 65px;
    /* background-image: url('pawsimg/Screenshot_2025-01-13_235029-removebg-preview.png'); */
    background-color: rgb(236, 242, 255);
    background-repeat: no-repeat;
    background-size: 300px;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}
/* services details */
#servicesDetails{
    background-image: url('pawsimg/yellow-removebg-preview.png');
    background-size: cover;
    background-repeat: no-repeat;
    /*padding-top: 150px;*/
    margin-top: -227px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px;
    align-items: center;
    padding-top: 222px;
    /*justify-items: center;*/

}
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*justify-items: center;*/
    background-color: #fffae3;
    padding: 40px 0;
    font-family: 'providence';
    text-align: center;
}
.feature img {
    border-radius: 50%;
}
#servicesImage {
    width: 62%;
    height: 230px;
    border-radius: 50%;
    margin: auto;
  }
  
.Objective {
    display: flex;
    gap: 80px;
    justify-content: center;
}
button.serviceButton {
    border: none;
    display: flex;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
    width: 17%;
    column-gap: 0.5rem;
    margin-top:15px;
}
.serviceButton:hover img {
    transform: scale(1.2) rotate(20deg);
}
.col-1 {
    width: 65%;
}
.col-2 img {
    width: 150px;
}
.col-3 p {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    font-family: 'providence';
}
.col-3 ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
  }

  .col-3 ul li {
    margin: 10px;
    position: relative;
    padding-left: 25px; /* Space for the icon */
  }

  .col-3  ul li::before {
    content: "\f1b0"; /* Unicode for Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ffd100; /* Icon color */
  }
  /* vision */
  .Vision{
    text-align: center;
  }
.section {
    padding: 40px 30px;
}

.section h2 {
    color: #052a50;
    margin-bottom: 10px;
    font-family: 'Catfiles', sans-serif;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    /*justify-items: center;*/

}

.gallery img {
    width: 80%;
    height: 75%;
    border-radius: 20px;
    box-shadow: 7px 5px 9px gray;
}
/* back to button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #0e3070;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #0056b3;
}

#backToTop:active {
  transform: scale(0.9);
}
/* whatsapp float icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50%;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-float i {
  margin-top: 15px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  cursor: pointer;
}
@media (max-width:480px) {
    body{
       text-align: center;
    }
    #hero {
        flex-direction: column;
        text-align: left;
        padding: 20px 15px;
        background-position: right center;
    }

    #hero-1 {
        padding: 0;
        width: 100%;
        z-index: 2;
    }

    #hero h1 {
                text-align: center;
        font-size: 26px;
        width: 100%;
        line-height: 1.3;
    }

    #hero p {
        text-align: center;
        font-size: 1rem;
        width: 100%;
    }

    #hero-2 {
                max-width: 45%;
        margin: auto;
        background-size: contain;
        height: 200px;
        background-position: center;
    }
/* our services */
#servicesDetails {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: -157px;
    background-position: center;
        padding-top: 115px;

  }
   

/* #servicesDetails img {
    order: 1;
  }

#servicesDetails div {
    order: 2;
  } */
button.serviceButton {
    border: none;
    display: flex;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
    width: 45%;
    /* padding: 10px 31px 10px 13px; */
    column-gap: 0.5rem;
    margin: 22px auto;
    
}
.feature {

    grid-template-columns: 1fr;
}
.feature div {
    margin-bottom: 25px;
}
.Objective{
    flex-wrap: wrap;
    flex-direction: column;
}
.col-1{
    width: 100%;
}
.col-3 ul li {
    width: 100%;
    margin: 10px auto;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}
/* gallery img animation */
.gallery {
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    margin: auto;
    box-shadow: 5px 5px 5px gray;
    border-radius: 20px;
  }

  .gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInOut 10s linear infinite;
  }

  .gallery img:nth-child(1) {
    animation-delay: 0s;
  }

  .gallery img:nth-child(2) {
    animation-delay: 3s;
  }

  .gallery img:nth-child(3) {
    animation-delay: 6s;
  }

  .gallery img:nth-child(4) {
    animation-delay: 9s;
  }

  @keyframes fadeInOut {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  

}