body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url('/33697.jpg') center center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 44, 57, 0.3);
  z-index: 1;
}

.logo-bar {
  position: relative;
  z-index: 2;
  padding: 30px 60px 0 60px;
}

.logo {
    /* background-color: rgb(255, 255, 255, 0.2); */
    display: flex; 
    /* width: 200px !important;
    height: 200px; */
    align-items: center;
    justify-content:space-between;
    gap:20px;
}

.logo .paw {
  font-size: 2.2rem;
  margin-right: 12px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  /* position: relative; */
  z-index: 2;
  /* margin-top: 100px;
  padding-left: 60px;
  max-width: 100%; */
  color: rgb(43, 0, 255);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-content .highlight {
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #fff 60%, #0053ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.hero-content .subtext {
  font-size: 1.25rem;
  margin-bottom: 36px;
  opacity: 0.92;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 18px;
}

.button {
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 7px;
  font-size: 1.07rem;
  font-weight: 500;
  transition: background 0.19s, color 0.19s, border 0.19s;
}

.button.primary {
  background: #fff;
  color: #222f44;
  border: none;
}

.button.primary:hover {
  background: #b5dafe;
  color: #222f44;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: inherit;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.button.secondary:hover {
  background: #fff;
  color: #222f44;
}

/* Place this below your hero styles in styles.css */
.branches {
  background: #f8fafc; /* Light background for contrast */
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.card-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.branch-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.08);
  overflow: hidden;
  text-decoration: none;
  width: 320px;
  transition: transform 0.16s, box-shadow 0.16s;
  position: relative;
}

.branch-card:hover,
.branch-card:focus {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 26px 0 rgba(44, 62, 80, 0.15);
}

.branch-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 26px 22px 20px 22px;
}

.card-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.36rem;
  font-weight: 700;
  color: #34495e;
}

.card-info p {
  margin: 0;
  color: #6b7b93;
  font-size: 1.04rem;
}

@media (max-width: 1024px) {
  .card-container {
    gap: 18px;
  }
  .branch-card {
    width: 95vw;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-info {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-info .phone {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info .email {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info .address {
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-section h2 {
        font-size: 1.25rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-description,
    .footer-links a,
    .contact-info {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

