/* 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%;
  /* Colors */
  --orange:#E2842F;
  --violet: #4B1D5B;
  --or-blur: #e28117;
  --or: #cf5500;
  --ex-dark: #4B1D5B;
  --dark: #1D2023;
  --light-yellow: #fffdf9;
  --white: #F1F0EB;
  --grey: #5f6168;
  --other-grey: #9f9f9f;
}

html {
  scroll-behavior: smooth;
}
button{
    cursor:pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  margin-top: 30px;
}



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;
  transition: all 0.3s ease-in; /* Added transition */
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-track {
  background: var(--light-yellow);
}

::-webkit-scrollbar-thumb {
  background: var(--violet);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}

/* Inputs */
input {
  all: unset;
  padding: 10px 20px;
  border: solid 1px var(--violet);
  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(--violet);
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
}

.p-main-body {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

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: var(--gap);
  width: 100%;
  box-sizing: border-box;
  border: solid 1px var(--violet);
  border-radius: 8px;
}

.ff-1 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: var(--gap);
}

/* Hide the browser's default checkbox and radio */
.custom-checkbox input,
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid var(--violet);
  border-radius: 6px;
}
.terms-content{
    margin-left:35px;
    font-size:14px;
}
.terms-content a {
    text-decoration: none;         /* fallback */
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
}



/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  content: "✓";
  position: absolute;
  display: none;
  color: var(--violet);
}

/* 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: var(--white);
  border: 2px solid var(--violet) !important;
  border-radius: 50%;
}

/* Style the radio button indicator */
.custom-radio .radiomark:after {
  content: "";
  position: absolute;
  display: none;
  background-color: var(--violet);
  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(--violet);
}

/* Style for required but unchecked inputs */
.custom-checkbox input:required:invalid ~ .checkmark,
.custom-radio input:required:invalid ~ .radiomark {
  border-color: var(--violet);
}

/* Reset to yellow when valid */
.custom-checkbox input:required:valid ~ .checkmark,
.custom-radio input:required:valid ~ .radiomark {
  border-color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-radio-container {
  display: flex;
  gap: var(--gap);
  justify-content: space-between;
}

.part-fields {
  display: flex;
  gap: var(--gap);
}

.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;
  flex-direction: column;
  gap: 15px;
}

.btm15px {
  margin-bottom: 15px;
}

.f1-image {
  background-image: url(/assets/graphics/partnership-eg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  overflow: hidden;
  margin: var(--gap) 0px;
}

.f2-image {
  background-image: url(/assets/graphics/membership-eg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  overflow: hidden;
  margin: var(--gap) 0px;
}

.margin-top10 {
  margin-top: var(--gap);
}

.tertiary-btn {
  background-color: var(--ex-dark);
  font-size: 16px;
  height: 50px;
  color: var(--white);
  border: none;
  gap: 20px;
  padding: 10px 30px;
  transition: all 0.3s ease-in; /* Added transition */
}

.tertiary-btn:hover {
  background-color: var(--violet);
  stroke: none;
  font-size: 16px;
  height: 50px;
  color: var(--white);
  padding: 10px 30px;
  cursor: pointer;
}

/* Typography */
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);
}

/* Animation */
.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); }
}

@-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); }
}

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: #fff;
  width: 100vw;
  z-index: 999;
}

.logo {
  font-size: 1.5rem;
    height: 45px;
}

.nav-links {
  display: flex;
  list-style: none;
  color: var(--ex-dark);
  font-size:16px;
}

.nav-links li {
  margin: 0 var(--gap);
    font-size:16px;
}
.nav-links li a{
        font-size:14px !important;

}

.navgobtn {
  background-color: transparent;
  border: 1px solid var(--ex-dark);
  font-size: 14px;
  padding: 12px 20px;
  transition: all 0.3s ease-in; /* Added transition */
}

.navgobtn:hover {
  background: var(--violet);
  color: var(--white);
  border: 1px solid var(--violet);
}

