.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.cardcont {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 5rem;

}

.card_cont {
  display: grid;
  row-gap: 3.5rem;

}

.card_arc {
  position: relative;
  overflow: hidden;

}

.card_carimg {
  width: 100%;
  max-width: 348px; /* or 328px for smaller screens */
  height: auto;
  border-radius: 1.5rem;
  display: block;
  object-fit: cover;
}

.card_data {
  width: 100%;           /* Make it match the image width */
  max-width: 285px;      /* Same as .card_carimg max-width */
  background: rgba(255, 255, 255, 0.18);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.5rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}

.card_desc {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: .25rem;

}

.card_title {
  font-size: var(--h2-font-size);
  font-weight: bold;
  color: var(--title-color);
  margin-bottom: .75rem;
}

.card_butt {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--first-color);

}

.card_butt:hover {
  text-decoration: underline;
}

.card_arc:hover .card_data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card_arc:hover {
  animation: remove-overflow 2s forwards;
}

.card_arc:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card_arc:not(:hover) .card_data {
  animation: remove-data 1s forwards;
}

@keyframes show-data {
  50% {
    transform: translateY(-10rem);

  }

  100% {
    transform: translateY(-7rem);

  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }

  50% {
    transform: translateY(-10rem);
  }

  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;

  }

  50% {
    overflow: hidden;
  }

}

/* Optional: tweak max-width for smaller screens */
@media (max-width: 600px) {
  .card_carimg {
    max-width: 90vw;
    border-radius: 1rem;
  }
}

@media (max-width: 600px) {
  .card_data {
    max-width: 80vw;
    padding: 1rem;
  }
}

@media screen and (max-width: 340px) {
  .cardcont {
    margin-inline: 1rem;

  }

  .card_data {
    width: 250px;
    padding: 1rem;

  }
}

@media screen and (min-width: 768px) {
  .card_cont {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

}

@media screen and (min-width: 1120px) {
  .cardcont {
    height: 100vh;
    margin-top: -10rem;
    margin-bottom: -8rem;

  }

  .card_cont {
    grid-template-columns: repeat(3, 1fr);

  }

  .card_carimg {
    width: 348px;

  }

  .card_data {
    width: 316px;
    padding-inline: 2.5rem;
  }

}

:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1120px) {
  :root {
    --h2-font-size: 1.5rem;
    --small-font-size: .875rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.carimg {
  display: block;
  max-width: 100%;
  height: auto;
}



/* ...existing code... */

.site-footer {
  background: #6ba400;
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
  font-family: "Oswald", Arial, sans-serif;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2rem;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col.brand {
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  background: ;
  border-radius: 0;
  padding: 5px;
}

.footer-brand-title {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1px;
}

.footer-brand-desc {
  font-size: 1.4rem;
}

.footer-heading {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col a,
.footer-link {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s;
  font-size: 1.15rem;
}

.footer-col a:hover,
.footer-link:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icons .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  transition: background 0.2s;
  padding: 0;
}

.social-icons .footer-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.social-icons svg {
  display: block;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-col {
    min-width: 0;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ...existing code... */

<div class="contact-number"><span class="custom-icon" aria-label="WhatsApp"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="22" height="22"><path fill="#ffffff" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" /></svg></span><span class="number-text">074-1234567</span></div>.contact-number {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.custom-icon {
  display: flex;
  align-items: center;
}

.number-text {
  font-size: 1.1em;
  /* Optional: adjust as needed */
}

html {
  scroll-behavior: smooth;
}

.sakya-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: #fff;
  color: #f8991d;
  border: 2px solid #f8991d;
  padding: 0.7em 1.6em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(248, 153, 29, 0.10);
  margin-top: 1.2em;
  overflow: hidden;
  position: relative;
  transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}

.sakya-icon img {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
}

.sakya-text {
  position: relative;
  left: 0;
  transition: left 0.5s cubic-bezier(.77, 0, .18, 1);
}

.sakya-btn:hover,
.sakya-btn:focus {
  background: #ffd57b;
  color: #000000;
  border-color: #f8991d;
  box-shadow: 0 6px 18px rgba(248, 153, 29, 0.18);
}

.sakya-btn:hover .sakya-icon img,
.sakya-btn:focus .sakya-icon img {
  transform: translateX(12px) scale(1.1);
}

.sakya-btn:hover .sakya-text,
.sakya-btn:focus .sakya-text {
  left: 10px;
}

@media (max-width: 600px) {
  .sakya-btn {
    font-size: 0.97em;
    padding: 0.5em 1em;
  }

  .sakya-icon img {
    width: 26px;
    height: 26px;
  }

  .sakya-text {
    font-size: 0.97em;
  }
}

/* Ensure both .sakya-btn and .sasip-btn have the same size and style */
.sasip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: #fff;
  color: #1a237e;
  border: 2px solid #1a237e;
  padding: 0.7em 1.6em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.10);
  margin-top: 1.2em;
  overflow: hidden;
  position: relative;
  transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}

.sasip-icon img {
  width: 50px;
  height: 50px;
  display: block;
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
}

.sasip-text {
  position: relative;
  left: 0;
  transition: left 0.5s cubic-bezier(.77, 0, .18, 1);
}

.sasip-btn:hover,
.sasip-btn:focus {
  background: #1a237e;
  color: #fff;
  border-color: #1a237e;
  box-shadow: 0 6px 18px rgba(26, 35, 126, 0.18);
}

.sasip-btn:hover .sasip-icon img,
.sasip-btn:focus .sasip-icon img {
  transform: translateX(12px) scale(1.1);
}

.sasip-btn:hover .sasip-text,
.sasip-btn:focus .sasip-text {
  left: 10px;
}

@media (max-width: 600px) {
  .sasip-btn {
    font-size: 0.97em;
    padding: 0.5em 1em;
  }

  .sasip-icon img {
    width: 26px;
    height: 26px;
  }

  .sasip-text {
    font-size: 0.97em;
  }
}

.center-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  /* space between buttons */
  margin: 2em 0;
  flex-wrap: wrap;
}


