:root {
  --primary: #f00052;
  --secondary: #f3a700;
}
body {
  font-family: "Inter", sans-serif !important;
  overflow-x: hidden;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
/* =========================
   Navbar
========================= */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transition: all .3s ease;
    padding: 0px;
}

/* Sticky effect after scroll */
.custom-navbar.sticky {
  /* padding: 10px 0; */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  animation: navbarSlide 0.35s ease;
}

@keyframes navbarSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-logo img {
  height: 100px;
  transition: 0.3s ease;
}

.custom-navbar.sticky .custom-logo img {
  height: 100px;
}

.custom-nav-links {
  gap: 35px;
}

.custom-nav-links .nav-link {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.custom-nav-links .nav-link:hover {
  color: var(--primary);
}

.custom-nav-links .nav-link.active {
  color: var(--primary);
}

.custom-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 50px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f00052, #f3a700);
  transition: width 0.3s ease;
}

.custom-nav-links .nav-link:hover::after,
.custom-nav-links .nav-link.active::after {
  width: 100%;
}

.custom-nav-btns {
  display: flex;
  gap: 12px;
}

.custom-btn-login,
.custom-btn-signup {
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 6px;
  color: #340012;
  font-weight: 600;
  border: 1px solid #340012;
  box-shadow: 0 8px 20px rgba(240, 0, 82, 0.25);
  transition: all 0.35s ease;
}

.custom-btn-login:hover,
.custom-btn-signup:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #f00052, #f3a700);
  border-color: transparent;
}

.custom-btn-login:active,
.custom-btn-signup:active {
  transform: scale(0.97);
}

.custom-toggler {
  border: none;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .custom-nav-links {
    gap: 10px;
    margin: 20px 0;
  }
  .custom-nav-btns {
    flex-direction: column;
    margin-top: 15px;
  }
  .custom-btn-login,
  .custom-btn-signup {
    text-align: center;
  }
  
.custom-logo img {
  height: 60px;
  transition: 0.3s ease;
}

.custom-navbar.sticky .custom-logo img {
  height: 60px;
}
.custom-navbar.sticky{
  padding:10px 16px
}
}
.custom-toggler {
    width: 46px;
    height: 42px;
    border: 1px solid #f00052;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    box-shadow: none;
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #f00052;
    border-radius: 50px;
    transition: .3s;
}

