/* Title Styling */
.section-title {
    color: #0F3E2B;
}

.section-subtitle {
    color: #777;
    margin-bottom: 60px;
}

/* Circle cards */
.feature-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
}

.feature-circle h6 {
    font-weight: 600;
    color: #0F3E2B;
    margin-top: 10px;
}

.feature-circle small {
    color: #E8A923;
    font-weight: 500;
}

/* Icon */
.feature-circle .icon {
    width: 42px;
    margin: 0 auto;
}

/* Center illustration */
.center-image {
    width: 260px;
    margin: 0 auto;
}

.center-image img {
    width: 100%;
}

/* Wrapper to position circles */
.feature-wrapper {
    width: 100%;
    max-width: 900px;
    margin: auto;
    position: relative;
    height: 550px;
}


/* Hidden detailed info */
.feature-info {
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    opacity: 0;
    max-height: 0;
    padding: 0 5px;
    text-align: center;
    transition: all 0.3s ease;
}

/* On hover, expand circle and show info
.feature-circle:hover {
    width: 220px;
    height: 220px;
    padding: 25px 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}*/

.feature-circle:hover .feature-info {
    opacity: 1;
    max-height: 200px; /* enough to show text */
} 

/* Positioning (perfect like screenshot) */
.feature-wrapper .feature-circle:nth-child(1) { top: 0; left: 48%;   margin-left: -70px; }
.feature-wrapper .feature-circle:nth-child(2) { top: 120px; left: 30px; }
.feature-wrapper .feature-circle:nth-child(4) { top: 120px; right: 30px; }
.feature-wrapper .feature-circle:nth-child(5) { bottom: 20px; left: 30px; }
.feature-wrapper .feature-circle:nth-child(6) { bottom: 20px; right: 30px; }

.center-image { position: absolute; top: 300px; left: 50%; transform: translateX(-50%); }

/* PET PARENT — CIRCLE BASE */
.feature-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 35px 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* WHO CARD with glowing background */
.who-card {
  background: #FFFFFF;
  border: 1px solid #F9E8CE;
  /* border-radius: 50%; keep circle */
  text-align: center;
  padding: 20px;

  /* Glow effect */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),       /* subtle base shadow */
    0 10px 25px rgba(233, 168, 36, 0.35), /* golden inner glow */
    0 0 40px rgba(233, 168, 36, 0.25);   /* soft halo around circle */

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

/* Optional hover glow enhancement
.who-card:hover {
  transform: scale(1.05);
  box-shadow:
    0 6px 15px rgba(0,0,0,0.08),
    0 15px 35px rgba(233, 168, 36, 0.45),
    0 0 60px rgba(233, 168, 36, 0.35);
} */


.center-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

/* Blur circle sized to properly glow behind 480px image */
.center-image .blur-circle {
  position: absolute;
  width: 480px;    /* same as image width */
  height: 480px;
  background: #E9A824;
  border-radius: 50%;
  filter: blur(220px);   /* soft glow */
  z-index: 0;
}

/* Desktop: keep transform as is */
.center-image .center-img {
  position: relative;
  z-index: 1;
  width: 480px;
  height: auto;
  transform: translateY(-123px); /* move image up */
}

/* ===== Tablet <= 768px ===== */
@media (max-width: 768px) {
  .center-image .center-img {
    /* transform: none;
    width: 80%;      bigger on tablet */
    margin: 0 auto;
    display: block;
  }
}

/* ===== Mobile <= 576px ===== */
@media (max-width: 576px) {
  .center-image .center-img {
    transform: none;
    width: 85%;      /* bigger on mobile */
    margin: 0 auto;
    display: block;
  }
}

/* ===== Extra small <= 425px ===== */
@media (max-width: 425px) {
  .center-image .center-img {
    transform: none;
    width: 90%;      /* larger for small phones */
  }
}

/* ===== Extra extra small <= 375px ===== */
@media (max-width: 375px) {
  .center-image .center-img {
    transform: none;
    width: 95%;      /* even bigger */
  }
}

