.container {
  width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 40px;
  z-index: 99;
}

header::after {
  content: "";
  position: absolute;
  top: 100%;      
  left: 0;
  right: 0;
  height: 0;       
  background: var(--header-gradient);
  transition: height 0.2s ease;
  pointer-events: none;
}

    
header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

header.scrolled::after {
  height: 6px;      
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;  
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0; 
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #103a63;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.expand span{
  background: #fff;  
}
.menu-toggle.expand span:nth-child(1) {
  transform: rotate(45deg) translate(20%,280%);
}

.menu-toggle.expand span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.expand span:nth-child(3) {
  transform: rotate(-45deg) translate(20%,-250%);
}

.sticky {
  position: sticky;
  top: 0;
  background: rgb(1, 1, 1, 0.6);
  transition: all 0.5s ease-in-out;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 10px;
}

.navbar {
  background: transparent;
  color: #2a3b4d;
  font-family: var(--font-fira);
  transition: transform 0.3s ease-in-out;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 0;
}

.menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: #3a4a5c;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-decoration: none;
  white-space: nowrap;
  cursor: var(--pointer);
  transition: color 0.2s ease;
}

.menu > li > a:hover {
  color: var(--primary-blue);
}

.menu > li > a.active {
  color: var(--primary-blue);
  font-weight: 500;
}

.menu > li.has-caret > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}


.submenu {
  display: none;
  position: absolute;
  background: #ffffff;
  margin: 0;
  min-width: 210px;
  border-radius: 0 0 10px 10px;
  border-top: 2px solid var(--primary-blue);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  top: 100%;
  left: 0;
  z-index: 99;
}

.submenu li {
  position: relative;
}

.submenu a {
  color: #2a3b4d;
  padding: 11px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  cursor: var(--pointer);
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
  background: #f3f7fb;
  color: var(--primary-blue);
  text-decoration: none;
}

.submenu a.submenu__portfolio {
  color: #6b7785;
  border-bottom: 1px solid #eef0f3;
}

.submenu a.submenu__portfolio:hover {
  background: #f0f2f5;
  color: #6b7785;
}

.menu li:hover > .submenu {
  display: block;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.logo {
  width: 160px;
  height: var(--header-height);
  padding: 10px 0;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: #103a63;
  color: #ffffff;
  font-family: var(--font-fira);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  cursor: var(--pointer);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #0c2d4d;
  transform: translateY(-1px);
}

.menu .mobile-only {
  display: none;
}

.home-banner {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);

}

.banner-swiper,
.banner-slide {
  width: 100%;
  height: 100%;
}

.banner-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.banner-slide > img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


.banner-slide {
    position: relative;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    display: block;
}

.banner-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 34, 61, 0.55);
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 2; /* above overlay */
    color: #fff;
}



/* GLOBAL SECTION */
.global-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f9fd, #ffffff);
    text-align: center;
    overflow: hidden;
}

.global-title {
    font-size: 36px;
    color: #0F5896;
    margin-bottom: 10px;
}

.global-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
    margin-bottom: 50px;
}

/* Map */
.global-map {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
}

.global-map img {
    width: 100%;
    opacity: 0.9;
}

/* Markers */
/* .marker {
  position: absolute;
  width: 12px;
  height: 12px;
   background: #0F5896;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;

   animation: pulse 1.8s infinite; 
} */

/* popup bubble */
/* .marker::after {
  content: attr(data-flag) "  " attr(data-name);

  position: absolute;
  left: 18px;
  top: 50%;

  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(0,0,0,0.85);
  color: #fff;
  border-radius: 8px;
  white-space: nowrap;

  hidden state 
  opacity: 0;
  transform: translateY(-50%) translateX(-6px) scale(0.9);

  transition: 
    opacity 0.25s ease,
    transform 0.25s ease;

  pointer-events: none;
}*/

/* arrow */
/* .marker::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.85);

  opacity: 0;
  transition: 0.25s ease;
} */

/* SHOW popup */
.marker:hover::after,
.marker:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}




