/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #FDEBD0;
}

.navbar {
    padding: 1rem;
    background: #F7DBA7;

}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    padding-bottom: 10px; 
    color: #333; 
}

.navbar-nav .nav-link:hover {
    color: #ff4b4b; 
}


.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff4b4b;
    border-radius: 2px;
}


.navbar-nav .nav-link.active {
    color: #ff4b4b; 
}

.hero-section {
    background-color: #FDEBD0;
  height: 70vh;
  width: 100vw;
    color: #333;
}
.image{
    height: auto;
    width: 700px;
   
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-section .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background-color: #E74C3C;
    color: white;
    text-decoration: none;
}

/* About Section */
.about-section {
    background-color:#FDEBD0;
    padding: 60px 0;
}

.about-section h2 {
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    animation: bounceIn 1.5s ease-in-out;
}

@keyframes bounceIn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-section .intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: slideInLeft 1.5s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.about-section img {
    max-width: 75%;
    height: auto;
    animation: fadeIn 2s ease-in;
}
.n{
    color:#ff6666;
}
.social-icons p{
    color: grey;
    font-size: 15px;
}
.social-cards{
    gap: 0;
}

.btn {
    background-color: #fb9595;
    animation: pulse 2s infinite;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff6666;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}



.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.social-icon {
    text-decoration: none;
    font-size: 30px;
    color: black;
    
}




.social-icons h3 {
    margin-top: 5px;
    font-size: 16px;
    margin: 0;
}

.social-icon:hover {
    color: #ff6666; 
}


.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-icon {
    color: #ff4b4b; 
    font-size: 1.3rem; 
    margin-right: 10px;
    vertical-align: middle; 
}

.contact-info {
    background-color: #f7ebeb; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.products-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


.products-section p {
    font-size: 1.2rem;
    color: #555;
}


.card-img-top {
    height: 300px;
    object-fit: cover;
}

/* Features Section */
.features-section {
    background-color: #FDEBD0;
    background-image: url('../images/c070fcf7fd828840cf2bd9e2df991e39.png');
    background-size: cover;
    color: #333;
   
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.features-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.paw-icon {
    font-size: 1.2rem;
    color: #ff8c00;
}

.card-title {
    font-weight: bold;
    background-color:#FFB775 ;
    color: #333;   
     padding: 20px;
}

.card {
    border-radius: 10px;
}

.card-body {
    font-size: 0.9rem;
}
.last {
    background-color: #eca2486a;
    padding: 20px;
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    font-size: 25px;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons a {
  
    color: #ff4b4b;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: blue;
  }














  
.footer {
    background-color:#FDEBD0;
    color: #333;
}

.footer-logo {
    max-width: 150px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
 
}

.footer p {
    font-size: 0.9rem;
   
}

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

.footer ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
}

.footer ul li a:hover {
    color: #ff4b4b;
}


@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  section {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
  }
  
 
  .hero-section {
    animation-delay: 0.3s;
  }
  
  .about-section {
    animation-delay: 0.6s;
  }
  
  .products-section {
    animation-delay: 0.9s;
  }
  
  .features-section {
    animation-delay: 1.2s;
  }
  .card-link {
    text-decoration: none;
    color: inherit; 
}

.card-link:hover {
    color: #E74C3C; 
}
 .title{
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 35px;
}
  /* Responsive Design */
@media (max-width: 768px) {
 

    .about-section .intro {
        font-size: 1rem;
    }
 
  
    .about-section .row {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .about-section .col-md-5 {
        padding-top: 20px;
        text-align: center;
    }

    .about-section .col-md-6 img {
        width: 100%;
        height: auto;
     
    }

    .about-section .social-icons {
        flex-direction: column;
        gap: 15px;
    }
    .social-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        max-width: 100%;
        text-align: center;
    }

    .social-icon {
        font-size: 25px;
    }
    .n{
        color:#ff6666;
    }
    .social-icon:hover {
        color: #fb9595; 
    }

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

    .about-section .row {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .about-section .col-md-5 {
        padding-top: 20px;
        text-align: center;
    }

    .about-section .col-md-6 img {
        width: 100%;
        height: auto;
     
    }

    .about-section .social-icons {
        flex-direction: column;
        gap: 15px;
    }
  
   
    .social-icon:hover {
        color: #fb9595;
    }
 
}