/* ===== Tiny screens <= 320px ===== */
@media (max-width: 320px) {
  .center-image .center-img {
    transform: none;
    width: 100%;     /* full width for tiny screens */
  }
}



/*center paw animation*/
.paw-template img {
  width: 40px;
  height: 40px;
  pointer-events: none;
}

/* .feature-circle.show {
  transform: scale(1.05);
  transition: transform 0.3s ease;
} */

/* Remove hover zoom */
.who-card:hover {
  transform: none !important;
}

/* Remove zoom added by JS animation */
.feature-circle.show {
  transform: none !important;
}

/*responsive*/

/* ===== Mobile <= 576px ===== */
@media (max-width: 576px) {

  .feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
    padding: 20px 0;
  }

  .feature-wrapper .feature-circle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 10px;
    flex: 0 0 45%;       /* 2 per row */
    max-width: 45%;
    aspect-ratio: 1 / 1; /* keep perfect square */
    border-radius: 50%;  /* perfect circle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* optional glow like desktop */
  }
/* ===== Tablet <= 768px ===== */
@media (max-width: 768px) {
  .feature-wrapper .feature-circle:nth-child(1) {
    margin-left: auto;   /* center the top circle */
    margin-right: auto;
  }
}

/* ===== Mobile <= 576px ===== */
@media (max-width: 576px) {
  .feature-wrapper .feature-circle:nth-child(1) {
    margin-left: auto;   /* center the top circle */
    margin-right: auto;
  }
}

/* ===== Extra small <= 425px ===== */
@media (max-width: 425px) {
  .feature-wrapper .feature-circle:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Extra extra small <= 375px ===== */
@media (max-width: 375px) {
  .feature-wrapper .feature-circle:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Tiny screens <= 320px ===== */
@media (max-width: 320px) {
  .feature-wrapper .feature-circle:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
  }
}

  .center-image {
    position: relative !important;
    margin: 0 auto 30px auto;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 80%;
    display: block;
  }

  .feature-circle h6 {
    font-size: 14px;
    text-align: center;
  }

  .feature-circle small {
    font-size: 12px;
    text-align: center;
  }
}

/* ===== Extra small screens <= 425px ===== */
@media (max-width: 425px) {
  .feature-wrapper .feature-circle {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 8px;
  }

  .center-image {
    width: 80%;
  }

  .feature-circle h6 {
    font-size: 13px;
  }

  .feature-circle small {
    font-size: 11px;
  }
}

/* ===== Extra extra small screens <= 375px ===== */
@media (max-width: 375px) {
  .feature-wrapper .feature-circle {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 6px;
  }

  .center-image {
    width: 85%;
  }

  .feature-circle h6 {
    font-size: 13px;
  }

  .feature-circle small {
    font-size: 11px;
  }
}

/* ===== Tiny screens <= 320px ===== */
@media (max-width: 320px) {
  .feature-wrapper .feature-circle {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 5px;
  }

  .center-image {
    width: 90%;
  }

  .feature-circle h6 {
    font-size: 12px;
  }

  .feature-circle small {
    font-size: 10px;
  }
}

/* popup overlay */
/* Background blur when popup opens */
/* Overlay behind popup with glow & blur */
.feature-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45); /* semi-transparent dark */
    backdrop-filter: blur(6px);   /* blur background behind overlay */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
    pointer-events: auto;
}

/* Show overlay */
.feature-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Popup circle with glow effect */
.feature-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    visibility: hidden;
    padding: 40px 25px;
    z-index: 1000;
    text-align: center;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.05),
        0 10px 25px rgba(233, 168, 36, 0.35),
        0 0 40px rgba(233, 168, 36, 0.25);
    transition: all 0.35s ease;
}

