/*general styles*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --gap: 10px;
  --duration: 140s;
  --scroll-start: 0%;
  --scroll-end: -100%;
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --yellow: #fbb507;
  --or-blur: #e28117;
  --or: #cf5500;
  --ex-dark: #15161e;
  --dark: #31323d;
  --light-yellow: #fffdf9;
  --white: #ffffff;
  --grey: #5f6168;
  --other-grey: #9f9f9f;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  background-color: var(--white);
  margin-top:30px;
}

p {
  color: var(--grey);
}
br {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ex-dark);
}
button {
  display: flex;
  justify-content: space-around;
  padding: 5px 15px;
}
a {
  all: unset;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light-yellow);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}

input {
  all: unset;
  padding: 10px 20px;
  border: solid 1px var(--yellow);
  border-radius: 8px;
  font-size: 12px;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}
.custom-checkbox-container {
  margin-bottom: 5px;
}
textarea {
  padding: 10px 20px;
  border: solid 1px var(--yellow);
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
}
.p-main-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ex-dark);
}

/* Common styles for custom inputs */
.custom-checkbox,
.custom-radio {
  display: flex;
  position: relative;
  padding-left: 35px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.border-radio {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px var(--yellow);
  border-radius: 8px;
}

.ff-1 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
}
.translate90{
}
/* Hide the browser's default checkbox and radio */
.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 6px;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  content: "✓";
  position: absolute;
  display: none;
  color: var(--white);
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 2px solid var(--yellow) !important;
  border-radius: 50%;
}

/* Style the radio button indicator */
.custom-radio .radiomark:after {
  content: "";
  position: absolute;
  display: none;
  background-color: var(--yellow);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

/* Show the indicator when checked */
.custom-radio input:checked ~ .radiomark:after {
  display: block;
  background-color: var(--yellow);
}

/* Style for required but unchecked inputs */
.custom-checkbox input:required:invalid ~ .checkmark,
.custom-radio input:required:invalid ~ .radiomark {
  border-color: var(--yellow);
}

/* Reset to yellow when valid (any option selected for radio) */
.custom-checkbox input:required:valid ~ .checkmark,
.custom-radio input:required:valid ~ .radiomark {
  border-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-radio-container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.part-fields {
  display: flex;
  gap: 10px;
}
.label-parts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 5px;
}
.form-1 {
  display: flex;
  gap: 40px;
}
.main-p-form {
  margin: auto;
  display: flex;
  width: 30vw;
  min-width: 300px;
  flex-direction: column;
  gap: 15px;
}
.btm15px{
    margin-bottom:15px;
}
.f1-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 0px 16px 16px 0px;
    overflow: hidden;
    margin: 10px 0px;
}
.f2-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 0px 16px 16px 0px;
    overflow: hidden;
    margin: 10px 0px;
}


.margin-top10 {
  margin-top: 10px;
}
.tertiary-btn {
  background-color: var(--ex-dark);
  font-size: 16px;
  height: 50px;
  color: var(--white);
  border: none;
  gap: 20px;
  padding: 10px 30px;
}
.tertiary-btn:hover {
  background-color: var(--yellow);
  stroke: none;
  font-size: 16px;
  height: 50px;
  color: var(--white);
  padding: 10px 30px;
  cursor: pointer;
}
h1 {
  font-size: clamp(1.75rem, 1.0354rem + 3.4646vw, 4.5rem);
  line-height: 110%;
}

h2 {
  font-size: clamp(1.5rem, 1.1265rem + 1.811vw, 2.9375rem);
  line-height: 110%;
}
h3 {
  font-size: clamp(1.25rem, 1.1526rem + 0.4724vw, 1.625rem);
}
h4 {
  font-size: clamp(1.1875rem, 1.1388rem + 0.2362vw, 1.375rem);
}
.img-anim {
  animation: up-down 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes up-down {
  0%,
  100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(5px);
  }
}

/* Vendor prefixes for better browser support */
@-webkit-keyframes up-down {
  0%,
  100% {
    -webkit-transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(-10px);
  }
  75% {
    -webkit-transform: translateY(5px);
  }
}

@-moz-keyframes up-down {
  0%,
  100% {
    -moz-transform: translateY(0px);
  }
  25% {
    -moz-transform: translateY(10px);
  }
  50% {
    -moz-transform: translateY(-10px);
  }
  75% {
    -moz-transform: translateY(5px);
  }
}

