/* Root Theme */
:root {
  --dark-bg: #181717f9;
  --primary: #ffb347; 
  --secondary: #ffdee9;
  --accent: #b5ead7; 
  --text: #fff;
  --background: #2A7B9B;
--backgroundGradient: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}

body {
  margin: 0;
  background: var(--backgroundGradient);
  color: #333;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-bg);
  padding: 10px 20px;
  color: var(--text);
  border-radius: 30px;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  z-index: 1000;
}

.navbar img {
  border-radius: 50%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: beige;
  font-weight: 600;
  font-size: 16px;
}

.navbar a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("images/pets-bg.jpg") center/cover no-repeat;
  filter: blur(4px);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--dark-bg);
  background: rgba(255, 255, 255, 0.6); 
  padding: 20px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px); 
}


.hero-content h1 {
  font-size: 2.5rem;
  color: var(--dark-bg);
}

.hero-content p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: var(--dark-bg);
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffa500;
  transform: scale(1.1);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--dark-bg);
  color: var(--text);
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

.footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.footer a {
  color: beige;
  text-decoration: none;
  margin: 5px 10px;
  font-size: 16px;
}

.footer a:hover {
  color: var(--primary);
}




/* contact styling */
.contact-hero {
  
  position: relative;
  height: 110vh;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10%;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 60px;
}

.contact-hero video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
.contact-hero h1,.contact-hero p {
  color: white;
  z-index: 1;
}

.contact-form {
  position: relative;
  z-index: 1;
  color: var(--dark-bg);
  background: rgba(255, 255, 255, 0.6); 
  padding: 20px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px); 
  min-height: 55%;
  gap: 10%;
  max-width: 30%;
  margin-bottom: 30px;
}
.contact-content {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  margin: 7px;
  font-size: 1.7rem;
  content: hidden;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form h1, .contact-form p {
    color: var(--dark-bg);
}
.contact-form label {
  font-weight: bold;
  text-align: left;
}
.contact-form p{
    font-size: large;
}


/* Services Grid */
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center ;
    flex-direction: column;
    margin-top: 70px;
    margin-bottom: 20px;
}


.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-content img {
  max-width: 40%;
  border-radius: 20%;
}

.service-text {
  text-align: left;
  flex: 1;
}

.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: black;
}

.service-text p {
  color: gray;
  margin-bottom: 10px;
  line-height: 1.5;
}

.product{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center ;
    flex-direction: column;
    margin-top: 65px;
    margin-bottom: 20px;
}

.animal{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center ;
    flex-direction: column;
    margin-top: 65px;
    margin-bottom: 20px;
}
.product-card{
    background-color: white;
    padding:20px;
    margin: 10px;
    min-width: 80%;
    min-height: 40%;
    border-radius: 15px;
    gap: 20px;

}

.product-card img{
    max-width: 50%;
    border-radius: 20%;
    
}

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 1.5rem;
  }
  .navbar span, .navbar a {
    font-size: 12px;
  }

}
@media (max-width: 404px) {
    .navbar span, .navbar a {
    font-size: 10px;
  }
  .navbar img {
    width: 30px;
    height: 30px;
  }
  .service-content h3,.service-content p{
    font-size: 0.7rem;
  }
  .service-content{
    display: flex;
    flex-direction: column;
  }
}