@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Stats */
.global-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 40px;
    color: #0F5896;
    font-weight: 700;
}

.stat p {
    color: #444;
    font-size: 15px;
}

/* Scroll animation */
.global-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.global-section.show {
    opacity: 1;
    transform: translateY(0);
}









.banner-slide .banner-content {
  z-index: 3;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: auto;
  left: auto;
}

.banner-slide h2 {
  font-family: "Gothic A1", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.banner-slide p {
  font-family: "Faustina", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.banner-cta {
  display: inline-block;
  margin-top: 1.75rem;
  background: #fff;
  color: var(--primary-blue);
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}



.spinning-text {
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 20px;
  width: 180px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_spinning {
  position: absolute;
  width: 60%;
  height: 100%;
  scale: 0.5;
  object-fit: contain;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  transition: transform 0.2s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
}


.about-section {
  position: relative;
  z-index: 0;
  width: calc(100% - 5rem);
  max-width: 1520px;
  margin: 4rem auto;
  background: #fff;
  border: 1px solid #e7e9ec;
  border-radius: 24px;
  overflow: hidden;
}

.about-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-header img {
  position: relative;
  width: 100%;
  height: auto;
  transform: scaleX(-1);
  z-index: 6;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.15));
}

.about-content {
  font-family: var(--font-fira);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 12;
}

.about-content h2 {
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-40);
  line-height: 1.2;
  color: #15233a;
}

.about-content p {
  text-align: left;
  color: #4a5560;
  margin: 0;
}

.about-content p a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.about-content .vivere-button {
  margin-top: 0.5rem;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.about-content .vivere-button-text {
  color: #fff;
}

.about-content .vivere-button-slider {
  background-color: #0a3a63;
}

.about-animate {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 280px;
  aspect-ratio: 1;
  margin-left: 60px;
  /* background-color: var(--primary-green); */
  background-color: #0F5896;
  border-radius: 999px;
}

.about-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  background-image: radial-gradient(#c7d0da 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  z-index: 5;
  pointer-events: none;
}

.product-title-home{
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  color: var(--primary-blue);
  text-align: center;
  margin: 2rem 0;
}

.product-display {
  display: flex;
  align-items: center;
  position: relative;
  height: 400px;
}


.product-banner {
  background-color: var(--primary-blue);
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflowing video */
  background-image: none; /* Remove image since using video now */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none; /* Allow clicking through video */
}

/* Content that sits on top of the video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: white;
}


#menu-trigger {
  z-index: 9;
  background: var(--primary-blue);
  padding: 10px 20px;
  outline: 1px solid white;
  color: white;
  font-size: 14px;
  border-radius: 999px;
  cursor: var(--pointer);
}

.banner-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: white;
  font-weight: 500;
}


.product-slider {
  position: absolute; 
  /*right: 40px;*/
  padding:0 5rem;
  margin: auto;
  width: 100%;              
  /*max-width: 1200px;        */
  height: auto;
}

.product-swiper {
  width: 100%;
  height: auto;
}


.card-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  height: 100%;
  padding: 20px;
  white-space: nowrap;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}


.product-card {
    min-width: 180px;

height: auto;
background-color: #fff;
padding: 4px; 
text-align: center;
flex-shrink: 0; 
font-size: 16px; 

border-radius: 12px;

box-shadow: 0px 4px 10px rgba(0,0,0,0.1); 
    
}