/* Show popup */
.feature-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Optional hover glow for desktop */
.feature-popup.active:hover {
    box-shadow:
        0 6px 15px rgba(0,0,0,0.05),
        0 15px 35px rgba(233, 168, 36, 0.45),
        0 0 60px rgba(233, 168, 36, 0.35);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Inside content */
.popup-content {
    text-align: center;
}

.popup-icon {
    width: 60px;
    margin-bottom: 15px;
}

.popup-title {
    color: #0F3E2B;
    font-weight: 700;
    margin-bottom: 15px;
}

.popup-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Mobile/tablet responsiveness */
@media (max-width: 768px) {
    .feature-popup {
        width: 90%;
        height: auto;
        padding: 30px 20px;
    }

    .popup-icon {
        width: 50px;
        margin-bottom: 12px;
    }

    .popup-title {
        font-size: 1.1rem;
    }

    .popup-text {
        font-size: 13px;
    }
}
/* Popup Circle */
.feature-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 350px;          /* increased size */
    height: 350px;         /* increased size */
    border-radius: 50%;    /* fully round */
    background: #fff;
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    visibility: hidden;
    padding: 50px 30px;    /* adjusted padding for bigger circle */
    z-index: 1000;
    text-align: center;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.05),
        0 10px 25px rgba(233, 168, 36, 0.35),
        0 0 40px rgba(233, 168, 36, 0.25);
    transition: all 0.35s ease;
}


/* Show popup */
.feature-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Popup content */
.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.popup-icon {
    width: 60px;
    margin-bottom: 15px;
}