.hide-desk {
  display: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: var(--grey);
  transition: all 0.3s ease-in; /* Updated transition */
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in; /* Updated transition */
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--violet);
  cursor: pointer;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-buttons {
  display: flex;
  gap: var(--gap);
}

.nav-button1 {
  background-color: var(--ex-dark);
  color: var(--white);
  border: none;
  padding: 12px 20px !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in; /* Updated transition */
}

.nav-button1:hover {
  background-color: var(--violet);
  color: var(--white);
}

.nav-button2 {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px !important;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in; /* Updated transition */
  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%;
}
.bs-fade-up {
  opacity: 0;
  transform: translateY(30px);
}
.main-logo{
        object-fit: contain;
    width: 100%;
    height: 100%;
}
.primary-btn {
  background-color: var(--violet);
  color: var(--white);
  border: none;
  font-size: 16px;
  gap: 15px;
  padding: 10px 30px;
  height: 50px;
  transition: all 0.3s ease-in; /* Added transition */
}

.primary-btn:hover {
  gap:20px;
    transition: all 0.3s ease-in; /* Added transition */

}

.secondary-btn {
  background-color: transparent;
  border: 1px solid var(--ex-dark);
  font-size: 16px;
  height: 50px;
  padding: 10px 30px;
  transition: all 0.3s ease-in; /* Added transition */
}

.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(--violet);
  border-radius: 16px;
  transition: all 0.3s ease-in; /* Added transition */
}

.desc-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;
}

.desc-box img {
  width: 100%;
}

.dot {
  height: 16px;
  width: 16px;
  background-color: var(--orange);
  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(--orange);
  }
  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;

}

.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;
  transition: all 0.3s ease-in; /* Added transition */
}

.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-in; /* Updated transition */
}

.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: var(--gap);
  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: flex-start;
}

.work_img {
  flex: 0.8;
}

.work-image {
  background-image: url("/assets/graphics/hero-eg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  min-height: 200px;
}

.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;
  transition: all 0.3s ease-in; /* Added transition */
}

.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;
  transition: all 0.3s ease-in; /* Added transition */
}

.svg-outline-dark:hover {
  background-color: var(--violet);
}

.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;
  transition: all 0.3s ease-in; /* Added transition */
    border:solid 1px transparent;
}

.svg-outline-white:hover {
  background-color: var(--violet);
  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;
  border:solid 1px #fff;
}
.svg-outline-white svg {
      color: var(--violet);
}
.svg-outline-white:hover svg {
color:#fff;
}
.flex-working-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flex-working-icons img{
    max-width:75px;
}

.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;
  transition: all 0.3s ease-in; /* Added transition */
}

.feature:hover {
    color: #fff;
    background: var(--violet);
    border: 1.5px solid var(--violet);
      transition: all 0.3s ease-in; /* Added transition */
}


.about-image {
  background-image: url(/assets/graphics/abt-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  width: 100%;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  overflow: hidden;
  margin: var(--gap) 0px;
}

.about-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.about-features a {
  position: relative;
  display: inline-block; /* ensures underline matches text width */
  color: var(--dark);
  font-weight: 500;
  width: max-content;
  padding-bottom: 2px;
  transition: color 0.3s ease-in;
}

.about-features a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* <-- 3px gap between text and underline */
  width: 0;
  height: 2px; /* underline thickness */
  background: currentColor;
  transition: width 0.3s ease-in;
}

.about-features a:hover::after {
  width: 100%; /* now = text width only */
}


.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;
  transition: all 0.3s ease-in; /* Added transition */
}

.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(/assets/graphics/eg-locations2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  transition: transform 0.5s ease-in; /* Updated transition */
}

.partner-img:hover {
  transform: scale(1.1);
}

.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: var(--gap);
}

.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);

  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease-in; /* Added transition */
}