.social-svg {
  width: 2.8em;
  height: 2.8em;
  min-width: 44px;
  min-height: 44px;
  background: #74a800;
  border-radius: 12px;
  margin: 0 0.2em;
  transition: transform 0.2s;
  box-sizing: content-box;
  padding: 2px;
}

.footer-link:hover .social-svg {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}



#whatsapp-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: Oswald, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* pointer-events: none; */
  /* REMOVE THIS LINE */
}

#wa-chat-toggle {
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  animation: wa-pop-in 0.6s cubic-bezier(.68, -0.55, .27, 1.55);
  pointer-events: auto;
  position: relative;
  outline: none;
}

#wa-chat-toggle:hover {
  transform: scale(1.08);
}

#wa-notify-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ff2d2d;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 0 6px #ff2d2d80;
  z-index: 2;
  display: block;
  pointer-events: none;
  animation: wa-dot-pop 0.5s;
}

@keyframes wa-dot-pop {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#wa-chat-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 18px 20px 16px 20px;
  min-width: 220px;
  width: 90vw;
  max-width: 340px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(.68, -0.55, .27, 1.55), transform 0.35s cubic-bezier(.68, -0.55, .27, 1.55);
  display: none;
  pointer-events: auto;
  position: absolute;
  bottom: 70px;
  right: 0;
  box-sizing: border-box;
  word-break: break-word;
}

#wa-chat-box.wa-visible {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: wa-fade-in 0.35s cubic-bezier(.68, -0.55, .27, 1.55);
}

#wa-chat-box.wa-hide {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: wa-fade-out 0.35s cubic-bezier(.68, -0.55, .27, 1.55);
}

@keyframes wa-pop-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  80% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes wa-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-fade-out {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
}

@media (max-width: 600px) {
  #whatsapp-chat {
    right: 10px;
    bottom: 10px;
  }

  #wa-chat-box {
    max-width: 98vw;
    min-width: 0;
    width: 98vw;
    padding: 14px 8px 12px 12px;
    font-size: 1em;
  }

  #wa-chat-toggle {
    width: 48px;
    height: 48px;
  }

  #wa-notify-dot {
    width: 13px;
    height: 13px;
    top: -3px;
    right: -3px;
    border-width: 2px;
  }
}

@media (max-width: 400px) {
  #wa-chat-box {
    font-size: 0.95em;
    padding: 10px 4px 10px 8px;
  }
}