@import url("https://fonts.googleapis.com/css2?family=Belleza&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Updock&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Segoe UI', sans-serif; */
  font-family: "Belleza", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* body::-webkit-scrollbar{
   width: 10px;
   background: #000;
} */

:root {
  --primary-clr: #9c1c20;
  --secondry-clr: #e9dede;
}

/*.hero {*/
/*    background: #ffff;*/
/*}*/
.custom-bg {
  background: var(--secondry-clr) !important;
}

.landing-page {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: center;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid red; */
  padding: 5px 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
}

.navbar .active {
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}

.logo {
  width: 25%;
  position: relative;
}

.logo img {
  width: 100px;
  position: relative;
  top: 2px;
  left: 30px;
  padding: 5px;
  background: #ffffffeb;
  border-radius: 10px;
  transition: background 0.4s, border-radius 0.4s, box-shadow 0.4s;
}

.logoname {
  /*position:abslute;*/
  position: absolute;
  bottom: 0;
  left: -17px;
  font-family: "Shrikhand", serif;

  font-weight: 400;
  font-style: normal;
  font-size: 13px;
}

.mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.mid>a {
  cursor: pointer;
  text-transform: capitalize;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.05px;
  transition: all 0.4s ease-in-out;
}

.mid>a:hover {
  scale: 1.1;
  /* color: #000; */
}

.active {
  color: #000 !important;
  scale: 1.1;
}

.sactive {
  color: #000 !important;
  scale: 1.2;
  padding-left: 30px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 33%;
}

.menu-bar {
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 30;
  /* position: fixed; */
}

.menu-bar span {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.4s ease-in-out;
}

.menu-active-1 {
  transform: translateY(16px) rotate(45deg);
  transform-origin: center;
  background: #fff !important;
}

.menu-active-2 {
  transform-origin: center;
  transform: translateY(3px) rotate(-45deg);
  background: #fff !important;
}

.menu-active-3 {
  transform-origin: center;
  transform: translateY(-7px) rotate(0deg);
  background: #fff !important;
  /* display: none !important; */
}

nav {
  position: fixed;
  width: 100%;
  z-index: 10;
}

.sticky .navbar {
  background: var(--primary-clr) !important;
}

.sticky .logo img {
  background: white;
  border-radius: 6px;
}

.sticky .btn {
  background: #fff;
  color: var(--primary-clr);
}

.sub-navbar {
  position: fixed;
  bottom: 0;
  right: 0;
  top: 80px;
  padding-top: 60px;
  width: 30%;

  background: rgba(27.82, 27.62, 27.62, 0.37);
  backdrop-filter: blur(10px);
  height: calc(100vh - 50px);
  max-height: 85vh;
  z-index: 20;
  transition: all 0.4s ease-in-out;
  transform: translateY(-120%);
  opacity: 0;
  border-radius: 10px 0px 0px 10px;
  box-shadow: 0px 1px 10px #0000002d;
  overflow: hidden;
  color: #fff;
}

.sub-navbar-active {
  opacity: 1;
  transform: translateY(0%);
}

.navbar-content {
  padding: 00px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.navbar-content a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.05px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.navbar-content p {
  cursor: pointer;
  color: #fff;
}

.login-form,
.QrCode-form {
  width: 100%;
  height: calc(100vh - 0px);
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.login-form-active {
  opacity: 1;
  transform: translateX(0%);
}

.QrCode-form-active {
  opacity: 1;
  transform: translateX(0%);
}

.login-header,
.QrCode-header {
  display: flex;
  gap: 20px;
  padding: 10px 5px;
  background: var(--primary-clr);
  align-items: center;
}

.login-back,
.QrCode-back {
  font-size: 25px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .QrCode-back {
    display: none;
  }
}

.login-header h4,
.QrCode-header h4 {
  display: block;
  text-align: center;
}

.login-field {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.login-field>div>input {
  width: 100%;
  border: none;
  outline: none;
  border: 1.5px solid var(--primary-clr);
  padding: 8px 16px;
  border-radius: 5px;
  color: #000;
}

.login-field>div>button {
  width: 50%;
  background: #000;
  border: none;
  border-radius: 5px;
  color: #fff;
  outline: none;
  cursor: pointer;
  padding: 4px 16px;
  display: block;
  margin: 10px auto;
}

.QrCode {
  margin-bottom: 20px;
}

.QrCode-img {
  width: 70%;
  margin: 10px auto;
}

.QrCode-img img {
  width: 100%;
}

.profileData {
  width: 45vw;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  /*display:none;*/
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.profileData-active {
  opacity: 1;
  transform: translateY(0%);
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #000;
  border-bottom: 2px solid var(--primary-clr);
}

.profile-header p:nth-child(1) {
  font-size: 1.5rem;
  cursor: pointer;
}

.profile-header p:nth-child(2) {
  font-size: 2rem;
  color: var(--primary-clr);
}

.profile-data {
  padding: 10px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2%;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0px 1px 5px #0000003d;
}

.profile-btn-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.profile-btn-section button {
  padding: 4px 12px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  cursor: pointer;
}

.profile-btn-section button:nth-child(1) {
  background: #02996c;
}

.profile-btn-section button:nth-child(2) {
  background: #00d190;
}

.profile-btn-section button:nth-child(3) {
  background: transparent;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 0px;
}

.profile-data-left {
  width: 40%;
}

.profile-data-left img {
  width: 150px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}

.profile-data-rifht {
  width: 58%;
}

.allData {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*gap: 10px;*/
  flex-wrap: wrap;
  display: none;
}

.allData-active {
  display: flex;
}

.allData p {
  width: 50%;
}

/* home start */
.home-content {
  width: 100%;
  padding-top: 68px;
  height: 97%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-part {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}

.left-part p {
  padding: 10px 0px;
  font-size: 40px;
  font-weight: 600;
  font-family: "Updock", cursive;
  color: var(--primary-clr);
  /* mix-blend-mode: color; */
}

.mid-part {
  width: 40%;
  height: 100%;
}

.right-part {
  height: 100%;
  width: 30%;

  padding-right: 30px;
  padding-top: 30px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.form-section {
  width: 100%;
  padding-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(27.82, 27.62, 27.62, 0.37);
  backdrop-filter: blur(6px);
}

.form-header {
  background: var(--primary-clr);
  padding: 5px;
}

.form-header p {
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.form-input-field {
  width: 100%;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input-field label,
select,
option,
input {
  font-size: 17px;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.form-input-field select,
input {
  border: 2px solid var(--primary-clr);
  background: transparent;
  padding: 4px 8px;
  border-radius: 5px;
}

.form-input-field input::placeholder {
  color: #fff;
}

.form-input-field select option {
  background: #000;
}

.aged {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.aged p {
  color: #fff;
}

.btn {
  padding: 4px 8px;
  display: block;
  margin: 10px auto;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  background: var(--primary-clr);
  color: #fff;
  cursor: pointer;
}

.form-input-field button {
  padding: 4px 8px;
  width: 50%;
  display: block;
  margin: 10px auto;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  background: var(--primary-clr);
  color: #fff;
  cursor: pointer;
}

.form-field {
  position: relative;
  /* background: #fff; */
}

.form-field-1,
.form-field-2 {
  display: flex;
  flex-wrap: wrap;
}

.second-form-btn {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
}

.back-form {
  width: 20px;
  height: 20px;
  background: #ffffff57;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.form-field-active-1 {
  position: absolute;
  top: 0;
  opacity: 1;
  transform: translatex(-100%);
  transition: all 0.4s ease-in-out;
}

.form-field-active-2 {
  position: absolute;
  top: 0;
  opacity: 1;
  transform: translatex(200%);
  transition: all 0.4s ease-in-out;
}

.submit-form {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(27.82, 27.62, 27.62, 0.7);
  backdrop-filter: blur(10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
}

.submit-form-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.confirmation {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-top: 2px solid var(--primary-clr);
  animation: confirm 4s linear infinite;
}

.submit-form i {
  font-size: 70px;
  color: #fff;
  display: none;
}

.confirmation-active {
  border: none;
}

.submit-msg {
  display: none;
  color: #fff;
}

.paused {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

@keyframes confirm {
  0% {
    transform: rotate(0deg);
    /* Corrected from 'border-top' to 'transform' */
  }

  100% {
    transform: rotate(360deg);
    /* Corrected from 'border-top' to 'transform' */
  }
}

/* about us section */

.about,
.choose {
  background: #fff;
  width: 100%;
  /*min-height: 100vh;*/
  padding: 20px 30px;
}

.about h2,
.choose h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: #6a0000;
  text-decoration: underline;
}

.about-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.choose .about-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.left-about {
  width: 45%;
}

.left-about div {
  margin-bottom: 10px;
}

.left-about h3 {
  font-size: 24px;
  border-left: 3px solid #6a0000;
  padding-left: 10px;
  color: var(--primary-clr);
  margin-bottom: 8px;
}

.left-about p {
  font-family: "Lora", serif;
  text-align: justify;
  font-size: 19px;
}

.right-about {
  width: 45%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 1px 5px #0000002d;
}

.right-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.left-contact {
  width: 45%;
  height: 100%;
}

.right-contact {
  width: 50%;
  height: 100%;
}

.right-contact img {
  width: 100%;
  height: 425px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 1px 5px #00000034;
}

.contact-us-form {
  padding: 0px 0px 10px 0px;
  border: 1px solid var(--primary-clr);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 10px #888888;
}

.contact-us-form h3 {
  /* background: #000; */

  text-decoration: underline;
  width: 100%;
  text-align: center;
  font-size: 1.7rem;
  padding: 5px;
  color: var(--primary-clr);
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-us-form div {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.contact-us-form div>input {
  background: transparent;
  color: #000;
}

.contact-us-form div>input::placeholder {
  color: #000 !important;
}

.contact-us-form div>button {
  width: 50%;
  padding: 4px 16px;
  display: block;
  margin: 0px auto;
  font-size: 18px;
  color: #fff;
  background: var(--primary-clr);
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
}

.social-media-icon {
  display: flex;
  flex-direction: colomn !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.micon {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.micon i {
  color: var(--primary-clr);
}

.social-media-icon a {
  background: var(--primary-clr);
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.social-media-icon a:nth-child(1)::after {
  content: "Call";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: var(--primary-clr);
  font-weight: 600;
}

.social-media-icon a:nth-child(1):hover::after {
  top: -20px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-media-icon a:nth-child(2)::after {
  content: "Whatsapp";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: var(--primary-clr);
  font-weight: 600;
}

.social-media-icon a:nth-child(2):hover::after {
  top: -20px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-media-icon a:nth-child(3)::after {
  content: "Instagram";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: var(--primary-clr);
  font-weight: 600;
}

.social-media-icon a:nth-child(3):hover::after {
  top: -20px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-media-icon a:nth-child(4)::after {
  content: "Email";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: var(--primary-clr);
  font-weight: 600;
}

.social-media-icon a:nth-child(4):hover::after {
  top: -20px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-media-icon a:nth-child(5)::after {
  content: "Call";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: var(--primary-clr);
  font-weight: 600;
}

.social-media-icon a:nth-child(5):hover::after {
  top: -20px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  color: #fff;
  background: var(--primary-clr);
  backdrop-filter: blur(5px);
}

.onscroll {
  background: #000;
  width: 40px;
  height: 35px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.onscroll a {
  color: #fff;
}

/* banner section */

.banner-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}

.banner-section .img-card {
  width: 100%;
  height: 100vh;
  z-index: -2;
}

.banner-section .img-card img {
  width: 100%;
  height: 100%;
  z-index: -5;
  object-fit: cover;
  object-position: center;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: relative;

  left: 0px;
  top: -17px;
  z-index: 999;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0px;
  z-index: 99 !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 2px;
  background: var(--primary-clr) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-clr);
  width: 20px;
  height: 7px;
  border-radius: 5px;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot.active span {
  position: relative;
}

.owl-theme .owl-dots .owl-dot.active span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #00000049;
  border-radius: inherit;
  animation: activedots 4.7s linear;
}

@keyframes activedots {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* member ship plan*/
.membership-plan-header {
  text-align: center;
  color: var(--primary-clr);
  margin: 20px 0px;
  text-decoration: underline;
}

.membership-plan {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 100px 30px;
  gap: 4%;
  background: red;
  background: url("../images/c791WByKPJ3X.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.moverlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0000007b;
  z-index: 1;
}

.plan {
  width: 24%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: var(--primary-clr);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.08);
  padding: 32px 20px;
  z-index: 2;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* profile demo*/

.show-profile {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card {
  width: 100%;
  /*padding: 10px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card img {
  width: 30vw !important;
  aspect-ratio: 16/16;
  object-fit: contain;
  border-radius: 10px;
}

.fornav {
  position: relative;
  z-index: 0;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 15px;
}

.bank-details p {
  color: #000 !important;
  font-weight: 500;
  font-size: 17px;
}

.loginhide {
  display: none;
}

/* .menu-bar {
  display: none;
} */

@media (width<=770px) {
  .sub-navbar {
    width: 100%;
  }

  .mid {
    display: none;
  }

  .home-content {
    flex-direction: column;
  }

  .left-part {
    width: 100%;
    align-items: flex-start;
    height: 50%;
  }

  .right-part {
    width: 100%;
    padding: 0px 20px;
  }

  .about-div {
    flex-direction: column !important;
  }

  .left-about {
    width: 100%;
  }

  .right-about {
    width: 100%;
  }

  .contact-div {
    flex-direction: column-reverse;
  }

  .left-contact {
    width: 100%;
  }

  .right-contact {
    width: 100%;
  }

  footer p {
    font-size: 11px;
  }

  .fornav {
    z-index: -1;
  }

  /* something new */

  .form-input-field {
    width: 48%;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-input-field:last-child {
    width: 100%;
  }

  .aged {
    gap: 10px;
  }

  .profileData {
    width: 100vw;
  }

  .profile-data-left {
    width: 30%;
  }

  .profile-data-rifht {
    width: 65%;
  }

  .profile-data-left img {
    width: 100px;
  }

  .membership-plan {
    flex-direction: column;
    padding: 30px 8px;
    gap: 20px;
  }

  .show-profile {
    padding: 0px 25px;
  }

  .plan {
    width: 100%;
  }

  .card {
    flex-direction: column;
    gap: 20px;
  }

  .card img {
    width: 100% !important;
  }

  .loginhide {
    display: block;
  }

  .menu-bar {
    display: flex !important;
  }
}

/* @media (max-width: 425px) {
  .landing-page {
    height: 70vh;
  }

  .banner-section .img-card {
    height: 70vh;
  }
} */

/* .telegram-btn {
  position: fixed;
  top: 50%;
  right: -90px;
  transform: translateY(-50%);
  background-color: #0088cc;
  color: white;
  padding: 12px 12px;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.telegram-btn:hover {
  right: 0;
}

.telegram-btn i {
  font-size: 20px;
}

.telegram-btn a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.telegram-btn a:hover {
  text-decoration: underline;
} */



.floating-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}
.telegram-btn,
.whatsapp-btn,
.instagram-btn,
.facebook-btn {
  display: flex;
  align-items: center;
  background-color: #0088cc;
  color: white;
  padding: 10px 15px;
  border-radius: 30px 0 0 30px;
  transition: right 0.3s ease, transform 0.3s ease;
  transform: translateX(100px);
  cursor: pointer;
  position: relative;
  width: fit-content;
}

.whatsapp-btn {
  background-color: #25d366;
}

.instagram-btn {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.facebook-btn {
  background-color: #1877f3;
}

.telegram-btn i,
.whatsapp-btn i,
.instagram-btn i,
.facebook-btn i {
  font-size: 25px;
  margin-right: 5px;
}

.telegram-btn a,
.whatsapp-btn a,
.instagram-btn a,
.facebook-btn a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.telegram-btn:hover,
.whatsapp-btn:hover,
.instagram-btn:hover,
.facebook-btn:hover {
  transform: translateX(0);
  right: -9px;
}

.telegram-btn:hover a,
.whatsapp-btn:hover a,
.instagram-btn:hover a,
.facebook-btn:hover a {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-buttons {
    gap: 2px;
  }

  .telegram-btn,
  .whatsapp-btn,
  .instagram-btn,
  .facebook-btn {
    padding: 8px 12px;
  }

  .telegram-btn i,
  .whatsapp-btn i,
  .instagram-btn i,
  .facebook-btn i {
    font-size: 20px;
    margin-right: 5px;
  }
}






/* matrimonial section  */
.matrimonial-section {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  color: #333;
}

.matri-heading {
  color: #2c2c2c;
  font-size: 32px;
  margin-bottom: 10px;
}

.matri-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
}

.matri-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
  margin-bottom: 30px;
}

.matri-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 7px #888888;
  padding: 20px 20px;
  min-width: 260px;
  max-width: 300px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matri-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 0px rgba(255, 33, 33, 0.25);
}

.matri-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #9c1c20;
}

.matri-card p {
  font-size: 16px;
  margin: 0;
  color: #555;
}

.matri-card a {
  color: #ad1a1a;
  text-decoration: none;
  font-weight: bold;
}

.matri-cta {
  background: #fff0f0;
  border-radius: 16px;
  padding: 20px 20px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  box-shadow: 5px 7px #888888;
}

.matri-cta h3 {
  font-size: 24px;
  color: #9c1c20;
  margin-bottom: 10px;
}

.matri-cta p {
  font-size: 17px;
  color: #333;
}

.matri-footer-note {
  font-size: 22px;
  margin-top: 40px;
  color: #444;
  font-weight: 800;
}

@media (max-width: 768px) {
  .matri-card {
    max-width: 100%;
  }

  .matri-cta {
    padding: 20px;
  }
}
