@charset "UTF-8";
/* -------------------------------------
   FONT IMPORTS
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Lora:ital,wght@0,400..700;1,400..700&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
/* =====================================
   COLOR SYSTEM
===================================== */
/* -------------------------------------
   DEFAULT BODY FONT
------------------------------------- */
body {
  font-family: "IBM Plex Sans", sans-serif;
  color: #332E2D;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 18px;
}

/* -------------------------------------
   FONT UTILITY CLASSES
------------------------------------- */
.custom-font-body {
  font-family: "IBM Plex Sans", sans-serif !important;
}

.custom-font-lora {
  font-family: "Lora", serif !important;
}

.custom-font-poppins {
  font-family: "Poppins", sans-serif !important;
}

/* =====================================
   TEXT & BACKGROUND HELPERS
===================================== */
.custom-text-primary {
  color: #E0726E !important;
}

.custom-text-primary-dark {
  color: #600F31 !important;
}

.custom-text-body {
  color: #332E2D !important;
}

.custom-bg-primary {
  background-color: #E0726E !important;
}

.custom-bg-primary-dark {
  background-color: #600F31 !important;
}

.custom-bg-light {
  background-color: #EBE5FC !important;
}

.custom-bg-surface {
  background-color: #f9f9f9 !important;
}

/* =====================================
   BUTTON SYSTEM
===================================== */
.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.custom-btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.custom-btn-primary {
  background-color: #E0726E;
  border-color: #E0726E;
  color: #fff;
}
.custom-btn-primary:hover {
  background-color: rgb(216.8136363636, 81.3136363636, 76.3863636364);
  border-color: rgb(216.8136363636, 81.3136363636, 76.3863636364);
  transform: translateY(-1px);
}
.custom-btn-primary:active {
  background-color: rgb(213.2204545455, 64.9704545455, 59.5795454545);
  transform: translateY(0);
}
.custom-btn-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(224, 114, 110, 0.2);
}

.custom-btn-primary-dark {
  background-color: #600F31;
  border: 2px solid #600F31;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.custom-btn-primary-dark:hover {
  background-color: #fff !important;
  color: #600F31;
  border-color: #600F31 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.custom-btn-primary-dark:active {
  background-color: rgb(73.9459459459, 11.5540540541, 37.7432432432);
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.custom-btn-primary-dark:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(96, 15, 49, 0.3);
}

.custom-btn-outline {
  background-color: transparent;
  border: 1px solid #332E2D;
  color: #332E2D;
}
.custom-btn-outline:hover {
  background-color: rgba(51, 46, 45, 0.06);
}
.custom-btn-outline:active {
  background-color: rgba(51, 46, 45, 0.12);
}

.custom-btn-outline-primary {
  border-color: #E0726E !important;
  color: #E0726E;
  background: transparent;
}
.custom-btn-outline-primary:hover {
  background-color: rgba(224, 114, 110, 0.08);
  color: rgb(215.0170454545, 73.1420454545, 67.9829545455);
}
.custom-btn-outline-primary:active {
  background-color: #E0726E;
  color: #fff;
}

