*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

h2{
  font-size:28px;
  font-weight:600;
}

p{
  max-width: 70%;
  margin: 0;
  line-height: 1.6;
}

.navbar{
  position:sticky;
  top:0;
  padding:0 40px 0 20px;
  background-color:#484848;
  color:white;
  height:12vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

#logo{
  background-color:#F29133;
  height:70px;
  width:70px;
  border-radius:50rem;
}

.left-navbar{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:20px;
}

.right-navbar{
  gap:40px;
  display:flex;
}

.right-navbar button{
  background-color:#484848;
  border:none;
  color:white;
  font-size:25px;
  cursor:pointer;
}

.right-navbar button:hover{
  color:#F29133;
}

#login-btn{
  width:150px;
  border-radius:1rem;
  background-color:#F29133;
  color:white;
  border:none;
  font-weight:bold;
  font-size:20px;
  cursor:pointer;
  padding:10px 15px;
}

#login-btn:hover{
  background-color: #fdb36a;
}

.zeroeth-scroll,.about,.testimonials{
  height:88vh;
}

.zeroeth-scroll-container{
  display:flex;
  flex-direction:row;
  height:88vh;
  padding:40px 60px;
}

.left-half,.right-half{
  flex:1;
}

.left-half{
  font-size:38px;
  display:flex; 
  flex-direction:column;
  margin-top:100px;
}

.left-half h1{
  margin-bottom: 20px;
}

.left-half h3{
  color:#484848;
  font-weight:500;
  font-size:25px;
  line-height:40px;
} 

.left-half-btns{
  margin-top:30px;
}

#find-a-pet,#post-your-pet{
  height:80px;
  width:250px;
  margin-right:30px;
  border-radius:25rem;
  border:none;  
  font-size:20px;
  font-weight:600;
}

#find-a-pet{
  color:white;
  background-color:#F29133;
}

#post-your-pet{
  color:white;
  background-color:#4E3629;
}

.right-half img{
  width:100%;
  height:100%;    
  border-radius: 5rem;
}

.about-container,.testimonials-container{
  text-align:center;
  line-height:50px;
}

.about-container-headings,.testimonials-container-headings{
  height:27vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.about-container-headings h1,.testimonials-container-headings h1{
  color:#2D2018;
  font-size:48px;
}

.about-container-headings h3,.testimonials-container-headings h3{
  color:#484848;
  font-size:20px;
  font-weight:500;
}

.about-container-cards{
  height:58vh;
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  margin:60px 40px;
  gap:24px;
  height:auto; 
}

.card{
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.3);
  padding:40px 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}

.card h2{
  color:#2D2018;
  font-weight:549;
  margin: 20px 0 15px 0;
}

.card p{
  color:#484848;
  font-size:16px;
  max-width:100%;
  line-height:1.6;
}

.circular-icon{
  height:50px;
  width:50px;
  border-radius:50%;
  color:black;
  background-color:#F29133;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:20px;
  margin-bottom:10px;
  box-shadow:0 4px 10px rgba(242, 145, 51, 0.3);
}

.testimonials-container-cards{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  margin:60px 40px;
  gap:24px;
}

.testimonialCard{
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.3);
  padding:40px;
  display:flex;
  align-items:flex-start;
  text-align:left;
  flex-direction:column;
}

.stars{
  font-size:25px;
  color:#F29133;
  margin:10px 0;
}

.testimonialCard p{
  color:#484848;
  font-size:16px;
  line-height:1.6;
  margin-bottom:15px;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto; 
  line-height:1.5;
}

.profile-info h4 {
  margin: 0;
  font-size: 18px;
  color: #2D2018;
}

.profile-info span {
  font-size: 14px;
  color: #484848;
} 