@-o-keyframes up-down {
  0%,
  100% {
    -o-transform: translateY(0px);
  }
  25% {
    -o-transform: translateY(10px);
  }
  50% {
    -o-transform: translateY(-10px);
  }
  75% {
    -o-transform: translateY(5px);
  }
}

@-ms-keyframes up-down {
  0%,
  100% {
    -ms-transform: translateY(0px);
  }
  25% {
    -ms-transform: translateY(10px);
  }
  50% {
    -ms-transform: translateY(-10px);
  }
  75% {
    -ms-transform: translateY(5px);
  }
}

section {
  padding: 80px 0px;
}
/* 


Website styles 



*/

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 3vw;
  position: fixed;
  top: 0;
  background-color:var(--white);
  width: 100vw;
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  color: var(--ex-dark);
}

.nav-links li {
  margin: 0 10px;
}
.navgobtn{
        background-color: transparent;
    border: 1px solid var(--ex-dark);
    font-size: 14px;
    padding: 12px 20px;
}
.navgobtn:hover{
    background:var(--yellow);
    color:var(--white);
        border: 1px solid var(--yellow);
}
.hide-desk{
    display:none;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--grey);
  transition: color 0.3s ease-in-out;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: var(--ex-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ex-dark);
  cursor: pointer;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

        .alert {
            position: fixed;
            top: 18px;
            right: 20px;
            background-color: red;
            color: white;
            padding: 10px 30px 10px 15px;
            border: 1px solid #f5c6cb;
            border-radius: 4px;
            display: none;
        }

        .close-btn {
            position: absolute;
            top: 5px;
            right: 10px;
            cursor: pointer;
            font-size: 20px;
        }

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-button1 {
  background-color: var(--ex-dark);
  color: white;
  border: none;
  padding: 12px 20px !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button1:hover {
  background-color: var(--yellow);
  color: var(--white);
}
.nav-button2 {
  background-color: var(--yellow);
  color: var(--ex-dark);
  border: none;
  padding: 12px !important;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--white) !important;
  fill: var(--white) !important;
}
.nav-button2:hover {
  background-color: var(--ex-dark);
  color: var(--white) !important;
  fill: var(--white) !important;
}
.menu-icon,
.close-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ex-dark);
}

/* Hero section styles */
.hero {
  display: flex;
  margin-top: 5vh !important;
  justify-content: center;
  max-width: 1600px;
  overflow:hidden;
  align-items: center;
  margin: auto;
}

.hero-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 2vh 1vw 2vh 8vw;
}
.hero-description p {
  width: 75%;
}