.custom-btn-outline-primary-dark {
  border: 1px solid #600F31 !important;
  color: #600F31;
  background-color: transparent;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.custom-btn-outline-primary-dark:hover {
  background-color: rgba(96, 15, 49, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.custom-btn-outline-primary-dark:active {
  background-color: #600F31;
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.custom-btn-outline-primary-dark:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(96, 15, 49, 0.25);
}

.custom-btn-link {
  background: none;
  border: none;
  color: #E0726E;
  text-decoration: underline dotted;
  padding: 0;
  font-weight: 600;
}
.custom-btn-link:hover {
  color: rgb(215.0170454545, 73.1420454545, 67.9829545455);
  text-decoration: underline;
}
.custom-btn-link:active {
  color: rgb(210.5255681818, 52.7130681818, 46.9744318182);
}

.custom-btn-sm {
  padding: 0.25rem 0.6rem;
  font-size: 0.875rem;
}

.custom-btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/* =====================================
   BORDER
===================================== */
.custom-border-primary-dark {
  border-color: #600F31 !important;
}

/* =====================================
   HEADER SAMPLE
===================================== */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(118.734375, 107.09375, 104.765625);
  background-color: #ffffff;
}
.custom-header .custom-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* =====================================
   ACCESSIBILITY
===================================== */
.custom-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

* {
  outline: none !important;
  border: none !important;
}

.marquee-wrapper {
  background-color: rgba(246.4573863636, 216.1448863636, 215.0426136364, 0.3);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
.marquee-wrapper .marquee-track {
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
@media (max-width: 991px) {
  .marquee-wrapper .marquee-track {
    animation: marquee 12s linear infinite;
  }
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-text {
  display: inline-block;
  opacity: 0.6;
  font-weight: lighter;
  margin: 0;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  width: 339px;
  max-width: 100%;
  min-width: 180px;
  transition: width 0.5s ease;
}
@media (max-width: 991px) {
  .navbar .navbar-brand img {
    width: 240px;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-brand img {
    width: 200px;
  }
}
.navbar .navbar-nav.mx-auto {
  display: flex;
  flex-wrap: nowrap;
}
.navbar .navbar-nav.mx-auto .nav-item {
  margin: 0 1rem;
}
@media (max-width: 991px) {
  .navbar .navbar-nav.mx-auto .nav-item {
    margin: 0 0.8rem;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-nav.mx-auto .nav-item {
    margin: 0 0.6rem;
  }
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link {
  position: relative;
  padding: 0.5rem 0;
  text-align: center;
  color: #332E2D;
  transition: color 0.3s ease;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #600F31;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link:hover {
  color: #E0726E;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link:hover::after {
  width: 60%;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link.active {
  color: #E0726E;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link.active::after {
  width: 60%;
}
.navbar .navbar-nav.mx-auto .nav-item .dropdown-toggle {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar .navbar-nav.mx-auto .nav-item .dropdown-toggle::after {
  content: "";
  display: none !important;
}
.navbar .navbar-nav.mx-auto .nav-item .dropdown-toggle:hover {
  color: #600F31 !important;
  border-color: #600F31 !important;
}

.navbar .navbar-nav.mx-auto .nav-item .nav-link.active-nav {
  color: #E0726E;
}
.navbar .navbar-nav.mx-auto .nav-item .nav-link.active-nav::after {
  width: 60%;
}


.navbar .navbar-nav.d-flex {
  flex-wrap: nowrap;
}
.navbar .navbar-nav.d-flex .nav-item {
  margin-left: 1rem;
  margin-right: 0;
}
@media (max-width: 991px) {
  .navbar .navbar-nav.d-flex .nav-item {
    margin-left: 0.8rem;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-nav.d-flex .nav-item {
    margin-left: 0.6rem;
  }
}

.more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #600F31;
  border-radius: 0.5rem;
  background: transparent;
  color: #600F31;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-btn .material-symbols-outlined {
  margin-left: 0.4rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.more-btn.show .material-symbols-outlined {
  transform: rotate(180deg);
}
.more-btn .dropdown-menu {
  top: 110%;
  right: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 180px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.more-btn.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-toggle {
    background: #600F31;
    color: #fff;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .more-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 0.5rem 0.8rem;
  }
}
@media (max-width: 575px) {
  .more-btn {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }
}
section p {
  text-align: justify;
}
section:nth-of-type(2) p {
  max-width: 1125px;
}
section:nth-of-type(n+2) h1 {
  max-width: 863px;
  margin: auto;
}
section:nth-of-type(n+2) h6 {
  max-width: 667px;
}
section:nth-of-type(n+2)#supportNetwork p {
  max-width: 570px;
}
section:nth-of-type(n+2) figure img {
  background: linear-gradient(180deg, rgba(233, 236, 239, 0.85) 0%, #ffffff 100%);
  border-radius: 8px;
  padding: 10px;
}
section:nth-of-type(n+2) .leader-story-container {
  max-height: 216px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease;
}
section:nth-of-type(n+2) .leader-story-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(184.79deg, rgba(255, 255, 255, 0.5) -57.18%, #fff 130.69%);
  opacity: 1;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
section:nth-of-type(n+2) .leader-story-container.open::before {
  opacity: 0;
  height: 0;
}
section:nth-of-type(n+2) .toggle-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  font-weight: 600;
  text-decoration: none;
}
section:nth-of-type(n+2) .toggle-btn .toggle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #600F31 !important;
  color: #600F31 !important;
  background-color: transparent !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease, border-color 0.4s ease;
  will-change: transform, color;
}
section:nth-of-type(n+2) .toggle-btn .toggle-text {
  opacity: 0.5 !important;
  transition: color 0.4s ease, transform 0.4s ease, opacity 0.4s ease !important;
  will-change: transform, color, opacity;
}
section:nth-of-type(n+2) .toggle-btn:hover .toggle-arrow, section:nth-of-type(n+2) .toggle-btn.open .toggle-arrow {
  transform: translateY(2px) rotate(360deg);
  color: white !important;
  border-color: #600F31 !important;
  background-color: #600F31 !important;
}
section:nth-of-type(n+2) .toggle-btn:hover .toggle-text, section:nth-of-type(n+2) .toggle-btn.open .toggle-text {
  transform: translateX(2px);
  opacity: 1 !important;
  color: #600F31 !important;
}
section:nth-of-type(n+2) .toggle-btn:focus-visible .toggle-arrow {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(96, 15, 49, 0.3) !important;
}
section {
  margin-top: 64px !important;
}
@media (min-width: 991px) {
  section {
    margin-top: 120px;
  }
}

footer {
  background-color: white;
  padding-top: 3rem;
}
footer .list-unstyled a {
  font-size: 14px;
  color: #332E2D;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .list-unstyled a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #600F31;
  transition: width 0.3s ease;
}
footer .list-unstyled a:hover {
  color: #600F31;
}
footer .list-unstyled a:hover::after {
  width: 100%;
}
footer .d-flex.gap-3 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  font-size: 18px;
  transition: all 0.3s ease;
  color: #600F31 !important;
}
footer .d-flex.gap-3 a:hover {
  color: #fff !important;
  background-color: #E0726E !important;
  transform: scale(1.2);
}
footer .footer-brand-link {
  color: #600F31;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
footer .footer-brand-link:hover {
  color: #E0726E !important;
  transform: scale(1.05);
}
footer .footer-brand-link strong {
  font-weight: 600;
}

.more-dropdown .dropdown-item.active,
.more-dropdown .dropdown-item:active,
.more-dropdown .dropdown-item:focus {
  background-color: #600F31 !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* -------------------------
Blog
--------------------------*/
.avatar-thumbnail-container::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 20px;
  bottom: 16px;
  background-color: white;
  opacity: 0.75;
  z-index: 1;
}
.avatar-thumbnail-container .avatar-thumbnail {
  width: 70px;
  height: 70px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 24px;
  right: 8px;
  overflow: hidden;
  border: 2px solid white !important;
  z-index: 2;
}
.avatar-thumbnail-container .avatar-thumbnail img {
  width: 100%;
  margin-bottom: 0 !important;
  overflow: hidden;
}

.leader-story-container p {
  padding-right: 1px !important;
}

/* -------------------------
   CALL FAB (Bottom Right)
--------------------------*/
.fab-call-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.fab-call-wrapper.open .fab-expanded {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Main FAB Icon */
.fab-icon {
  width: 55px;
  height: 55px;
  background: #600F31;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.fab-icon .material-symbols-outlined {
  font-size: 28px;
  color: #fff;
}
.fab-icon:hover {
  transform: scale(1.1);
}

/* Expanded Call Button */
.fab-expanded {
  position: absolute;
  right: 65px;
  bottom: 8px;
  padding: 10px 18px;
  background: #600F31;
  color: white;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
}
.fab-expanded .material-symbols-outlined {
  font-size: 22px;
  color: white;
}

/* -------------------------
   SCROLL TO TOP FAB
--------------------------*/
.fab-top {
  position: fixed;
  right: 28px;
  bottom: 95px;
  width: 40px;
  height: 40px;
  background: #E0726E;
  color: #fff;
  border-radius: 50%;
  display: none;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
  z-index: 9999;
}
.fab-top .material-symbols-outlined {
  font-size: 24px;
  color: #fff;
}
.fab-top:hover {
  transform: translateY(-3px);
}

/* =========================================
   PRODUCT VIDEO — FULL RESPONSIVE SCSS
========================================= */
#oruproduct {
  z-index: -1 !important;
}

/* Wrapper spacing */
.video-box {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  z-index: -1 !important;
  overflow: hidden;
  border-radius: 16px;
}

/* Default: landscape layout */
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

/* Show only landscape by default */
.video-portrait {
  display: none;
}

/* =========================================
   PORTRAIT MODE (phones vertical)
========================================= */
@media (orientation: portrait) {
  .video-box {
    border-radius: unset;
  }
  /* Force portrait video visible */
  .video-portrait {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* Landscape video off */
  .video-landscape {
    display: none;
  }
  /* Box takes natural height */
  .video-box {
    height: auto !important;
    aspect-ratio: auto !important;
  }
  /* FIX: Remove Bootstrap 16:9 ratio padding */
  .video-box.ratio::before {
    padding-top: 0 !important;
    display: none !important;
    content: "" !important;
  }
}
/* =========================================
   OPTIONAL: Very small screens (extra safety)
========================================= */
@media (max-width: 480px) {
  .video-portrait {
    width: 100%;
    height: auto;
  }
}
/* Reset only inside your block */
.carousel-wrapper * {
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------
   CAROUSEL MAIN WRAPPER
--------------------------------------------- */
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* --------------------------
     MIXINS (2 + 3 line limit)
  ---------------------------*/
  /* ==========================
     TOP CAROUSEL
  ========================== */
}
.carousel-wrapper .carousel-top {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 0;
}
.carousel-wrapper .carousel-top .swiper-wrapper {
  display: flex;
}
.carousel-wrapper .carousel-top .swiper-slide {
  flex: 0 0 calc(25% - 10px);
  max-width: calc(25% - 10px);
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  background: #fff;
  text-align: left;
  transition: all 0.25s ease;
  opacity: 0.7;
}
.carousel-wrapper .carousel-top .swiper-slide:hover, .carousel-wrapper .carousel-top .swiper-slide.active-top {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-color: #E0726E;
  opacity: 1;
}
.carousel-wrapper .carousel-top .swiper-slide span {
  width: 80%;
  text-transform: none;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.125rem;
  color: #332E2D;
  margin: 10px 0 !important;
  line-height: 1.2 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
}
.carousel-wrapper .carousel-top .swiper-slide span::first-letter {
  text-transform: uppercase;
}
.carousel-wrapper .carousel-top .swiper-slide small {
  width: 80%;
  font-family: "Poppins";
  font-size: 0.875rem;
  color: #6c6c6c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 3.9em;
}
.carousel-wrapper .carousel-top .swiper-slide div {
  border-top: 4px solid #f0f3f8 !important;
  margin-bottom: 6px;
  transition: border-color 0.25s ease;
}
.carousel-wrapper .carousel-top .swiper-slide.active-top div {
  border-color: #E0726E !important;
}
.carousel-wrapper {
  /* ==========================
     BOTTOM CAROUSEL
  ========================== */
}
.carousel-wrapper .carousel-bottom {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.carousel-wrapper .carousel-bottom .slide-wrapper {
  width: 100% !important;
  overflow: hidden;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-slide {
  width: calc(100% - 20px) !important;
  max-width: 1320px !important;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide {
  width: 100%;
  max-width: 1320px;
  height: 360px;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* IMAGE AREA */
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-image {
  flex: 0 0 60%;
  height: 100%;
  overflow: hidden;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-image:hover img {
  transform: scale(1.04);
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide {
  /* CONTENT AREA */
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content {
  flex: 0 0 40%;
  min-width: 280px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background-color: rgb(252.7454545455, 244.7454545455, 244.4545454545);
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content h3 {
  text-transform: lowercase;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0;
  line-height: 1 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content h3::first-letter {
  text-transform: uppercase;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content p {
  color: #332E2D;
  font-family: "Poppins";
  font-size: 1.125rem;
  margin: 18px 0;
  padding-right: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 3.9em;
  -webkit-line-clamp: 4 !important;
  max-height: 5.2em !important;
  text-align: left !important;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content a {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1rem;
  padding: 0 2px;
  color: #600F31;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  margin-right: auto;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content a .material-icons {
  font-size: 18px;
  transition: transform 0.28s ease;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #600F31;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content a:hover::after {
  transform: scaleX(1);
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide .slide-content a:hover .material-icons {
  transform: translateX(3px);
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide {
  /* ==========================
     PROGRESS BAR
  ========================== */
}
.carousel-wrapper .carousel-bottom .slide-wrapper .slide.animate-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: #E0726E;
  z-index: 1;
  transition: none;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-next,
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-prev {
  position: absolute;
  color: #E0726E;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #E0726E;
  color: white;
}
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-next .previous-btn,
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-prev .previous-btn {
  transform: rotate(180deg);
}
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-next::after,
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-prev::after {
  content: "";
}
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-next:hover,
.carousel-wrapper .carousel-bottom .slide-wrapper .swiper-button-prev:hover {
  background: #600F31;
  color: #fff;
}

/* ==========================
   RESPONSIVE
========================== */
@media (min-width: 1400px) {
  .carousel-wrapper .slide {
    height: 380px;
  }
}
@media (max-width: 1320px) {
  .carousel-wrapper .slide {
    height: 330px;
  }
}
@media (max-width: 992px) {
  .carousel-top .swiper-slide {
    flex: 0 0 33.33%;
  }
  .carousel-wrapper .slide {
    height: 310px;
  }
}
@media (max-width: 768px) {
  .carousel-wrapper .slide-wrapper,
  .carousel-wrapper .swiper {
    max-height: 600px;
  }
  .carousel-wrapper .slide {
    flex-direction: column;
    height: auto !important;
  }
  .carousel-wrapper .slide .slide-image {
    width: 100%;
    flex-basis: unset !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
  }
  .carousel-wrapper .slide .slide-content {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 576px) {
  .carousel-top .swiper-slide {
    flex: 0 0 100%;
  }
  .carousel-wrapper .slide .slide-image {
    height: 180px;
  }
}
/* -----------------------------
   RESPONSIVE H3 FONT-SIZE
------------------------------*/
/* Tablets */
@media (max-width: 992px) {
  .carousel-wrapper .slide-content h3 {
    font-size: 1.6rem !important;
  }
}
/* Large phones */
@media (max-width: 768px) {
  .carousel-wrapper .slide-content h3 {
    font-size: 1.45rem !important;
  }
}
/* Small phones */
@media (max-width: 576px) {
  .carousel-wrapper .slide-content h3 {
    font-size: 1.25rem !important;
  }
}
.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: #E0726E;
  z-index: 1;
  transition: width 0.1s linear;
}

.carousel-wrapper .swiper-button-next,
.carousel-wrapper .swiper-button-prev {
  opacity: 0;
}
.carousel-wrapper:hover .swiper-button-next,
.carousel-wrapper:hover .swiper-button-prev {
  opacity: 1;
}

/* Hide next/prev buttons on md and smaller (≤ 992px) */
@media (max-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
#ourTeam {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0.8%, rgba(237.4744318182, 175.2869318182, 173.0255681818, 0.35) 35.63%, rgba(255, 255, 255, 0.22) 84.3%);
}
#ourTeam .container {
  overflow: visible !important;
}

.team-wrapper {
  position: relative;
}
.team-wrapper .team-col {
  position: relative;
  transition: filter 0.3s ease;
  overflow: visible !important;
}
.team-wrapper .team-col.blur {
  filter: blur(3px) brightness(0.7);
  z-index: -1;
}
.team-wrapper .team-details {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  z-index: 10;
}
.team-wrapper .team-details.show-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.team-wrapper .team-details p {
  font-size: 14px;
  text-align: justify;
  word-break: break-word;
}
@media (min-width: 992px) {
  .team-wrapper .team-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    opacity: 0;
    transform: translateY(10px);
  }
}
@media (min-width: 568px) and (max-width: 991px) {
  .team-wrapper .team-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }
  .team-wrapper .team-details.show-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
  }
}
@media (max-width: 567px) {
  .team-wrapper .team-col {
    filter: none !important;
  }
  .team-wrapper .team-details {
    border: 0;
    position: relative;
    margin-top: 12px;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  .team-wrapper .team-details.show-active {
    border: 1px solid #eee;
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
  .team-wrapper .team-details .pic-frame {
    display: none;
  }
  .team-wrapper .team-details .team-details-content {
    z-index: 5;
    transition: opacity 0.5s ease;
  }
  .team-wrapper .team-details .team-details-content.show-active {
    opacity: 1 !important;
  }
}

.team-details-content p {
  text-align: justify !important;
}

/* =========================================
   Support Network Swiper Custom Styles
========================================= */
.custom-swiper {
  padding: 40px 20px;
}
.custom-swiper .custom-swiper-slide {
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  height: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  user-select: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.custom-swiper .custom-swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.custom-swiper .custom-swiper-slide-active {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Card Content Animation */
.custom-card-content {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(20px);
}
.custom-card-content.active {
  opacity: 1;
  transform: translateY(0);
}
.custom-card-content #cardTitle {
  font-weight: 600;
  margin-bottom: 10px;
}
.custom-card-content #cardDesc {
  color: #6c757d;
  margin-bottom: 14px;
  font-size: 1rem;
  /* whatever your design uses */
  line-height: 1.4;
  /* PERFECT readable line-height */
  height: 2.8em;
  /* font-size × line-height × 2 lines */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

/* ===============================
   SWIPER ARROWS (SHOW ONLY ON ≥992PX)
================================= */
.custom-prev,
.custom-next {
  display: none;
}

@media (min-width: 992px) {
  .custom-prev,
  .custom-next {
    display: flex !important;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }
  .custom-prev::after,
  .custom-next::after {
    font-size: 20px;
    color: #000;
  }
  .custom-prev {
    left: 7px;
  }
  .custom-next {
    right: 7px;
  }
}
.custom-swiper::before, .custom-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  background: #ffffff;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
}
.custom-swiper::after {
  left: unset;
  right: 0;
  transform: scaleX(-1);
}

.terms-page .terms-article {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
.terms-page .terms-article .terms-header h1 {
  font-size: 2.25rem;
  margin: 0 0 0.25rem;
  color: #600F31;
  letter-spacing: 0.4px;
}
.terms-page .terms-article .terms-header .last-updated {
  color: #332E2D;
  font-size: 0.95rem;
  margin: 0;
}
.terms-page .terms-article .terms-body h2 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
  color: #600F31;
  text-transform: uppercase;
}
.terms-page .terms-article .terms-body h3 {
  font-size: 1rem;
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
  color: #E0726E;
}
.terms-page .terms-article .terms-body h4 {
  font-size: 0.98rem;
  margin-top: 0.6rem;
  margin-bottom: 0.35rem;
  color: #332E2D;
}
.terms-page .terms-article .terms-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgb(29.325, 26.45, 25.875);
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.terms-page .terms-article .terms-body ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}
.terms-page .terms-article .terms-body ul li {
  margin-bottom: 0.45rem;
  color: rgb(29.325, 26.45, 25.875);
  line-height: 1.6;
}
.terms-page .terms-article .terms-body address {
  font-style: normal;
  color: #332E2D;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}
.terms-page .terms-article .terms-body a {
  color: #E0726E;
  text-decoration: underline;
}
.terms-page .terms-article .terms-body a:hover {
  color: rgb(216.8136363636, 81.3136363636, 76.3863636364);
  text-decoration: none;
}
@media (min-width: 1200px) {
  .terms-page .terms-article {
    padding: 2.5rem 3rem;
  }
}
@media (max-width: 991px) {
  .terms-page .terms-article {
    padding: 1.5rem;
  }
  .terms-page .terms-header h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 575px) {
  .terms-page .terms-article {
    padding: 1rem;
  }
  .terms-page .terms-header h1 {
    font-size: 1.6rem;
  }
  .terms-page .terms-body p {
    font-size: 0.92rem;
  }
}

/* ============================
   BLOGS / BLOG LISTING
============================ */
.blogs-section .row .blog-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blogs-section .row .blog-card .blog-link {
  display: block;
  text-decoration: none;
  color: #332E2D;
}
.blogs-section .row .blog-card .blog-link img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blogs-section .row .blog-card .blog-link h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgb(7.65, 6.9, 6.75);
  transition: color 0.3s ease;
}
.blogs-section .row .blog-card .blog-link:hover img {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.blogs-section .row .blog-card .blog-link:hover h5 {
  color: #E0726E;
}
.blogs-section .row .blog-card .blog-card-body p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}
.blogs-section .row .blog-card .blog-card-body a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid #E0726E;
  color: #E0726E;
  background: transparent;
  transition: all 0.3s ease;
}
.blogs-section .row .blog-card .blog-card-body a:hover {
  background: #E0726E;
  color: #fff;
  text-decoration: none;
}
.blogs-section .row .blog-card:hover {
  transform: translateY(-4px);
}
.blogs-section .d-flex a.btn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #600F31;
  color: #600F31;
  background: transparent;
  transition: all 0.3s ease;
}
.blogs-section .d-flex a.btn:hover {
  background: #600F31;
  color: #fff;
  text-decoration: none;
}

/* ============================
   Responsive
============================ */
@media (max-width: 991px) {
  .blog-card img {
    max-height: 200px;
  }
  .blog-card-body h5 {
    font-size: 1.15rem;
  }
}
@media (max-width: 575px) {
  .blogs-section {
    padding: 2rem 1rem;
  }
  .blog-card img {
    max-height: 160px;
  }
  .blog-card-body h5 {
    font-size: 1.1rem;
  }
}
/* ============================
   BREADCRUMB NAV
============================ */
.breadcrumb-nav {
  margin-bottom: 2rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  color: #666;
}
.breadcrumb-nav .breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb-nav .breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: #999;
}
.breadcrumb-nav .breadcrumb-list li a {
  text-decoration: none;
  color: #E0726E;
  transition: color 0.3s ease;
}
.breadcrumb-nav .breadcrumb-list li a:hover {
  text-decoration: underline;
  color: rgb(215.0170454545, 73.1420454545, 67.9829545455);
}
.breadcrumb-nav .breadcrumb-list li.active {
  color: #332E2D;
  font-weight: 500;
}
@media (max-width: 575px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
  }
  .breadcrumb-nav .breadcrumb-list li:not(:last-child)::after {
    margin: 0 0.3rem;
  }
}

/* ============================
   BLOG DETAILS PAGE
============================ */
.blog-details-container {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: #332E2D;
  word-break: break-word;
  overflow-wrap: anywhere;
  /* Featured Image (Static) */
}
.blog-details-container .blog-featured-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.blog-details-container {
  /* H1 Title Hover */
}
.blog-details-container h1.blog-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #332E2D;
  transition: color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.blog-details-container {
  /* Author & Date */
}
.blog-details-container .blog-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}
.blog-details-container .blog-meta strong {
  color: #E0726E;
}
.blog-details-container {
  /* Blog Content */
}
.blog-details-container .blog-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}
.blog-details-container .blog-content p {
  margin-bottom: 1rem;
}
.blog-details-container .blog-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #332E2D;
}
.blog-details-container .blog-content .content-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin: 1.5rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-details-container .blog-content .content-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.blog-details-container .blog-content a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid #E0726E;
  color: #E0726E;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.blog-details-container .blog-content a:hover {
  background: #E0726E;
  color: #fff;
}
.blog-details-container {
  /* Back Button */
}
.blog-details-container .btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #E0726E;
  color: #E0726E;
  background: transparent;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-decoration: none;
}
.blog-details-container .btn:hover {
  background: #E0726E;
  color: #fff;
}
.blog-details-container {
  /* Other Blogs Sidebar */
}
.blog-details-container .blog-card-small {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: #332E2D;
}
.blog-details-container .blog-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #E0726E;
  text-decoration: none;
}
.blog-details-container .blog-card-small .blog-img-sm {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
.blog-details-container .blog-card-small .blog-img-sm:hover {
  transform: scale(1.05);
}
.blog-details-container .blog-card-small .blog-content-sm h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #332E2D;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.blog-details-container .blog-card-small .blog-content-sm .blog-date-sm {
  font-size: 0.75rem;
  color: #E0726E;
  margin-top: 4px;
  transition: color 0.3s ease;
}
.blog-details-container .blog-card-small:hover .blog-content-sm h6, .blog-details-container .blog-card-small:hover .blog-content-sm .blog-date-sm {
  color: #E0726E;
}

/* ============================
   Responsive
============================ */
@media (max-width: 991px) {
  h1.blog-title {
    font-size: 1.8rem;
  }
  .blog-content h3 {
    font-size: 1.3rem;
  }
  .blog-card-small .blog-img-sm {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .blog-details-container {
    padding: 2rem 1rem;
  }
  h1.blog-title {
    font-size: 1.5rem;
  }
  .blog-content h3 {
    font-size: 1.2rem;
  }
  .blog-card-small .blog-img-sm {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 768px) {
  .blog-details-container .avatar-thumbnail-container .avatar-thumbnail {
    width: 120px !important;
    height: 120px !important;
  }
}
/* ================================
   CONTACT SECTION — Clean & Stylish
================================ */
.contact-container {
  min-height: 100vh;
  padding: 4rem 0;
  /* Breadcrumb */
  /* Form Card */
}
.contact-container .contact-form-card {
  background: #fff;
  border: 1px solid rgb(118.734375, 107.09375, 104.765625);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.contact-container .contact-form-card .form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #600F31;
  margin-bottom: 1.5rem;
}
.contact-container .contact-form-card label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #600F31;
}
.contact-container .contact-form-card input,
.contact-container .contact-form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgb(91.640625, 82.65625, 80.859375);
  background: #fff;
  transition: all 0.2s ease;
}
.contact-container .contact-form-card input:focus,
.contact-container .contact-form-card textarea:focus {
  border-color: #E0726E;
  box-shadow: 0 0 0 3px rgba(224, 114, 110, 0.25);
  outline: none;
}
.contact-container {
  /* Contact Info Card */
}
.contact-container .contact-info-card {
  background: #fff;
  border: 1px solid rgb(118.734375, 107.09375, 104.765625);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.contact-container .contact-info-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #600F31;
  margin-bottom: 1rem;
}
.contact-container .contact-info-card p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgb(29.325, 26.45, 25.875);
}
.contact-container .contact-info-card p strong {
  color: #600F31;
}
.contact-container .contact-info-card {
  /* Clickable email link */
}
.contact-container .contact-info-card .contact-email-link {
  color: #E0726E;
  text-decoration: none;
  font-weight: 600;
}
.contact-container .contact-info-card .contact-email-link:hover {
  color: rgb(215.0170454545, 73.1420454545, 67.9829545455);
  text-decoration: underline;
}

.job-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  section p,
  .team-wrapper .team-details p {
    font-size: 14px !important;
    text-align: left !important;
  }
  #whoWeAre figure {
    width: 250px;
  }
  #whoWeAre p {
    font-size: 14px;
  }
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
