* {
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  background: #010100;
  font-family: "Clash Grotesk", sans-serif;
}
header {
  width: 80%;
  margin: 40px auto;
  background-color: black;
  background-size: contain;
  background-position: center;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  position: relative;
  background: black; /* or your desired background */
  z-index: 0;
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px; /* Border thickness */
  background: linear-gradient(
    270deg,
    #dfa224 -2.42%,
    rgba(48, 45, 55, 0) 5.47%,
    rgba(48, 45, 55, 0) 96.58%,
    #dfa224 102.5%
  );
  border-radius: 20px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.logo {
  width: 200px;
}

.navbar .links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.navbar .links ul li {
  list-style-type: none;
}

.navbar .links ul li a {
  text-decoration: none;
  color: #6d6868;
  font-size: 18px;
}

.navbar .links ul li a:hover {
  color: #dfa224;
}
.right-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.world-pn {
  width: 40px;
  cursor: pointer;
}
.navbar .btn {
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
  padding: 14px 20px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
}

.navbar .btn:hover {
  background: linear-gradient(180deg, #946708 0%, #e9c326 100%);
}

.active {
  position: relative;
  background-color: #f8e4cf14;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 0;
  isolation: isolate;
  font-size: 16px;
  color: #dfa224;
}

/* Fake radial gradient border */
.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Thickness of the "border" */
  border: 1px solid;
  background: radial-gradient(
      98.77% 111.76% at 50% -8.82%,
      #fae27f 0%,
      rgba(200, 131, 66, 0.14) 30.25%,
      rgba(255, 255, 255, 0) 83.23%,
      rgba(250, 226, 127, 0.32) 89.36%,
      rgba(255, 255, 255, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Hero Section */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 90vh;
}

.hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-text h1 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  font-size: 74px;
  line-height: 125%;
  font-weight: 500;
  -webkit-background-clip: text; /* For Chrome/Safari */
  background-clip: text; /* For other browsers */
  color: transparent; /* Makes the text color transparent, allowing the gradient to show */
}

.hero-text p {
  color: #d3c7bb;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
}

.brand-details {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
  padding: 16px 32px;
  color: #fff;
  /* border: 1px solid #ffffff33; */
  box-shadow: 0px 8px 16px 0px #c8834233;
  border-radius: 13.55px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #946708 0%, #e9c326 100%);
}

.btn-secondary {
  background-color: #fae27f0d;
  padding: 16px 32px;
  color: #dfa224;
  border: 1px solid #fae27f1a;
  border-radius: 13.55px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.hero-image {
  width: 41%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-image img {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #131313;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  right: 0;
  top: 50px;
}

.dropdown-content a {
  display: block;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
  color: white;
}

.tooltip-container {
  width: 100%;
  position: relative;
  display: inline-block;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.tooltip-container:hover .tooltip-content {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 7px 10px;
  border-radius: 4px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  font-size: 14px;
  white-space: nowrap;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.tooltip-content input {
  background: #fff;
  color: #000;
  border: none;
  padding: 4px;
  border-radius: 4px;
  margin-right: 4px;
  width: 220px;
}

.copy-btn {
  background: #555;
  color: white;
  border: none;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #28a745;
}

.dropdown-content.show {
  display: block;
}

.contract-add {
  color: #6d6868;
  font-weight: 400;
  background-color: #f8e4cf12;
  padding: 4px 6px;
  border-radius: 40px;
  margin: 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
}

.contract-title {
  color: #fff;
  font-size: 14px;
  background-color: #f8e4cf0f;
  padding: 4px 10px;
  border-radius: 43px;
}

.tooltip-text {
  visibility: hidden;
}

.payBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.payBox.activebox {
  display: flex;
}

.pay-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  width: 300px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  border: none;
  background: none;
}

.about,
.community,
.features,
.how_it_works,
.info,
.roadmap,
.companies,
.faqs {
  width: 80%;
  margin: 80px auto;
}

.about-card p,
.community p,
.how_it_works p,
.info-text p,
.roadmap p,
.faqs p,
.features p,
.locations p {
  color: #9a9490;
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  text-align: justify;
}

.about-card h2,
.community h2,
.how_it_works h2,
.info-text h2,
.roadmap h2,
.faqs h2,
.features h2,
.locations h2 {
  background: linear-gradient(
    101.63deg,
    #faebdc 12.06%,
    #faebdc 10.79%,
    #837d77 60.78%
  );
  font-size: 48px;
  font-weight: 500;
  -webkit-background-clip: text; /* For Chrome/Safari */
  background-clip: text; /* For other browsers */
  color: transparent; /* Makes the text color transparent, allowing the gradient to show */
}
/* about */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.about-card {
  width: 50%;
  background-color: #d7bba105;
  border-radius: 30px;
  border: 1px solid #fcdfc30f;
  backdrop-filter: blur(18px);
  box-shadow: 0px 0px 54px 10px #fcead812 inset;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 580px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.mis-img {
  width: 100%;
  margin-top: 2.5rem;
  /* height: 61%; */
}

.community {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #d7bba105;
  border: 1px solid #fcdfc30f;
  gap: 16px;
  border-radius: 30px;
  background-image: url("./comb.png");
  background-size: cover;
  background-position: top center;
  background-position: center;
  background-repeat: no-repeat;
}

.com-image img {
  width: 100%;
}

.count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.count-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #d7bba105;
  border: 1px solid #fcdfc30f;
  backdrop-filter: blur(18px);
  box-shadow: 0px 0px 18px 13px #fcead808 inset;
  padding: 70px;
  border-radius: 20px;
}

.count-card h3 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  font-size: 38px;
  line-height: 125%;
  font-weight: 500;
  -webkit-background-clip: text; /* For Chrome/Safari */
  background-clip: text; /* For other browsers */
  color: transparent; /* Makes the text color transparent, allowing the gradient to show */
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.grid-item {
  border-radius: 24px;
  border: 1px solid rgba(252, 223, 195, 0.06);
  background: rgba(215, 187, 161, 0.02);
  box-shadow: 0px 0px 54px 10px rgba(252, 234, 216, 0.07) inset;
  backdrop-filter: blur(9px);
  padding: 0 20px 20px 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* center all content */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-4px) scale(1.02);
}

.bb-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
}

.grid-item img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.grid-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: #fff;
}

.grid-item p {
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
  margin: 0;
}

.how_it_works {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.process-card img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover img {
  transform: translateY(-4px) scale(1.02);
}

.process-card p {
  font-size: 18px;
  color: #9a9490;
  line-height: 140%;
  font-weight: 400;
}

.process-card b {
  font-size: 18px;
  color: #9a9490;
  color: #fff;
  font-weight: 600;
}

.info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
}

.info-text ul {
  margin-top: 30px;
}

.info-text ul li {
  font-size: 18px;
  color: #9a9490;
  font-weight: 400;
  line-height: 160%;
  background-color: #d7bba105;
  padding: 8px 75px 8px 8px;
  border: 1px solid #fcdfc30f;
  border-radius: 10px;
  margin-bottom: 12px;
  list-style-type: none;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.info-text h1 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  font-size: 74px;
  line-height: 125%;
  font-weight: 500;
  -webkit-background-clip: text; /* For Chrome/Safari */
  background-clip: text; /* For other browsers */
  color: transparent; /* Makes the text color transparent, allowing the gradient to show */
}
.roadmap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.subtitles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.roadmap h2 {
  color: #fff;
  font-size: 36px;
}

.roadmap-slider {
  width: 100%;
  padding-block: 20px;
  margin-top: 50px;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  margin-bottom: 20px;
  gap: 3rem;
  transition: transform 0.5s ease-in-out !;
}

.roadmap-card {
  backdrop-filter: blur(18px);
  box-shadow: 0px 0px 54px 10px #fcead812 inset;
  border: 1px solid #fcdfc30f;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 260px;
  height: 220px;
  position: relative;
  padding-top: 35px;
  padding-bottom: 40px;
}

.rod-map {
  color: #9a9490;
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 6px;
  background: #161615;
  backdrop-filter: blur(1px);
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.img-rod {
  position: absolute;
  top: -15px;
  left: 0;
}

.roadmap-card h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  border-radius: 4px;
  opacity: 0.5;
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
}

.swiper-pagination-bullet-active {
  width: 13px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
  opacity: 1;
}

.companies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.companies h3 {
  font-size: 24px;
  font-weight: 400;
  color: #9a9490;
  text-align: center;
}

.company-names {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 80px;
}

.company-names a {
  text-decoration: none;
  color: #655c55;
  text-align: center;
  font-size: 18px;
  padding: 24px;
}

.single-name {
  background-color: #f8e4cf08;
  padding: 12px;
  border-radius: 12px;
  width: 125px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #655c55;
  font-size: 22px;
  font-weight: 500;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  fill: rgba(248, 228, 207, 0.03);
  stroke-width: 0.5px;
  stroke: rgba(223, 162, 36, 0.78);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-name:hover {
  transform: translateY(-4px) scale(1.02);
}

.single-name::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Thickness of the "border" */
  background: radial-gradient(
    23.56% 100% at 51.43% 100%,
    rgba(223, 162, 36, 0.78) 0%,
    rgba(223, 162, 36, 0) 100%
  );
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  fill: rgba(248, 228, 207, 0.03);
  stroke-width: 0.5px;
  stroke: rgba(223, 162, 36, 0.78);
}

/* faqs */
.faqs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.subtitles img {
  width: 15px;
  height: 15px;
}

.accordion {
  border: none;
  margin-top: 50px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-family: inherit;
}
.accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
}
.accordion-header {
  background: none;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: left;
  padding: 18px 16px;
  color: #9a9490;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.accordion-header .icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.accordion-body {
  display: none;
  padding: 18px 14px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  background: rgba(255, 255, 255, 0.02);
  color: #9a9490;
  border: none;
}
.accordion-item.active2 .accordion-body {
  padding: 18px 16px;
  display: block;
  border: none;
}