.popup-title {
    color: #0F3E2B;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}



.feature-circle.show {
  opacity: 1;
  transform: scale(1);
}

/*hover effect*/
/* Hover effect: slightly scale up + glow */
.who-card:hover {
  transform: scale(1.05);               /* slightly enlarge */
  box-shadow:
    0 6px 15px rgba(0,0,0,0.08),
    0 15px 35px rgba(233, 168, 36, 0.45),
    0 0 60px rgba(233, 168, 36, 0.35); /* golden glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Click effect: "active" state */
.who-card:active,
.who-card.active {
  transform: scale(1.08);               /* slightly bigger when clicked */
  box-shadow:
    0 8px 20px rgba(0,0,0,0.1),
    0 20px 45px rgba(233, 168, 36, 0.55),
    0 0 80px rgba(233, 168, 36, 0.45); /* stronger golden glow */
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Optional: smooth transition for normal state */
.who-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*popup hover effects*/


/* FOR VETERINARIANS */
/* ===== / VETERINARIANS Cards like image ===== */
/* Wrapper for vet cards */
/* ===== VET SECTION WRAPPER ===== */
.vet-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 620px;
    margin: auto;
}

/* Container to hold the image and glow */
.vet-center-wrapper {
  position: relative;
  width: 480px; /* match your image width */
  margin: 0 auto; /* center horizontally */
}

/* Glow circle behind the image */
.vet-center-wrapper .vet-blur-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: #E9A824;
  border-radius: 50%;
  filter: blur(220px);
  transform: translate(-50%, -50%);
  z-index: 0; /* behind the image */
}

/* Vet center image */
.vet-center-wrapper .vet-center-image {
  position: relative; /* relative to wrapper */
  width: 480px;
  height: auto;
  z-index: 1; /* above glow */
  display: block;
  margin: 0 auto;
}





/* ===== PILL CARDS ===== */
.vet-card {
    background: #fff;
    border-radius: 50px;
    padding: 25px 25px;      /* increased vertical padding */
    width: 260px;
    height: 140px;            /* increased height from 90px to 140px */
    display: flex;
    flex-direction: column;   /* stack icon + text vertically for taller card */
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(233,168,36,0.18);
    position: absolute;
    transition: 0.3s ease;
}


/* Hover – using translateY but KEEPING the original transform */
.vet-card:hover {
    transform: translate(var(--x, 0), calc(var(--y, 0) - 4px));
    box-shadow: 0 6px 25px rgba(233,168,36,0.28);
}

/* ===== EXACT POSITIONS (MATCHES IMAGE) ===== */

/* TOP CENTER */
.vet-card.top-card {
   top: 0; 
   left: 50%;   
   margin-left: -130px; /* half of width to center it */
}

/* LEFT CARDS (stacked vertically) */
.vet-card.left-card {
    top: 120px;   /* adjust vertical spacing from top */
    left: 40px;   /* distance from left edge */
}

.vet-card.bottom-left-card {
    top: 300px;   /* adjust vertical spacing from previous left card */
    left: 40px;
}

/* RIGHT CARDS (stacked vertically) */
.vet-card.right-card {
    top: 120px;   /* same vertical start as left cards */
    right: 40px;  /* distance from right edge */
}

.vet-card.bottom-right-card {
    top: 300px;   /* space between top-right and bottom-right card */
    right: 40px;
}
 

/* ===== VET CARD STATIC EFFECT ===== */
.vet-card {
  /* Static glow always visible */
  box-shadow:
    0 4px 15px rgba(0,0,0,0.08),
    0 12px 30px rgba(233, 168, 36, 0.35),
    0 0 40px rgba(233, 168, 36, 0.25);

  /* Smooth transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== CLICK EFFECT ===== */
.vet-card:active,
.vet-card.active {
  transform: scale(1.08);
  box-shadow:
    0 8px 25px rgba(0,0,0,0.12),
    0 22px 50px rgba(233, 168, 36, 0.55),
    0 0 85px rgba(233, 168, 36, 0.45);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
/* Popup Overlay */
.vet-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

/* Popup Circle */
.vet-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vet-popup.show,
.vet-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.vet-popup .popup-content {
    text-align: center;
}

.vet-popup .popup-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}












/* Disable all hover transform/zoom/glow for circles */
.who-card:hover,
.who-card.show {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05),
                0 10px 25px rgba(233, 168, 36, 0.35),
                0 0 40px rgba(233, 168, 36, 0.25) !important;
}

/* Smooth show/hide for circles */
.feature-circle {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-circle.show {
  opacity: 1;
  transform: scale(1);
}

/* Optional: smooth paw fade-out */
.paw-template {
  transition: left 0.8s ease-out, top 0.8s ease-out, opacity 0.5s ease;
}


/*navbar sticky paw changes*/
:root {
    --paw: url("/assets/images/aboutimgs/paw.png");
}

/* Sticky navbar */
.custom-nav {
    background:#FFF9EE;
    padding:12px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container {
    max-width:1300px;
    padding-left:20px;
    padding-right:20px;
}

.brand-sub {
    font-size:11px;
    font-weight:500;
    color:#0F4C39;
    margin-top:4px;
}

/* Base nav-link style */
.nav-link {
    font-weight:500;
    color:#114C39 !important;
    position:relative;
    padding-left:26px; /* space for paw */
}

/* Add PAW before text only on ACTIVE menu */
/* Navbar Background and Sticky */
.nav-bg {
  background: #FFF9EE;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Container Max Width */
.nav-container {
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Brand Text */
.brand-subtext {
  font-size: 11px;
  font-weight: 500;
  color: #0F4C39;
}

/* Menu Text Color */
.text-green {
  color: #114C39 !important;
}

/* Contact / Book A Demo Button */
.btn-contact {
  background: #EFCB45;
  color: #114C39;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  border: none;
  text-align: center;
}

/* Paw Icon on Left for ACTIVE Menu Item */
/* For all menu items */
.nav-link.active {
  display: flex;
  align-items: center; /* vertically center paw and text */
  justify-content: center; /* center text horizontally */
  gap: 8px; /* space between paw and text */
  padding-left: 0 !important; /* remove previous padding */
}

/* Paw icon */
.nav-link.active::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/assets/images/aboutimgs/paw.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Flex layout: icon on left, text on right */
.vet-card-content {
  display: flex;
  align-items: center; /* vertically center text with icon */
  gap: 12px;           /* space between icon and text */
}

.vet-card-content .icon {
  width: 50px;
  height: 50px;
}

.vet-card-content .text h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.vet-card-content .text small {
  font-size: 12px;
  color: #555;
}