.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 p {
  font-size: 14px;
  color: var(--other-grey);
}

.box:last-child {
  flex-basis: calc(50% - 1rem);
  margin-top: 2rem;
}

footer {
  background-color: var(--ex-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);
  transition: all 0.3s ease-in; /* Added transition */
}

.info-c:hover {
 gap:8px;
 transition:all ease-in 0.3s;
}

.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;
  transition: transform 0.3s ease-in; /* animate the movement only */
}

.footer-links1 p:hover {
  transform: translateX(5px); /* moves right without affecting layout */
}


.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;
}

.border-boxes-mobile {
  border: none;
}

/* Responsive styles */
@media (max-width: 900px) {
  .hide-desk {
    display: block;
  }
  .about-image {
    min-height: 400px !important;
}

  .border-boxes-mobile {
    border: 1px solid var(--violet);
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-image {
    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;
  
    transition: right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    overflow-y: auto;
    z-index: 1000;
            background: #fff;
  }

  .nav-container.active {
    right: 0;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
        padding: 25vh 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-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%;
    min-height: 200px;
  }

  .f2-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%;
    min-height: 200px;
  }

  .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-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%;
    min-height: 200px;
  }

  .f2-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    border-radius: 0px;
    padding-bottom: 56.25%;
    min-height: 200px;
  }

  .main-p-form {
    margin: auto;
    width: 90vw;
  }

  footer {
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
           flex-direction: row;
  }

  .description-flex2 {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .flex-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
  }
  .navbar {padding: 10px}
section {
        padding: 40px 0px !important;
        margin: 40px 30px !important;
    
}
.grid-description {
    padding: 0;
}
  .translate90 {
    transform: rotate(90deg);
  }

  .main-p-form {
        width: auto;
        margin: auto;
  }

  .secondary-btn {
    max-width: 100%;
  }

  .grid-section {
    flex-direction: column;
  }

  .grid-image {
    width: 100%;
    box-sizing: border-box;
    height: 250px;
    
  }
    .partners-marquee {
        margin: 20px 15px;
        background-color: var(--ex-dark);
        border-radius: 0;
        margin: 0 !important;
        /* padding: 0 !important; */
    }
  .grid-images {
    flex: 1.25;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
.width-80 {
    width: auto;
    margin: auto;
}
  .main-desc {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
        flex-direction: column;
        margin-top: 80px !important;
        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-reverse;
  }

  .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;
  }
.logo {
    font-size: 1.5rem;
    height: 30px;
}
  footer {
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    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.6);
  }
  .description-flex2 {
    flex-direction: column;
  }
  .work_desc {
        background-color: var(--ex-dark);
        /* flex: 1.2; */
        padding: 40px 20px;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
}
    .flex-top {
        flex-direction:column;
        align-items: flex-start;
    }
}

@media (max-width: 350px) {
  .flex-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .description-flex2 {
    flex-direction: column;
  }
}

/* =========================================
   LOADER CSS
   ========================================= */
/* =========================================
   LOADER & MAGNETIC CSS
   ========================================= */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    
    /* Flexbox for perfect centering of Logo + Text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Logo Styling */
.loader-logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px; /* Space between logo and text */
    display: block;
    /* Smooth transition for magnetic effect */
    transition: transform 0.1s ease-out; 
    will-change: transform;
}

/* Text Styling */
.loader-text {
    color: #000;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-align: center;
    /* Smooth transition for magnetic effect */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Lottie Animation at Bottom */
#loader {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    /* Width handled by JS, but set base here */
    width: 450px;
    max-width: 90vw;
    height: auto;
    pointer-events: none; /* Let clicks pass through if needed */
}


.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(--violet);
  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;
}


#password-mismatch-alert {
  color: red;
  display: none;
}

.documents {
  display: flex;
  flex-direction: column;
  margin-top: 10vh !important;
  gap: var(--gap);
  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: var(--gap);
  font-size: 15px;
}