.custom-toggler:hover span {
    background: #d10046;
}
/* ==================================
   BANNER SLIDER SECTION
================================== */
.hero-slider-section {
  position: relative;
}
.hero-slide {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.hero-row {
  margin-top: 15%!important;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}
.hero-subtitle {
  display: inline-block;
  color: #190009;
  font-weight: 500;
  font-size: 32px;
}
.hero-title {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -2px;
  color: #f00052;
  line-height: 1.2;
}
.hero-sub {
  color: #190009;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}
.hero-text {
  font-size: 16px;
  color: #190009cb;
  line-height: 1.8;
  letter-spacing: 4%;
  margin-bottom: 30px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(90deg, #f00052, #ff9800);
  color: #fff;
  padding: 8px 8px 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.hero-btn span {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #f00052;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-swiper-prev,
.banner-swiper-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.banner-swiper-prev {
  left: 30px;
}
.banner-swiper-next {
  right: 30px;
}
.banner-swiper-prev:hover,
.banner-swiper-next:hover {
  background: #f00052;
  color: #fff;
}
.banner-swiper-prev i,
.banner-swiper-next i {
  font-size: 22px;
}
@media (max-width: 991px) {
  .hero-slide {
    min-height: 600px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-content {
    text-align: center;
    margin: auto;
  }
  .hero-btn {
    margin: auto;
  }
  .hero-slide::before {
    background: rgba(255, 255, 255, 0.75);
  }
}
@media (max-width: 576px) {
  .hero-slide {
    min-height: 550px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-text {
    font-size: 15px;
  }
  .hero-btn {
    font-size: 15px;
  }
}

/* ==================================
   ABOUT SECTION
================================== */
.about-match-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(280deg, #ffffff 0%, #fff8fb 50%, #ffeaf3 100%);
}
.about-top-blob {
  position: absolute;
  top: -130px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 0, 82, 0.08), transparent 40%);
}
.about-petal-img {
  position: absolute;
  left: 300px;
  bottom: 60px;
  width: 150px !important;
  z-index: 2;
}
.about-heart-img {
  position: absolute;
  right: 120px;
  top: 55%;
  animation: heartFloat 3s infinite ease-in-out;
}
.mandala-img {
  position: absolute;
  right: 0px;
  top: 0%;
}
.about-image-wrapper {
  position: relative;
  display: inline-block;
}
.about-main-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
.about-badge {
  display: inline-block;
  background: #2d1520;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
}
.about-title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.about-title span {
  color: #f39c12;
}
.about-description {
  margin-top: 16px;
  color: #190b00;
  letter-spacing: 3%;
  line-height: 1.8;
}
.match-step-heading {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 38px;
  font-weight: 700;
  color: #2d1520;
}
.match-step-heading span {
  color: #f39c12;
}
.match-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  border-bottom: none;
  position: relative;
  border-top: 1px solid #4f4a4aa6;
  border-left: 1px solid #4f4a4aa6;
  border-right: 1px solid #4f4a4aa6;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.4s;
}
.match-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(56, 1, 1, 0.15);
}
.step-number {
  width: 45px;
  height: 45px;
  margin: auto auto 25px;
  border-radius: 50%;
  background: #f00052;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-step-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
.match-step-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
.card-bottom-design {
  position: absolute;
  left: 60px;
  bottom: -6px;
  margin-top: 20px;
}
@keyframes heartFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .about-match-section {
    padding: 70px 0;
  }
  .about-main-image {
    width: 300px;
    height: 300px;
  }
  .about-title {
    font-size: 34px;
    text-align: center;
  }
  .about-content-wrap {
    text-align: center;
  }
  .match-step-heading {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
 
  .about-title {
    font-size: 28px;
  }
  .match-step-heading {
    font-size: 24px;
  }
  .about-petal-img {
    width: 60px !important;
    left: 10px;
  }
  .about-heart-img {
    width: 40px;
    right: 15px;
  }
}

/* ==================================
   WHY CHOOSE US SECTION
================================== */
.why-choose-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #fff8fb 50%, #ffeaf3 100%);
}
.why-heading-wrap {
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}
.why-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #2a1220;
  margin-bottom: 15px;
}
.why-main-title span {
  color: #f0a500;
}
.why-main-desc {
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}
.why-center-wrap {
  position: relative;
  width: 600px;
  height: 600px;
  /* right: 80px; */
    transform: translateX(-40px);
  margin: auto;
}
.why-mandala-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}
.why-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.why-card {
  border: 2px solid #FF9800;
    background: #fff;
    padding: 24px 26px;
    transition: 0.4s;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.why-card:hover {
  transform: translateY(-5px);
}
.why-card h4 {
  position: relative;
  z-index: 2;
  color: #e91e63;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  position: relative;
  z-index: 2;
  color: #191919;
  font-size: 15px;
  letter-spacing: 3%;
  line-height: 1.9;
}
.why-petal-img {
  position: absolute;
  right: 160px;
  bottom: 50px;
  rotate: 180deg;
  z-index: 5;
}
@media (max-width: 1199px) {
  .why-center-wrap {
    width: 340px;
    height: 340px;
  }
}
@media (max-width: 991px) {
  .why-choose-section {
    padding: 70px 0;
  }
  .why-center-wrap {
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
  }
  .row.align-items-center {
    flex-direction: column;
  }
  .col-lg-4:nth-child(2) {
    order: -1;
  }
  .why-card-wrap {
    margin-top: 20px;
  }
  .why-main-title {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .why-center-wrap {
    width: 240px;
    height: 240px;
  }
  
  .why-main-title {
    font-size: 28px;
  }
  .why-main-desc {
    font-size: 14px;
  }
  .why-petal-img {
    width: 50px;
    right: 10px;
  }
  .why-card {
    min-height: auto;
    padding: 15px;
  }
}

/* ==================================
   FEATURED PROFILE SECTION
================================== */
.featured-profile-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
  z-index: 1;
}
.feature-blob-left {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(240 0 82 / 20%), transparent 70%);
}
.feature-blob-right {
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(240 0 82 / 20%), transparent 70%);
}
@media (max-width: 991px) {
  .featured-profile-section::before {
    width: 220px;
    height: 220px;
    top: -110px;
    left: -100px;
  }
  .featured-profile-section::after {
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -110px;
  }
}
@media (max-width: 576px) {
  .featured-profile-section::before {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
  }
  .featured-profile-section::after {
    width: 170px;
    height: 170px;
    right: -90px;
    bottom: -90px;
  }
}
.featured-title h2 {
  font-size: 40px;
  font-weight: 700;
}
.featured-title span {
  color: #f8a500;
}
.featured-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 35px 0 50px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.featured-tab {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.featured-tab.active {
  background: #f00052;
  color: #fff;
  border-color: #f00052;
}
.profile-card:hover {
  transform: translateY(-8px);
}
.profile-image {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-name {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #2b1b22;
}
.profile-id {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  font-size: 12px;
  color: #999;
}
.profile-details {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.profile-details span {
  display: block;
  color: #999;
  font-size: 13px;
}
.profile-details strong {
  display: block;
  font-size: 15px;
  margin-top: 6px;
  color: #222;
}
.profile-divider {
  width: 70px;
  height: 2px;
  background: #f00052;
  margin: 0 auto 18px;
}
.profile-btn {
  text-decoration: none;
  color: #444;
  font-weight: 600;
}
.profile-btn:hover {
  color: #f00052;
}
.profile-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}
.profile-btn {
  display: block;
  margin: 0 -25px -35px;
  padding: 16px 20px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  transition: all 0.35s ease;
}
.profile-card:hover {
  transform: translateY(-8px);
}
.profile-card:hover .profile-btn {
  background: #f00052;
  color: #fff;
}
.profile-card:hover .profile-divider {
  display: none;
}
@media (max-width: 991px) {
  .featured-profile-section {
    padding: 70px 0;
  }
  .profile-card {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .featured-title h2 {
    font-size: 30px;
  }
  .featured-tabs {
    flex-wrap: wrap;
  }
  .profile-details {
    justify-content: space-around;
  }
}

/* ==================================
   TESTIMONIAL SECTION
================================== */
.testimonial-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
/* .testimonial-wrapper {
  width: 700px;
  margin-left: auto;
  position: relative;
  z-index: 2;
} */
.testimonial-heading {
  margin-bottom: 40px;
}
.testimonial-wrapper {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}
.testimonial-heading h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #190009;
  line-height: 1.2;
}
.testimonial-heading span {
  color: #e5a100;
}
.testimonial-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
}
.client-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #f5b623;
  padding: 5px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.testimonial-info p {
  font-family: "Pattaya", sans-serif;
  font-size: 20px;
  letter-spacing: 5%;
  color: #190009;
  margin-bottom: 20px;
}
.client-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-name img {
  width: 80px;
}
.client-name h4 {
  margin: 0;
  color: #6d0e28;
  font-family: "Pattaya", sans-serif;
  font-size: 24px;
}
@media (max-width:991px){
  .testimonial-wrapper{
    width:100%;
  }
  .testimonial-card {
  display: grid;
  grid-template-columns:  1fr;
  gap: 30px;
}
.client-image{
  text-align: center;
}
}
/* ==================================
   CTA SECTION
================================== */
.cta-section {
  padding: 120px 0 0px;
}
.cta-box {
  position: relative;
  background: linear-gradient(90deg,
      #8d001d 0%,
      #650018 45%,
      #470012 100%);
  min-height: 220px;
  padding: 0px 60px;
}
.cta-mandala {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cta-subtitle {
  color: #fff;
  font-size: 20px;
}
.cta-title {
  font-family: "Kaushan Script", cursive;
  display: flex;
  color: #fff;
  font-size: 36px;
  margin-bottom: 28px;
}
.heart-icon {
  margin-top: -30px;
  width: 75px;
  height: auto;
}
.cta-btn {
  background: #ffc107;
  color: #650018;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 38px;
  transition: .3s;
  width: fit-content;
}
.cta-btn:hover {
  background: #ffcb32;
  color: #650018;
}
.cta-image {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cta-couple {
  width: 430px;
  max-width: 100%;
  margin-top: -145px;
  position: relative;
  z-index: 5;
}
@media (max-width:1199px) {
  .cta-title {
    font-size: 34px;
  }
  .cta-couple {
    width: 360px;
    margin-top: -120px;
  }
}
@media (max-width:991px) {
  .cta-box {
    padding: 20px 0px 0px 0px;
  }
  .cta-title {
    font-size: 30px;
  }
  .cta-couple {
    width: 320px;
    margin-top: -90px;
  }
  .heart-icon {
    width: 60px;
  }
  .cta-image {
    justify-content: flex-end;
  }
}
@media (max-width:767px) {
  .cta-section {
    padding: 90px 0 0px;
  }
  .cta-box {
    padding: 20px 0px 0px 0px;
  }
  .cta-content {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .cta-couple {
    width: 240px;
    margin-top: -95px;
  }
  .cta-title {
    font-size: 20px;
  }
  .heart-icon {
    width: 55px;
  }
}
@media (max-width:575px) {
  .cta-box {
    padding: 20px 0px 0px 0px;
    text-align: center;
  }
  .cta-content {
    margin-top: 20px;
  }
  .cta-image {
    justify-content: flex-end;
  }
  .cta-couple {
    width: 220px;
    margin-top: -80px;
  }
  .cta-title {
    justify-content: center;
    font-size: 24px;
    flex-wrap: wrap;
  }
}

/* ==================================
   FOOTER SECTION
================================== */
.matri-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 30px;
  background: linear-gradient(90deg, #f10057 0%, #ff6b46 55%, #f9a03f 100%);
  color: #fff;
}
.matri-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: 0.08;
  background:
    radial-gradient(circle, transparent 58%, #fff 60%, transparent 62%),
    radial-gradient(circle, transparent 70%, #fff 72%, transparent 74%),
    radial-gradient(circle, transparent 82%, #fff 84%, transparent 86%);
}
.footer-logo img {
  width: 70px;
  margin-bottom: 20px;
}
.footer-about {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
  opacity: 0.95;
}
.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}
.footer-title::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.9;
}
.footer-links a:hover {
  padding-left: 8px;
  opacity: 1;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.footer-contact i {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #f10057;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.footer-contact span,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  line-height: 1.7;
  font-size: 15px;
}
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f10057;
  text-decoration: none;
  transition: 0.3s;
}
.footer-social a:hover {
  transform: translateY(-5px);
}
@media (max-width: 991px) {
  .footer-about {
    max-width: 100%;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .matri-footer {
    padding: 60px 0 25px;
  }
  .footer-title {
    margin-top: 10px;
  }
  .footer-contact li {
    gap: 12px;
  }
  .footer-contact i {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}