.product-card > div {
  display: flex;
  border-radius: 12px;
  padding:15px;

  background-color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.product-card .title {
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.product_title_image{
   width: 80px !important;
    height: 60px !important;
    margin-bottom: 15px;
}

.vivere-section {
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.vivere-section > .about-header {
  width: 40%;
}

.vivere-section > .about-content {
  width: 60%;
}


.product-card a {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: white;
  background-color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

/* ===== Home "Our Products" grid (redesign) ===== */
.products-home {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title more"
    "grid grid";
  align-items: center;
  column-gap: 1rem;
  row-gap: 2.5rem;
}

.products-home__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.products-home__title {
  grid-area: title;
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-40);
  color: #15233a;
  margin: 0;
}

.products-home__more {
  grid-area: more;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  font-family: var(--font-fira);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.products-home__more:hover {
  background: #0c4677;
  transform: translateY(-1px);
}

.products-home__grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phome-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f6f7f9;
  border-radius: 16px;
  padding: 1.25rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.phome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.phome-card__media {
  flex: 0 0 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phome-card__media img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.phome-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.phome-card__title {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 0.75rem;
}

/* All-caps wordmarks fill their box, so they read larger — trim their height to match the mixed-case/boxed titles */
.phome-card__title--caps {
  height: 19px;
}

.phome-card__desc {
  font-size: 0.8rem;
  color: #5a6573;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.phome-card__btn {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  font-family: var(--font-fira);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.phome-card__btn:hover {
  background: #0c4677;
}

@media (max-width: 1100px) {
  .products-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-home {
    padding: 60px 1.25rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "grid"
      "more";
    row-gap: 2rem;
  }
  .products-home__more {
    justify-self: stretch;
    width: 100%;
    justify-content: center;
  }
  .products-home__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  height: 170vh;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background: #2a7b9b;
  background: radial-gradient(
    circle,
    rgba(42, 123, 155, 1) 0%,
    rgba(0, 90, 156, 1) 70%,
    rgba(0, 70, 135, 1) 99%
  );
  z-index: 0;
  overflow: hidden;
  color: white;
  z-index: 2;
}

.testimonial-section h2 {
  font-family: "Faustina", serif;
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: absolute;
  color: #2a7b9b;
  top: -50px;
  left: 10%;
  font-weight: 700;
}

.testimonial-bg .testimonial-title {
  color: white;
}

.testimonial-swiper {
  z-index: 9 !important;
}

.testimonial-card-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  height: 400px;
}

.testimonial-cards {
  position: absolute;
  width: 350px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 350px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: white;
}

.testimonial-actions {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-actions button {
  padding: 10px 20px;
  background: #2a7b9b;
  color: white;
  border: none;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.testimonial-swiper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}

.testimonial-swiper .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  background-color: #e2e2e2;
  padding: 30px 20px 20px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
  min-height: 400px;
  scale: 0.95;
  font-style: italic;
}

.testimonial-quote {
  position: relative;
  width: 80px;
  aspect-ratio: 1;
}

.client-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
}

.client-name:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-blue);
}

.star-rating {
  width: fit-content;
  display: flex;
}

.product-card img {
  max-width: 80%;
  height: 150px;
  border-radius: 8px;
}

.star img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

footer {
  background: #0f1a2e;
  color: #cfd6e0;
  padding: 4.5rem 2.5rem 0;
  font-family: var(--font-fira);
  position: relative;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo-img {
  width: 130px;
  height: auto;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aab3c0;
  margin: 0 0 1.5rem;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cfd6e0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-linkedin:hover {
  color: #fff;
}

.footer-col__title {
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 1.5rem;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #aab3c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-list li {
  color: #aab3c0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-contact-list a {
  color: #aab3c0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: #8a95a3;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #e8912f;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 3rem 1.5rem 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial-gallery {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.cards {
  position: absolute;
  width: 20rem;
  height: 18rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 20rem;
  height: 18rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.8rem;
}

.cards li img {
  max-width: 90%;
}

.actions {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

button {
  display: inline-block;
  outline: none;
  padding: 8px 14px;
  background: var(--dark);
  border: solid 2px var(--light);
  color: var(--light);
  text-decoration: none;
  border-radius: 99px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  line-height: 18px;
  margin: 1rem;
}

a {
  color: #88ce02;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.leadership-messages {
  padding: 4rem var(--padding-horizontal);
  background: #fff;
}

.messages-container {
  max-width: 1100px;
  margin: auto;
}

.messages-title {
  font-family: "Faustina", serif;
  font-size:var(--fs-32);
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}



.message-card {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-left: 6px solid transparent;
  border-image: var(--gradient-red-blue) 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}



.message-image img {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.message-content h2 {
  font-family: "Faustina", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.leader-post-title{
    padding: 18px;
    text-align: center;
}
.message-content h2 span {
  color: var(--primary-red);
  font-weight: bold;
}

.message-content p {
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.stats-section {
  padding: 80px var(--padding-horizontal);
  background: #fff;
  text-align: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* or lower than content */
}


.stats-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.stats-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #003366;
  font-family: "Poppins", sans-serif;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.stat-box {
  flex: 1 1 250px;
  min-height: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ff6a00, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  color: #333;
}


@media (max-width: 900px) {
  .message-card {
    flex-direction: column;
    text-align: center;
  }

  .message-card:nth-child(odd) {
    flex-direction: column;
  }

  .message-image img {
    max-height: 250px;
    object-fit: cover;
  }
}


@media (max-width: 992px) {

.last-banner-para{
  line-height: 1 ;
  font-size: 2.5rem !important;
}

  .navbar {
    position: fixed;
    top: 0;
    right: -260px; 
    width: 260px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding-top: var(--header-height);
    transition: right 0.3s ease;
    border-radius: 0;
  }

  .navbar.active {
    right: 0; 
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu > li {
    display: block;
  }

  .menu > li > a {
    color: #fff;
    padding: 12px 20px;
    display: block;
  }

  .submenu {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    display: none;
  }

  .menu li:hover > .submenu {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .menu .mobile-only {
    display: block;
  }
  .banner-slide .banner-content {
    bottom: auto;
  }
  .vivere-section {
    flex-direction: column;
  }

  .vivere-section > div:nth-child(1) {
    width: 100%;
  }

  .vivere-section > div:nth-child(2) {
    width: 100%;
  }

  .about-animate {
    top: 5%;
    left: 40%;
  }

  /* Intro: net sized to the machine, centered and clear of the heading */
  .about-dots {
    height: 100%;
    width: auto;
    aspect-ratio: 1;
  }

  .about-content {
    margin-top: 0.75rem;
  }

}

@media screen and (max-width: 600px) {
 
  .home-banner {
    height: 50vh;    
  }
 
  .vivere-section {
    padding: 40px 32px;
  }

  .product-slider {
    left: 0;
    /*right: 0;*/
  }
  
  .banner-slide h2 {
    font-size: 25px;
  }
  
  .banner-slide p {
    font-size: 1.4rem;
  }

  .about-animate {
    top: -5%;
    left: 10%;
  }
  
  .about-content p {
      font-size: 14px;
  }

  .leadership-messages {
    padding: 40px 32px;
  }

  .spinning-text {
    width: 70px;
    bottom: 12px;
    right: 5%;
  }
.swiper-button-prev,.swiper-button-next{
    font-size: 15px;
}
  .spinning-text .rotation {
    scale: 0.6 !important;
  }
  
  .product-banner {
    width: 100%;
  }
  .container {
    width: 100%;
  }

  .stats-section {
    padding: 40px 32px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}


.vivere-strengths-section {
  background: #fafafa;
  padding: 80px 2.5rem;
  text-align: center;
  position: relative;
   z-index: 1;
  overflow: hidden; /* optional: to prevent canvas overflow */
}



.background-strengths-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Behind content */
  pointer-events: none; /* Allows clicks through the video */
  opacity: 1; /* Adjust visibility for readability */
}

/* ===== Results That Speak (video bg + black overlay + cards) ===== */
.results-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  text-align: center;
}

.results-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.results-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.results-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.results-title {
  color: #fff;
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-40);
  margin: 0 0 3rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.result-card__icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.result-card__lottie {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.result-card .stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--font-fira);
  background: none;
  -webkit-text-fill-color: #0f5896;
  color: #0f5896;
  margin: 0 0 0.4rem;
  display: block;
  line-height: 1;
}

.result-card__label {
  font-family: var(--font-fira);
  font-weight: 600;
  font-size: 1.15rem;
  color: #1f2d3d;
  margin: 0 0 0.6rem;
}

.result-card__desc {
  font-size: 0.92rem;
  color: #6b7785;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 60px 0;
  }
  .results-inner {
    padding: 0 1.25rem;
  }
  .about-section {
    width: calc(100% - 2.5rem);
  }
}



.vivere-section-title {
  color: #15233a;
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: var(--fs-40);
  margin-bottom: 3rem;
  display: inline-block;
}
.stats-section-title {
  color:var(--primary-blue);
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.stats-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color:var(--primary-blue);
  margin: 10px auto 0;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1500px;
  margin: 0 auto;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
}

.strength-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.strength-card {
  transform-origin: center;
  perspective: 800px;
}

.icon-box {
  background-color: #fbede2;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.icon-box:has(lottie-player) {
  width: fit-content;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  align-self: center;
}

.icon-box lottie-player {
  width: 96px;
  height: 96px;
}

.strength-content h4 {
  font-family: var(--font-fira);
  font-weight: 700;
  font-size: 1.05rem;
  color: #1f2d3d;
  margin-bottom: 8px;
}

.strength-content p {
  font-size: 0.9rem;
  color: #6b7785;
  line-height: 1.55;
  font-family: var(--font-fira);
  margin: 0;
}

@media (max-width: 1200px) {
  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }
}

.banner-slide{
 overflow: hidden;   
}
@media (min-width:1024px){
    video{
    width: 100% !important;
}

}
@media (max-width:1024px){
     .vivere-section{
        padding: 4rem 2rem;
    }
    
     video{
    height: 100% !important;
}
}

@media (max-width:768px){
    .product-slider{
        padding:0rem 0rem 0rem 1rem;
    }
    .banner-content img{
        width: 100px !important;
    }
   
}






.imgg{
    width: 3%;
    height: 100%;
    margin-top:5px;
}




/* map Class */

  


    #name {
        position: absolute;
        background-color: rgb(255, 255, 255);
        width: fit-content;
        opacity: 0;
        border-radius: 5px;
        border: 3px solid rgb(245, 128, 128);
        padding: 0px 5px;
        font-size: 1.5rem;

    }


    #timeCont{
        background-color: white;
        width: fit-content;
        font-size: 1.5rem;
        padding: 5px 5px;
        border-radius: 5px;
        border: 3px solid rgb(245, 128, 128);        
    }
    

    svg path {
        cursor: pointer;
    }
.allPaths {
  fill: #ececec;
  transition: 0.3s;
}

.allPaths:hover {
  fill: orange;
}

/* Default pink countries */
.default-pink {
  fill: #ff4f4f !important;
  stroke: #c21818;
  stroke-width: 1.5;
}

#map-container svg path {
  fill: #e6e6e6;
  transition: .3s;
}
/* 
#map-container svg path.default-pink {
  fill: #dad3d6 !important;
} */
#name{
  transition:.2s;
}

#namep{
  font-weight:700;
}
#countryTooltip{
  position: fixed;
  pointer-events: none;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: Arial;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 9999;
  white-space: nowrap;
}
#autoCountryPopups{
  position:absolute;
  top:0;
  left:0;
  pointer-events:none;
  z-index:999;
  font-family:system-ui;
}

.map-popup{
  position:absolute;
  background:#fff;
  padding:6px 10px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  gap:8px;
  opacity:0;
  transform:translate(-50%,20px) scale(.6);
  animation:popupShow .7s forwards;
}

.map-popup img{
  width:22px;
  height:16px;
  border-radius:2px;
}

.map-popup span{
  font-size:13px;
  font-weight:600;
  color:#222;
}

@keyframes popupShow{
  to{opacity:1; transform:translate(-50%,0) scale(1);}
}

@keyframes popupHide{
  to{opacity:0; transform:translate(-50%,-10px) scale(.6);}
}


.banner-slide .mob-log {
  width: 500px!important; 
  height:120px !important;
}


@media (max-width: 768px) {
  .banner-slide .mob-log {
    width: 210px !important;
    height: 80px !important;
  }
}