.hero-image {
  flex: 1;
  background-size: cover;
  width: 45vw;
  background-position: center;
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.height-16 {
  height: 16px;
}

.width-80 {
  width: 80vw;
  margin: auto;
}

.width-75 {
  width: 75%;
}
.width-50 {
  width: 50%;
}

.primary-btn {
  background-color: var(--yellow);
  color: var(--ex-dark);
  border: none;
  font-size: 16px;
  gap: 15px;
  padding: 10px 30px;
  height: 50px;
}
.primary-btn:hover {
  background-color: var(--ex-dark);
  color: var(--yellow);
  cursor: pointer;
}

.secondary-btn {
  background-color: transparent;
  border: 1px solid var(--ex-dark);
  font-size: 16px;
  height: 50px;
  padding: 10px 30px;
}

.secondary-btn:hover {
  background-color: var(--ex-dark);
  color: var(--white);
  cursor: pointer;
}

/* Working section styles */
.display-flex-working {
  display: flex;
  flex-direction: column;
}
.working-desc {
  display: flex;
  flex-direction: column;
}
.main-desc {
  flex: 1.6;
  display: flex;
  justify-content: space-between;
  align-items:center;
}
.flex-1 {
  flex: 1;
}
.main-desc h2 {
  flex: 1;
}
.main-desc p {
  flex: 1;
}
.main-desc-img {
  flex: 0.4;
}

.flex-top {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}
.main-desc-details {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 40px;
}
.desc-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  gap: 20px;
  justify-content: space-between;
  border: solid 1px var(--yellow);
  border-radius: 16px;
    &:hover {
box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.desc-box img {
  width: 100%;


}

.dot {
  height: 16px;
  width: 16px;
  background-color: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulsate 2s ease-in-out infinite;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--yellow);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Product section styles */
.grid-section {
  display: flex;
  gap: 40px;
  background-color: var(--white);
}

.grid-description {
  flex: 0.75;
  padding: 2rem;
  background-color: var(--light-yellow);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.grid-description h2 {
  margin-bottom: 20px;
}
.grid-images {
  flex: 1.25;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.grid-image {
  height: 300px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.grid-image:hover{
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.grid-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transition: transform 0.5s ease;
}

.grid-image:hover::before {
  transform: scale(1.1);
}

/* marquee style */
.partners-marquee {
  margin: 40px 15px;
  background-color: var(--ex-dark);
  border-radius: 30px;
}
.partner-padding {
  margin: 10px 100px;
}
.marquee-container {
  overflow: hidden;
  margin-bottom: 15px;
}

.marquee {
  display: flex;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.marquee__group img {
  max-width: 100px;
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
}

.scroller.reverse {
  animation-direction: reverse;
}

.c-white {
  color: var(--white);
}

.p-14 {
  font-size: 14px;
  margin-bottom: 60px;
}

/*  working */

.work_upper {
  display: flex;
  gap: 20px;
}
.work_desc {
    background-color: var(--ex-dark);
    flex: 1.2;
    padding: 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.work_img {
  flex: 0.8;
}

.work-image {
  background-image: url("https://ik.imagekit.io/rlvntstudios/mp/mp-rlvnt-11-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  min-height: 200px; /* Provides a minimum height on smaller screens */
}
.main-working-details {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 40px;
}

.working-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  gap: 30px;
  justify-content: space-between;
  border-radius: 30px;
}
.working-box:hover{
      box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.svg-outline-dark {
  padding: 20px;
  display: flex;
  justify-content: center;
  width: max-content;
  height: max-content;
  border-radius: 16px;
  background-color: var(--ex-dark);
  align-items: center;
}
.svg-outline-dark:hover {
  background-color: var(--yellow);

}
.svg-outline-white {
  padding: 20px;
  display: flex;
  justify-content: center;
  width: max-content;
  height: max-content;
  border-radius: 16px;
  background-color: var(--white);
  align-items: center;
}
.svg-outline-white:hover {
  background-color: var(--yellow);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}

.flex-working-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.enter-line {
  display: block;
}

.about-mp {
  display: flex;
  gap: 40px;
}
.about-img {
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.feature {
  display: flex;
  gap: 20px;
  border-radius: 16px;
  padding: 20px;
  border: 1.5px solid var(--ex-dark);
  background-color: transparent;
  align-items: center;
}
.feature:hover {
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.about-image {
  background-image: url("https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-5.png?updatedAt=1725803917252");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  width: 100%;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  overflow: hidden;
  margin: 10px 0px;
}
.about-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.about-desc a {
  margin-top: 40px;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 10px;
  font-weight: 500;
  padding-bottom: 2px;
}
.partner-image {
  flex: 1.3;
}
.align-items-center {
  align-items: center;
}
.partner-block {
  flex: 0.7;
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 20px;
  max-height:max-content;
}
  .partner-block:hover{
      
  border-radius:30px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

.flex-sb {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.partner-img {
  background-image: url(https://ik.imagekit.io/rlvntstudios/mp/rlvnt-map-mp1.png?updatedAt=1726121689387);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 16 / 9; /* Adjust this ratio based on your image's aspect ratio */
  min-height: 200px; /* Provides a minimum height on smaller screens */
}

.partner-img:hover {
  transform: scale(1.1);
  animation-duration: 1s;
  transition: transform 0.5s ease;
}
.description-boxes {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.upper-desc {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.description-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.description-flex2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.description-flex-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-center {
  text-align: center;
}
.boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.box {
  flex-basis: calc(50% - 1rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);

  
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.box h3 {
}

.box p {
  font-size: 14px;
  color: var(--other-grey);
}

.box:last-child {
  flex-basis: calc(50% - 1rem);
  margin-top: 2rem;
}

footer {
  background-color: var(--dark);
  padding: 100px 140px 0px 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1.2;
  align-items: flex-start;
}
.footer-main img {
  height: 40px;
  object-fit: contain;
}
.footer-main p {
  color: var(--white);
  font-size: 14px;
}
.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.info-c {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--white);

  &:hover {
    color: var(--yellow);
  }
}

.links-footer {
  flex: 0.8;
  justify-content: flex-end;
  display: flex;
  gap: 40px;
}
.footer-links1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-links1 p {
  color: var(--white);
  font-size: 14px;
}
.footer-links1 p:hover {
  color: var(--yellow);
  font-size: 14px;
}

.copyright {
  width: 100%;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 30px;
  color: var(--other-grey);
}

.partnership {
  margin-top: 5vh !important;
}
.content-partnership {
  display: flex;
  margin-top: 5vh;
}
.p-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.6;
}
.p-boxes2 {
  display: flex;
  flex: 1.4;
  flex-wrap: wrap;
  justify-content: center;
}

.margin-top0 {
  margin-top: 0px !important;
}
.hero-btn {
}
.width-main {
}

.border-boxes-mobile{
    border:none;
}
/* Responsive styles */
@media (max-width: 900px) {
    .hide-desk{
    display:block;
}

    .border-boxes-mobile{
    border:1px solid var(--yellow);
    border-radius:30px;
    width:100%;
    box-sizing: border-box;
}
.hero-image{
        content: url(https://ik.imagekit.io/rlvntstudios/mp/mp-rlvnt-herom.png);
        margin-top: 20px;
}
  .nav-links,
  .nav-buttons {
    display: none;
  }
  .nav-buttons {
    display: none !important;
  }

  .menu-icon {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: var(--white);
    transition: right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-container.active {
    right: 0;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .nav-links.active li {
    margin: 0.5rem 0;
  }

  .nav-buttons.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  .nav-buttons.active button {
    margin: 0.5rem 0;
    width: 80%;
  }

  .close-icon.active {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .hero-btn {
    display: flex !important;
  }
  .partner-padding {
    margin: 20px;
  }
  .partners-marquee {
    margin: 20px 15px;
    background-color: var(--ex-dark);
    border-radius: 30px;
  }
  .enter-line {
    display: none;
  }
  .enter-line:after{
      content:" ";
  }
  .width-50 {
    width: 100%;
    box-sizing: border-box;
  }
  .width-75 {
    width: 100%;
    box-sizing: border-box;
  }
  .width-main {
    width: max-content;
  }
  .main-desc-details {
    flex-direction: column;
  }
  .about-mp {
    flex-direction: column;
  }
  .flex-sb {
    flex-direction: column;
  }
  .main-desc {
    flex-direction: column;
    gap: 15px;
  }
  .work_upper {
    flex-direction: column;
  }
  .links-footer {
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }
  .description-flex {
      flex-direction:column;
      gap:20px;
      align-items:flex-start;
  }
  footer {
    gap: 20px;
    padding: 50px 80px 20px 80px;
  }
  .content-partnership {
    flex-direction: column;
    gap: 20px;
  }
  .ff-1 {
    flex-direction: column;
  }
  .custom-checkbox,
  .custom-radio {
    flex-direction: column;
  }
  .part-fields {
    flex-direction: column;
  }
  .p-boxes2 {
    flex-direction: column;
        gap: 20px;
  }
  .form-1 {
    flex-direction: column;
  }
  .f1-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio. Adjust if needed */
    min-height: 200px; /* Provides a minimum height on smaller screens */
  }
    .f2-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio. Adjust if needed */
    min-height: 200px; /* Provides a minimum height on smaller screens */
  }
  .box {
    flex-basis: auto;
  }
  .box:last-child {
    flex-basis: auto;
  }
    .width-100{
      width:100% !important;
  }
}
@media (min-width: 901px) and (max-width: 1150px) {

  .width-100{
      width:100% !important;
  }
  .width-50 {
    width: 100%;
    box-sizing: border-box;
  }
  .width-75 {
    width: 100%;
    box-sizing: border-box;
  }
  .flex-top {
    flex-direction: column;
  }
  .flex-sb {
    flex-direction: column;
  }
  .about-mp {
    flex-direction: column;
  }
  .width-75 {
    width: 100%;
  }
  .content-partnership {
    flex-direction: column;
  }
  .ff-1 {
    flex-direction: column;
  }

  .p-boxes2 {
    flex-direction: column;
  }
  .form-1 {
    flex-direction: column;
  }
  .f1-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio. Adjust if needed */
    min-height: 200px; /* Provides a minimum height on smaller screens */
  }
    .f2-image {
    background-image: url(https://ik.imagekit.io/82ygj2h6r/rlvnt-mp-4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio. Adjust if needed */
    min-height: 200px; /* Provides a minimum height on smaller screens */
  }
  .main-p-form {
    margin: auto;
    width: 90vw;
  }
  footer {
    background-color: var(--dark);
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    flex-direction: column;
  }
  .description-flex2 {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .flex-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
  }
      .translate90{
        transform: rotate(90deg);
}
  .main-p-form {
    width: 90vw;
    margin: auto;
  }

  .secondary-btn {
    max-width: 100%;
  }
  .grid-section {
    flex-direction: column;
  }
  .grid-image {
    width: 100%;
    box-sizing: border-box;
    height: 150px;
  }
  .grid-images {
    flex: 1.25;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-desc {
    flex-direction: column;
    gap: 15px;
  }
  .hero {
    flex-direction: column;
    width: 80vw;
    margin: auto;
  }
  .hero-btn {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
  }
  .primary-btn {
    max-width: 100%;
    height: 50px;
  }

  .work_upper {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .work_img {
    flex: 1;
    height: 200px;
  }
  .p-14 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .main-working-details {
    flex-direction: column;
  }
  .about-mp {
    flex-direction: column;
  }

  .flex-sb {
    flex-direction: column;
  }
  footer {
    background-color: var(--dark);
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    flex-direction: column;
  }
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-block {
    padding: 30px;
  }
  

  .hero-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px;
  }
  .hero-description p {
    width: 100%;
    box-sizing: border-box;
  }
  .links-footer {
    flex: 0.8;
    justify-content: space-between;
    display: flex;
    width: 100%;
    gap: 40px;
  }
  .work-image {
    aspect-ratio: 16 / 9;
  }
  .marquee__group img {
    max-width: 60px;
    height: 60px;
    width: 60px;
    object-fit: contain;
  }
}
@media (min-width: 300px) and (max-width: 650px) {
  .flex-working-icons {
transform: scale(0.5);
  }
  .description-flex2 {
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .flex-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .description-flex2 {
    flex-direction: column;
  }
}

        #loader-wrapper {
            display: grid;
            place-items: center;
            height: 100vh;
            width: 100vw;
            background-color: var(--yellow);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
        }
        #loader {
            width: 30vw;
            height: 30vw;
        }
        .loader-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .loader-logo img {
            max-width: 100%;
            height: auto;
        }
                .image-container {
            perspective: 1000px;
            flex:1;
            overflow:visible;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            overflow:hidden;
        }
                .tilt-element {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }
                .phone-input-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap:15px;
    box-sizing: border-box;

        }

        #country-code {
            all:unset;
        color:var(--grey);
        font-size:14px;
        border:none;
            width: max-content;
                padding: 10px 20px;
            
        }

        #phone {
            flex-grow: 1;
        }

        .custom-select {

    border: solid 1px var(--yellow);
    border-radius: 8px;
    font-size: 12px;
    max-width: 100%;
    width: max-content;
    box-sizing: border-box;
    flex: 0.3;
        }

        .custom-select select {
            appearance: none;
            -webkit-appearance: none;
            padding-right: 30px; /* Space for the custom arrow */
        }

        .custom-select::after {
            content: "↓";
            font-size: 14px;
            color: var(--yellow);
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            pointer-events: none;
        }

        #password-mismatch-alert {
            color: red;
            display: none;
        }
        
        .documents{
                display: flex;
                flex-direction:column;
    margin-top: 5vh !important;
    gap:10px;
    max-width: 1600px;
    overflow: hidden;
    align-items: flex-start;
    margin: auto;
        }
        .documents p{
            font-size: clamp(0.875rem, 0.8438rem + 0.1563vw, 1rem);
        }
        .documents h2{
            font-size: clamp(1.625rem, 1.4688rem + 0.7813vw, 2.25rem);

        }
        .documents h3{
            font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
                        margin-top: 20px;
        }
        .documents h4{
            font-size: clamp(1.125rem, 1.0938rem + 0.1563vw, 1.25rem);
        }
        
        .documents li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom:10px;
  font-size:15px;
}