.accordion-header {
  outline: none;
}

.accordion-header:focus {
  outline: none;
  box-shadow: none;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 50px 4%;
  margin-bottom: 0;
  gap: 20px;
}

.footer-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-links ul li {
  list-style-type: none;
}

.footer-links ul li a {
  color: #9a9490;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  text-decoration: none;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.socials img {
  width: 40px;
  height: 40px;
}

.info-image img {
  width: 500px;
}

.links-mob {
  background-color: #0f0f0f;
  padding: 20px 0;
  display: none;
  margin: 10px;
  border-radius: 30px;
}

.links-mob ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}
.links-mob ul li {
  list-style-type: none;
}

.links-mob ul a {
  text-decoration: none;
  color: #fff;
}

.mobile-nav {
  display: none;
}

.links-mob.open {
  display: block;
}

.locations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 80px 10%;
}

.mob-image {
  display: none;
}
.how_to {
  color: white;
  font-size: 20px;
  color: #9a9490;
}
.div-rod {
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  height: 57px;
}

.div-rod p {
  font-size: 74px;
  font-weight: 500;
  color: #ffffff05;
  line-height: 120%;
}

.opt-btn {
  border: none;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

.drp-sel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.btn_me {
  background: none;
  border: none;
}
.deco {
  text-decoration: none;
}
.deco-12 {
  text-decoration: none;
}

.par-2-ps {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  width: 75%;
  z-index: -1;
}
.sub-just {
  justify-content: flex-start;
}
.abt-img {
  width: 100%;
}

.joni {
  text-align: center;
}
.com-img {
  margin-top: 7rem;
}
.mob-img {
  margin-top: 4rem;
}
.deco {
  width: 400px;
  position: absolute;
  top: -120px;
}
.deco-1 {
  left: -100%;
}
.deco-2 {
  left: 105%;
}
.deco-3 {
  left: -112%;
}
.jon-1 {
  position: relative;
}

.decor {
  color: white;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1.5px;
  font-stretch: expanded;
  text-align: center;
}

.comp-1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.siz-e {
  margin-top: 50px;
}
.footer-1 {
  height: 1px;
  background-color: #ffffff0d;
  width: 100%;
  margin: 20px;
}
.footer-img {
  width: 400px;
  margin-top: 15px;
}
.footer-2 {
  color: #9a9490;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.copy-rig {
  text-decoration: underline;
}
.mob-logo {
  width: 264px;
}

.dropdown-content a:hover {
  background: linear-gradient(180deg, #e9c326 0%, #946708 100%);
  color: white;
}

.dropdown-content a:hover {
  border-radius: 10px;
}
.walt-con {
  color: white;
}
.dropdown-content a {
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-section {
  padding: 60px 10px;
  background: black;
}

.contact-section .container {
  max-width: 1500px;
  margin: 0 auto;
  /* display: flex; */
  flex-direction: row;
  /* background: rgba(255, 255, 255, 0.95); */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left side: contact info */
.contact-section .contact-info {
  flex: 1;
  background: rgba(23, 25, 27, 0.5); /* semi-transparent secondary */
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .contact-info h2 {
  color: #ffc107;
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-section .contact-info p {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-section .contact-info i {
  margin-right: 8px;
}

.contact-section .contact-form-wrapper {
  /* flex: 1; */
  padding: 40px;
  /* background: #fff; */
  background-image: url("./comb.png");
  background-size: cover;
  background-position: top center;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d7bba105;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 88%;
  padding: 12px 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 14px;
  background-color: rgba(204, 204, 204, 0.2);
}

.contact-section .contact-form textarea {
  border-radius: 12px;
  resize: vertical;
}

.contact-section .contact-form button {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section .contact-form button:hover {
  background: #5a6268;
}
.wis-m {
  width: 55%;
}

.row-1 {
  display: flex;
}

.text-center {
  text-align: center !important;
}
.text-warning {
  color: #ffc107 !important;
}
.content-1 {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-bottom: 20px;
}
